aboutsummaryrefslogtreecommitdiff
path: root/src/Startup.c
blob: 8d3494c2f473c742f8d4a40930acee9b1943af1c (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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
 /*@@
   @file      Startup.c
   @date      Sat Feb 6 1999
   @author    Gabrielle Allen
   @desc 
              Startup routines for IOASCII.
   @enddesc 
   @version   $Id$
 @@*/


#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#include "cctk.h"
#include "cctk_IOMethods.h"
#include "cctk_Parameters.h"
#include "CactusBase/IOUtil/src/ioutil_Utils.h"
#include "ioASCIIGH.h"

/* the rcs ID and its dummy function to use it */
static const char *rcsid = "$Id$";
CCTK_FILEVERSION(CactusBase_IOASCII_Startup_c)


/* prototypes of routines defined in this source file */
void IOASCII_Startup (void);
static void *IOASCII_SetupGH (tFleshConfig *config,
                              int convergence_level,
                              cGH *GH);

 /*@@
   @routine   IOASCII_Startup
   @date      Sat Feb 6 1999
   @author    Gabrielle Allen
   @desc 
              The startup registration routine for IOASCII.
              Registers the GH extensions needed for IOASCII
              along with its setup routine.
   @enddesc 
   @calls     CCTK_RegisterGHExtensionSetupGH
@@*/
void IOASCII_Startup (void)
{
  /* check that thorn IOUtil was activated */
  if (CCTK_GHExtensionHandle ("IO") >= 0)
  {
    CCTK_RegisterGHExtensionSetupGH (CCTK_RegisterGHExtension ("IOASCII"),
                                     IOASCII_SetupGH);
  }
  else
  {
    CCTK_WARN (1, "IOASCII_Startup: Thorn IOUtil was not activated. "
                  "No IOASCII IO methods will be enabled.");
  }
}


/****************************************************************************/
/*                           local routines                                 */
/****************************************************************************/
 /*@@
   @routine   IOASCII_SetupGH
   @date      Sat Feb 6 1999
   @author    Gabrielle Allen
   @desc 
              Allocates and sets up IOASCII's GH extension structure
   @enddesc 

   @calls     CCTK_RegisterIOMethod
              CCTK_RegisterIOMethodOutputGH
              CCTK_RegisterIOMethodOutputVarAs
              CCTK_RegisterIOMethodTimeToOutput
              CCTK_RegisterIOMethodTriggerOutput

   @var       config
   @vdesc     the CCTK configuration as provided by the flesh
   @vtype     tFleshConfig *
   @vio       unused
   @endvar
   @var       convergence_level
   @vdesc     the convergence level
   @vtype     int
   @vio       unused
   @endvar
   @var       GH
   @vdesc     Pointer to CCTK grid hierarchy
   @vtype     cGH *
   @vio       in
   @endvar

   @returntype  void *
   @returndesc
                pointer to the allocated GH extension structure
   @endreturndesc
@@*/
static void *IOASCII_SetupGH (tFleshConfig *config,
                              int convergence_level,
                              cGH *GH)
{
  int i, j, numvars, maxdim;
  asciiioGH *newGH;
  DECLARE_CCTK_PARAMETERS


  /* suppress compiler warnings about unused variables */
  config = config;
  convergence_level = convergence_level;
  GH = GH;

  /* Register the IOASCII routines as output methods  */
  i = CCTK_RegisterIOMethod ("IOASCII_1D");
  CCTK_RegisterIOMethodOutputGH (i, IOASCII_Output1DGH);
  CCTK_RegisterIOMethodOutputVarAs (i, IOASCII_Output1DVarAs);
  CCTK_RegisterIOMethodTimeToOutput (i, IOASCII_TimeFor1D);
  CCTK_RegisterIOMethodTriggerOutput (i, IOASCII_TriggerOutput1D);

  i = CCTK_RegisterIOMethod ("IOASCII_2D");
  CCTK_RegisterIOMethodOutputGH (i, IOASCII_Output2DGH);
  CCTK_RegisterIOMethodOutputVarAs (i, IOASCII_Output2DVarAs);
  CCTK_RegisterIOMethodTimeToOutput (i, IOASCII_TimeFor2D);
  CCTK_RegisterIOMethodTriggerOutput (i, IOASCII_TriggerOutput2D);

  i = CCTK_RegisterIOMethod ("IOASCII_3D");
  CCTK_RegisterIOMethodOutputGH (i, IOASCII_Output3DGH);
  CCTK_RegisterIOMethodOutputVarAs (i, IOASCII_Output3DVarAs);
  CCTK_RegisterIOMethodTimeToOutput (i, IOASCII_TimeFor3D);
  CCTK_RegisterIOMethodTriggerOutput (i, IOASCII_TriggerOutput3D);

  if (! CCTK_Equals (newverbose, "none"))
  {
    CCTK_INFO ("I/O Method 'IOASCII_1D' registered");
    CCTK_INFO ("IOASCII_1D: Output of 1D lines of grid functions/arrays "
               "to ASCII files");
    CCTK_INFO ("I/O Method 'IOASCII_2D' registered");
    CCTK_INFO ("IOASCII_2D: Output of 2D planes of grid functions/arrays "
               "to ASCII files");
    CCTK_INFO ("I/O Method 'IOASCII_3D' registered");
    CCTK_INFO ("IOASCII_3D: Output of 3D grid functions/arrays "
               "to ASCII files");
  }

  /* allocate the GH extension and its components */
  newGH = (asciiioGH *) malloc (sizeof (asciiioGH));

  if (newGH)
  {
    numvars = CCTK_NumVars ();
    newGH->out1D_every = (int *) malloc (numvars * sizeof (int));
    newGH->out2D_every = (int *) malloc (numvars * sizeof (int));
    newGH->out3D_every = (int *) malloc (numvars * sizeof (int));
    newGH->out1D_last = (int *) malloc (numvars * sizeof (int));
    newGH->out2D_last = (int *) malloc (numvars * sizeof (int));
    newGH->out3D_last = (int *) malloc (numvars * sizeof (int));

    for (i = 0; i < numvars; i++)
    {
      newGH->out1D_last[i] = -1;
      newGH->out2D_last[i] = -1;
      newGH->out3D_last[i] = -1;
    }

    newGH->out1D_vars = strdup ("");
    newGH->out2D_vars = strdup ("");
    newGH->out3D_vars = strdup ("");
    newGH->out1D_every_default = 0;
    newGH->out2D_every_default = 0;
    newGH->out3D_every_default = 0;

    newGH->filenameList1D = NULL;
    newGH->fileList_2D = NULL;
    newGH->fileList_3D = NULL;

    maxdim = CCTK_MaxDim ();
    newGH->spxyz = (int ***) malloc (maxdim * sizeof (int **));
    newGH->sp2xyz = (int **) malloc (3 * sizeof (int *));

    for (i = maxdim - 1; i >= 0; i--)
    {
      newGH->spxyz[i]    = (int **) malloc ((i+1) * sizeof (int *));

      for (j = 0; j <= i; j++)
      {
        newGH->spxyz[i][j] = (int  *) calloc ((i+1), sizeof (int ));
      }

      newGH->sp2xyz[i]   = (int  *) calloc ((i+1), sizeof (int ));
    }

    /* Deal with the output directories */
    /* Check whether "outdirXD" was set.
       If so take this dir otherwise default to "IO::outdir" */
    newGH->outdir1D =
      CCTK_ParameterQueryTimesSet ("outdir1D", CCTK_THORNSTRING) > 0 ?
      strdup (outdir1D) : strdup (outdir);
    newGH->outdir2D =
      CCTK_ParameterQueryTimesSet ("outdir2D", CCTK_THORNSTRING) > 0 ?
      strdup (outdir2D) : strdup (outdir);
    newGH->outdir3D =
      CCTK_ParameterQueryTimesSet ("outdir3D", CCTK_THORNSTRING) > 0 ?
      strdup (outdir3D) : strdup (outdir);

    /* create the 1D output dir */
    i = IOUtil_CreateDirectory (GH, newGH->outdir1D, 0, 0);
    if (i < 0)
    {
      CCTK_VWarn (1, __LINE__, __FILE__, CCTK_THORNSTRING,
                  "IOASCII_InitGH: Problem creating IOASCII 1D output"
                  " directory '%s'", newGH->outdir1D);
    }
    else if (i >= 0 && CCTK_Equals (newverbose, "full"))
    {
      CCTK_VInfo (CCTK_THORNSTRING, "IOASCII_1D: Output to directory '%s'",
                  newGH->outdir1D);
    }

    /* create the 2D output dir */
    i = IOUtil_CreateDirectory (GH, newGH->outdir2D, 0, 0);
    if (i < 0)
    {
      CCTK_VWarn (1, __LINE__, __FILE__, CCTK_THORNSTRING,
                  "IOASCII_InitGH: problem creating IOASCII 2D output"
                  " directory '%s'", newGH->outdir2D);
    }
    else if (i >= 0 && CCTK_Equals (newverbose, "full"))
    {
      CCTK_VInfo (CCTK_THORNSTRING, "IOASCII_2D: Output to directory '%s'",
                  newGH->outdir2D);
    }

    /* create the 3D output dir */
    i = IOUtil_CreateDirectory (GH, newGH->outdir3D, 0, 0);
    if (i < 0)
    {
      CCTK_VWarn (1, __LINE__, __FILE__, CCTK_THORNSTRING,
                  "IOASCII_InitGH: problem creating IOASCII 3D output"
                  " directory '%s'", newGH->outdir3D);
    }
    else if (i >= 0 && CCTK_Equals (newverbose, "full"))
    {
      CCTK_VInfo (CCTK_THORNSTRING, "IOASCII_3D: Output to directory '%s'",
                  newGH->outdir3D);
    }
  }
  else
  {
    CCTK_WARN (0, "IOASCII_InitGH: Unable to allocate memory for GH");
  }

  return (newGH);
}