Annotation of freem/src/mpsdef0.h, revision 1.11
1.1 snw 1: /*
1.11 ! snw 2: * $Id: mpsdef0.h,v 1.10 2025/03/24 01:35:23 snw Exp $
1.1 snw 3: * common constants definitions for all mumps modules
4: *
5: *
1.6 snw 6: * Author: Serena Willis <snw@coherent-logic.com>
1.1 snw 7: * Copyright (C) 1998 MUG Deutschland
1.7 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.8 snw 26: * $Log: mpsdef0.h,v $
1.11 ! snw 27: * Revision 1.10 2025/03/24 01:35:23 snw
! 28: * Make symtab action defines more portable
! 29: *
1.10 snw 30: * Revision 1.9 2025/03/22 22:52:24 snw
31: * Add STRLEN_GBL macro to manage global string length
32: *
1.9 snw 33: * Revision 1.8 2025/03/22 18:43:54 snw
34: * Make STRLEN 255 chars and add BIGSTR macro for larger buffers
35: *
1.8 snw 36: * Revision 1.7 2025/03/09 19:50:47 snw
37: * Second phase of REUSE compliance and header reformat
38: *
1.7 snw 39: *
40: * SPDX-FileCopyrightText: (C) 2025 Coherent Logic Development LLC
41: * SPDX-License-Identifier: AGPL-3.0-or-later
1.1 snw 42: **/
43:
1.5 snw 44: /*#pragma GCC diagnostic ignored "-Wformat-contains-nul"*/
1.1 snw 45:
46: #ifdef HAVE_CONFIG_H
47: # include <config.h>
48: #endif
49:
50: #ifdef HAVE_WIRINGPI_H
51: #define register
52: #endif
53:
54: #include <signal.h>
55: #include <stddef.h>
56:
57: #ifndef MDC_VENDOR_ID
58: #define MDC_VENDOR_ID 49
59: #endif/*MDC_VENDOR_ID*/
60:
61: #define byte char
62: #define toggle(A) (A^=01)
63:
64: /* if you do not want to run under SCO-UNIX, put the following in comment */
65:
66: #define SCO
67:
68: /* if you want mumps to run under XENIX, put the following in comment */
69: #define SYSFIVE
70:
71: /* if you want mumps to run under LINUX, un-comment the following */
72: #define LINUX
73:
74: /* rlf 01/15/99 If you want to compile under libc-6 (GLIBC), as on */
75: /* RedHat Linux >= 5.0, define LINUX_GLIBC. */
76: #define LINUX_GLIBC
77:
78: /* spz 4/19/99 If you want to compile under FreeBSD 2.2.8+, define the */
79: /* following line... */
80: /*#define FREEBSD */
81:
82: /* spz 5/24/99 use the new variable stack */
83: /* #define NEWSTACK */
84: /* #define DEBUG_NEWSTACK */
85:
86: /* rlf 01/16/99 If you want German error messages, define EM_GERMAN */
87: /* If you want English error messages, define EM_ENGLISH */
88: #define EM_ENGLISH
89:
90: /* lmv 1999-05-09 define this if you want to use gmtoff timezone data in */
91: /* struct tm instead of tzadj */
92: #define USE_GMTOFF
93:
94: /* lmv 1999-05-09 define this if you want to include sys/time.h */
95: #define USE_SYS_TIME_H
96:
97: /* lmv 1999-05-09 define this if you want to use the gettimeofday function */
98: /* instead of the ftime function */
99: #define USE_GETTIMEOFDAY
100:
101:
102: /* if you do not want MUMPS to support color terminals, put this in comment */
103: #ifdef SCO
104: #define COLOR
105: #endif /* SCO */
106:
107: /* if you do not want MUMPS to support automatic DEM <--> EUR conversion, */
108: /* put this in comment */
109: #define EUR2DEM "1.95583\201"
110:
111: /* end of line symbol 0201/-127 */
112: #define EOL ((char)'\201')
113:
114: /* end of line symbol 0202/-126/130 */
115: #define DELIM ((char)'\202')
116:
117: /* default size of a 'partition' i.e. intermediate result stack+local vars */
118: #define DEFPSIZE 8388608L
119:
120: /* default size of 'userdefined special variable table' */
121: #define DEFUDFSVSIZ 1000
122:
123: /* default size of the NEW stack */
124: #define DEFNSIZE 4096
125:
126: /* default number & size of alternate routine buffers */
127: /* maximum number of routine buffers */
128: #define MAXNO_OF_RBUF 128
129: #define DEFNO_OF_RBUF 128
130: #define DEFPSIZE0 10001
131:
132: /* number of global files concurrently open */
133: #define NO_GLOBLS 6
134:
135: /* length of global blocks */
136: #define BLOCKLEN 1024
137:
138: /* number of global buffers */
139: #define NO_OF_GBUF 6
140:
141: /* number of DO_FOR_XECUTE levels; i.e. depth of gosub-stack */
142: #define NESTLEVLS 80
143:
144: /* depth of parser stack; each pending operation/argument requires one entry */
145: #define PARDEPTH 128
146:
147: /* pattern match stack; maximum number of pattern atoms */
148: #define PATDEPTH 14
149:
150: /* trace limit in globals module, i.e. trees wo'nt grow to the sky */
151: #define TRLIM 32
152:
153: /* arguments in an ESC_sequence */
154: #define ARGS_IN_ESC 5
155:
156: /* maximum length of a string, 0 <= $L() <= 255 */
1.8 snw 157: #define STRLEN 255
1.9 snw 158: #define STRLEN_GBL 252
1.8 snw 159: #define BIGSTR 65535
1.1 snw 160:
161: /* length of $ZTRAP variable */
162: #define ZTLEN 20
163:
164: /* length of $ZF (function key) variable */
165: #define FUNLEN 128
166:
167: /* length of $V(3)...$V(8) i.e. path names */
168: #define PATHLEN 4096
169:
170: /* length of error message */
171: #define ERRLEN 180
172:
173: /* number of DATE types */
174: #define NO_DATETYPE 8
175: #define NO_TIMETYPE 2
176: #define MONTH_LEN 10
177:
178: /* object stuff */
179: #define MAX_PRIVATE_KEYS 100
180: #define MAX_DESTRUCTORS 10
181: #define SC_UNCHANGED 0
182: #define SC_PUBLIC 1
183: #define SC_PRIVATE 2
184:
185:
186: /* number of zkey() production rules */
187: #define NO_V93 8
188:
189: /* depth of CS/CRST (cursor save/restore) stack */
190: #define CSLEN 1
191:
192: /* HOME device: number of lines and columns */
193: #define N_LINES 2000
194: #define N_COLUMNS 2000
195:
196: #if !defined(FALSE)
197: # define FALSE 0
198: #endif
199:
200: #if !defined(TRUE)
201: # define TRUE 1
202: #endif
203:
204: #define DISABLE 0
205: #define ENABLE 1
206:
207: /* parameters for set_io() */
208: #define UNIX 0
209: #define MUMPS 1
210:
211: #include "merr.h"
212:
213: /* HOME = default device */
214: #define HOME 0
215: /* number of devices/units */
216: #define MAXDEV 256
217: #define MAXSEQ 99 /* last sequential I/O channel */
218: #define FIRSTSCK 100 /* first socket I/O channel */
219: #define SCKCNT 155
220: #define MAXSCK SCKCNT-1
221:
222: /* if tab_clear TBC (CSI 3g) and tab_set HTS (ESC H) are not processed */
223: /* by the 'HOME' device, define the symbol PROC_TAB to emulate them */
224: /* #define PROC_TAB #otherwise make it comment !!! */
225: #define PROC_TAB
226:
227: /* ASCII control character mnemonics */
228: #define NUL 0
229: #define SOH 1
230: #define STX 2
231: #define ETX 3
232: #define EOT 4
233: #define ENQ 5
234: #define ACK 6
235: #define BEL 7
236: #define BS 8
237: #if defined(TAB)
238: # undef TAB
239: #endif
240: #define TAB 9
241: #define LF 10
242: #define VT 11
243: #define FF 12
244: #define CR 13
245: #define SO 14
246: #define SI 15
247: #define DLE 16
248: #define DC1 17
249: #define DC2 18
250: #define DC3 19
251: #define DC4 20
252: #define NAK 21
253: #define SYN 22
254: #define ETB 23
255: #define CAN 24
256: #define EM 25
257: #define SUB 26
258: #if defined(ESC)
259: # undef ESC
260: #endif
261: #define ESC 27
262: #define FS 28
263: #define GS 29
264: #define RS 30
265: #define US 31
266: #define SP 32
267: #define DEL 127
268:
269: /* function select in expr evaluator */
270: #define STRING 0
271: #define NAME 1
272: #define LABEL 2
273: #define OFFSET 3
274: #define ARGIND 4
275:
276: /* function select in global/local/ssv variables management */
277: /* even numbers require 'read/write' access, odd numbers 'read' access */
278: #define set_sym 0
279: #define kill_sym 2
280: #define kill_all 4
281: #define killexcl 6
1.10 snw 282: #define new_sym 8
1.1 snw 283: #define new_all 10
284: #define newexcl 12
285: #define killone 14
286: #define merge_sym 16
287: #define lock_inc 24
288: #define lock_dec 26
289: #define lock_old 28
290:
1.10 snw 291: #define get_sym 1
1.11 ! snw 292: #if !defined(__OS2--)
! 293: # define dat 3
! 294: #else
! 295: const int dat = 3;
! 296: #endif
! 297:
1.10 snw 298: #define fra_order 5
299: #define fra_query 7
1.1 snw 300: #define bigquery 9
1.10 snw 301: #define getinc 11
1.1 snw 302: #define getnext 13
303: #define m_alias 15
1.10 snw 304: #define zdata 17
1.1 snw 305:
306: /* sets 8th bit in A */
307: #define SETBIT(A) ((A)|0200)
308: /* needed if byte data are to be interpreted as unsigned integer */
309:
310: #define UNSIGN(A) ((A)&0377)
311:
312: /* Fail if pointer null */
313: extern void m_fatal(char *s);
314: #define NULLPTRCHK(p,s) if (p == NULL) m_fatal(s)
315:
316: /* device control for terminal I/O */
317:
318: #define ECHOON (~DSW&BIT0)
319: #define DELMODE (DSW&BIT2)
320: #define ESCSEQPROC (DSW&BIT6)
321: #define CONVUPPER (DSW&BIT14)
322: #define DELEMPTY (DSW&BIT19)
323: #define NOCTRLS (DSW&BIT20)
324: #define CTRLOPROC (DSW&BIT21)
325: #define NOTYPEAHEAD (DSW&BIT25)
326:
327: #define BIT0 1
328: #define BIT1 2
329: #define BIT2 4
330: #define BIT3 8
331: #define BIT4 16
332: #define BIT5 32
333: #define BIT6 64
334: #define BIT7 128
335: #define BIT8 256
336: #define BIT9 512
337: #define BIT10 1024
338: #define BIT11 2048
339: #define BIT12 4096
340: #define BIT13 8192
341: #define BIT14 16384
342: #define BIT15 32768
343: #define BIT16 65536
344: #define BIT17 131072
345: #define BIT18 262144
346: #define BIT19 524288
347: #define BIT20 1048576
348: #define BIT21 2097152
349: #define BIT22 4194304
350: #define BIT23 8388608
351: #define BIT24 16777216
352: #define BIT25 33554432
353: #define BIT26 67108864
354: #define BIT27 134217728
355: #define BIT28 268435456
356: #define BIT29 536870912
357: #define BIT30 1073741824
358: #define BIT31 2147483648
359:
360: /* functions from mumps.c */
361: void unnew (void);
362:
363: #include "sighnd.h"
364:
365: /* functions from expr.c */
366: void expr (short extyp);
1.2 snw 367: void zsyntax (char *a);
368: void zkey (char *a, long type);
1.1 snw 369: short is_horolog(char *s);
370:
371: /* functions from ssvn.c */
372: void ssvn (short action, char *key, char *data);
373:
374: /* functions from ssvn_character.c */
375: void ssvn_character(short action, char *key, char *data);
376:
377: /* functions from ssvn_device.c */
378: void ssvn_device(short action, char *key, char *data);
379:
380: /* functions from ssvn_display.c */
381: void ssvn_display_update(void);
382: void ssvn_display(short action, char *key, char *data);
383:
384: /* functions from ssvn_event.c */
385: void ssvn_event(short action, char *key, char *data);
386:
387: /* functions from ssvn_global.c */
388: void ssvn_global(short action, char *key, char *data);
389:
390: /* functions from ssvn_job.c */
391: void ssvn_job_add_device(int channel, char *device);
392: void ssvn_job_remove_device(int channel);
393: void ssvn_job_update(void);
394: void ssvn_job(short action, char *key, char *data);
395: void frm_process_alias (char *key);
396:
397: /* functions from ssvn_library.c */
398: void ssvn_library(short action, char *key, char *data);
399: void ssvn_library_update(void);
400:
401: /* functions from ssvn_object.c */
402: void ssvn_object(short action, char *key, char *data);
403:
404: /* functions from ssvn_lock.c */
405: void ssvn_lock_add(char *key, pid_t owner_job, int count);
406: void ssvn_lock_remove(char *key);
407: void ssvn_lock(short action, char *key, char *data);
408:
409: /* functions from ssvn_routine.c */
410: void ssvn_routine(short action, char *key, char *data);
411: void ssvn_routine_update(void);
412:
413: /* functions from ssvn_system.c */
414: void ssvn_system(short action, char *key, char *data);
415: void ssvn_system_update(void);
416: /* functions from ssvn_window.c */
417: void ssvn_window(short action, char *key, char *data);
418:
419: /* functions from ssvn_z.c */
420: void ssvn_z(short action, char *key, char *data);
421:
422: /* functions from ssvn_zos.c */
423: void ssvn_zos(short action, char *key, char *data);
424:
425: /* functions from ssvn_zfreem.c */
426: void ssvn_zfreem(short action, char *key, char *data);
427:
428: /* functions from ssvn_zprocess.c */
429: void ssvn_zprocess(short action, char *key, char *data);
430:
431: /* functions from ssvn_routine.c */
432: void ssvn_routine_date(void);
433:
434: #include "ssvn_zrpi.h"
435:
436: /* functions from symtab_dispatch.c */
437: void symtab (short action, char *key, char *data);
1.2 snw 438:
439: /* functions from symtab_bltin.c */
440: short int collate (char *s, char *t);
441: short int numeric (char *str);
442: short int comp (char *s, char *t);
443: void intstr (char *str, short integ);
444: void lintstr (char * str, long integ);
445: void udfsvn (short action, char *key, char *data);
446: long getpmore (void);
447: long getumore (void);
448: long getrmore (void);
449: short int getnewmore (void);
1.1 snw 450:
451: /* functions from init.c */
452: void reset_terminal(void);
453:
454: /* functions from symtab_bltin.c */
1.2 snw 455: void symtab_init (void);
1.1 snw 456: short symtab_get_sem(void);
457: void symtab_release_sem(void);
458: void symtab_shm (short action, char *key, char *data);
459: void symtab_bltin (short action, char *key, char *data);
460:
461: /* functions from global_dispatch.c */
462: void global_set_engine(char ns, char *engine);
463: void global (short action, char *key, char *data);
464: void close_all_globals ();
465:
466: /* functions from global_bltin.c */
467: void global_bltin (short action, char *key, char *data);
468: void gbl_dump_stat (void);
469:
470: /* functions from operator.c */
1.2 snw 471: short int pattern (char *a, char *b);
472: void pminmax (char *str, int *min, int *max);
473: void add (char *a, char *b);
474: void mul (char *a, char *b);
475: void mdiv (char *uu, char *v, short typ);
476: void power (char *a, char *b);
477: void g_sqrt (char *a);
478: void root (char *a, long n);
479: int numlit (char *str);
480: long intexpr (char *str);
481: short int tvexpr (char *str);
482: void m_op (char *a, char *b, short op);
1.3 snw 483: void mround (char *a, int digits);
1.1 snw 484:
485: /* functions from service.c */
1.2 snw 486: long int find (char *string, char *pattern);
487: short int kill_ok (char *exceptions, char *);
488: void write_f (char *intext);
489: void writeHOME (char *text);
490: void m_output (char *text);
491: void write_m (char *text);
1.1 snw 492: void write_t (short int col);
1.2 snw 493: void ontimo (void);
1.1 snw 494: void read_m (char *stuff, long read_timeout, short read_timeoutms, short length);
1.2 snw 495: int rdchk0 (int *data);
496: int locking (int fd, int action, long count);
1.1 snw 497: void set_io (short action);
498: void set_break (short break_char);
499: void set_zbreak (short quit_char);
500: void lock (char *lockarg, long time_out, char type);
501:
502: /* functions from routine.c */
503: #include "routine.h"
1.2 snw 504: void lineref (char **addr);
505: void zi (char *line, char *position);
1.1 snw 506:
507: /* functions from strings.c */
508: long int stlen (const char *source);
509: long int stnlen (const char *source, size_t siz);
510: long int stcpy (char *dest, const char *source);
511: long int stncpy (char *dest, const char *source, size_t siz);
512: void stcpy0 (char *dest, const char *source, long length);
513: void stcpy1 (char *dest, const char *source, long length);
514: short int stcat (char *dest, const char *source);
515: long int stncat (char *dest, const char *source, size_t siz);
516: short int stcmp (char *str1, char *str2);
517: char *trim (char *s);
518: void stcnv_m2c (char *mstr);
519: void stncnv_m2c(char *mstr, size_t siz);
520: void stcnv_c2m (char *cstr);
521: void stncnv_c2m(char *cstr, size_t siz);
522: size_t key_to_name (char *buf, const char *key, size_t count);
523: size_t name_to_key (char *buf, const char *name, size_t count);
524: void create_var_key (char *buf, int subct, char *nam, ...);
525: void trim_decimal (char *s);
526: void uuid_v4 (char *buf);
527:
528: short is_standard(void);
529: int rtn_dialect(void);
530:
531: /* CRT screen */
532: struct vtstyp {
533: unsigned char screenx[N_LINES + 1][N_COLUMNS]; /* characters */
534: unsigned char screena[N_LINES + 1][N_COLUMNS]; /* attributes */
535: #ifdef COLOR
536: unsigned char screenc[N_LINES + 1][N_COLUMNS]; /* colors */
537: #endif /* COLOR */
538: char sclines[N_LINES + 1]; /* lines translation table */
539: char rollflag; /* Roll or Page mode */
540: char lin24; /* 24 lines or 25 lines mode */
541: char savarg;
542: char tabs[N_COLUMNS];
543: unsigned char Xpos;
544: unsigned char Ypos;
545: unsigned char sc_up;
546: unsigned int sc_lo; /* jpw */
547: unsigned char csx[CSLEN];
548: unsigned char csy[CSLEN];
549: short cssgr[CSLEN]; /* save SGR flag */
550: short cscol[CSLEN]; /* save SGR flag */
551: short cs;
552: unsigned char att;
553: #ifdef COLOR
554: unsigned char col; /* color byte */
555: #endif /* COLOR */
556: #ifdef SCO
557: unsigned char bw; /* black_on_white flag */
558: #endif /* SCO */
559: };
560:
561: /* functions from views.c */
1.2 snw 562: void view_com (void);
563: void view_fun (int f, char *a);
564: short int newpsize (long size);
565: short int newusize (long size);
566: short int newrsize (long size, long nbrbuf);
567: void zreplace (char *a, char *b, char *c);
568: short int tstglvn (char *a);
569: void zname (char *a, char *b);
570: short int znamenumeric (char *str);
571: void procv22 (char *key);
572: void v25 (char *a, int i);
573: void m_tolower (char *str);
1.1 snw 574: void part_ref (struct vtstyp *scr, short from, short to);
575:
576: #define D_FREEM 0
577: #define D_M77 1
578: #define D_M84 2
579: #define D_M90 3
580: #define D_M95 4
581: #define D_MDS 5
582: #define D_M5 6
583:
584: /* per-routine flags */
585: typedef struct rtn_flags {
586: short standard;
587: short dialect;
588: } rtn_flags;
589:
590:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>