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
/*******************************************************/
/* "C" Language Integrated Production System */
/* */
/* CLIPS Version 6.40 07/30/16 */
/* */
/* DEFGLOBAL BSAVE/BLOAD MODULE */
/*******************************************************/
/*************************************************************/
/* Purpose: Implements the binary save/load feature for the */
/* defglobal construct. */
/* */
/* Principal Programmer(s): */
/* Gary D. Riley */
/* */
/* Contributing Programmer(s): */
/* Brian L. Dantes */
/* */
/* Revision History: */
/* */
/* 6.30: Changed integer type/precision. */
/* */
/* Moved WatchGlobals global to defglobalData. */
/* */
/* 6.40: Pragma once and other inclusion changes. */
/* */
/* Removed use of void pointers for specific */
/* data structures. */
/* */
/*************************************************************/
#include "setup.h"
#if DEFGLOBAL_CONSTRUCT && (BLOAD || BLOAD_AND_BSAVE || BLOAD_ONLY) && (! RUN_TIME)
#include <stdio.h>
#include "bload.h"
#include "bsave.h"
#include "envrnmnt.h"
#include "globlbsc.h"
#include "globldef.h"
#include "memalloc.h"
#include "moduldef.h"
#include "multifld.h"
#include "globlbin.h"
/***************************************/
/* LOCAL INTERNAL FUNCTION DEFINITIONS */
/***************************************/
#if BLOAD_AND_BSAVE
static void BsaveFind(Environment *);
static void BsaveStorage(Environment *,FILE *);
static void BsaveBinaryItem(Environment *,FILE *);
#endif
static void BloadStorageDefglobals(Environment *);
static void BloadBinaryItem(Environment *);
static void UpdateDefglobalModule(Environment *,void *,unsigned long);
static void UpdateDefglobal(Environment *,void *,unsigned long);
static void ClearBload(Environment *);
static void DeallocateDefglobalBloadData(Environment *);
/*********************************************/
/* DefglobalBinarySetup: Installs the binary */
/* save/load feature for the defglobals. */
/*********************************************/
void DefglobalBinarySetup(
Environment *theEnv)
{
AllocateEnvironmentData(theEnv,GLOBLBIN_DATA,sizeof(struct defglobalBinaryData),DeallocateDefglobalBloadData);
#if (BLOAD_AND_BSAVE || BLOAD)
AddAfterBloadFunction(theEnv,"defglobal",ResetDefglobals,50,NULL);
#endif
#if BLOAD_AND_BSAVE
AddBinaryItem(theEnv,"defglobal",0,BsaveFind,NULL,
BsaveStorage,BsaveBinaryItem,
BloadStorageDefglobals,BloadBinaryItem,
ClearBload);
#endif
#if (BLOAD || BLOAD_ONLY)
AddBinaryItem(theEnv,"defglobal",0,NULL,NULL,NULL,NULL,
BloadStorageDefglobals,BloadBinaryItem,
ClearBload);
#endif
}
/*********************************************************/
/* DeallocateDefglobalBloadData: Deallocates environment */
/* data for the defglobal bsave functionality. */
/*********************************************************/
static void DeallocateDefglobalBloadData(
Environment *theEnv)
{
#if (BLOAD || BLOAD_ONLY || BLOAD_AND_BSAVE) && (! RUN_TIME)
size_t space;
unsigned long i;
for (i = 0; i < DefglobalBinaryData(theEnv)->NumberOfDefglobals; i++)
{
if (DefglobalBinaryData(theEnv)->DefglobalArray[i].current.header->type == MULTIFIELD_TYPE)
{ ReturnMultifield(theEnv,DefglobalBinaryData(theEnv)->DefglobalArray[i].current.multifieldValue); }
}
space = DefglobalBinaryData(theEnv)->NumberOfDefglobals * sizeof(Defglobal);
if (space != 0)
{ genfree(theEnv,DefglobalBinaryData(theEnv)->DefglobalArray,space); }
space = DefglobalBinaryData(theEnv)->NumberOfDefglobalModules * sizeof(struct defglobalModule);
if (space != 0)
{ genfree(theEnv,DefglobalBinaryData(theEnv)->ModuleArray,space); }
#endif
}
#if BLOAD_AND_BSAVE
/****************************************************/
/* BsaveFind: Counts the number of data structures */
/* which must be saved in the binary image for */
/* the defglobals in the current environment. */
/****************************************************/
static void BsaveFind(
Environment *theEnv)
{
Defglobal *defglobalPtr;
Defmodule *theModule;
/*=======================================================*/
/* If a binary image is already loaded, then temporarily */
/* save the count values since these will be overwritten */
/* in the process of saving the binary image. */
/*=======================================================*/
SaveBloadCount(theEnv,DefglobalBinaryData(theEnv)->NumberOfDefglobalModules);
SaveBloadCount(theEnv,DefglobalBinaryData(theEnv)->NumberOfDefglobals);
/*============================================*/
/* Set the count of defglobals and defglobals */
/* module data structures to zero. */
/*============================================*/
DefglobalBinaryData(theEnv)->NumberOfDefglobals = 0;
DefglobalBinaryData(theEnv)->NumberOfDefglobalModules = 0;
for (theModule = GetNextDefmodule(theEnv,NULL);
theModule != NULL;
theModule = GetNextDefmodule(theEnv,theModule))
{
/*================================================*/
/* Set the current module to the module being */
/* examined and increment the number of defglobal */
/* modules encountered. */
/*================================================*/
SetCurrentModule(theEnv,theModule);
DefglobalBinaryData(theEnv)->NumberOfDefglobalModules++;
/*====================================================*/
/* Loop through each defglobal in the current module. */
/*====================================================*/
for (defglobalPtr = GetNextDefglobal(theEnv,NULL);
defglobalPtr != NULL;
defglobalPtr = GetNextDefglobal(theEnv,defglobalPtr))
{
/*======================================================*/
/* Initialize the construct header for the binary save. */
/*======================================================*/
MarkConstructHeaderNeededItems(&defglobalPtr->header,DefglobalBinaryData(theEnv)->NumberOfDefglobals++);
}
}
}
/*****************************************************/
/* BsaveStorage: Writes out storage requirements for */
/* all defglobal structures to the binary file */
/*****************************************************/
static void BsaveStorage(
Environment *theEnv,
FILE *fp)
{
size_t space;
/*===========================================================*/
/* Only two data structures are saved as part of a defglobal */
/* binary image: the defglobal data structure and the */
/* defglobalModule data structure. */
/*===========================================================*/
space = sizeof(long) * 2;
GenWrite(&space,sizeof(size_t),fp);
GenWrite(&DefglobalBinaryData(theEnv)->NumberOfDefglobals,sizeof(long),fp);
GenWrite(&DefglobalBinaryData(theEnv)->NumberOfDefglobalModules,sizeof(long),fp);
}
/*********************************************/
/* BsaveBinaryItem: Writes out all defglobal */
/* structures to the binary file */
/*********************************************/
static void BsaveBinaryItem(
Environment *theEnv,
FILE *fp)
{
size_t space;
Defglobal *theDefglobal;
struct bsaveDefglobal newDefglobal;
Defmodule *theModule;
struct bsaveDefglobalModule tempDefglobalModule;
struct defglobalModule *theModuleItem;
/*==========================================================*/
/* Write out the amount of space taken up by the defglobal */
/* and defglobalModule data structures in the binary image. */
/*==========================================================*/
space = DefglobalBinaryData(theEnv)->NumberOfDefglobals * sizeof(struct bsaveDefglobal) +
(DefglobalBinaryData(theEnv)->NumberOfDefglobalModules * sizeof(struct bsaveDefglobalModule));
GenWrite(&space,sizeof(size_t),fp);
/*=================================================*/
/* Write out each defglobal module data structure. */
/*=================================================*/
DefglobalBinaryData(theEnv)->NumberOfDefglobals = 0;
for (theModule = GetNextDefmodule(theEnv,NULL);
theModule != NULL;
theModule = GetNextDefmodule(theEnv,theModule))
{
SetCurrentModule(theEnv,theModule);
theModuleItem = (struct defglobalModule *)
GetModuleItem(theEnv,NULL,FindModuleItem(theEnv,"defglobal")->moduleIndex);
AssignBsaveDefmdlItemHdrVals(&tempDefglobalModule.header,
&theModuleItem->header);
GenWrite(&tempDefglobalModule,sizeof(struct bsaveDefglobalModule),fp);
}
/*===========================*/
/* Write out each defglobal. */
/*===========================*/
DefglobalBinaryData(theEnv)->NumberOfDefglobals = 0;
for (theModule = GetNextDefmodule(theEnv,NULL);
theModule != NULL;
theModule = GetNextDefmodule(theEnv,theModule))
{
SetCurrentModule(theEnv,theModule);
for (theDefglobal = GetNextDefglobal(theEnv,NULL);
theDefglobal != NULL;
theDefglobal = GetNextDefglobal(theEnv,theDefglobal))
{
AssignBsaveConstructHeaderVals(&newDefglobal.header,
&theDefglobal->header);
newDefglobal.initial = HashedExpressionIndex(theEnv,theDefglobal->initial);
GenWrite(&newDefglobal,sizeof(struct bsaveDefglobal),fp);
}
}
/*=============================================================*/
/* If a binary image was already loaded when the bsave command */
/* was issued, then restore the counts indicating the number */
/* of defglobals and defglobal modules in the binary image */
/* (these were overwritten by the binary save). */
/*=============================================================*/
RestoreBloadCount(theEnv,&DefglobalBinaryData(theEnv)->NumberOfDefglobalModules);
RestoreBloadCount(theEnv,&DefglobalBinaryData(theEnv)->NumberOfDefglobals);
}
#endif /* BLOAD_AND_BSAVE */
/***********************************************/
/* BloadStorageDefglobals: Allocates space for */
/* the defglobals used by this binary image. */
/***********************************************/
static void BloadStorageDefglobals(
Environment *theEnv)
{
size_t space;
/*=======================================================*/
/* Determine the number of defglobal and defglobalModule */
/* data structures to be read. */
/*=======================================================*/
GenReadBinary(theEnv,&space,sizeof(size_t));
GenReadBinary(theEnv,&DefglobalBinaryData(theEnv)->NumberOfDefglobals,sizeof(long));
GenReadBinary(theEnv,&DefglobalBinaryData(theEnv)->NumberOfDefglobalModules,sizeof(long));
/*===================================*/
/* Allocate the space needed for the */
/* defglobalModule data structures. */
/*===================================*/
if (DefglobalBinaryData(theEnv)->NumberOfDefglobalModules == 0)
{
DefglobalBinaryData(theEnv)->DefglobalArray = NULL;
DefglobalBinaryData(theEnv)->ModuleArray = NULL;
}
space = DefglobalBinaryData(theEnv)->NumberOfDefglobalModules * sizeof(struct defglobalModule);
DefglobalBinaryData(theEnv)->ModuleArray = (struct defglobalModule *) genalloc(theEnv,space);
/*===================================*/
/* Allocate the space needed for the */
/* defglobal data structures. */
/*===================================*/
if (DefglobalBinaryData(theEnv)->NumberOfDefglobals == 0)
{
DefglobalBinaryData(theEnv)->DefglobalArray = NULL;
return;
}
space = (DefglobalBinaryData(theEnv)->NumberOfDefglobals * sizeof(Defglobal));
DefglobalBinaryData(theEnv)->DefglobalArray = (Defglobal *) genalloc(theEnv,space);
}
/******************************************************/
/* BloadBinaryItem: Loads and refreshes the defglobal */
/* constructs used by this binary image. */
/******************************************************/
static void BloadBinaryItem(
Environment *theEnv)
{
size_t space;
/*======================================================*/
/* Read in the amount of space used by the binary image */
/* (this is used to skip the construct in the event it */
/* is not available in the version being run). */
/*======================================================*/
GenReadBinary(theEnv,&space,sizeof(size_t));
/*=============================================*/
/* Read in the defglobalModule data structures */
/* and refresh the pointers. */
/*=============================================*/
BloadandRefresh(theEnv,DefglobalBinaryData(theEnv)->NumberOfDefglobalModules,
sizeof(struct bsaveDefglobalModule),
UpdateDefglobalModule);
/*=======================================*/
/* Read in the defglobal data structures */
/* and refresh the pointers. */
/*=======================================*/
BloadandRefresh(theEnv,DefglobalBinaryData(theEnv)->NumberOfDefglobals,
sizeof(struct bsaveDefglobal),
UpdateDefglobal);
}
/************************************************/
/* UpdateDefglobalModule: Bload refresh routine */
/* for defglobal module data structures. */
/************************************************/
static void UpdateDefglobalModule(
Environment *theEnv,
void *buf,
unsigned long obji)
{
struct bsaveDefglobalModule *bdmPtr;
bdmPtr = (struct bsaveDefglobalModule *) buf;
UpdateDefmoduleItemHeader(theEnv,&bdmPtr->header,&DefglobalBinaryData(theEnv)->ModuleArray[obji].header,
sizeof(Defglobal),
DefglobalBinaryData(theEnv)->DefglobalArray);
}
/******************************************/
/* UpdateDefglobal: Bload refresh routine */
/* for defglobal data structures. */
/******************************************/
static void UpdateDefglobal(
Environment *theEnv,
void *buf,
unsigned long obji)
{
struct bsaveDefglobal *bdp;
bdp = (struct bsaveDefglobal *) buf;
UpdateConstructHeader(theEnv,&bdp->header,&DefglobalBinaryData(theEnv)->DefglobalArray[obji].header,DEFGLOBAL,
sizeof(struct defglobalModule),DefglobalBinaryData(theEnv)->ModuleArray,
sizeof(Defglobal),DefglobalBinaryData(theEnv)->DefglobalArray);
#if DEBUGGING_FUNCTIONS
DefglobalBinaryData(theEnv)->DefglobalArray[obji].watch = DefglobalData(theEnv)->WatchGlobals;
#endif
DefglobalBinaryData(theEnv)->DefglobalArray[obji].initial = HashedExpressionPointer(bdp->initial);
DefglobalBinaryData(theEnv)->DefglobalArray[obji].current.voidValue = VoidConstant(theEnv);
}
/***************************************/
/* ClearBload: Defglobal clear routine */
/* when a binary load is in effect. */
/***************************************/
static void ClearBload(
Environment *theEnv)
{
unsigned long i;
size_t space;
/*=======================================================*/
/* Decrement in use counters for atomic values contained */
/* in the construct headers. Also decrement data */
/* structures used to store the defglobal's value. */
/*=======================================================*/
for (i = 0; i < DefglobalBinaryData(theEnv)->NumberOfDefglobals; i++)
{
UnmarkConstructHeader(theEnv,&DefglobalBinaryData(theEnv)->DefglobalArray[i].header);
Release(theEnv,DefglobalBinaryData(theEnv)->DefglobalArray[i].current.header);
if (DefglobalBinaryData(theEnv)->DefglobalArray[i].current.header->type == MULTIFIELD_TYPE)
{ ReturnMultifield(theEnv,DefglobalBinaryData(theEnv)->DefglobalArray[i].current.multifieldValue); }
}
/*==============================================================*/
/* Deallocate the space used for the defglobal data structures. */
/*==============================================================*/
space = DefglobalBinaryData(theEnv)->NumberOfDefglobals * sizeof(Defglobal);
if (space != 0) genfree(theEnv,DefglobalBinaryData(theEnv)->DefglobalArray,space);
DefglobalBinaryData(theEnv)->NumberOfDefglobals = 0;
/*=====================================================================*/
/* Deallocate the space used for the defglobal module data structures. */
/*=====================================================================*/
space = DefglobalBinaryData(theEnv)->NumberOfDefglobalModules * sizeof(struct defglobalModule);
if (space != 0) genfree(theEnv,DefglobalBinaryData(theEnv)->ModuleArray,space);
DefglobalBinaryData(theEnv)->NumberOfDefglobalModules = 0;
}
/********************************************************/
/* BloadDefglobalModuleReference: Returns the defglobal */
/* module pointer for using with the bload function. */
/********************************************************/
void *BloadDefglobalModuleReference(
Environment *theEnv,
unsigned long theIndex)
{
return (void *) &DefglobalBinaryData(theEnv)->ModuleArray[theIndex];
}
#endif /* DEFGLOBAL_CONSTRUCT && (BLOAD || BLOAD_AND_BSAVE || BLOAD_ONLY) && (! RUN_TIME) */