File: extlib.c

package info (click to toggle)
regina 2.2-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 3,332 kB
  • ctags: 4,775
  • sloc: ansic: 38,518; sh: 2,552; lex: 1,878; yacc: 1,028; makefile: 771
file content (112 lines) | stat: -rw-r--r-- 3,029 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
#ifndef lint
static char *RCSid = "$Id: extlib.c,v 1.2 2001/01/25 22:16:44 mark Exp $";
#endif

/*
 *  The Regina Rexx Interpreter
 *  Copyright (C) 1993-1994  Anders Christensen <anders@pvv.unit.no>
 *
 *  This library is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU Library General Public
 *  License as published by the Free Software Foundation; either
 *  version 2 of the License, or (at your option) any later version.
 *
 *  This library is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 *  Library General Public License for more details.
 *
 *  You should have received a copy of the GNU Library General Public
 *  License along with this library; if not, write to the Free
 *  Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */

#include "rexx.h"

struct extlib_funcbox {
   struct extlib_funcbox *next, *prev ;
   streng *name ;
   int type ;
   int hash1 ;
};

#define EXTFUNCS_COUNT (sizeof(((tsd_t *)0)->extfuncs) /   \
                        sizeof(((tsd_t *)0)->extfuncs[0]))

static struct extlib_funcbox *findfunc( const tsd_t *TSD, const streng *name, int *hash,
                                        int *hashbox )
{
   struct extlib_funcbox *fptr=NULL ;
   int lhashbox, lhash ;

   *hash = lhash = hashvalue( name->value, name->len ) ;
   *hashbox = lhashbox = lhash % EXTFUNCS_COUNT ;
   for (fptr=TSD->extfuncs[lhashbox]; fptr; fptr=fptr->prev)
      if (fptr->hash1 == lhash)
         if (!Str_cmp(name, fptr->name))
            return fptr ;

   return NULL ;
}

int delfunc( tsd_t *TSD, const streng *name )
{
   struct extlib_funcbox *old=NULL ;
   int hash, hashbox ;

   old = findfunc( TSD, name, &hash, &hashbox ) ;
   if (!old)
      return 1 ;

   Free_stringTSD( old->name ) ;
   if (old==TSD->extfuncs[hashbox])
      TSD->extfuncs[hashbox] = old->prev ;
   else
      old->next->prev = old->prev ;

   if (old->prev)
      old->prev->next = old->next ;

   FreeTSD( old ) ;
   return 0 ;
}

/* addfunc returns 1 on success, 0 if already defined, -1 if memory is short.
 * The argument name is used for further operation on success only.
 */
int addfunc( tsd_t *TSD, streng *name, int type )
{
   struct extlib_funcbox *new=NULL ;
   int hashbox, hash ;

   if (findfunc( TSD, name, &hash, &hashbox ))
      return 0 ;

   new = MallocTSD( sizeof(struct extlib_funcbox )) ;
   if (!new)
      return -1 ;

   new->name = name ;
   new->type = type ;
   new->next = NULL ;
   new->hash1 = hash ;
   new->prev = TSD->extfuncs[hashbox] ;
   if (TSD->extfuncs[hashbox])
      TSD->extfuncs[hashbox]->next = new ;
   TSD->extfuncs[hashbox] = new ;

   return 1 ;
}

int external_func( const tsd_t *TSD, const streng *name )
{
   struct extlib_funcbox *ptr=NULL ;
   int hash, hashbox ;

   ptr = findfunc( TSD, name, &hash, &hashbox ) ;
   if (ptr)
      return 1 ;
   else
      return 0 ;
}