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
/*******************************************************/
/* "C" Language Integrated Production System */
/* */
/* CLIPS Version 6.40 11/13/17 */
/* */
/* PARSING FUNCTIONS MODULE */
/*******************************************************/
/*************************************************************/
/* Purpose: Contains the code for several parsing related */
/* functions including... */
/* */
/* Principal Programmer(s): */
/* Gary D. Riley */
/* */
/* Contributing Programmer(s): */
/* */
/* Revision History: */
/* */
/* 6.23: Correction for FalseSymbol/TrueSymbol. DR0859 */
/* */
/* 6.24: Corrected code to remove run-time program */
/* compiler warnings. */
/* */
/* 6.30: Changed integer type/precision. */
/* */
/* Removed conditional code for unsupported */
/* compilers/operating systems (IBM_MCW, */
/* MAC_MCW, and IBM_TBC). */
/* */
/* Added const qualifiers to remove C++ */
/* deprecation warnings. */
/* */
/* Fixed function declaration issue when */
/* BLOAD_ONLY compiler flag is set to 1. */
/* */
/* 6.40: Changed check-syntax router name because of */
/* a conflict with another error-capture router. */
/* */
/* Pragma once and other inclusion changes. */
/* */
/* Added support for booleans with <stdbool.h>. */
/* */
/* Changed return values for router functions. */
/* */
/* Removed use of void pointers for specific */
/* data structures. */
/* */
/* UDF redesign. */
/* */
/*************************************************************/
#include "setup.h"
#include <string.h>
#include "argacces.h"
#include "cstrcpsr.h"
#include "envrnmnt.h"
#include "exprnpsr.h"
#include "memalloc.h"
#include "multifld.h"
#include "pprint.h"
#include "prcdrpsr.h"
#include "prntutil.h"
#include "router.h"
#include "strngrtr.h"
#include "utility.h"
#include "parsefun.h"
#define PARSEFUN_DATA 11
struct parseFunctionData
{
char *ErrorString;
size_t ErrorCurrentPosition;
size_t ErrorMaximumPosition;
char *WarningString;
size_t WarningCurrentPosition;
size_t WarningMaximumPosition;
};
#define ParseFunctionData(theEnv) ((struct parseFunctionData *) GetEnvironmentData(theEnv,PARSEFUN_DATA))
/***************************************/
/* LOCAL INTERNAL FUNCTION DEFINITIONS */
/***************************************/
#if (! RUN_TIME) && (! BLOAD_ONLY)
static bool QueryErrorCaptureCallback(Environment *,const char *,void *);
static void WriteErrorCaptureCallback(Environment *,const char *,const char *,void *);
static void DeactivateErrorCapture(Environment *);
static void SetErrorCaptureValues(Environment *,UDFValue *);
#endif
/*****************************************/
/* ParseFunctionDefinitions: Initializes */
/* the parsing related functions. */
/*****************************************/
void ParseFunctionDefinitions(
Environment *theEnv)
{
AllocateEnvironmentData(theEnv,PARSEFUN_DATA,sizeof(struct parseFunctionData),NULL);
#if ! RUN_TIME
AddUDF(theEnv,"check-syntax","ym",1,1,"s",CheckSyntaxFunction,"CheckSyntaxFunction",NULL);
#endif
}
#if (! RUN_TIME) && (! BLOAD_ONLY)
/*******************************************/
/* CheckSyntaxFunction: H/L access routine */
/* for the check-syntax function. */
/*******************************************/
void CheckSyntaxFunction(
Environment *theEnv,
UDFContext *context,
UDFValue *returnValue)
{
UDFValue theArg;
/*========================================*/
/* The argument should be of type STRING_TYPE. */
/*========================================*/
if (! UDFFirstArgument(context,STRING_BIT,&theArg))
{ return; }
/*===================*/
/* Check the syntax. */
/*===================*/
CheckSyntax(theEnv,theArg.lexemeValue->contents,returnValue);
}
/*********************************/
/* CheckSyntax: C access routine */
/* for the build function. */
/*********************************/
bool CheckSyntax(
Environment *theEnv,
const char *theString,
UDFValue *returnValue)
{
const char *name;
struct token theToken;
struct expr *top;
bool rv;
/*==============================*/
/* Set the default return value */
/* (TRUE for problems found). */
/*==============================*/
returnValue->lexemeValue = TrueSymbol(theEnv);
/*===========================================*/
/* Create a string source router so that the */
/* string can be used as an input source. */
/*===========================================*/
if (OpenStringSource(theEnv,"check-syntax",theString,0) == 0)
{ return true; }
/*=================================*/
/* Only expressions and constructs */
/* can have their syntax checked. */
/*=================================*/
GetToken(theEnv,"check-syntax",&theToken);
if (theToken.tknType != LEFT_PARENTHESIS_TOKEN)
{
CloseStringSource(theEnv,"check-syntax");
returnValue->lexemeValue = CreateSymbol(theEnv,"MISSING-LEFT-PARENTHESIS");
return true;
}
/*========================================*/
/* The next token should be the construct */
/* type or function name. */
/*========================================*/
GetToken(theEnv,"check-syntax",&theToken);
if (theToken.tknType != SYMBOL_TOKEN)
{
CloseStringSource(theEnv,"check-syntax");
returnValue->lexemeValue = CreateSymbol(theEnv,"EXPECTED-SYMBOL_TYPE-AFTER-LEFT-PARENTHESIS");
return true;
}
name = theToken.lexemeValue->contents;
/*==============================================*/
/* Set up a router to capture the error output. */
/*==============================================*/
AddRouter(theEnv,"cs-error-capture",40,
QueryErrorCaptureCallback,WriteErrorCaptureCallback,
NULL,NULL,NULL,NULL);
/*================================*/
/* Determine if it's a construct. */
/*================================*/
if (FindConstruct(theEnv,name))
{
ConstructData(theEnv)->CheckSyntaxMode = true;
if (ParseConstruct(theEnv,name,"check-syntax") == BE_PARSING_ERROR)
{ rv = true; }
else
{ rv = false; }
GetToken(theEnv,"check-syntax",&theToken);
ConstructData(theEnv)->CheckSyntaxMode = false;
if (rv)
{
WriteString(theEnv,STDERR,"\nERROR:\n");
WriteString(theEnv,STDERR,GetPPBuffer(theEnv));
WriteString(theEnv,STDERR,"\n");
}
DestroyPPBuffer(theEnv);
CloseStringSource(theEnv,"check-syntax");
if ((rv != false) || (ParseFunctionData(theEnv)->WarningString != NULL))
{
SetErrorCaptureValues(theEnv,returnValue);
DeactivateErrorCapture(theEnv);
return true;
}
if (theToken.tknType != STOP_TOKEN)
{
returnValue->value = CreateSymbol(theEnv,"EXTRANEOUS-INPUT-AFTER-LAST-PARENTHESIS");
DeactivateErrorCapture(theEnv);
return true;
}
returnValue->lexemeValue = FalseSymbol(theEnv);
DeactivateErrorCapture(theEnv);
return false;
}
/*=======================*/
/* Parse the expression. */
/*=======================*/
top = Function2Parse(theEnv,"check-syntax",name);
GetToken(theEnv,"check-syntax",&theToken);
ClearParsedBindNames(theEnv);
CloseStringSource(theEnv,"check-syntax");
if (top == NULL)
{
SetErrorCaptureValues(theEnv,returnValue);
DeactivateErrorCapture(theEnv);
return true;
}
if (theToken.tknType != STOP_TOKEN)
{
returnValue->lexemeValue = CreateSymbol(theEnv,"EXTRANEOUS-INPUT-AFTER-LAST-PARENTHESIS");
DeactivateErrorCapture(theEnv);
ReturnExpression(theEnv,top);
return true;
}
DeactivateErrorCapture(theEnv);
ReturnExpression(theEnv,top);
returnValue->lexemeValue = FalseSymbol(theEnv);
return false;
}
/**************************************************/
/* DeactivateErrorCapture: Deactivates the error */
/* capture router and the strings used to store */
/* the captured information. */
/**************************************************/
static void DeactivateErrorCapture(
Environment *theEnv)
{
if (ParseFunctionData(theEnv)->ErrorString != NULL)
{
rm(theEnv,ParseFunctionData(theEnv)->ErrorString,ParseFunctionData(theEnv)->ErrorMaximumPosition);
ParseFunctionData(theEnv)->ErrorString = NULL;
}
if (ParseFunctionData(theEnv)->WarningString != NULL)
{
rm(theEnv,ParseFunctionData(theEnv)->WarningString,ParseFunctionData(theEnv)->WarningMaximumPosition);
ParseFunctionData(theEnv)->WarningString = NULL;
}
ParseFunctionData(theEnv)->ErrorCurrentPosition = 0;
ParseFunctionData(theEnv)->ErrorMaximumPosition = 0;
ParseFunctionData(theEnv)->WarningCurrentPosition = 0;
ParseFunctionData(theEnv)->WarningMaximumPosition = 0;
DeleteRouter(theEnv,"cs-error-capture");
}
/*******************************************************************/
/* SetErrorCaptureValues: Stores the error/warnings captured when */
/* parsing an expression or construct into a multifield value. */
/* The first field contains the output sent to the STDERR */
/* logical name and the second field contains the output sent */
/* to the STDWRN logical name. The symbol FALSE is stored in */
/* either position if no output was sent to those logical names. */
/*******************************************************************/
static void SetErrorCaptureValues(
Environment *theEnv,
UDFValue *returnValue)
{
Multifield *theMultifield;
theMultifield = CreateMultifield(theEnv,2L);
if (ParseFunctionData(theEnv)->ErrorString != NULL)
{ theMultifield->contents[0].lexemeValue = CreateString(theEnv,ParseFunctionData(theEnv)->ErrorString); }
else
{ theMultifield->contents[0].lexemeValue = FalseSymbol(theEnv); }
if (ParseFunctionData(theEnv)->WarningString != NULL)
{ theMultifield->contents[1].lexemeValue = CreateString(theEnv,ParseFunctionData(theEnv)->WarningString); }
else
{ theMultifield->contents[1].lexemeValue = FalseSymbol(theEnv); }
returnValue->begin = 0;
returnValue->range = 2;
returnValue->value = theMultifield;
}
/*********************************************/
/* QueryErrorCaptureCallback: Query callback */
/* for the check-syntax router. */
/*********************************************/
static bool QueryErrorCaptureCallback(
Environment *theEnv,
const char *logicalName,
void *context)
{
#if MAC_XCD
#pragma unused(theEnv,context)
#endif
if ((strcmp(logicalName,STDERR) == 0) ||
(strcmp(logicalName,STDWRN) == 0))
{ return true; }
return false;
}
/*********************************************/
/* WriteErrorCaptureCallback: Write callback */
/* for the check-syntax router. */
/*********************************************/
static void WriteErrorCaptureCallback(
Environment *theEnv,
const char *logicalName,
const char *str,
void *context)
{
if (strcmp(logicalName,STDERR) == 0)
{
ParseFunctionData(theEnv)->ErrorString = AppendToString(theEnv,str,ParseFunctionData(theEnv)->ErrorString,
&ParseFunctionData(theEnv)->ErrorCurrentPosition,
&ParseFunctionData(theEnv)->ErrorMaximumPosition);
}
else if (strcmp(logicalName,STDWRN) == 0)
{
ParseFunctionData(theEnv)->WarningString = AppendToString(theEnv,str,ParseFunctionData(theEnv)->WarningString,
&ParseFunctionData(theEnv)->WarningCurrentPosition,
&ParseFunctionData(theEnv)->WarningMaximumPosition);
}
}
#else
/****************************************************/
/* CheckSyntaxFunction: This is the non-functional */
/* stub provided for use with a run-time version. */
/****************************************************/
void CheckSyntaxFunction(
Environment *theEnv,
UDFContext *context,
UDFValue *returnValue)
{
PrintErrorID(theEnv,"PARSEFUN",1,false);
WriteString(theEnv,STDERR,"Function check-syntax does not work in run time modules.\n");
returnValue->value = TrueSymbol(theEnv);
}
/************************************************/
/* CheckSyntax: This is the non-functional stub */
/* provided for use with a run-time version. */
/************************************************/
bool CheckSyntax(
Environment *theEnv,
const char *theString,
UDFValue *returnValue)
{
PrintErrorID(theEnv,"PARSEFUN",1,false);
WriteString(theEnv,STDERR,"Function check-syntax does not work in run time modules.\n");
returnValue->value = TrueSymbol(theEnv);
return true;
}
#endif /* (! RUN_TIME) && (! BLOAD_ONLY) */