-
Notifications
You must be signed in to change notification settings - Fork 5
/
rexx.c
477 lines (402 loc) · 13.5 KB
/
rexx.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
/* Modified for VM/370 CMS and GCC by Robert O'Hara, July 2010. */
/*
* $Id: rexx.c,v 1.12 2009/06/30 13:51:40 bnv Exp bnv $
* $Log: rexx.c,v $
* Revision 1.12 2009/06/30 13:51:40 bnv
* Added -a option to break arg into words
*
* Revision 1.11 2008/07/15 14:57:55 bnv
* mvs corrections
*
* Revision 1.10 2008/07/15 07:40:25 bnv
* #include changed from <> to ""
*
* Revision 1.9 2008/07/14 13:08:42 bnv
* MVS,CMS support
*
* Revision 1.8 2006/01/26 10:25:52 bnv
* Windows CE
*
* Revision 1.7 2004/08/16 15:28:54 bnv
* Changed: name of mnemonic operands from xxx_mn to O_XXX
*
* Revision 1.6 2003/10/30 13:16:28 bnv
* Variable name change
*
* Revision 1.5 2002/06/11 12:37:38 bnv
* Added: CDECL
*
* Revision 1.4 2002/06/06 08:24:36 bnv
* Corrected: Registry support for WCE
*
* Revision 1.3 2001/06/25 18:51:48 bnv
* Header -> Id
*
* Revision 1.2 1999/11/26 13:13:47 bnv
* Changed: To use the new macros.
*
* Revision 1.1 1998/07/02 17:34:50 bnv
* Initial revision
*
*/
#define __REXX_C__
#include <string.h>
#include <setjmp.h>
#include "lerror.h"
#include "lstring.h"
#include "rexx.h"
#include "stack.h"
#include "trace.h"
#include "bintree.h"
#include "compile.h"
#include "interpre.h"
#include "nextsymb.h"
#include "context.h"
#if defined(UNIX)
# include <dlfcn.h>
#elif defined(WCE)
# include <winfunc.h>
#endif
#ifdef __CMS__
#include <cmssys.h> // rpo
#endif
/* ----------- Function prototypes ------------ */
void __CDECL Rerror(const int, const int, ...);
void __CDECL RxRegFunctionDone(void);
/* ---------------- RxInitProc ---------------- */
static void
RxInitProc(void) {
Context *context = (Context *) CMSGetPG();
(context->rexx_rx_proc) = -1;
(context->rexx_proc_size) = PROC_INC;
(context->rexx_proc) = (RxProc *) MALLOC(
(context->rexx_proc_size) * sizeof(RxProc), "RxProc");
MEMSET((context->rexx_proc), 0, (context->rexx_proc_size) * sizeof(RxProc));
} /* RxInitProc */
/* ----------------- RxInitialize ----------------- */
void __CDECL
RxInitialize(char *prorgram_name) {
Lstr str;
Context *context = (Context *) CMSGetPG();
(context->rexx_prgname) = prorgram_name;
LINITSTR(str);
#ifdef __CMS__
// We repeat the initialization of static variables in lstring.h to here because when BREXX is
// loaded as a resident program in CMS the static initializatino is not refreshed at each
// invocation.
(context->lstring_lLastScannedNumber) = 0.0;
(context->lstring_lNumericDigits) = 9;
#endif
/* do the basic initialisation */
Linit(Rerror); /* initialise with Rerror as error function */
LINITSTR((context->nextsymbsymbolstr));
Lfx(&(context->nextsymbsymbolstr),
250); /* create (context->nextsymbsymbol) string */
LINITSTR((context->error_errmsg));
Lfx(&(context->error_errmsg), 250); /* create error message string */
LINITSTR((context->rexxrxReturnResult)); /* Return Result */
/* --- first locate configuration file --- */
/* rexx.rc for DOS in the executable program directory */
/* .rexxrc for unix in the HOME directory */
(context->rexx_procidcnt) = 1; /* Program id counter */
#ifndef __CMS__
DQINIT((context->rexxrxStackList)); /* initialise stacks */
CreateStack(); /* create first stack */
#endif
(context->rexxrxFileList) = NULL; /* intialise rexx files */
LPMALLOC((context->rexx_code));
(context->compileCompileClause) = NULL;
RxInitProc(); /* initialize prg list */
RxInitInterpret(); /* initialise interpreter*/
RxInitVariables(); /* initialise hash table for variables */
BINTREEINIT((context->rexx_labels)); /* initialise labels */
BINTREEINIT((context->rexxrxLitterals)); /* initialise litterals */
Lscpy(&str, "HALT");
(context->rexxhaltStr) = _Add2Lits(&str, FALSE);
Lscpy(&str, "1");
(context->rexxoneStr) = _Add2Lits(&str, FALSE);
Lscpy(&str, "");
(context->rexxnullStr) = _Add2Lits(&str, FALSE);
Lscpy(&str, "0");
(context->rexxzeroStr) = _Add2Lits(&str, FALSE);
Lscpy(&str, "ERROR");
(context->rexxerrorStr) = _Add2Lits(&str, FALSE);
Lscpy(&str, "FAILURE");
(context->rexxfailureStr) = _Add2Lits(&str, FALSE);
Lscpy(&str, "RESULT");
(context->rexxresultStr) = _Add2Lits(&str, FALSE);
Lscpy(&str, "NOVALUE");
(context->rexxnoValueStr) = _Add2Lits(&str, FALSE);
Lscpy(&str, "NOTREADY");
(context->rexxnotReadyStr) = _Add2Lits(&str, FALSE);
Lscpy(&str, "SIGL");
(context->rexxsiglStr) = _Add2Lits(&str, FALSE);
Lscpy(&str, "RC");
(context->rexxRCStr) = _Add2Lits(&str, FALSE);
Lscpy(&str, "SYNTAX");
(context->rexxsyntaxStr) = _Add2Lits(&str, FALSE);
#ifdef __CMS__
Lscpy(&str, "CMS");
(context->rexxsystemStr) = _Add2Lits(&str,
FALSE); // CMS is the default environment
#else
Lscpy(&str, "SYSTEM");
(context->rexxsystemStr) = _Add2Lits(&str, FALSE);
#endif
LFREESTR(str);
} /* RxInitialize */
/* ----------------- RxFinalize ----------------- */
void __CDECL
RxFinalize(void) {
Context *context = (Context *) CMSGetPG();
LFREESTR(
(context->nextsymbsymbolstr)); /* delete (context->nextsymbsymbol) string */
LFREESTR((context->error_errmsg)); /* delete error msg str */
LFREESTR((context->rexxrxReturnResult)); /* Return Result */
RxDoneInterpret();
FREE((context->rexx_proc)); /* free prg list */
#ifndef __CMS__
while ((context->rexxrxStackList).items > 0) DeleteStack();
#endif
LPFREE((context->rexx_code));
(context->rexx_code) = NULL;
/* will free also (context->rexxnullStr), (context->rexxzeroStr) and (context->rexxoneStr) */
BinDisposeLeaf(&(context->rexxrxLitterals),
(context->rexxrxLitterals).parent, FREE);
BinDisposeLeaf(&(context->rexx_labels), (context->rexx_labels).parent,
FREE);
RxDoneVariables();
RxRegFunctionDone(); /* initialise register functions */
} /* RxFinalize */
/* ----------------- RxFileAlloc ------------------- */
RxFile *__CDECL
RxFileAlloc(char *fname) {
RxFile *rxf;
rxf = (RxFile *) MALLOC(sizeof(RxFile), "RxFile");
if (rxf == NULL)
return rxf;
MEMSET(rxf, 0, sizeof(RxFile));
Lscpy(&(rxf->name), fname);
LASCIIZ(rxf->name);
return rxf;
} /* RxFileAlloc */
/* ----------------- RxFileType ------------------- */
void __CDECL
RxFileType(RxFile *rxf) {
char *c;
/* find file type */
c = LSTR(rxf->name) + LLEN(rxf->name);
for (; c > LSTR(rxf->name) && *c != '.'; c--);;
if (*c == '.')
rxf->filetype = c;
for (; c > LSTR(rxf->name) && *c != FILESEP; c--);;
if (c > LSTR(rxf->name))
c++;
rxf->filename = c;
} /* RxFileType */
/* ----------------- RxFileFree ------------------- */
void __CDECL
RxFileFree(RxFile *rxf) {
RxFile *f;
while (rxf) {
f = rxf;
rxf = rxf->next;
LFREESTR(f->name);
LFREESTR(f->file);
FREE(f);
}
} /* RxFileFree */
/* ----------------- RxFileLoad ------------------- */
int __CDECL
RxFileLoad(RxFile *rxf) {
FILEP f;
char filename[21];
/* Convert to ASCIIZ */
L2STR(&(rxf->name));
LASCIIZ(rxf->name);
/* File Name */
sprintf(filename, "%.8s EXEC *", LSTR(rxf->name));
if ((f = FOPEN(filename, "r")) == NULL) return FALSE;
Lread(f, &(rxf->file), LREADFILE);
FCLOSE(f);
return TRUE;
} /* RxFileLoad */
/* --- _LoadRexxLibrary --- */
static int
_LoadRexxLibrary(RxFile *rxf, PLstr libname) {
size_t ip;
Context *context = (Context *) CMSGetPG();
if (!RxFileLoad(rxf)) return 1;
ip = (size_t) ((byte huge *) (context->interpreRxcip) -
(byte huge *) (context->interpreRxcodestart));
MEMCPY((context->rexx_old_trap), (context->rexx_error_trap),
sizeof((context->rexx_error_trap)));
RxFileType(rxf);
RxInitCompile(rxf, NULL);
RxCompile();
/* restore state */
MEMCPY((context->rexx_error_trap), (context->rexx_old_trap),
sizeof((context->rexx_error_trap)));
(context->interpreRxcodestart) = (CIPTYPE *) LSTR(*(context->rexx_code));
(context->interpreRxcip) = (CIPTYPE *) (
(byte huge *) (context->interpreRxcodestart) + ip);
if ((context->rexxrxReturnCode)) RxSignalCondition(SC_SYNTAX);
return 0;
} /* _LoadRexxLibrary */
/* ----------------- RxLoadLibrary ------------------- */
int __CDECL
RxLoadLibrary(PLstr libname) {
RxFile *rxf, *last;
Lstr name;
Context *context = (Context *) CMSGetPG();
LINITSTR(name);
Lfx(&name, LLEN(*libname));
Lstrip(&name, libname, LBOTH, ' ');
Lupper(&name);
/* Convert to C String */
L2STR(&name);
LASCIIZ(name);
/* check to see if it is already loaded */
for (rxf = (context->rexxrxFileList); rxf != NULL; rxf = rxf->next)
if (!strcmp(rxf->filename, LSTR(name)))
return -1;
/* create a RxFile structure */
rxf = RxFileAlloc(LSTR(name));
/* try to load the file as rexx library */
if (_LoadRexxLibrary(rxf, &name)) {
RxFileFree(rxf);
LFREESTR(name);
return 1;
}
/* find the last in the queue */
for (last = (context->rexxrxFileList); last->next != NULL;)
last = last->next;
last->next = rxf;
LFREESTR(name);
return 0;
} /* RxLoadLibrary */
/* ----------------- RxRun ------------------ */
int __CDECL
RxRun(char *filename, PLstr programstr,
PLstr arguments, PLstr tracestr, char *environment) {
RxProc *pr;
int i;
Context *context = (Context *) CMSGetPG();
/* --- set exit jmp position --- */
if ((i = setjmp((context->rexx_exit_trap))) != 0)
goto run_exit;
/* --- set temporary error trap --- */
if (setjmp((context->rexx_error_trap)) != 0)
return (context->rexxrxReturnCode);
/* ====== first load the file ====== */
if (filename) {
(context->rexxrxFileList) = RxFileAlloc(filename);
/* --- Load file --- */
if (!RxFileLoad((context->rexxrxFileList))) {
#ifndef WCE
fprintf(STDERR, "Error %d running \"%s\": File not found\n",
ERR_FILE_NOT_FOUND, LSTR((context->rexxrxFileList)->name));
#else
PUTS("Error: File not found.");
#endif
RxFileFree((context->rexxrxFileList));
return 1;
}
} else {
(context->rexxrxFileList) = RxFileAlloc("<STDIN>");
Lfx(&((context->rexxrxFileList)->file), LLEN(*programstr));
Lstrcpy(&((context->rexxrxFileList)->file), programstr);
}
RxFileType((context->rexxrxFileList));
LASCIIZ((context->rexxrxFileList)->file);
#ifdef __DEBUG__
if ((context->rexx__debug__)) {
printf("File is:\n%s\n",LSTR((context->rexxrxFileList)->file));
getchar();
}
#endif
/* ====== setup procedure ====== */
(context->rexx_rx_proc)++; /* increase program items */
pr = (context->rexx_proc) +
(context->rexx_rx_proc); /* pr = Proc pointer */
/* set program id counter */
pr->id = (context->rexx_procidcnt)++;
/* --- initialise Proc structure --- */
/* arguments... */
pr->arg.n = 0;
for (i = 0; i < MAXARGS; i++) {
if (LLEN(arguments[i])) {
pr->arg.n = i + 1;
pr->arg.a[i] = &(arguments[i]);
} else
pr->arg.a[i] = NULL;
}
pr->arg.r = NULL;
/* call type... */
if (CMScalltype() == 5) {
if (CMSisproc()) pr->calltype = CT_PROCEDURE;
else pr->calltype = CT_FUNCTION;
} else pr->calltype = CT_PROGRAM;
pr->ip = 0; /* procedure ip */
pr->stack = -1; /* prg stck, will be set in interpret */
pr->stacktop = -1; /* no arguments */
pr->scope = RxScopeMalloc();
LPMALLOC(pr->env);
if (environment)
Lscpy(pr->env, environment);
else
Lstrcpy(pr->env, &((context->rexxsystemStr)->key));
#ifdef __CMS__
pr->digits = 9;
#else
pr->digits = LMAXNUMERICDIGITS;
#endif
pr->fuzz = 0;
pr->form = SCIENTIFIC;
pr->condition = 0;
pr->lbl_error = &((context->rexxerrorStr)->key);
pr->lbl_halt = &((context->rexxhaltStr)->key);
pr->lbl_novalue = &((context->rexxnoValueStr)->key);
pr->lbl_notready = &((context->rexxnotReadyStr)->key);
pr->lbl_syntax = &((context->rexxsyntaxStr)->key);
pr->codelen = 0;
pr->trace = normal_trace;
pr->interactive_trace = FALSE;
if (tracestr && LLEN(*tracestr)) TraceSet(tracestr);
/* ======= Compile file ====== */
RxInitCompile((context->rexxrxFileList), NULL);
RxCompile();
#ifdef __DEBUG__
if ((context->rexx__debug__)) {
printf("Litterals are:\n");
BinPrint((context->rexxrxLitterals).parent);
getchar();
printf("Labels(&functions) are:\n");
BinPrint((context->rexx_labels).parent);
printf("Code Size: %d\n\n",LLEN(*(context->rexx_code)));
getchar();
}
#endif
/* ======= Execute code ======== */
if (!(context->rexxrxReturnCode))
RxInterpret();
run_exit:
/* pr pointer might have changed if Proc was resized */
pr = (context->rexx_proc) + (context->rexx_rx_proc);
#ifdef __DEBUG__
if ((context->rexx__debug__))
printf("Return Code = %d\n",(context->rexxrxReturnCode));
#endif
/* ======== close files and free up memory ======== */
RxFileFree((context->rexxrxFileList));
if (context->rawstdin) fclose(context->rawstdin);
LPFREE(pr->env);
if ((context->compileCompileClause)) {
FREE((context->compileCompileClause));
(context->compileCompileClause) = NULL;
}
RxScopeFree(pr->scope);
FREE(pr->scope);
(context->rexx_rx_proc)--;
return (context->rexxrxReturnCode);
} /* RxRun */