summaryrefslogtreecommitdiff
path: root/src/util/File.c
blob: 2c75ae8a7967fc716dfe53b8eed2228264eeaafe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
#include "cctk.h"

 /*@@
   @file      File.c
   @date      September 6th 1999
   @author    Gabrielle Allen
   @desc
              File Handling routines
   @enddesc
 @@*/             

#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>

#include "cctk_WarnLevel.h"
#include "cctk_FortranString.h"

#include "util_String.h"

static char *rcsid = "$Header$";

CCTK_FILEVERSION(util_File_c)

/* some systems (eg. Windows NT) don't define this macro */
#ifndef S_ISDIR
#define S_ISDIR(mode)   (((mode) & S_IFMT) == S_IFDIR)
#endif

/* Some systems don't have mode_t and only pass one argument to mkdir. */
#ifdef HAVE_MODE_T
#define MKDIR_WRAPPER(a,b) mkdir(a,b)
#else

/* FIXME: Temporary kludge until everyone has reconfigured */ 
#ifdef WIN32
#define MKDIR_WRAPPER(a,b) mkdir(a)
#else
/* Should just be the clause with one argument, this one should go. */
#endif /* WIN32 */

#endif /* HAVE_MODE_T */

int CCTK_MkDirs(const char *pathname, int mode);

 /*@@
   @routine   CCTK_mkdir
   @date      September 6th 1999
   @author    Gabrielle Allen
   @desc
              Create a directory, if we haven't already tried 
              to create it.
   @enddesc
   @var        dir
   @vdesc      directory name to create
   @vtype      const char *
   @vio        in
   @endvar

   @returntype int
   @returndesc negative: failed to create dir for some reason
               0         dir was successfully created
               positive  directory already exists
   @endreturndesc

 @@*/             

int CCTK_mkdir(const char *dir)
{

  int retval;

#if 0

  struct stat statbuf;
  char *command;
 
  if(stat(dir, &statbuf) == 0)
    return(S_ISDIR(statbuf.st_mode) ? +1 : -1);

  command = (char *) malloc(strlen(MKDIR MKDIRFLAGS) + strlen(dir) + 2);

  /***
    TR 13/09/99: disabled use of MKDIRFLAGS until it also works for NT
    This means either
      - we make sure to always use the bash's mkdir command (which accepts
        option '-p')
      - call the dos shell with MKDIRFLAGS set to an empty string
      - use the POSIX mkdir routine
    The disadvantage for calling mkdir without '-p' under UNIX is now
    that we can always create one subdirectory only which needs to be
    relative to an existing directory.
   ***/
#if 0
  sprintf(command, MKDIR MKDIRFLAGS " %s",dir);
#else
  sprintf(command, MKDIR " %s",dir);
#endif

  CCTK_VInfo("Cactus","Creating directory: \"%s\"",command);

  /*** FIXME: not sure what a successful system call looks like
       across all architecures - ignore for now
       and set zero for Cactus success ***/
  retval = system(command);

  free(command);

  retval = 0;
#endif

  retval = CCTK_MkDirs(dir, 0755);

  return retval;

}

void FMODIFIER FORTRAN_NAME(CCTK_mkdir)(int *ierr, ONE_FORTSTRING_ARG)
{
  ONE_FORTSTRING_CREATE(arg1)
  *ierr = CCTK_mkdir(arg1);
  free(arg1); 
}

 /*@@
   @routine    CCTK_MkDirs
   @date       Tue May  2 21:38:48 2000
   @author     Tom Goodale
   @desc 
   Makes all directories necessary for the path to exist.
   @enddesc 
   @calls     
   @calledby   
   @history 
 
   @endhistory 

@@*/
int CCTK_MkDirs(const char *pathname, int mode)
{
  int retval;
  const char *path;
  char *current;
  const char *token;
  struct stat statbuf;

  path = pathname;

  retval = 0;
 
  current = (char *)malloc((strlen(pathname)+1)*sizeof(char));
  
  if(current)
  {
    current[0] = '\0';

    while((token = Util_StrSep(&path, "/")))
    {
      /* Treat first token carefully. */
      if(*current == '\0')
      {
        if(*token == '\0')
        {
          strcpy(current, "/");
        }
        else
        {
          strcpy(current,token);
        }
      }
      else
      {
        sprintf(current,"%s/%s", current, token);
      }

      if(stat(current, &statbuf))
      {
        CCTK_VInfo("Cactus","Creating directory: \"%s\"", current);
        if(MKDIR_WRAPPER(current, mode) == -1)
        {
          CCTK_VWarn(0,__LINE__,__FILE__,"Cactus","Failed to create directory \"%s\"", current);
          retval = -2;
        }
      }
      else
      {
        if(! S_ISDIR(statbuf.st_mode))
        {
          CCTK_VWarn(0,__LINE__,__FILE__,"Cactus","\"%s\" exists but is not a directory", current);
          retval = -3;
        }
      }

      if(retval)
      {
        break;
      }
    }

    if(! retval)
    {
      /* Deal with last component of path */
      if(path - pathname < strlen(pathname))
      {
        if(stat(pathname, &statbuf))
        {
          CCTK_VInfo("Cactus","Creating directory: \"%s\"", pathname);
          if(MKDIR_WRAPPER(pathname, mode) == -1)
          {
            CCTK_VWarn(0,__LINE__,__FILE__,"Cactus","Failed to create directory \"%s\"", pathname);
            retval = -2;
          }
        }
        else
        {
          if(! S_ISDIR(statbuf.st_mode))
          {
            CCTK_VWarn(0,__LINE__,__FILE__,"Cactus", "\"%s\" exists but is not a directory", pathname);
            retval = -3;
          }
        }
      }
    }

    free(current);

  }     
  else
  {
    CCTK_Warn(0,__LINE__,__FILE__,"Cactus", "Failed to allocate some temporary memory");
    retval = -1;
  }

  return retval;

}