Annotation of freem/src/cmd_ksubscripts.c, revision 1.2

1.1       snw         1: /*
                      2:  *                            *
                      3:  *                           * *
                      4:  *                          *   *
                      5:  *                     ***************
                      6:  *                      * *       * *
                      7:  *                       *  MUMPS  *
                      8:  *                      * *       * *
                      9:  *                     ***************
                     10:  *                          *   *
                     11:  *                           * *
                     12:  *                            *
                     13:  *
                     14:  *   cmd_ksubscripts.c
                     15:  *    Implementation of the KSUBSCRIPTS command
                     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) 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: #include "consttbl.h"
                     45: 
                     46: MRESULT cmd_ksubscripts(MACTION *ra)
                     47: {
                     48:     register char ch;
                     49:     char vn[255];   
                     50:     char *old_value;
                     51:     
                     52:     if ((rtn_dialect () != D_FREEM) &&
                     53:         (rtn_dialect () != D_MDS)) {
                     54:         return NOSTAND;
                     55:     }
                     56:     
                     57:     if ((old_value = (char *) malloc (STRLEN * sizeof (char))) == NULL) {
                     58:         return MEMOV;
                     59:     }
                     60:     
                     61:     /* argumentless: KSUBSCRIPTS nukleurrr winturr */
                     62:     if (((ch = *codptr) == SP) || ch == EOL) {
                     63:         write_m ("Argumentless KSUBSCRIPTS not yet implemented.\201");
                     64:         
                     65:         free (old_value);
                     66:         
                     67:         *ra = RA_NEXTCMND;
                     68:         return OK;
                     69:     }
                     70:     
                     71:     
                     72:     if (ch != '(') { /* inclusive KSUBSCRIPTS */
                     73:         
                     74:         for (;;) {
                     75:             expr (NAME);                            /* try to interpret an mname */
                     76:             
                     77:             if (merr ()) return merr ();
                     78:             
                     79:             stcpy (vn, varnam);
                     80:             
                     81:             if (vn[0] != '^') {
                     82:                 symtab (get_sym, vn, old_value);
                     83:                 symtab (kill_sym, vn, NULL);
                     84:                 symtab (set_sym, vn, old_value);
                     85:             }
                     86:             else {
                     87:                 if (vn[1] == '$') {
                     88:                     ssvn (get_sym, vn, old_value);
                     89:                     ssvn (kill_sym, vn, NULL);
                     90:                     ssvn (set_sym, vn, old_value);
                     91:                 }
                     92:                 else {
                     93:                     global (get_sym, vn, old_value);
                     94:                     global (kill_sym, vn, NULL);
                     95:                     global (set_sym, vn, old_value);
                     96:                 }
                     97:             }
                     98:             
                     99:             free (old_value);
                    100:             
                    101:             if (merr ()) return merr ();
                    102:             
                    103:             if ((ch = *(codptr + 1)) == EOL) {
                    104:                 codptr++;
                    105:                 break;
                    106:             }
                    107:             else if (ch == ',') {
                    108:                 codptr += 2;
                    109:             }
                    110:             else {
                    111:                 return CMMND;
                    112:             }
                    113:         } 
                    114:         
                    115:     }
                    116:     else { /* exclusive KSUBSCRIPTS */
                    117:         
                    118:         write_m ("Exclusive KSUBSCRIPTS not yet implemented.\201");
                    119:         
                    120:         while ((ch = *(codptr++)) != SP && ch != EOL) ; /* skip to the end of the command */
                    121:         
                    122:     }
                    123:     
                    124:     *ra = RA_NEXTCMND;
                    125:     return OK;
                    126:                 
                    127: }

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