| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- /** BEGIN COPYRIGHT BLOCK
- * Copyright (C) 2001 Sun Microsystems, Inc. Used by permission.
- * Copyright (C) 2005 Red Hat, Inc.
- * All rights reserved.
- *
- * License: GPL (version 3 or any later version).
- * See LICENSE for details.
- * END COPYRIGHT BLOCK **/
- #ifdef HAVE_CONFIG_H
- # include <config.h>
- #endif
- #ifndef __symbols_h
- #define __symbols_h
- /*
- * Description (symbols.h)
- *
- * This file describes the interface to an ACL symbol table
- * implementation. The symbol table provides for storing symbols
- * keyed by name and type, creating a separate name space for
- * each symbol type.
- */
- #ifdef __PRIVATE_SYMBOLS
- #include "plhash.h"
- #include "base/crit.h"
- /*
- * Description (SymTable_t)
- *
- * This type describes a symbols table. It contains a pointer to
- * an NSPR hash table and a pointer to a monitor. The monitor is
- * needed even for read access to the symbol table because NSPR
- * modifies the list for a hash bucket when a name is looked up.
- */
- typedef struct SymTable_s SymTable_t;
- struct SymTable_s {
- CRITICAL stb_crit; /* monitor pointer */
- PLHashTable * stb_ht; /* hash table pointer */
- };
- /* Private functions defined in symbols.c */
- /*
- static PLHashEntry * symAllocEntry(void * pool, const void *unused);
- static void * symAllocTable(void * pool, PRSize size);
- static int symCmpName(const void * name1, const void * name2);
- static int symCmpValue(const void * value1, const void * value2);
- static PLHashNumber symHash(const void * symkey);
- static void symFreeEntry(void * pool, PLHashEntry * he, PRUintn flag);
- static void symFreeTable(void * pool, void * item);
- */
- #endif /* __PRIVATE_SYMBOLS */
- /*
- * Description (Symbol_t)
- *
- * This type describes a symbol table entry. A symbol is
- * identified by the combination of its name and type. This
- * structure is normally embedded in a structure for a particular
- * symbol type, which will contain the symbol "value" information
- * as well.
- */
- typedef struct Symbol_s Symbol_t;
- struct Symbol_s {
- const char * sym_name; /* pointer to symbol name string */
- int sym_type; /* symbol type */
- void *sym_data; /* symbol data storage */
- };
- /* Define error return codes */
- #define SYMERRNOMEM -1 /* insufficient dynamic memory */
- #define SYMERRDUPSYM -2 /* duplicate symbol name and type */
- #define SYMERRNOSYM -3 /* symbol name and type not found */
- /* Define return flags for symTableEnumerate() func() */
- #define SYMENUMSTOP 0x1 /* terminate enumeration */
- #define SYMENUMREMOVE 0x2 /* remove entry from symbol table */
- NSPR_BEGIN_EXTERN_C
- /* Public functions defined in symbols.c */
- extern int symTableAddSym(void * table, Symbol_t * newsym, void * symref);
- extern void symTableRemoveSym(void * table, Symbol_t * sym);
- extern void symTableDestroy(void * table, int flags);
- extern void symTableEnumerate(void * table, void * argp,
- int (*func)(Symbol_t * sym, void * parg));
- extern int symTableFindSym(void * table, const char * symname,
- int symtype, void **psymref);
- extern int symTableNew(void **ptable);
- NSPR_END_EXTERN_C
- #endif /* __symbols_h */
|