Annotation of freem/src/cmd_const.c, revision 1.1.1.1

1.1       snw         1: /*
                      2:  *                            *
                      3:  *                           * *
                      4:  *                          *   *
                      5:  *                     ***************
                      6:  *                      * *       * *
                      7:  *                       *  MUMPS  *
                      8:  *                      * *       * *
                      9:  *                     ***************
                     10:  *                          *   *
                     11:  *                           * *
                     12:  *                            *
                     13:  *
                     14:  *   cmd_const.c
                     15:  *    Implementation of the CONST 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: #include "consttbl.h"
                     45: 
                     46: MRESULT cmd_const(MACTION *ra)
                     47: {
                     48:     char an[255];
                     49:     char vn[255];
                     50:     register char ch;
                     51:     
                     52:     if (rtn_dialect () != D_FREEM) {
                     53:         return NOSTAND;
                     54:     }
                     55:     
                     56:     /* argumentless is not supported */
                     57:     if (((ch = *codptr) == SP) || ch == EOL) {
                     58:         return ARGLIST;
                     59:     }
                     60:     
                     61:     for (;;) {
                     62:         
                     63:         /* grab an mname */
                     64:         expr (NAME);
                     65:         if (merr ()) return merr();
                     66:         
                     67:         stcpy (vn, varnam);
                     68:         
                     69:         /* CONSTs cannot be globals or SSVNs */
                     70:         if (vn[0] == '^') {
                     71:             return GLOBER;
                     72:         }
                     73:         
                     74:         /* move to next position */
                     75:         codptr++;             
                     76:         
                     77:         /* must initialize CONSTs */
                     78:         if (*codptr != '=') {              
                     79:             return ASSIGNER;
                     80:         }
                     81:         
                     82:         /* move past = sign */
                     83:         codptr++;
                     84:         
                     85:         /* grab initialization value */
                     86:         expr (STRING);         
                     87:         if (merr ()) return merr();
                     88:         
                     89:         /* at this point, the constant name is in vn
                     90:            and the initializer in argptr */
                     91:         if (const_is_defined (vn)) {
                     92:             return CREDEF;
                     93:         }
                     94:         
                     95:         stcpy (an, argptr);
                     96:         symtab (set_sym, vn, an);
                     97:         const_define (vn, an);         
                     98:        
                     99:         /* TODO: call into const-init code */
                    100:         
                    101:         if ((ch = *(codptr + 1)) == EOL || ch == SP) {
                    102:             codptr++;
                    103:             break;
                    104:         }
                    105:         else if (*codptr == ',') {
                    106:             codptr++;
                    107:         }
                    108:         else {
                    109:             return CMMND;
                    110:         }
                    111:         
                    112:     }
                    113: 
                    114:     *ra = RA_CONTINUE;
                    115:     return OK;
                    116: }

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