![]() ![]() | ![]() |
1.1 snw 1: /*
2: * *
3: * * *
4: * * *
5: * ***************
6: * * * * *
7: * * MUMPS *
8: * * * * *
9: * ***************
10: * * *
11: * * *
12: * *
13: *
14: * symtab_dispatch.c
15: * symbol table dispatch module
16: *
17: *
1.2 ! snw 18: * Author: Serena Willis <snw@coherent-logic.com>
1.1 snw 19: * Copyright (C) 1998 MUG Deutschland
20: * Copyright (C) 2020 Coherent Logic Development LLC
21: *
22: *
23: * This file is part of FreeM.
24: *
25: * FreeM is free software: you can redistribute it and/or modify
26: * it under the terms of the GNU Affero Public License as published by
27: * the Free Software Foundation, either version 3 of the License, or
28: * (at your option) any later version.
29: *
30: * FreeM is distributed in the hope that it will be useful,
31: * but WITHOUT ANY WARRANTY; without even the implied warranty of
32: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
33: * GNU Affero Public License for more details.
34: *
35: * You should have received a copy of the GNU Affero Public License
36: * along with FreeM. If not, see <https://www.gnu.org/licenses/>.
37: *
38: **/
39:
40: #include <string.h>
41: #include <ctype.h>
42: #include "mpsdef.h"
43: #include "mref.h"
44: #include "objects.h"
45:
46: void symtab (short action, char *key, char *data)
47: {
48: register int i;
49: register int j;
50: char ch;
51:
52: short res;
53: char obj_class[255];
54: char t_rou[255];
55: char t_cls[255];
56:
57: freem_ref_t rv;
58: freem_ref_t *r = &rv;
59:
60: mref_init (r, MREF_RT_LOCAL, "");
61: internal_to_mref (r, key);
62:
63: res = obj_is_object (r->name);
64:
65: if (res == TRUE) {
66: res = obj_get_attribute (r->name, "CLASS", obj_class);
67: stcpy (t_rou, rou_name);
68: stcnv_m2c (t_rou);
69: strcpy (t_cls, &(obj_class[1]));
70:
71: if ((strcmp (t_rou, t_cls) != 0) && (obj_is_field_private (key) == TRUE)) {
72: merr_raise (OBJFLDACCV);
73: return;
74: }
75:
76: if (r->subscript_count == 0 && action == kill_sym) {
77:
78: if (destructor_ct < 10) {
79: snprintf (destructors[destructor_ct++], 50, "DESTROY^%%SYSOOP(\"%s\",.%s)", t_cls, r->name);
80: }
81:
82: obj_destroy (key);
83:
84: }
85:
86: }
87:
88: if (action != fra_order && action != fra_query) {
89: for (i = 0; i < r->subscript_count; i++) {
90:
91: if (strlen (r->subscripts[i]) < 1) {
92: merr_raise (SBSCR);
93: return;
94: }
95:
96: }
97: }
98:
99: if (rtn_dialect () == D_M77) {
100:
101: for (i = 0; i < r->subscript_count; i++) {
102: for (j = 0; j < strlen (r->subscripts[i]); j++) {
103:
104: ch = r->subscripts[i][j];
105:
106: if (!isdigit (ch)) {
107: merr_raise (NOSTAND);
108: return;
109: }
110:
111: }
112: }
113:
114: }
115:
116: symtab_bltin (action, key, data);
117:
118: }