1 | /*!
|
---|
2 | \file get_volpath.c
|
---|
3 | \ingroup (PSIO)
|
---|
4 | */
|
---|
5 |
|
---|
6 | #include <stdio.h>
|
---|
7 | #include <util/psi3/libpsio/psifiles.h>
|
---|
8 | #include <util/psi3/libpsio/psio.h>
|
---|
9 |
|
---|
10 | namespace psi3 {
|
---|
11 | namespace libpsio {
|
---|
12 |
|
---|
13 | /*
|
---|
14 | ** PSIO_GET_VOLPATH(): Get the path to a given volume for file number
|
---|
15 | ** 'unit'.
|
---|
16 | **
|
---|
17 | ** \ingroup (PSIO)
|
---|
18 | */
|
---|
19 | int psio_get_volpath(unsigned int unit, unsigned int volume, char *path)
|
---|
20 | {
|
---|
21 | int errcod;
|
---|
22 | char ip_token[PSIO_MAXSTR];
|
---|
23 |
|
---|
24 | sprintf(ip_token,":PSI:FILES:FILE%u:VOLUME%u",unit,volume+1);
|
---|
25 | // errcod = ip_data(ip_token,"%s",path,0);
|
---|
26 | // if(errcod == IPE_OK) return(0);
|
---|
27 |
|
---|
28 | sprintf(ip_token,":PSI:FILES:DEFAULT:VOLUME%u",volume+1);
|
---|
29 | // errcod = ip_data(ip_token,"%s",path,0);
|
---|
30 | // if(errcod == IPE_OK) return(0);
|
---|
31 |
|
---|
32 | sprintf(ip_token,":DEFAULT:FILES:FILE%u:VOLUME%u",unit,volume+1);
|
---|
33 | // errcod = ip_data(ip_token,"%s",path,0);
|
---|
34 | // if(errcod == IPE_OK) return(0);
|
---|
35 |
|
---|
36 | sprintf(ip_token,":DEFAULT:FILES:DEFAULT:VOLUME%u",volume+1);
|
---|
37 | // errcod = ip_data(ip_token,"%s",path,0);
|
---|
38 | // if(errcod == IPE_OK) return(0);
|
---|
39 |
|
---|
40 | /* default to /tmp/ for everything but chkpt */
|
---|
41 | if(unit == PSIF_CHKPT) sprintf(path, "./");
|
---|
42 | else sprintf(path, "/tmp/");
|
---|
43 | return(1);
|
---|
44 | }
|
---|
45 |
|
---|
46 |
|
---|
47 | /*
|
---|
48 | ** PSIO_GET_VOLPATH_DEFAULT(): Get the default path for the nth volume
|
---|
49 | ** of any file.
|
---|
50 | **
|
---|
51 | ** \ingroup (PSIO)
|
---|
52 | */
|
---|
53 | int psio_get_volpath_default(unsigned int volume, char *path)
|
---|
54 | {
|
---|
55 | int errcod;
|
---|
56 | char ip_token[PSIO_MAXSTR];
|
---|
57 |
|
---|
58 | sprintf(ip_token,":PSI:FILES:DEFAULT:VOLUME%u",volume+1);
|
---|
59 | // errcod = ip_data(ip_token,"%s",path,0);
|
---|
60 | // if(errcod == IPE_OK) return(0);
|
---|
61 |
|
---|
62 | sprintf(ip_token,":DEFAULT:FILES:DEFAULT:VOLUME%u",volume+1);
|
---|
63 | // errcod = ip_data(ip_token,"%s",path,0);
|
---|
64 | // if(errcod == IPE_OK) return(0);
|
---|
65 |
|
---|
66 | /* default to /tmp/ */
|
---|
67 | sprintf(path, "/tmp/");
|
---|
68 |
|
---|
69 | return(1);
|
---|
70 | }
|
---|
71 |
|
---|
72 | }
|
---|
73 | }
|
---|