summaryrefslogtreecommitdiff
path: root/src/main/Banner.c
blob: f7c398ca2f55c5a8bf9633203b01fb959a2359c4 (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
/*@@
   @file      Banner.c
   @date      July 16 00:11:26 1999
   @author    Gabrielle Allen
   @desc 
   Routines to deal with the Cactus banners.
   @enddesc 
   @version $Header$
 @@*/

/*#define DEBUG_BANNER*/

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

#include "cctk_Banner.h"
#include "cctk_Config.h"
#include "cctk_Flesh.h"
#include "cctk_FortranString.h"
#include "cctk_Parameter.h"
#include "cctk_Version.h"
#include "cctk_CommandLine.h"
#include "util_Network.h"

static const char *rcsid = "$Header$";

CCTK_FILEVERSION(main_Banner_c)

/********************************************************************
 *********************     Local Data Types   ***********************
 ********************************************************************/

#define DATALENGTH 255

/********************************************************************
 ********************* Local Routine Prototypes *********************
 ********************************************************************/

int CCTKi_PrintBanners(void);
void CCTKi_CactusBanner(void);
void  CCTK_FCALL CCTK_FNAME(CCTK_RegisterBanner)
     (int *ierr,ONE_FORTSTRING_ARG);

/********************************************************************
 ********************* Other Routine Prototypes *********************
 ********************************************************************/

/********************************************************************
 *********************     Local Data   *****************************
 ********************************************************************/

static int number_banners = 0;
static char **banner_strings = NULL;

/********************************************************************
 *********************     External Routines   **********************
 ********************************************************************/


 /*@@
   @routine    CCTKi_CactusBanner
   @date       Wed Oct 13 21:41:28 CEST 1999
   @author     Gabrielle Allen
   @desc 
   Prints the Cactus Banner
   @enddesc 
   @calls     
   @calledby   
   @history 
 
   @endhistory 
@@*/

void CCTKi_CactusBanner(void)
{
  
  const char *string;
  char buffer[DATALENGTH+1];

#define B_1 "       10                                  "
#define B_2 "  1   0101       ************************  "
#define B_3 "  01  1010 10      The Cactus Code V4.0    "
#define B_4 " 1010 1101 011      www.cactuscode.org     "
#define B_5 "  1001 100101    ************************  "
#define B_6 "    00010101                               "
#define B_7 "     100011     (c) Copyright The Authors  "
#define B_8 "      0100      GNU Licensed. No Warranty  "
#define B_9 "      0101                                 "

#define B_ANNERLINE B_1 "\n" B_2 "\n" B_3 "\n" B_4 "\n" B_5 "\n" B_6 "\n" B_7 "\n" B_8 "\n" B_9 "\n"
 
  string = B_ANNERLINE;

  printf("--------------------------------------------------------------------------------\n");
  printf("%s\n",string); 
  printf("--------------------------------------------------------------------------------\n");
  printf("Version:        %s\n",CCTK_FullVersion());
  printf("Compile date:   %s (%s)\n",CCTK_CompileDate(),CCTK_CompileTime());
  Util_CurrentDate (DATALENGTH, buffer);
  printf("Run date:       %s",buffer);
  Util_CurrentTime (DATALENGTH, buffer);
  printf(" (%s)\n",buffer);
  Util_GetHostName(buffer,DATALENGTH);
  printf("Run host:       %s\n",buffer);
  CCTK_ParameterFilename(DATALENGTH,buffer);
  printf("Parameter file: %s\n",buffer);
  
  printf("--------------------------------------------------------------------------------\n");

}


 /*@@
   @routine    CCTK_RegisterBanner
   @date       July 16 00:11:26 1999
   @author     Gabrielle Allen
   @desc 
   Registers a string as a banner
   @enddesc 
   @calls     
   @calledby   
   @history 
 
   @endhistory 
   @var     string
   @vdesc   The banner as a C string
   @vtype   const char *
   @vio     in
   @vcomment 

   @endvar 

   @returntype int
   @returndesc
   0 -- success
   @endreturndesc
@@*/

int CCTK_RegisterBanner(const char *string)
{
  char **temp = NULL;
  char *newstring;
  number_banners++;

  /* Resize the array of banner strings */
  if (number_banners == 1)
  {
    banner_strings = (char **)malloc( number_banners*sizeof(char *));  
    temp = banner_strings;
  }
  else
  {
    temp = (char **)realloc( banner_strings, number_banners*sizeof(char *));  

    if(temp)
    {
      banner_strings = temp;
    }
    else
    {
      number_banners--;
    }
  }

  /* If this was succesful, copy the data into the array */
  if(temp)
  {
    newstring = (char *)malloc((strlen(string)+1)*sizeof(char));
    if(newstring)
    {
      strcpy(newstring, string);
      banner_strings[number_banners-1] = newstring;
    }
    else
    {
      number_banners--;
    }
  }

#ifdef DEBUG_BANNER
  printf("Registering banner .... \n%s\n",banner_strings[number_banners-1]);
#endif

  return 0;

}

void  CCTK_FCALL CCTK_FNAME(CCTK_RegisterBanner)
     (int *ierr,ONE_FORTSTRING_ARG)
{
  ONE_FORTSTRING_CREATE(message)
  *ierr=CCTK_RegisterBanner(message);
  free(message);
}

 /*@@
   @routine    CCTKi_PrintBanners
   @date       July 16 00:11:26 1999
   @author     Gabrielle Allen
   @desc 
   Print all registered banners
   @enddesc 
   @calls     
   @calledby   
   @history 
 
   @endhistory 

   @returntype int
   @returndesc
   0 -- success
   @endreturndesc
@@*/

int CCTKi_PrintBanners(void)
{
  int i;
  int param_type;
  CCTK_INT *cctk_show_banners;

  cctk_show_banners = (CCTK_INT *)CCTK_ParameterGet("cctk_show_banners",
						 "Cactus",&param_type);

  if (*cctk_show_banners)
  {
    for (i=0;i<number_banners;i++)
    {
      if (banner_strings[i])
      {
        printf("--------------------------------------------------------------------------------\n");
        printf("%s\n",banner_strings[i]); 
      }
    }
    printf("--------------------------------------------------------------------------------\n"); 
  }

  return 0;

}
  
/********************************************************************
 *********************     Local Routines   *************************
 ********************************************************************/