-
Notifications
You must be signed in to change notification settings - Fork 32
/
db_io.c
427 lines (372 loc) · 8.93 KB
/
db_io.c
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
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
/******************************************************************************
Copyright (c) 1995, 1996 Xerox Corporation. All rights reserved.
Portions of this code were written by Stephen White, aka ghond.
Use and copying of this software and preparation of derivative works based
upon this software are permitted. Any distribution of this software or
derivative works must comply with all applicable United States export
control laws. This software is made available AS IS, and Xerox Corporation
makes no warranty about the software, its performance or its conformity to
any specification. Any person obtaining a copy of this software is requested
to send their name and post office or electronic mail address to:
Pavel Curtis
Xerox PARC
3333 Coyote Hill Rd.
Palo Alto, CA 94304
*****************************************************************************/
/*****************************************************************************
* Routines for use by non-DB modules with persistent state stored in the DB
*****************************************************************************/
#include "config.h"
#include <ctype.h>
#include <float.h>
#include "my-stdarg.h"
#include "my-stdio.h"
#include "my-stdlib.h"
#include "my-string.h"
#include "db_io.h"
#include "db_private.h"
#include "exceptions.h"
#include "list.h"
#include "log.h"
#include "numbers.h"
#include "parser.h"
#include "storage.h"
#include "streams.h"
#include "structures.h"
#include "str_intern.h"
#include "unparse.h"
#include "version.h"
#include "waif.h"
/*********** Input ***********/
static FILE *input;
void
dbpriv_set_dbio_input(FILE * f)
{
input = f;
}
void
dbio_read_line(char *s, int n)
{
fgets(s, n, input);
}
int
dbio_scanf(const char *format,...)
{
va_list args;
int count;
const char *ptr;
va_start(args, format);
count = vfscanf(input, format, args);
va_end(args);
return count;
}
int64_t
dbio_read_num(void)
{
char s[22];
char *p;
long long i;
fgets(s, sizeof(s), input);
i = strtoll(s, &p, 10);
if (isspace(*s) || *p != '\n')
errlog("DBIO_READ_NUM: Bad number: \"%s\" at file pos. %ld\n",
s, ftell(input));
return i;
}
double
dbio_read_float(void)
{
char s[40];
char *p;
double d;
fgets(s, 40, input);
d = strtod(s, &p);
if (isspace(*s) || *p != '\n')
errlog("DBIO_READ_FLOAT: Bad number: \"%s\" at file pos. %ld\n",
s, ftell(input));
return d;
}
Objid
dbio_read_objid(void)
{
return dbio_read_num();
}
const char *
dbio_read_string(void)
{
static Stream *str = 0;
static char buffer[1024];
int len, used_stream = 0;
if (str == 0)
str = new_stream(1024);
try_again:
fgets(buffer, sizeof(buffer), input);
len = strlen(buffer);
if (len == sizeof(buffer) - 1 && buffer[len - 1] != '\n') {
stream_add_string(str, buffer);
used_stream = 1;
goto try_again;
}
if (buffer[len - 1] == '\n')
buffer[len - 1] = '\0';
if (used_stream) {
stream_add_string(str, buffer);
return reset_stream(str);
} else
return buffer;
}
const char *
dbio_read_string_intern(void)
{
const char *s, *r;
s = dbio_read_string();
r = str_intern(s);
/* puts(r); */
return r;
}
Var
dbio_read_var(void)
{
Var r;
int i, l = dbio_read_num();
if (l == (int) TYPE_ANY && dbio_input_version == DBV_Prehistory)
l = TYPE_NONE; /* Old encoding for VM's empty temp register
* and any as-yet unassigned variables.
*/
r.type = (var_type) l;
switch (l) {
case TYPE_CLEAR:
case TYPE_NONE:
break;
case _TYPE_STR:
r.v.str = dbio_read_string_intern();
r.type |= TYPE_COMPLEX_FLAG;
break;
case TYPE_OBJ:
case TYPE_ERR:
case TYPE_INT:
case TYPE_CATCH:
case TYPE_FINALLY:
r.v.num = dbio_read_num();
break;
case _TYPE_FLOAT:
r.v.fnum = dbio_read_float();
break;
case _TYPE_LIST:
l = dbio_read_num();
r = new_list(l);
for (i = 0; i < l; i++)
r.v.list[i + 1] = dbio_read_var();
break;
case _TYPE_WAIF:
r = read_waif();
break;
default:
errlog("DBIO_READ_VAR: Unknown type (%d) at DB file pos. %ld\n",
l, ftell(input));
r = zero;
break;
}
return r;
}
struct state {
char prev_char;
const char *(*fmtr) (void *);
void *data;
};
static const char *
program_name(struct state *s)
{
if (!s->fmtr)
return s->data;
else
return (*s->fmtr) (s->data);
}
static void
my_error(void *data, const char *msg)
{
errlog("PARSER: Error in %s:\n", program_name(data));
errlog(" %s\n", msg);
}
static void
my_warning(void *data, const char *msg)
{
oklog("PARSER: Warning in %s:\n", program_name(data));
oklog(" %s\n", msg);
}
static int
my_getc(void *data)
{
struct state *s = data;
int c;
c = fgetc(input);
if (c == '.' && s->prev_char == '\n') {
/* end-of-verb marker in DB */
c = fgetc(input); /* skip next newline */
return EOF;
}
if (c == EOF)
my_error(data, "Unexpected EOF");
s->prev_char = c;
return c;
}
static Parser_Client parser_client =
{my_error, my_warning, my_getc};
Program *
dbio_read_program(DB_Version version, const char *(*fmtr) (void *), void *data)
{
struct state s;
s.prev_char = '\n';
s.fmtr = fmtr;
s.data = data;
return parse_program(version, parser_client, &s);
}
/*********** Output ***********/
Exception dbpriv_dbio_failed;
static FILE *output;
void
dbpriv_set_dbio_output(FILE * f)
{
output = f;
}
void
dbio_printf(const char *format,...)
{
va_list args;
va_start(args, format);
if (vfprintf(output, format, args) < 0)
RAISE(dbpriv_dbio_failed, 0);
va_end(args);
}
void
dbio_write_num(int64_t n)
{
dbio_printf("%"PRId64"\n", n);
}
void
dbio_write_float(double d)
{
static const char *fmt = 0;
static char buffer[10];
if (!fmt) {
sprintf(buffer, "%%.%dg\n", DBL_DIG + 4);
fmt = buffer;
}
dbio_printf(fmt, d);
}
void
dbio_write_objid(Objid oid)
{
dbio_write_num(oid);
}
void
dbio_write_string(const char *s)
{
dbio_printf("%s\n", s ? s : "");
}
void
dbio_write_var(Var v)
{
int i;
dbio_write_num((int) v.type & TYPE_DB_MASK);
switch ((int) v.type) {
case TYPE_CLEAR:
case TYPE_NONE:
break;
case TYPE_STR:
dbio_write_string(v.v.str);
break;
case TYPE_OBJ:
case TYPE_ERR:
case TYPE_INT:
case TYPE_CATCH:
case TYPE_FINALLY:
dbio_write_num(v.v.num);
break;
case TYPE_FLOAT:
dbio_write_float(v.v.fnum);
break;
case TYPE_LIST:
dbio_write_num(v.v.list[0].v.num);
for (i = 0; i < v.v.list[0].v.num; i++)
dbio_write_var(v.v.list[i + 1]);
break;
case TYPE_WAIF:
write_waif(v);
break;
}
}
static void
receiver(void *data, const char *line)
{
dbio_printf("%s\n", line);
}
void
dbio_write_program(Program * program)
{
unparse_program(program, receiver, 0, 1, 0, MAIN_VECTOR);
dbio_printf(".\n");
}
void
dbio_write_forked_program(Program * program, int f_index)
{
unparse_program(program, receiver, 0, 1, 0, f_index);
dbio_printf(".\n");
}
char rcsid_db_io[] = "$Id$";
/*
* $Log$
* Revision 1.5.2.1 2002/08/29 05:44:23 bjj
* Add WAIF type as distributed in version 0.95 (one small merge).
*
* Revision 1.5 1998/12/14 13:17:34 nop
* Merge UNSAFE_OPTS (ref fixups); fix Log tag placement to fit CVS whims
*
* Revision 1.4 1998/02/19 07:36:16 nop
* Initial string interning during db load.
*
* Revision 1.3 1997/07/07 03:24:53 nop
* Merge UNSAFE_OPTS (r5) after extensive testing.
*
* Revision 1.2.2.1 1997/03/20 18:07:51 bjj
* Add a flag to the in-memory type identifier so that inlines can cheaply
* identify Vars that need actual work done to ref/free/dup them. Add the
* appropriate inlines to utils.h and replace old functions in utils.c with
* complex_* functions which only handle the types with external storage.
*
* Revision 1.2 1997/03/03 04:18:27 nop
* GNU Indent normalization
*
* Revision 1.1.1.1 1997/03/03 03:44:59 nop
* LambdaMOO 1.8.0p5
*
* Revision 2.5 1996/03/19 07:16:12 pavel
* Increased precision of floating-point numbers printed in the DB file.
* Release 1.8.0p2.
*
* Revision 2.4 1996/03/10 01:04:16 pavel
* Increased the precision of printed floating-point numbers by two digits.
* Release 1.8.0.
*
* Revision 2.3 1996/02/08 07:19:15 pavel
* Renamed err/logf() to errlog/oklog() and TYPE_NUM to TYPE_INT. Added
* dbio_read/write_float(). Updated copyright notice for 1996.
* Release 1.8.0beta1.
*
* Revision 2.2 1995/12/28 00:44:51 pavel
* Added support for receiving MOO-compilation warnings during loading and for
* printing useful error and warning messages in the log.
* Release 1.8.0alpha3.
*
* Revision 2.1 1995/12/11 07:59:50 pavel
* Fixed broken #includes. Removed another silly use of `unsigned'.
*
* Release 1.8.0alpha2.
*
* Revision 2.0 1995/11/30 04:20:10 pavel
* New baseline version, corresponding to release 1.8.0alpha1.
*
* Revision 1.1 1995/11/30 04:19:56 pavel
* Initial revision
*/