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

/*#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"

static char *rcsid = "$Header$";

CCTK_FILEVERSION(main_Banner_c)

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

void CCTK_PrintBanners(void);



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

void CCTKi_CactusBanner(void)
{
  
  const char *string;

#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");

}


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

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 
   @var     string
   @vdesc   The banner as a C string
   @vtype   const char *
   @vio     
   @vcomment 
   @endvar 
@@*/

int CCTKi_PrintBanners(void)
{
  int i;
  int param_type;
  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;

}