Annotation of freem/src/cmd_map.c, revision 1.1
1.1 ! snw 1: /*
! 2: * *
! 3: * * *
! 4: * * *
! 5: * ***************
! 6: * * * * *
! 7: * * MUMPS *
! 8: * * * * *
! 9: * ***************
! 10: * * *
! 11: * * *
! 12: * *
! 13: *
! 14: * cmd_map.c
! 15: * Implementation of the MAP command
! 16: *
! 17: *
! 18: * Author: Serena Willis <jpw@coherent-logic.com>
! 19: * Copyright (C) 1998 MUG Deutschland
! 20: * Copyright (C) 2023 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 <stdlib.h>
! 42: #include "mpsdef.h"
! 43: #include "mcommand.h"
! 44:
! 45: MRESULT cmd_map(MACTION *ra)
! 46: {
! 47: char mapping_type;
! 48: char mapping_obj[256];
! 49: char mapping_ns[256];
! 50: char tmp_key[256];
! 51:
! 52: if (rtn_dialect () != D_FREEM) {
! 53: return NOSTAND;
! 54: }
! 55:
! 56: if (is_standard ()) {
! 57: return NOSTAND;
! 58: }
! 59:
! 60: expr (NAME);
! 61:
! 62: if (stcmp (varnam, "GLOBAL\201") == 0 || stcmp (varnam, "global\201") == 0) {
! 63: mapping_type = 'g';
! 64: }
! 65: else if (stcmp (varnam, "ROUTINE\201") == 0 || stcmp (varnam, "routine\201") == 0) {
! 66: mapping_type = 'r';
! 67: return ARGLIST;
! 68: }
! 69: else {
! 70: return ARGLIST;
! 71: }
! 72:
! 73: codptr += 2;
! 74:
! 75: expr (NAME);
! 76: if (merr ()) return merr ();
! 77:
! 78: stcpy (mapping_obj, varnam);
! 79: stcnv_m2c (mapping_obj);
! 80:
! 81: codptr++;
! 82:
! 83: if (*codptr != '=') {
! 84: return ASSIGNER;
! 85: }
! 86:
! 87: codptr++;
! 88:
! 89: expr (STRING);
! 90: if (merr ()) return merr ();
! 91:
! 92: stcpy (mapping_ns, argptr);
! 93:
! 94: snprintf (tmp_key, 255, "^$SYSTEM\202MAPPINGS\202GLOBAL\202%s\201", mapping_obj);
! 95: global (set_sym, tmp_key, mapping_ns);
! 96:
! 97: *ra = RA_CONTINUE;
! 98: return OK;
! 99:
! 100: }
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>