2001-02-23 17:55:21 +00:00
|
|
|
/*
|
Re-examined the problems of configuring a "minimal" library.
Synchronized the header files with the library code in order
to assure that all the various conditionals (LIBXML_xxxx_ENABLED)
were the same in both. Modified the API database content to more
accurately reflect the conditionals. Enhanced the generation
of that database. Although there was no substantial change to
any of the library code's logic, a large number of files were
modified to achieve the above, and the configuration script
was enhanced to do some automatic enabling of features (e.g.
--with-xinclude forces --with-xpath). Additionally, all the format
errors discovered by apibuild.py were corrected.
* configure.in: enhanced cross-checking of options
* doc/apibuild.py, doc/elfgcchack.xsl, doc/libxml2-refs.xml,
doc/libxml2-api.xml, gentest.py: changed the usage of the
<cond> element in module descriptions
* elfgcchack.h, testapi.c: regenerated with proper conditionals
* HTMLparser.c, SAX.c, globals.c, tree.c, xmlschemas.c, xpath.c,
testSAX.c: cleaned up conditionals
* include/libxml/[SAX.h, SAX2.h, debugXML.h, encoding.h, entities.h,
hash.h, parser.h, parserInternals.h, schemasInternals.h, tree.h,
valid.h, xlink.h, xmlIO.h, xmlautomata.h, xmlreader.h, xpath.h]:
synchronized the conditionals with the corresponding module code
* doc/examples/tree2.c, doc/examples/xpath1.c, doc/examples/xpath2.c:
added additional conditions required for compilation
* doc/*.html, doc/html/*.html: rebuilt the docs
2005-01-02 09:53:13 +00:00
|
|
|
* Summary: Chained hash tables
|
2012-09-11 13:26:36 +08:00
|
|
|
* Description: This module implements the hash table support used in
|
|
|
|
* various places in the library.
|
2001-02-23 17:55:21 +00:00
|
|
|
*
|
2003-11-18 20:56:51 +00:00
|
|
|
* Copy: See Copyright for the status of this software.
|
2001-02-23 17:55:21 +00:00
|
|
|
*
|
2003-11-18 20:56:51 +00:00
|
|
|
* Author: Bjorn Reese <bjorn.reese@systematic.dk>
|
2001-02-23 17:55:21 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __XML_HASH_H__
|
|
|
|
#define __XML_HASH_H__
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
2002-03-12 18:46:39 +00:00
|
|
|
* The hash table.
|
2001-02-23 17:55:21 +00:00
|
|
|
*/
|
|
|
|
typedef struct _xmlHashTable xmlHashTable;
|
|
|
|
typedef xmlHashTable *xmlHashTablePtr;
|
|
|
|
|
2003-11-20 11:59:09 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <libxml/xmlversion.h>
|
|
|
|
#include <libxml/parser.h>
|
2005-01-23 22:56:39 +00:00
|
|
|
#include <libxml/dict.h>
|
2003-11-20 11:59:09 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2004-12-01 14:35:10 +00:00
|
|
|
/*
|
|
|
|
* Recent version of gcc produce a warning when a function pointer is assigned
|
|
|
|
* to an object pointer, or vice versa. The following macro is a dirty hack
|
|
|
|
* to allow suppression of the warning. If your architecture has function
|
|
|
|
* pointers which are a different size than a void pointer, there may be some
|
|
|
|
* serious trouble within the library.
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* XML_CAST_FPTR:
|
|
|
|
* @fptr: pointer to a function
|
|
|
|
*
|
|
|
|
* Macro to do a casting from an object pointer to a
|
|
|
|
* function pointer without encountering a warning from
|
|
|
|
* gcc
|
|
|
|
*
|
2005-03-10 09:22:07 +00:00
|
|
|
* #define XML_CAST_FPTR(fptr) (*(void **)(&fptr))
|
|
|
|
* This macro violated ISO C aliasing rules (gcc4 on s390 broke)
|
|
|
|
* so it is disabled now
|
2004-12-01 14:35:10 +00:00
|
|
|
*/
|
2005-03-10 09:22:07 +00:00
|
|
|
|
|
|
|
#define XML_CAST_FPTR(fptr) fptr
|
|
|
|
|
2004-12-01 14:35:10 +00:00
|
|
|
|
2001-02-23 17:55:21 +00:00
|
|
|
/*
|
|
|
|
* function types:
|
|
|
|
*/
|
2002-01-22 18:15:52 +00:00
|
|
|
/**
|
|
|
|
* xmlHashDeallocator:
|
|
|
|
* @payload: the data in the hash
|
|
|
|
* @name: the name associated
|
|
|
|
*
|
2002-03-12 18:46:39 +00:00
|
|
|
* Callback to free data from a hash.
|
2002-01-22 18:15:52 +00:00
|
|
|
*/
|
2017-11-09 16:42:47 +01:00
|
|
|
typedef void (*xmlHashDeallocator)(void *payload, const xmlChar *name);
|
2002-01-22 18:15:52 +00:00
|
|
|
/**
|
|
|
|
* xmlHashCopier:
|
|
|
|
* @payload: the data in the hash
|
|
|
|
* @name: the name associated
|
|
|
|
*
|
2002-03-12 18:46:39 +00:00
|
|
|
* Callback to copy data from a hash.
|
2002-01-22 18:15:52 +00:00
|
|
|
*
|
2002-03-12 18:46:39 +00:00
|
|
|
* Returns a copy of the data or NULL in case of error.
|
2002-01-22 18:15:52 +00:00
|
|
|
*/
|
2017-11-09 16:42:47 +01:00
|
|
|
typedef void *(*xmlHashCopier)(void *payload, const xmlChar *name);
|
2002-01-22 18:15:52 +00:00
|
|
|
/**
|
|
|
|
* xmlHashScanner:
|
|
|
|
* @payload: the data in the hash
|
2019-09-30 17:04:54 +02:00
|
|
|
* @data: extra scanner data
|
2002-01-22 18:15:52 +00:00
|
|
|
* @name: the name associated
|
|
|
|
*
|
2002-03-12 18:46:39 +00:00
|
|
|
* Callback when scanning data in a hash with the simple scanner.
|
2002-01-22 18:15:52 +00:00
|
|
|
*/
|
2017-11-09 16:42:47 +01:00
|
|
|
typedef void (*xmlHashScanner)(void *payload, void *data, const xmlChar *name);
|
2002-01-22 18:15:52 +00:00
|
|
|
/**
|
|
|
|
* xmlHashScannerFull:
|
|
|
|
* @payload: the data in the hash
|
2019-09-30 17:04:54 +02:00
|
|
|
* @data: extra scanner data
|
2002-01-22 18:15:52 +00:00
|
|
|
* @name: the name associated
|
|
|
|
* @name2: the second name associated
|
|
|
|
* @name3: the third name associated
|
|
|
|
*
|
2002-03-12 18:46:39 +00:00
|
|
|
* Callback when scanning data in a hash with the full scanner.
|
2002-01-22 18:15:52 +00:00
|
|
|
*/
|
2001-07-22 03:54:15 +00:00
|
|
|
typedef void (*xmlHashScannerFull)(void *payload, void *data,
|
|
|
|
const xmlChar *name, const xmlChar *name2,
|
|
|
|
const xmlChar *name3);
|
2001-02-23 17:55:21 +00:00
|
|
|
|
|
|
|
/*
|
2002-03-12 18:46:39 +00:00
|
|
|
* Constructor and destructor.
|
2001-02-23 17:55:21 +00:00
|
|
|
*/
|
2003-08-25 09:05:12 +00:00
|
|
|
XMLPUBFUN xmlHashTablePtr XMLCALL
|
|
|
|
xmlHashCreate (int size);
|
2005-01-23 22:56:39 +00:00
|
|
|
XMLPUBFUN xmlHashTablePtr XMLCALL
|
|
|
|
xmlHashCreateDict(int size,
|
|
|
|
xmlDictPtr dict);
|
2012-09-11 13:26:36 +08:00
|
|
|
XMLPUBFUN void XMLCALL
|
2003-08-25 09:05:12 +00:00
|
|
|
xmlHashFree (xmlHashTablePtr table,
|
2001-02-23 17:55:21 +00:00
|
|
|
xmlHashDeallocator f);
|
2017-11-09 16:42:47 +01:00
|
|
|
XMLPUBFUN void XMLCALL
|
|
|
|
xmlHashDefaultDeallocator(void *entry,
|
|
|
|
const xmlChar *name);
|
2001-02-23 17:55:21 +00:00
|
|
|
|
|
|
|
/*
|
2002-03-12 18:46:39 +00:00
|
|
|
* Add a new entry to the hash table.
|
2001-02-23 17:55:21 +00:00
|
|
|
*/
|
2012-09-11 13:26:36 +08:00
|
|
|
XMLPUBFUN int XMLCALL
|
2003-08-25 09:05:12 +00:00
|
|
|
xmlHashAddEntry (xmlHashTablePtr table,
|
2001-02-23 17:55:21 +00:00
|
|
|
const xmlChar *name,
|
|
|
|
void *userdata);
|
2012-09-11 13:26:36 +08:00
|
|
|
XMLPUBFUN int XMLCALL
|
2003-08-25 09:05:12 +00:00
|
|
|
xmlHashUpdateEntry(xmlHashTablePtr table,
|
2001-02-23 17:55:21 +00:00
|
|
|
const xmlChar *name,
|
|
|
|
void *userdata,
|
|
|
|
xmlHashDeallocator f);
|
2012-09-11 13:26:36 +08:00
|
|
|
XMLPUBFUN int XMLCALL
|
2003-08-25 09:05:12 +00:00
|
|
|
xmlHashAddEntry2(xmlHashTablePtr table,
|
2001-02-23 17:55:21 +00:00
|
|
|
const xmlChar *name,
|
|
|
|
const xmlChar *name2,
|
|
|
|
void *userdata);
|
2012-09-11 13:26:36 +08:00
|
|
|
XMLPUBFUN int XMLCALL
|
2003-08-25 09:05:12 +00:00
|
|
|
xmlHashUpdateEntry2(xmlHashTablePtr table,
|
2001-02-23 17:55:21 +00:00
|
|
|
const xmlChar *name,
|
|
|
|
const xmlChar *name2,
|
|
|
|
void *userdata,
|
|
|
|
xmlHashDeallocator f);
|
2012-09-11 13:26:36 +08:00
|
|
|
XMLPUBFUN int XMLCALL
|
2003-08-25 09:05:12 +00:00
|
|
|
xmlHashAddEntry3(xmlHashTablePtr table,
|
2001-02-23 17:55:21 +00:00
|
|
|
const xmlChar *name,
|
|
|
|
const xmlChar *name2,
|
|
|
|
const xmlChar *name3,
|
|
|
|
void *userdata);
|
2012-09-11 13:26:36 +08:00
|
|
|
XMLPUBFUN int XMLCALL
|
2003-08-25 09:05:12 +00:00
|
|
|
xmlHashUpdateEntry3(xmlHashTablePtr table,
|
2001-02-23 17:55:21 +00:00
|
|
|
const xmlChar *name,
|
|
|
|
const xmlChar *name2,
|
|
|
|
const xmlChar *name3,
|
|
|
|
void *userdata,
|
|
|
|
xmlHashDeallocator f);
|
|
|
|
|
|
|
|
/*
|
2002-03-12 18:46:39 +00:00
|
|
|
* Remove an entry from the hash table.
|
2001-02-23 17:55:21 +00:00
|
|
|
*/
|
2012-09-11 13:26:36 +08:00
|
|
|
XMLPUBFUN int XMLCALL
|
2003-08-25 09:05:12 +00:00
|
|
|
xmlHashRemoveEntry(xmlHashTablePtr table, const xmlChar *name,
|
2001-02-23 17:55:21 +00:00
|
|
|
xmlHashDeallocator f);
|
2012-09-11 13:26:36 +08:00
|
|
|
XMLPUBFUN int XMLCALL
|
2003-08-25 09:05:12 +00:00
|
|
|
xmlHashRemoveEntry2(xmlHashTablePtr table, const xmlChar *name,
|
2001-02-23 17:55:21 +00:00
|
|
|
const xmlChar *name2, xmlHashDeallocator f);
|
2012-09-11 13:26:36 +08:00
|
|
|
XMLPUBFUN int XMLCALL
|
2003-08-25 09:05:12 +00:00
|
|
|
xmlHashRemoveEntry3(xmlHashTablePtr table, const xmlChar *name,
|
2001-02-23 17:55:21 +00:00
|
|
|
const xmlChar *name2, const xmlChar *name3,
|
|
|
|
xmlHashDeallocator f);
|
|
|
|
|
|
|
|
/*
|
2002-03-12 18:46:39 +00:00
|
|
|
* Retrieve the userdata.
|
2001-02-23 17:55:21 +00:00
|
|
|
*/
|
2012-09-11 13:26:36 +08:00
|
|
|
XMLPUBFUN void * XMLCALL
|
2003-08-25 09:05:12 +00:00
|
|
|
xmlHashLookup (xmlHashTablePtr table,
|
2001-02-23 17:55:21 +00:00
|
|
|
const xmlChar *name);
|
2012-09-11 13:26:36 +08:00
|
|
|
XMLPUBFUN void * XMLCALL
|
2003-08-25 09:05:12 +00:00
|
|
|
xmlHashLookup2 (xmlHashTablePtr table,
|
2001-02-23 17:55:21 +00:00
|
|
|
const xmlChar *name,
|
|
|
|
const xmlChar *name2);
|
2012-09-11 13:26:36 +08:00
|
|
|
XMLPUBFUN void * XMLCALL
|
2003-08-25 09:05:12 +00:00
|
|
|
xmlHashLookup3 (xmlHashTablePtr table,
|
2001-02-23 17:55:21 +00:00
|
|
|
const xmlChar *name,
|
|
|
|
const xmlChar *name2,
|
|
|
|
const xmlChar *name3);
|
2012-09-11 13:26:36 +08:00
|
|
|
XMLPUBFUN void * XMLCALL
|
2003-09-10 10:51:05 +00:00
|
|
|
xmlHashQLookup (xmlHashTablePtr table,
|
|
|
|
const xmlChar *name,
|
|
|
|
const xmlChar *prefix);
|
2012-09-11 13:26:36 +08:00
|
|
|
XMLPUBFUN void * XMLCALL
|
2003-09-10 10:51:05 +00:00
|
|
|
xmlHashQLookup2 (xmlHashTablePtr table,
|
|
|
|
const xmlChar *name,
|
|
|
|
const xmlChar *prefix,
|
|
|
|
const xmlChar *name2,
|
|
|
|
const xmlChar *prefix2);
|
2012-09-11 13:26:36 +08:00
|
|
|
XMLPUBFUN void * XMLCALL
|
2003-09-10 10:51:05 +00:00
|
|
|
xmlHashQLookup3 (xmlHashTablePtr table,
|
|
|
|
const xmlChar *name,
|
|
|
|
const xmlChar *prefix,
|
|
|
|
const xmlChar *name2,
|
|
|
|
const xmlChar *prefix2,
|
|
|
|
const xmlChar *name3,
|
|
|
|
const xmlChar *prefix3);
|
2001-02-23 17:55:21 +00:00
|
|
|
|
|
|
|
/*
|
2002-03-12 18:46:39 +00:00
|
|
|
* Helpers.
|
2001-02-23 17:55:21 +00:00
|
|
|
*/
|
2012-09-11 13:26:36 +08:00
|
|
|
XMLPUBFUN xmlHashTablePtr XMLCALL
|
2003-08-25 09:05:12 +00:00
|
|
|
xmlHashCopy (xmlHashTablePtr table,
|
2001-02-23 17:55:21 +00:00
|
|
|
xmlHashCopier f);
|
2012-09-11 13:26:36 +08:00
|
|
|
XMLPUBFUN int XMLCALL
|
2003-08-25 09:05:12 +00:00
|
|
|
xmlHashSize (xmlHashTablePtr table);
|
2012-09-11 13:26:36 +08:00
|
|
|
XMLPUBFUN void XMLCALL
|
2003-08-25 09:05:12 +00:00
|
|
|
xmlHashScan (xmlHashTablePtr table,
|
2001-02-23 17:55:21 +00:00
|
|
|
xmlHashScanner f,
|
|
|
|
void *data);
|
2012-09-11 13:26:36 +08:00
|
|
|
XMLPUBFUN void XMLCALL
|
2003-08-25 09:05:12 +00:00
|
|
|
xmlHashScan3 (xmlHashTablePtr table,
|
2001-02-23 17:55:21 +00:00
|
|
|
const xmlChar *name,
|
|
|
|
const xmlChar *name2,
|
|
|
|
const xmlChar *name3,
|
|
|
|
xmlHashScanner f,
|
|
|
|
void *data);
|
2012-09-11 13:26:36 +08:00
|
|
|
XMLPUBFUN void XMLCALL
|
2003-08-25 09:05:12 +00:00
|
|
|
xmlHashScanFull (xmlHashTablePtr table,
|
2001-07-22 03:54:15 +00:00
|
|
|
xmlHashScannerFull f,
|
|
|
|
void *data);
|
2012-09-11 13:26:36 +08:00
|
|
|
XMLPUBFUN void XMLCALL
|
2003-08-25 09:05:12 +00:00
|
|
|
xmlHashScanFull3(xmlHashTablePtr table,
|
2001-07-22 03:54:15 +00:00
|
|
|
const xmlChar *name,
|
|
|
|
const xmlChar *name2,
|
|
|
|
const xmlChar *name3,
|
|
|
|
xmlHashScannerFull f,
|
|
|
|
void *data);
|
2001-02-23 17:55:21 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* ! __XML_HASH_H__ */
|