Annotation of freem/src/cmd_read.c, revision 1.3

1.1       snw         1: /*
1.3     ! snw         2:  *   $Id$
1.1       snw         3:  *    Implementation of the READ command
                      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.3     ! snw        26:  *   $Log$
        !            27:  *
        !            28:  * SPDX-FileCopyrightText:  (C) 2025 Coherent Logic Development LLC
        !            29:  * SPDX-License-Identifier: AGPL-3.0-or-later 
1.1       snw        30:  **/
                     31: 
                     32: #include <string.h>
                     33: #include <stdlib.h>
                     34: #include "mpsdef.h"
                     35: #include "mcommand.h"
                     36: #if !defined(MSDOS)
                     37: # include "io_socket.h"
                     38: #endif
                     39: 
                     40: MRESULT cmd_read(MACTION *ra)
                     41: {
                     42:     register int i;
                     43:     register char ch;
                     44:     char vn[255];
                     45:     char an[255];
                     46:     
                     47:     if (io != HOME && devopen[io] != 'r' && devopen[io] != '+' && io < FIRSTSCK) {
                     48:         return NOREAD;
                     49:     }
                     50: 
                     51: read_command:
                     52: 
                     53:     switch (*codptr)
                     54:     {
                     55:         case '!':
                     56:             if (crlf[io]) {
                     57:                 write_m ("\012\201");
                     58:             }
                     59:             else {
                     60:                 write_m ("\012\015\201");
                     61:             }
                     62:                     
                     63:             if (*++codptr == '!' || *codptr == '#' || *codptr == '?') goto read_command;
                     64: 
                     65:             goto cont_read;
                     66: 
                     67:         case '#':
                     68:             write_m ("\015\014\201");
                     69: 
                     70:             if (*++codptr == '!' || *codptr == '#' || *codptr == '?') goto read_command;
                     71:                     
                     72:             goto cont_read;
                     73:                 
                     74:         case '?':
                     75:             codptr++;
                     76:                     
                     77:             expr (STRING);
                     78:                     
                     79:             if (merr ()) return merr ();
                     80:                     
                     81:             write_t ((short) intexpr (argptr));
                     82:                     
                     83:             goto cont_read;
                     84:                 
                     85:         case '/':
                     86:             codptr++;
                     87:                     
                     88:             expr (NAME);
                     89:             if (merr ()) return merr ();
                     90: 
                     91:             write_f (varnam);
                     92:                     
                     93:             codptr++;
                     94:                     
                     95:             goto cont_read;
                     96:                 
                     97:         case '"':
                     98:             i = 0;
                     99:                     
                    100:             for (;;) {
                    101:                         
                    102:                 while ((ch = *++codptr) > '"') argptr[i++] = ch;
                    103:                         
                    104:                 /* EOL < "any ASCII character" */
                    105:                 if (ch == '"' && (ch = *++codptr) != '"') {
                    106:                     argptr[i] = EOL;
                    107:                     write_m (argptr);
                    108: 
                    109:                     goto cont_read;
                    110:                 }
                    111: 
                    112:                 if ((argptr[i++] = ch) == EOL) {
                    113:                     return QUOTER;
                    114:                 }
                    115:             }
                    116:     }
                    117: 
                    118:     i = InFieldLen;     /* no length limit */
                    119:     InFieldLen = 255;       /* Not necessarily tied to STRLEN */
                    120: 
                    121:     if (*codptr == '*') {
                    122:         codptr++;
                    123:         i = 0;
                    124:     }           /* single char read */
                    125:             
                    126:     if (*codptr == '$') {
                    127:         return INVREF;
                    128:     }
                    129: 
                    130:     expr (NAME);
                    131:             
                    132:     if (merr ()) return merr ();
                    133:             
                    134:     stcpy (vn, varnam);
                    135:     codptr++;           /* lvn */
                    136: 
                    137:     if (i != 0 && *codptr == '#') {           /* length limit */
                    138:         codptr++;
                    139:             
                    140:         expr (STRING);
                    141:             
                    142:         if ((i = intexpr (argptr)) <= 0) return ARGER;
                    143:         if (merr ()) return merr ();
                    144:     }
                    145: 
                    146:     frm_timeout = (-1L);
                    147:     timeoutms = 0;      /* no timeout */
                    148: 
                    149:     if (*codptr == ':')
                    150:     {           /* timeout */
                    151:         int i, ch;
                    152: 
                    153:         codptr++;
                    154: 
                    155:         expr (STRING);
                    156:         numlit (argptr);
                    157:                 
                    158:         if (merr ()) return merr ();
                    159:                 
                    160:         frm_timeout = 0;
                    161:         timeoutms = 0;
                    162:                 
                    163:         if (argptr[0] != '-') {
                    164:                     
                    165:             i = 0;
                    166: 
                    167:             for (;;) { /* get integer and fractional part */ 
                    168:                         
                    169:                 if ((ch = argptr[i++]) == EOL) break;
                    170: 
                    171:                 if (ch == '.') {
                    172:                         
                    173:                     timeoutms = (argptr[i++] - '0') * 100;
                    174:                         
                    175:                     if ((ch = argptr[i++]) != EOL) {                        
                    176:                         timeoutms += (ch - '0') * 10;
                    177:                         
                    178:                         if ((ch = argptr[i]) != EOL) {
                    179:                             timeoutms += (ch - '0');
                    180:                         }
                    181: 
                    182:                     }
                    183:                     break;
                    184:                 }
                    185:                 frm_timeout = frm_timeout * 10 + ch - '0';
                    186:             }
                    187:         }
                    188:     } /* if (*codptr == ':') */
                    189: 
                    190: #if 0
                    191:     set_io (UNIX);
                    192:     printf ("READ: io = %d timeout = %d timeoutms = %d count = %d\n", io, frm_timeout, timeoutms, i);
                    193:     set_io (MUMPS);
                    194: #endif            
                    195: 
                    196:     if (io < FIRSTSCK) {
                    197:         /* $IO is not a socket device */
                    198:         read_m (argptr, frm_timeout, timeoutms, i);
                    199:     }
                    200:     else {
                    201:         /* $IO _is_ a socket device */
                    202:         msck_read (io, argptr, frm_timeout, timeoutms, i);
                    203:     }
                    204: 
                    205:     if (vn[0] != '^') {
                    206:         stcpy (an, argptr);
                    207:         symtab (set_sym, vn, an);
                    208:     }
                    209:     else {
                    210:         stcpy (an, argptr);
                    211:         if (vn[1] == '$') {
                    212:             ssvn (set_sym, vn, an);
                    213:         }
                    214:         else {
                    215:             global (set_sym, vn, an);
                    216:         }
                    217:     }
                    218: 
                    219:     if (merr () != OK) {
                    220:         stcpy (varerr, vn);
                    221:         return merr ();
                    222:     }
                    223: 
                    224: cont_read:
                    225: 
                    226:     *ra = RA_CONTINUE;
                    227:     return OK;
                    228: }

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