Annotation of freem/src/mpsdef0.h, revision 1.8

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

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>