3ea676707c269b94841ee430bcf1108ab890669c
[pspp-builds.git] / src / glob.c
1 /* PSPP - computes sample statistics.
2    Copyright (C) 1997-9, 2000 Free Software Foundation, Inc.
3    Written by Ben Pfaff <blp@gnu.org>.
4
5    This program is free software; you can redistribute it and/or
6    modify it under the terms of the GNU General Public License as
7    published by the Free Software Foundation; either version 2 of the
8    License, or (at your option) any later version.
9
10    This program is distributed in the hope that it will be useful, but
11    WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13    General Public License for more details.
14
15    You should have received a copy of the GNU General Public License
16    along with this program; if not, write to the Free Software
17    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18    02110-1301, USA. */
19
20 #include <config.h>
21 #include "glob.h"
22 #include "error.h"
23 #include <stdlib.h>
24 #include <stdio.h>
25
26 #if TIME_WITH_SYS_TIME
27 #include <sys/time.h>
28 #include <time.h>
29 #else
30 #if HAVE_SYS_TIME_H
31 #include <sys/time.h>
32 #else
33 #include <time.h>
34 #endif
35 #endif
36
37 #if HAVE_LIBHISTORY
38 #if HAVE_READLINE_HISTORY_H
39 #include <readline/history.h>
40 #else /* no readline/history.h */
41 extern void using_history ();
42 extern int read_history ();
43 extern void stifle_history ();
44 #endif /* no readline/history.h */
45 #endif /* -lhistory */
46
47 #if HAVE_FPU_CONTROL_H
48 #include <fpu_control.h>
49 #elif __BORLANDC__
50 #include <float.h>
51 #include <math.h>
52 #endif
53
54 #if __DJGPP__
55 #include <conio.h>
56 #elif defined (__WIN32__) && defined (__BORLANDC__)
57 #undef gettext
58 #include <conio.h>
59 #define gettext(STRING)                         \
60         STRING
61 #endif
62
63 #if HAVE_LOCALE_H
64 #include <locale.h>
65 #endif
66
67 #if HAVE_FENV_H
68 #include <fenv.h>
69 #endif
70
71 #include "alloc.h"
72 #include "calendar.h"
73 #include "command.h"
74 #include "dictionary.h"
75 #include "do-ifP.h"
76 #include "error.h"
77 #include "file-handle.h"
78 #include "filename.h"
79 #include "getline.h"
80 #include "hash.h"
81 #include "lexer.h"
82 #include "magic.h"
83 #include "main.h"
84 #include "settings.h"
85 #include "str.h"
86 #include "var.h"
87 #include "version.h"
88 #include "vfm.h"
89
90 /* var.h */
91 struct dictionary *default_dict;
92 struct expression *process_if_expr;
93
94 struct trns_header **t_trns;
95 int n_trns;
96 int m_trns;
97 int f_trns;
98
99 short test_mode=0;
100
101 int FILTER_before_TEMPORARY;
102
103 struct file_handle *default_handle;
104
105 struct ctl_stmt *ctl_stack;
106
107 /* log.h */
108 char *logfn;
109 FILE *logfile;
110 int logging;
111 \f
112 /* Functions. */
113
114 static void get_date (void);
115
116
117 void
118 init_glob (int argc UNUSED, char **argv)
119 {
120   /* FIXME: Allow i18n of other locale items (besides LC_MESSAGES). */
121 #if ENABLE_NLS
122 #if HAVE_LC_MESSAGES
123   setlocale (LC_MESSAGES, "");
124 #endif
125   setlocale (LC_MONETARY, "");
126   bindtextdomain (PACKAGE, locale_dir);
127   textdomain (PACKAGE);
128 #endif /* ENABLE_NLS */
129
130   fn_init ();
131   fh_init ();
132   getl_initialize ();
133
134   /* PORTME: If your system/OS has the nasty tendency to halt with a
135      SIGFPE whenever there's a floating-point overflow (or other
136      exception), be sure to mask off those bits in the FPU here.
137      PSPP wants a guarantee that, no matter what boneheaded
138      floating-point operation it performs, the process will not halt.  */
139 #if HAVE_FEHOLDEXCEPT
140   {
141     fenv_t foo;
142
143     feholdexcept (&foo);
144   }
145 #elif HAVE___SETFPUCW && defined(_FPU_IEEE)
146   __setfpucw (_FPU_IEEE);
147 #elif __BORLANDC__
148   _control87 (0xffff, 0x137f);
149 #endif
150
151   /* var.h */
152   default_dict = dict_create ();
153
154   last_vfm_invocation = time (NULL);
155
156   /* lexer.h */
157   ds_init (&tokstr, 64);
158
159   /* common.h */
160   {
161     char *cp;
162     
163     pgmname = argv[0];
164     for (;;)
165       {
166         cp = strchr (pgmname, DIR_SEPARATOR);
167         if (!cp)
168           break;
169         pgmname = &cp[1];
170       }
171     cur_proc = NULL;
172   }
173
174
175   init_settings();
176
177   /* log.h */
178   logging = 1;
179   logfn = xstrdup ("pspp.log");
180   logfile = NULL;
181
182   get_date ();
183 }
184
185 void
186 done_glob(void)
187 {
188   cancel_transformations ();
189   dict_destroy (default_dict);
190   free (logfn);
191   done_settings ();
192   ds_destroy (&tokstr);
193
194   fh_done();
195 }
196
197 static void
198 get_date (void)
199 {
200
201   time_t t;
202   struct tm *tmp;
203
204   if ((time_t) -1 == time (&t))
205     {
206       strcpy (curdate, "?? ??? 2???");
207       return;
208     }
209   tmp = localtime (&t);
210
211   strftime (curdate, 12, "%d %b %Y",tmp);
212 }
213
214 #if __BORLANDC__
215 int
216 _RTLENTRY _EXPFUNC _matherr (struct exception _FAR *__e)
217 {
218   return 1;
219 }
220
221 int
222 _RTLENTRY _EXPFUNC _matherrl (struct _exceptionl _FAR *__e)
223 {
224   return 1;
225 }
226 #endif