-
Notifications
You must be signed in to change notification settings - Fork 0
/
value.c
512 lines (479 loc) · 12.9 KB
/
value.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
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
// src/aksl/value.c 2017-10-25 Alan U. Kennington.
/*-----------------------------------------------------------------------------
Copyright (C) 1989-2018, Alan U. Kennington.
You may distribute this software under the terms of Alan U. Kennington's
modified Artistic Licence, as specified in the accompanying LICENCE file.
-----------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------
Functions in this file:
value::
copyto
print
operator long
operator double
operator const char*
operator object*
operator datum*
operator valuelist*
operator tagvaluelist*
operator colonlist*
operator=(long)
operator=(double)
operator=(char*)
operator=(object*)
operator=(datum*)
operator=(valuelist*)
operator=(tagvaluelist*)
operator=(colonlist*)
valuelist::
copy
tagvaluelist::
operator=(long)
operator=(double)
operator=(char*)
operator=(object*)
operator=(datum*)
operator=(valuelist*)
operator=(tagvaluelist*)
operator=(colonlist*)
copy
colonlist::
copy
------------------------------------------------------------------------------*/
// AKSL header files:
#include "aksl/value.h"
#ifndef AKSL_NUMPRINT_H
#include "aksl/numprint.h"
#endif
// System header files:
#ifndef AKSL_X_STRING_H
#define AKSL_X_STRING_H
#include <string.h>
#endif
// Fast block memory allocation.
bmem_define(value, bmem0);
bmem_define(tagvalue, bmem0);
/*------------------------------------------------------------------------------
Copy a "value" to a given pre-existing "value".
------------------------------------------------------------------------------*/
//----------------------//
// value::copyto //
//----------------------//
void value::copyto(value& x) const {
switch(ty) {
case vINTEGER:
x = i;
break;
case vREAL:
x = r;
break;
case vSTRING: // This copying causes the "value" to possess a string.
x = s;
break;
case vOBJECT:
x = p;
break;
case vDATUM:
x = p;
break;
case vLIST: {
valuelist* vl = l->copy();
x = vl;
}
break;
case vTVLIST: {
tagvaluelist* z = tvl->copy();
x = z;
}
break;
case vCOLONLIST: {
colonlist* vl = cl->copy();
x = vl;
}
break;
case vNONE:
default:
break;
}
} // End of function value::copyto.
/*------------------------------------------------------------------------------
value::print() is an ad hoc printing routine for a "value".
------------------------------------------------------------------------------*/
//----------------------//
// value::print //
//----------------------//
void value::print(ostream& os) const {
switch(ty) {
case vINTEGER:
os << "INTEGER: " << i;
break;
case vREAL:
os << "REAL: " << r;
break;
case vSTRING:
os << "STRING: \"" << s << "\"";
break;
case vOBJECT:
os << "OBJECT: 0x" << hex8(long(p));
break;
case vDATUM:
os << "DATUM: 0x" << hex8(long(d));
break;
case vLIST:
os << "LIST: 0x" << hex8(long(l));
break;
case vTVLIST:
os << "TVLIST: 0x" << hex8(long(tvl));
break;
case vCOLONLIST:
os << "COLONLIST: 0x" << hex8(long(cl));
break;
case vNONE:
default:
break;
}
} // End of function value::print.
//--------------------------//
// value::operator long //
//--------------------------//
value::operator long() const {
switch(ty) {
case vINTEGER:
return i;
case vREAL:
return (long)r;
case vSTRING:
case vOBJECT:
case vDATUM:
case vLIST:
case vTVLIST:
case vCOLONLIST:
case vNONE:
default:
return 0;
}
} // End of function value::operator long.
//--------------------------//
// value::operator double //
//--------------------------//
value::operator double() const {
switch(ty) {
case vINTEGER:
return i;
case vREAL:
return r;
case vSTRING:
case vOBJECT:
case vDATUM:
case vLIST:
case vTVLIST:
case vCOLONLIST:
case vNONE:
default:
return 0;
}
} // End of function value::operator double.
/*------------------------------------------------------------------------------
WARNING: This function does not return a new copy of s. The receiver must
somehow determine whether the string was supposed to be deleted on arrival or
else left alone because it was static.
------------------------------------------------------------------------------*/
//------------------------------//
// value::operator const char* //
//------------------------------//
value::operator const char*() const {
switch(ty) {
case vINTEGER:
case vREAL:
return 0;
case vSTRING:
return s;
case vOBJECT:
case vDATUM:
case vLIST:
case vTVLIST:
case vCOLONLIST:
case vNONE:
default:
return 0;
}
} // End of function value::operator const char*.
//--------------------------//
// value::operator object* //
//--------------------------//
value::operator object*() const {
switch(ty) {
case vINTEGER:
case vREAL:
case vSTRING:
return 0;
case vOBJECT:
return p;
case vDATUM:
case vLIST:
case vTVLIST:
case vCOLONLIST:
case vNONE:
default:
return 0;
}
} // End of function value::operator object*.
//--------------------------//
// value::operator datum* //
//--------------------------//
value::operator datum*() const {
switch(ty) {
case vINTEGER:
case vREAL:
case vSTRING:
case vOBJECT:
return 0;
case vDATUM:
return d;
case vLIST:
case vTVLIST:
case vCOLONLIST:
case vNONE:
default:
return 0;
}
} // End of function value::operator datum*.
//------------------------------//
// value::operator valuelist* //
//------------------------------//
value::operator valuelist*() const {
switch(ty) {
case vINTEGER:
case vREAL:
case vSTRING:
case vOBJECT:
case vDATUM:
return 0;
case vLIST:
return l;
case vTVLIST:
case vCOLONLIST:
case vNONE:
default:
return 0;
}
} // End of function value::operator valuelist*.
//------------------------------//
// value::operator tagvaluelist*//
//------------------------------//
value::operator tagvaluelist*() const {
switch(ty) {
case vINTEGER:
case vREAL:
case vSTRING:
case vOBJECT:
case vDATUM:
case vLIST:
return 0;
case vTVLIST:
return tvl;
case vCOLONLIST:
case vNONE:
default:
return 0;
}
} // End of function value::operator tagvaluelist*.
//------------------------------//
// value::operator colonlist* //
//------------------------------//
value::operator colonlist*() const {
switch(ty) {
case vINTEGER:
case vREAL:
case vSTRING:
case vOBJECT:
case vDATUM:
case vLIST:
case vTVLIST:
return 0;
case vCOLONLIST:
return cl;
case vNONE:
default:
return 0;
}
} // End of function value::operator colonlist*.
//--------------------------//
// value::operator=(long) //
//--------------------------//
value& value::operator=(long ii) {
clear();
ty = vINTEGER;
i = ii;
return *this;
} // End of function value::operator=(long).
//--------------------------//
// value::operator=(double) //
//--------------------------//
value& value::operator=(double rr) {
clear();
ty = vREAL;
r = rr;
return *this;
} // End of function value::operator=(double).
/*------------------------------------------------------------------------------
Warning: No copy is made of the string. The sender must somehow inform the
recipient whether the string is allocated static or on the heap.
------------------------------------------------------------------------------*/
//----------------------------------//
// value::operator=(char*) //
//----------------------------------//
value& value::operator=(char* ss) {
clear();
ty = vSTRING;
s = ss;
return *this;
} // End of function value::operator=(char*).
//------------------------------//
// value::operator=(object*) //
//------------------------------//
value& value::operator=(object* pp) {
clear();
ty = vOBJECT;
p = pp;
return *this;
} // End of function value::operator=(object*).
//------------------------------//
// value::operator=(datum*) //
//------------------------------//
value& value::operator=(datum* dd) {
clear();
ty = vDATUM;
d = dd;
return *this;
} // End of function value::operator=(datum*).
//------------------------------//
// value::operator=(valuelist*) //
//------------------------------//
value& value::operator=(valuelist* ll) {
clear();
ty = vLIST;
l = ll;
return *this;
} // End of function value::operator=(valuelist*).
//----------------------------------//
// value::operator=(tagvaluelist*) //
//----------------------------------//
value& value::operator=(tagvaluelist* tt) {
clear();
ty = vTVLIST;
tvl = tt;
return *this;
} // End of function value::operator=(tagvaluelist*).
//------------------------------//
// value::operator=(colonlist*) //
//------------------------------//
value& value::operator=(colonlist* ll) {
clear();
ty = vCOLONLIST;
cl = ll;
return *this;
} // End of function value::operator=(colonlist*).
//----------------------//
// valuelist::copy //
//----------------------//
valuelist* valuelist::copy() {
valuelist* vl = new valuelist;
Forall(value, pv, *this)
vl->append(pv->copy());
return vl;
} // End of function valuelist::copy.
//--------------------------//
// tagvalue::operator=(long)//
//--------------------------//
tagvalue& tagvalue::operator=(long ii) {
clear();
ty = vINTEGER;
i = ii;
return *this;
} // End of function tagvalue::operator=(long).
//------------------------------//
// tagvalue::operator=(double) //
//------------------------------//
tagvalue& tagvalue::operator=(double rr) {
clear();
ty = vREAL;
r = rr;
return *this;
} // End of function tagvalue::operator=(double).
/*------------------------------------------------------------------------------
Warning: No copy is made of the string. The sender must somehow inform the
recipient whether the string is allocated static or on the heap.
------------------------------------------------------------------------------*/
//------------------------------//
// tagvalue::operator=(char*) //
//------------------------------//
tagvalue& tagvalue::operator=(char* ss) {
clear();
ty = vSTRING;
s = ss;
return *this;
} // End of function tagvalue::operator=(char*).
//------------------------------//
// tagvalue::operator=(object*) //
//------------------------------//
tagvalue& tagvalue::operator=(object* pp) {
clear();
ty = vOBJECT;
p = pp;
return *this;
} // End of function tagvalue::operator=(object*).
//------------------------------//
// tagvalue::operator=(datum*) //
//------------------------------//
tagvalue& tagvalue::operator=(datum* dd) {
clear();
ty = vDATUM;
d = dd;
return *this;
} // End of function tagvalue::operator=(datum*).
//----------------------------------//
// tagvalue::operator=(valuelist*) //
//----------------------------------//
tagvalue& tagvalue::operator=(valuelist* ll) {
clear();
ty = vLIST;
l = ll;
return *this;
} // End of function tagvalue::operator=(valuelist*).
//--------------------------------------//
// tagvalue::operator=(tagvaluelist*) //
//--------------------------------------//
tagvalue& tagvalue::operator=(tagvaluelist* tt) {
clear();
ty = vTVLIST;
tvl = tt;
return *this;
} // End of function tagvalue::operator=(tagvaluelist*).
//----------------------------------//
// tagvalue::operator=(colonlist*) //
//----------------------------------//
tagvalue& tagvalue::operator=(colonlist* ll) {
clear();
ty = vCOLONLIST;
cl = ll;
return *this;
} // End of function tagvalue::operator=(colonlist*).
//----------------------//
// tagvaluelist::copy //
//----------------------//
tagvaluelist* tagvaluelist::copy() {
tagvaluelist* tvl = new tagvaluelist;
Forall(tagvalue, ptv, *this)
tvl->append(ptv->copy());
return tvl;
} // End of function valuelist::copy.
//----------------------//
// colonlist::copy //
//----------------------//
colonlist* colonlist::copy() {
colonlist* vl = new colonlist;
Forall(value, pv, *this)
vl->append(pv->copy());
return vl;
} // End of function colonlist::copy.