Annotation of freem/src/mcommand.h, revision 1.4
1.1 snw 1: /*
1.4 ! snw 2: * $Id: mcommand.h,v 1.3 2025/03/09 19:50:47 snw Exp $
1.1 snw 3: * Generic stuff for handling M commands
4: *
5: *
1.2 snw 6: * Author: Serena Willis <snw@coherent-logic.com>
1.1 snw 7: * Copyright (C) 1998 MUG Deutschland
1.3 snw 8: * Copyright (C) 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.4 ! snw 26: * $Log: mcommand.h,v $
! 27: * Revision 1.3 2025/03/09 19:50:47 snw
! 28: * Second phase of REUSE compliance and header reformat
! 29: *
1.3 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:
35: #if !defined(_FREEM_MCOMMAND_H)
36: # define _FREEM_MCOMMAND_H
37:
38: /* M tokens */
39: #define ABLOCK 0
40: #define ASSIGN 'a'
41: #define ASTART 1
42: #define ASTOP 2
43: #define AUNBLOCK 3
44: #define BREAK 'b'
45: #define CLOSE 'c'
46: #define CONST 24
47: #define DO 'd'
48: #define DO_BLOCK 4
49: #define ELSE 'e'
50: #define ESTART 5
51: #define ESTOP 6
52: #define ETRIGGER 7
53: #define FOR 'f' /* ALSO in symtab.c */
54: #define GOTO 'g'
55: #define HA 'h'
56: #define HALT 8
57: #define HANG 9
58: #define IF 'i'
59: #define JOB 'j'
60: #define KILL 'k'
61: #define KVALUE 10
62: #define KSUBSC 11
63: #define LOCK 'l'
64: #define MERGE 'm'
65: #define MAP 26
66: #define UNMAP 27
67: #define NEWCMD 'n'
68: #define OPEN 'o'
69: #define QUIT 'q'
70: #define READ 'r'
71: #define RLOAD 12
72: #define RSAVE 13
73: #define SET 's'
74: #define TCOMMIT 14
75: #define THEN 15
76: #define TROLLBACK 17
77: #define TSTART 18
78: #define USE 'u'
79: #define VIEW 'v'
80: #define WRITE 'w'
81: #define XECUTE 'x'
82: #define ZBREAK 'B'
83: #define ZGO 'G'
84: #define ZHALT 'H'
85: #define ZINSERT 'I'
86: #define ZJOB 'J'
87: #define ZLOAD 'L'
88: #define ZNAMESPACE 'N' // formerly ZNEW
89: #define ZPRINT 'P'
90: #define ZQUIT 'Q'
91: #define ZREMOVE 'R'
92: #define ZSAVE 'S'
93: #define ZTRAP 'T'
94: #define ZWRITE 'W'
95: #define WATCH 20
96: #define ASSERT_TKN 21
97: #define OO_USING 22
98: #define OO_WITH 23
99: #define PRIVATE SP
100: #define THROW 25
101:
102: #define RA_CONTINUE 0
103: #define RA_PRIVATE 1
104: #define RA_NEXTCMND 2
105: #define RA_SKIPLINE 3
106:
107: typedef short MRESULT;
108: typedef short MACTION;
109:
110: extern MRESULT mcmd_tokenize(MACTION *ra, char *tmp3, char *deferrable_codptr, char *deferrable_code, int *j);
111: extern MRESULT cmd_map(MACTION *ra);
112: extern MRESULT cmd_unmap(MACTION *ra);
113: extern MRESULT cmd_then(MACTION *ra, int *then_ctr);
114: extern MRESULT cmd_throw(MACTION *ra);
115: extern MRESULT cmd_const(MACTION *ra);
116: extern MRESULT cmd_kvalue(MACTION *ra);
117: extern MRESULT cmd_ksubscripts(MACTION *ra);
118: extern MRESULT cmd_tstart(MACTION *ra);
119: extern MRESULT cmd_tcommit(MACTION *ra);
120: extern MRESULT cmd_trollback(MACTION *ra);
121: /* TODO: cmd_set */
122: extern MRESULT cmd_if(MACTION *ra);
123: extern MRESULT cmd_using(MACTION *ra);
124: extern MRESULT cmd_with(MACTION *ra);
125: extern MRESULT cmd_write(MACTION *ra, int *i);
126: extern MRESULT cmd_else(MACTION *ra);
127: extern MRESULT cmd_read(MACTION *ra);
128:
129: #define MRESCHECK(ra) {\
130: if (merr () > OK) goto err; \
131: switch (ra) { \
132: case RA_CONTINUE: \
133: break; \
134: case RA_NEXTCMND: \
135: goto next_cmnd; \
136: case RA_PRIVATE: \
137: goto private; \
138: case RA_SKIPLINE: \
139: goto skip_line; \
140: } \
141: }
142:
143: #endif
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>