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

1.1       snw         1: /*
                      2:  *                            *
                      3:  *                           * *
                      4:  *                          *   *
                      5:  *                     ***************
                      6:  *                      * *       * *
                      7:  *                       *  MUMPS  *
                      8:  *                      * *       * *
                      9:  *                     ***************
                     10:  *                          *   *
                     11:  *                           * *
                     12:  *                            *
                     13:  *
                     14:  *   ssvn_object.c
                     15:  *    ^$OBJECT SSVN implementation
                     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: #include <stdlib.h>
                     40: #include <string.h>
                     41: #include <stdio.h>
                     42: #include <unistd.h>
                     43: 
                     44: #include "mref.h"
                     45: #include "objects.h"
                     46: #include "mpsdef.h"
                     47: 
                     48: void ssvn_object(short action, char *key, char *data)
                     49: {
                     50:     char t_key[STRLEN];
                     51:     char t_data[STRLEN];
                     52: 
                     53:     freem_ref_t *r;
                     54: 
                     55:     r = (freem_ref_t *) malloc (sizeof (freem_ref_t));
                     56:     NULLPTRCHK(r,"ssvn_object");
                     57: 
                     58:     mref_init (r, MREF_RT_SSV, "^$OBJECT");
                     59:     internal_to_mref (r, key);
                     60: 
                     61:     switch (action) {
                     62: 
                     63:         case fra_order:
                     64:         case fra_query:
                     65:         case dat:
                     66:         case bigquery:
                     67:         case get_sym:
                     68:             symtab (action, key, data);
                     69:             goto done;
                     70: 
                     71:         
                     72: 
                     73:         default:
                     74:             merr_raise (M29);
                     75:             goto done;
                     76:     }
                     77: 
                     78: done:
                     79:     free (r);
                     80: }

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