Annotation of freem/src/mpsdef.h, revision 1.9
1.1 snw 1: /*
1.9 ! snw 2: * $Id: mpsdef.h,v 1.8 2025/04/10 01:24:38 snw Exp $
1.1 snw 3: * common external definitions for all mumps modules
4: *
5: *
1.3 snw 6: * Author: Serena Willis <snw@coherent-logic.com>
1.1 snw 7: * Copyright (C) 1998 MUG Deutschland
1.4 snw 8: * Copyright (C) 2020, 2023, 2025 Coherent Logic Development LLC
1.1 snw 9: *
10: *
11: * This file is part of FreeM.
12: *
13: * FreeM is free software: you can redistribute it and/or modify
14: * it under the terms of the GNU Affero Public License as published by
15: * the Free Software Foundation, either version 3 of the License, or
16: * (at your option) any later version.
17: *
18: * FreeM is distributed in the hope that it will be useful,
19: * but WITHOUT ANY WARRANTY; without even the implied warranty of
20: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21: * GNU Affero Public License for more details.
22: *
23: * You should have received a copy of the GNU Affero Public License
24: * along with FreeM. If not, see <https://www.gnu.org/licenses/>.
25: *
1.5 snw 26: * $Log: mpsdef.h,v $
1.9 ! snw 27: * Revision 1.8 2025/04/10 01:24:38 snw
! 28: * Remove C++ style comments
! 29: *
1.8 snw 30: * Revision 1.7 2025/04/04 19:43:18 snw
31: * Switch to using environment catalog to determine user and group for environment, and remove -u and -g flags from freem
32: *
1.7 snw 33: * Revision 1.6 2025/04/02 03:02:42 snw
34: * Stop requiring users to pass -e to fmadm when -u or -g are passed
35: *
1.6 snw 36: * Revision 1.5 2025/03/24 04:05:36 snw
37: * Replace crlf with frm_crlf to avoid symbol conflict with readline on OS/2
38: *
1.5 snw 39: * Revision 1.4 2025/03/09 19:50:47 snw
40: * Second phase of REUSE compliance and header reformat
41: *
1.4 snw 42: *
43: * SPDX-FileCopyrightText: (C) 2025 Coherent Logic Development LLC
44: * SPDX-License-Identifier: AGPL-3.0-or-later
1.1 snw 45: **/
46:
47: #include <stdio.h>
48: #include <setjmp.h>
49: #include <signal.h>
50: #include <float.h>
51:
52: #if !defined(DBL_DIG)
53: # define DBL_DIG 15
54: #endif
55:
56: /* constants definition module */
57: #include "mpsdef0.h"
58:
59: #if defined(HAVE_MWAPI_MOTIF)
60: # include <Xm/Xm.h>
61: extern XtAppContext mwapi_context;
62: #endif
63:
64: /* c-global variables as external definitions */
65:
66: /* NOTE: this is a constant if SYSFIVE is undefined (in mumps.c) */
67: /* needs to be resolved: djw 3/15/99 */
68: #ifdef SYSFIVE
69: extern long FreeM_timezone; /* time zone */
70: #endif
71:
72: extern short run_daemon;
73: extern short nofork;
74: extern char *pid_file_path;
75: extern int pid_fd;
76:
77: /* USING and WITH */
78: extern char i_using[STRLEN];
79: extern char i_with[STRLEN];
80:
81: extern int errno; /* external error code for systemcalls */
82:
83: extern int m_argc; /* arguments count */
84: extern char **m_argv; /* arguments string */
85: extern char **m_envp; /* environment pointer */
86:
87: extern short frm_throw_all_errors; /* allow non-U errors to be raised by setting $ECODE */
88:
89: extern union four_fl {
90: long unsigned all;
91: char one[4];
92: } glvnflag; /* [0] unique name chars 0=no limit */
93:
94: /* [1] case sensitivity flag 0=sensitive */
95: /* [2] max. name+subscripts 0=no limit */
96: /* [3] max. length of a subscript 0=no limit */
97: extern int libflag; /* are we running as library? */
98: extern int lonelyflag; /* single user flag */
99: extern int lowerflag; /* lowercase everywhere flag */
100: extern int killerflag; /* SIGTERM handling flag */
101: extern int huperflag; /* SIGHUP handling flag */
102: extern int s_fun_flag; /* VIEW 70: ZSORT/ZSYNTAX flag */
103: extern int n_fun_flag; /* VIEW 71: ZNEXT/ZNAME flag */
104: extern int p_fun_flag; /* VIEW 72: ZPREVIOUS/ZPIECE flag */
105: extern int d_fun_flag; /* VIEW 73: ZDATE/ZDATA flag */
106: extern int zjobflag; /* VIEW 79: old ZJOB vs. new ZJOB flag */
107: extern int eightbit; /* VIEW 80: 7 vs. 8 bit flag */
108: extern int PF1flag; /* VIEW 81: PF1 flag */
109: extern int ordercounter; /* VIEW 82: order counter */
110: extern int etxtflag; /* VIEW 83: text in $ZE flag */
111: extern char lvndefault[256]; /* VIEW 89: UNDEF lvn default */
112: extern char gvndefault[256]; /* VIEW 90: UNDEF gvn default */
113: extern char exfdefault[256]; /* VIEW 91: missig QUIT expr default */
114: extern int typemmflag; /* VIEW 92: DEM2EUR: type mismatch error */
115: extern int namespace; /* VIEW 200: namespace index */
116: extern int config; /* VIEW 201: configuration index */
117: extern char WHR[12][4]; /* names of currencies */
118: extern char EUR2WHR[12][9]; /* conversion factors EUR to ... */
119:
120: extern char glo_prefix[MONTH_LEN]; /* VIEW 96: global prefix */
121: extern char glo_ext[MONTH_LEN]; /* VIEW 97: global postfix */
122: extern char rou_ext[MONTH_LEN]; /* VIEW 98: routine extention */
123: extern long tzoffset; /* VIEW 99: timer offset */
124: extern int v100; /* VIEW 100: return value of kill */
125: extern char l_o_val[256]; /* VIEW 110: local $o/$q data value */
126: extern char g_o_val[256]; /* VIEW 111: global $o/$q data value */
127: extern int zsavestrategy; /* VIEW 133: remember ZLOAD directory on ZSAVE */
128: extern long v93; /* VIEW 93: zkey prod. default */
129: extern char v93a[NO_V93][256]; /* VIEW 93: production rules */
130:
131: extern struct vtstyp *screen; /* active screen */
132: extern short jour_flag; /* journal flag 0/1/-1 */
133:
134: /* trace variables for global.c */
135: extern unsigned long traceblk[TRLIM]; /* trace stack - block numbers */
136: extern short traceadr[TRLIM]; /* - status */
137: extern short trx; /* - stack pointer */
138: extern char compactkey[256]; /* internal form of key in global.c */
139:
140: extern short mcmnd; /* mumps command letter */
141: extern short arg; /* stack pointer (expr.c) */
142: extern char *argstck[PARDEPTH + 1]; /* stack of pointers to */
143:
144: /* intermediate results */
145:
146: extern long ordercnt; /* repeater for $order/$query */
147: extern short setpiece; /* =1 set$piece executing */
148: extern short setop; /* SET op flag */
149: extern char rou_name[]; /* $T(+0)/$ZN routine name */
150: extern char *namstck; /* routine name stack */
151: extern char *namptr; /* routine name stack pointer */
152: extern char *framstck; /* DO_frame stack */
153: extern char *dofrmptr; /* DO_frame stack pointer */
154: extern char zb[40]; /* $ZB last ESC_sequence */
155: extern char zerror[]; /* $ZERROR last error */
156: extern char ztrap[NESTLEVLS + 2][ZTLEN]; /* $ZTRAP to be xecuted on error */
157: extern short DSM2err; /* enable normal error processing */
158: extern short nesterr; /* nesterr and callerr contain info */
159: extern char callerr[NESTLEVLS + 1][40]; /* about call situation at error */
160: extern short zerr; /* $ZE numeric error code */
161:
162: extern char stack0[];
163:
164: extern char zmc[]; /* $ZMC loadable match 'controls' */
165: extern char zmn[]; /* $ZMN loadable match 'numeric' */
166: extern char zmp[]; /* $ZMP loadable match 'punctuation' */
167: extern char zml[]; /* $ZML loadable match 'lowercase' */
168: extern char zmu[]; /* $ZMU loadable match 'uppercase' */
169:
170:
171: extern char zloc[256]; /* $ZL last local reference */
172: extern char zref[256]; /* $ZR last global reference */
173: extern short nakoffs; /* offset to naked reference */
174: extern char zfunkey[44][FUNLEN]; /* $ZF function key */
175: extern short xpos[MAXDEV + 1]; /* $X-vector */
176: extern short ypos[MAXDEV + 1]; /* $Y-vector */
1.5 snw 177: extern short frm_crlf[MAXDEV + 1]; /* CR/LF flag vector */
1.1 snw 178: extern short fm_nodelay[MAXDEV + 1]; /* nodelay flag vector */
179: extern int SIflag[MAXDEV + 1]; /* SI/SO flag */
180: extern int ESCflag[MAXDEV + 1]; /* ESC flag */
181: extern short RightMargin; /* Output Margin. Default no */
182:
183: /* automatic CR/LF */
184: extern short InFieldLen; /* Input Field length Def: 255 char */
185: extern long DSW; /* Device Status word (Terminal) */
186: extern char LineTerm[]; /* Input Line Terminator chars */
187: extern char BrkKey; /* <INTERRUPT> key Def: CTRL/C */
188: extern char ug_buf[MAXDEV + 1][256]; /* ungetc-buffers */
189: extern char devopen[MAXDEV + 1]; /* 0 not open */
190:
191: /* 'r' input */
192: /* 'w' or 'a' output */
193:
194:
195: extern short fp_mode; /* 0 = fixed, 1 = IEEE 754 */
196: extern short en_revstrf; /* if 1, reverse $E, $P, $N enabled */
197:
198: typedef struct frm_devstat {
199: short mdc_err;
200: short frm_err;
201: char err_txt[80];
202: } frm_devstat;
203:
204: extern frm_devstat devstat[MAXDEV + 1]; /* device error statuses */
205:
206: extern char dev[MAXDEV + 1][40]; /* names of IO devices */
207:
208: extern char G0I[MAXDEV + 1][257]; /* G0 input translation table */
209: extern char G0O[MAXDEV + 1][257]; /* G0 output translation table */
210: extern char G1I[MAXDEV + 1][257]; /* G1 input translation table */
211: extern char G1O[MAXDEV + 1][257]; /* G1 output translation table */
212:
213: extern FILE *opnfile[];
214: extern char sq_modes[MAXDEV + 1];
215: extern char act_oucpath[MAXDEV + 1][40]; /* actual path of currently used device */
216:
217: extern short olddes[NO_GLOBLS]; /* filedescr of open global files */
218: extern char oldfil[NO_GLOBLS][1024]; /* names of open global files */
219: extern short usage[NO_GLOBLS]; /* usage count of global files */
220: extern long g_ages[NO_GLOBLS]; /* last access of global files */
221: extern short inuse; /* file in use */
222:
223: extern int lio_mode;
224: extern short io; /* $IO */
225: extern short test; /* $TEST */
226: extern short pattrnflag; /* incomplete match flag */
227: extern char pattrnchar; /* incomplete match flag supplement */
228: extern int zsystem; /* $ZSYSTEM return status of UNIX call */
229: extern short zcc; /* $ZC (ControlC-Flag) */
230: extern char *rouptr; /* pointer to begin of routine */
231: extern char *roucur; /* cursor into routine */
232: extern char *rouend; /* pointer to end of pgm */
233: extern char *rouins; /* pointer for direct mode insert */
234:
235: extern short breakon; /* BREAK enable/disable-flag */
236: extern short zbreakon; /* ZBREAK enable/disable-flag */
237: extern short zbflag; /* 'ZBREAK from terminal'-flag */
238: extern short zprecise; /* $ZPRECICION of arithmetic */
239: extern char fp_conversion[10]; /* sprintf conversion constant for ieee754 support */
240: extern long nrandom; /* random number */
241: extern long ran_a; /* random number parameter a */
242: extern long ran_b; /* random number parameter b */
243: extern long ran_c; /* random number parameter c */
244: extern short usermode; /* 0=user mode 1=programmer mode */
245: extern int restricted_mode; /* TRUE=restricted mode FALSE=unrestricted mode */
246: extern short demomode; /* 0=no demo 1=demo mode */
247: extern int d0char; /* demomode ouput character */
248: extern int d1char; /* demomode '!' character */
249: extern short cset; /* 0=mumps set 1='C' set flag */
250: extern int hardcopy; /* hardcopy flag */
251: extern int frm_filter; /* filter flag */
252: extern int noclear;
253: extern int standard; /* 1=standard only, */
254: extern int quiet_mode; /* quiet mode */
255: extern char config_file[4096]; /* path to configuration file */
1.7 snw 256: extern char env_config_file[4096]; /* path to environment config file */
1.1 snw 257: extern char shm_env[255]; /* shared memory environment */
258: /* 0=non standard features enabled */
259: extern short ierr;
260: extern short deferred_ierr;
261: extern char err_suppl[255];
262: extern char errmes[MAXERR][ERRLEN]; /* error messages */
263:
264: extern long PSIZE; /* size of 'partition' */
265: extern char *mbpartition;
266: extern char *partition;
267: extern short writing_mb;
268: extern unsigned long alphptr[]; /* pointers into symbol table */
269: extern long symlen; /* 'lower' bound of symbol table */
270: extern char *apartition; /* alternate partition */
271: extern long asymlen; /* 'lower' bound of symbol table */
272: extern unsigned long aalphptr[]; /* pointers into symbol table */
273:
274: extern short autopsize; /* automatic increase of PSIZE */
275: extern long svnlen; /* 'lower' bound of udf_svn_tab */
276: extern long UDFSVSIZ; /* size of userdef special var tab. */
277: extern short autousize; /* automatic increase of UDFSVSIZ */
278: extern char *svntable; /* udf special variable table */
279: extern unsigned long svnaptr[]; /* pointers into udf_svn_tab */
280: extern long NO_OF_RBUF; /* number of routine buffers */
281: extern long PSIZE0; /* size of routine buffers */
282: extern short autorsize; /* automatic increase of PSIZE0 */
283: extern short aliases; /* aliases pointer */
284: extern char ali[]; /* aliases table */
285: extern long v22ptr; /* view 22 aliases pointer */
286: extern char *v22ali; /* view 22 aliases field */
287: extern long v22size; /* current size of aliases field */
288:
289: extern char *buff; /* alternate buffers */
290: extern char code[]; /* currently interpreted code */
291: extern long NSIZE; /* size of newstack */
292: extern char *newstack; /* stack for NEWed variables */
293: extern char *newptr; /* pointer to NEW stack */
294: extern char *newlimit; /* pointer to NEW stack end */
295: extern int errfunlvl; /* avoid wrong error message in $$FUN */
296: extern short nstx; /* nest stack: */
297: extern short nestc[]; /* - command (DO...) */
298: extern char *nestp[]; /* - cmdptr */
299: extern char *nestn[]; /* - namptr */
300: extern long nestr[]; /* - roucur */
301: extern char *nestnew[]; /* - newptr */
302: extern char neste[]; /* - was this frame entered as the result of an error? */
303: extern short repQUIT; /* QUIT repeater */
304:
305: extern char *argptr; /* pointer to beg of tmp storage */
306: extern char *s; /* pointer to symlen_offset */
307: extern char *codptr; /* pointer within code[] */
308: extern char dosave[20]; /* in a FOR range save DO label */
309: extern char *xdosave;
310:
311: extern char varnam[]; /* variable/array/function name */
312: extern char varerr[256]; /* reference in error message */
313: extern char pgms[MAXNO_OF_RBUF + 1][40]; /* names of alt.pgms */
314: extern long ages[]; /* last call to this pgm */
315: extern char *ends[]; /* saved rouend-pointer */
316: extern char path[MAXNO_OF_RBUF][256]; /* directory where routine was loaded */
317: extern rtn_flags rbuf_flags[MAXNO_OF_RBUF]; /* per-routine flags */
318: extern char glopath[PATHLEN]; /* path to access globals */
319: extern char rou0path[PATHLEN]; /* routine access with DO,GOTO,JOB */
320: extern char rou1path[PATHLEN]; /* routine access with ZL,ZS */
321:
322: extern char gloplib[PATHLEN]; /* path to access %globals */
323: extern char rou0plib[PATHLEN]; /* %routine path (DO..) */
324: extern char rou1plib[PATHLEN]; /* %routine path (ZL..) */
325:
326: extern char gbl_u_engine[255]; /* user global engine */
327: extern char gbl_s_engine[255]; /* system global engine */
328: extern char loc_engine[255]; /* local engine */
329:
330: extern unsigned long int bdb_flush_threshold;
331:
332: extern char oucpath[PATHLEN]; /* OPEN/USE/CLOSE path */
333: extern char rgafile[PATHLEN]; /* routine/global access protocol file */
334: extern char zargdefname[PATHLEN]; /* default varname for Zcommands */
335: extern FILE *rgaccess; /* dto. filedes */
336: extern FILE *jouraccess; /* dto. filedes */
337:
338: extern char curdir[PATHLEN]; /* current directory */
339: extern char startuprou[PATHLEN];
340: extern char zcommds[256]; /* intrinsic z-commands */
341: extern char zfunctions[256]; /* intrinsic z-functions */
342: extern char zsvn[256]; /* intrinsic z-special variables */
343: extern char brkaction[256]; /* action in case of BREAK */
344: extern pid_t father; /* JOB-ID of father process */
345:
346: /* date types parameters */
347: extern char month[NO_DATETYPE][12][MONTH_LEN]; /* month names or numbers */
348: extern char dat1char[NO_DATETYPE][MONTH_LEN]; /* date 1st delimiter */
349: extern char dat2char[NO_DATETYPE][MONTH_LEN]; /* date 2nd delimmiter */
350: extern char dat3char[NO_DATETYPE]; /* date day justify char */
351: extern char dat4flag[NO_DATETYPE]; /* 0=DMY, 1=MDY, 2=YMD */
352: extern char dat5flag[NO_DATETYPE]; /* suppress century digits */
353: extern long int datGRbeg[NO_DATETYPE]; /* first day of gregorian calendar 15-OCT-1582 */
354: extern int datetype; /* type for $zd special variable */
355:
356: extern char tim1char[NO_TIMETYPE]; /* time 1st delimiter */
357: extern char tim2char[NO_TIMETYPE]; /* time 2nd delimiter */
358: extern char tim3char[NO_TIMETYPE]; /* time hour justify char */
359: extern char tim4flag[NO_TIMETYPE]; /* 0=12 Hrs 1=24 Hrs */
360: extern char tim5flag[NO_TIMETYPE]; /* suppress seconds */
361: extern int timetype; /* type for $zt special variable */
362:
363: extern jmp_buf sjbuf; /* on timeout */
364: extern char *roucu0;
365: extern char *dofram0;
366:
367: extern short forx; /* FOR stack pointer */
368: extern char forvar[NESTLEVLS + 1][40], /* FOR variable */
369: forinc[NESTLEVLS + 1][40], /* FOR increment */
370: forpost[NESTLEVLS + 1][128],/* FOR postconditional */
371: forlim[NESTLEVLS + 1][40]; /* FOR limit value */
372: extern short fortyp[NESTLEVLS + 1]; /* 0 = forever 1 = single, */
373:
374: /* 2 = unlim.iter,3 = limit iter. */
375: /* 4 = "" +inc=1 5 = "" + inc=1 */
376: extern short fori[NESTLEVLS + 1]; /* if fortyp=5 length of forlimit */
377:
378: extern char *fvar; /* current forvar */
379: extern char *finc; /* current forinc */
380: extern char *fpost; /* current forpost */
381: extern char *flim; /* current forlim */
382: extern short ftyp; /* current fortyp */
383: extern short fi; /* current fori */
384: extern short forsw; /* FOR switch */
385: extern short argless_forsw_quit; /* QUIT from argumentless FOR */
386: extern short sigint_in_for; /* SIGINT occurred in FOR loop */
387: extern short direct_mode;
388: extern short loadsw; /* flag to avoid redundant loads */
389: extern short extr_types[NESTLEVLS + 1]; /* return types of extrinsic functions */
390:
1.9 ! snw 391: extern char destructors[10][OBJ_DSTRSIZE];
1.1 snw 392: extern int destructor_ct;
393: extern char private_keys[MAX_PRIVATE_KEYS][255];
394:
395: /* after XECUTEs */
396: extern short promflag; /* prompt execute flag */
397: extern short privflag; /* extrinsic z-command flag */
398:
399: extern short brkstk[NESTLEVLS + 1]; /* stack for BREAK information */
400:
401: extern char *cmdstack;
402: extern char *cmdptr;
403:
404: extern short offset;
405: extern long frm_timeout;
406: extern short timeoutms;
407: extern char tmp4[80];
408: extern short param; /* parameter count */
409: extern short paramx; /* current parameter */
410: extern short level; /* level count */
411: extern short nestlt[NESTLEVLS + 1]; /* stack $T / stack levelcount */
412: extern pid_t pid; /* $J = process ID */
413:
414: extern char jour_hostid[256];
415:
416: extern char nsroot[4096]; /* root path of namespace */
417: extern char nsname[256]; /* namespace name */
418: extern char *freem_path; /* path to the running instance of FreeM */
419: extern char history_file[256];
420: extern int n_lines; /* rows in screen */
421: extern int n_columns; /* columns in screen */
422: extern short ipc_pending; /* 1 if an incoming IPC is pending, 0 otherwise */
423:
424: extern int strict_mode;
425: extern short first_process;
426: extern size_t shm_init_size;
427: extern short inrpt_after_async;
428:
429:
430: /* Macros */
431: /* Create a new variable of type (datatype) with space for qty instances */
432: #define NEW(datatype,qty) ((datatype *)calloc(qty,sizeof(datatype)))
433:
1.2 snw 434: /* End of $Source: /home/cvsroot/freem/src/mpsdef.h,v $ */
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>