2003-06-06 14:40:36 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| PHP Version 4 |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Copyright (c) 1997-2003 The PHP Group |
|
|
|
|
+----------------------------------------------------------------------+
|
2003-06-11 04:04:29 +08:00
|
|
|
| This source file is subject to version 3.0 of the PHP license, |
|
2003-06-06 14:40:36 +08:00
|
|
|
| that is bundled with this package in the file LICENSE, and is |
|
2003-06-11 04:04:29 +08:00
|
|
|
| available through the world-wide-web at the following url: |
|
|
|
|
| http://www.php.net/license/3_0.txt. |
|
2003-06-06 14:40:36 +08:00
|
|
|
| If you did not receive a copy of the PHP license and are unable to |
|
|
|
|
| obtain it through the world-wide-web, please send a note to |
|
|
|
|
| license@php.net so we can mail you a copy immediately. |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Authors: Christian Stocker <chregu@php.net> |
|
|
|
|
| Rob Richards <rrichards@php.net> |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
2003-06-06 01:06:52 +08:00
|
|
|
#ifndef PHP_XML_COMMON_H
|
2003-06-16 03:58:42 +08:00
|
|
|
#define PHP_XML_COMMON_H
|
2003-06-14 23:27:15 +08:00
|
|
|
|
2003-09-09 02:28:35 +08:00
|
|
|
typedef struct _dom_doc_props {
|
|
|
|
int formatoutput;
|
|
|
|
int validateonparse;
|
|
|
|
int resolveexternals;
|
|
|
|
int preservewhitespace;
|
|
|
|
int substituteentities;
|
|
|
|
int stricterror;
|
|
|
|
} dom_doc_props;
|
|
|
|
|
|
|
|
typedef dom_doc_props *dom_doc_propsptr;
|
|
|
|
|
2003-06-07 21:30:58 +08:00
|
|
|
typedef struct _dom_ref_obj {
|
|
|
|
void *ptr;
|
|
|
|
int refcount;
|
2003-09-09 02:28:35 +08:00
|
|
|
dom_doc_props *doc_props;
|
2003-06-07 21:30:58 +08:00
|
|
|
} dom_ref_obj;
|
|
|
|
|
2003-07-08 03:37:32 +08:00
|
|
|
typedef struct _node_ptr {
|
|
|
|
xmlNodePtr node;
|
|
|
|
int refcount;
|
|
|
|
void *_private;
|
|
|
|
} node_ptr;
|
|
|
|
|
2003-06-14 23:27:15 +08:00
|
|
|
typedef struct _node_object {
|
|
|
|
zend_object std;
|
2003-07-08 03:37:32 +08:00
|
|
|
node_ptr *node;
|
2003-06-16 03:58:42 +08:00
|
|
|
dom_ref_obj *document;
|
2003-06-14 23:27:15 +08:00
|
|
|
} node_object;
|
|
|
|
|
2003-06-06 01:06:52 +08:00
|
|
|
typedef struct _dom_object {
|
|
|
|
zend_object std;
|
2003-07-24 21:18:40 +08:00
|
|
|
void *ptr;
|
2003-06-07 21:30:58 +08:00
|
|
|
dom_ref_obj *document;
|
2003-06-06 01:06:52 +08:00
|
|
|
HashTable *prop_handler;
|
2003-06-10 04:20:55 +08:00
|
|
|
zend_object_handle handle;
|
2003-06-06 01:06:52 +08:00
|
|
|
} dom_object;
|
|
|
|
|
|
|
|
#ifdef PHP_WIN32
|
|
|
|
#ifdef PHPAPI
|
|
|
|
#undef PHPAPI
|
|
|
|
#endif
|
|
|
|
#ifdef DOM_EXPORTS
|
|
|
|
#define PHPAPI __declspec(dllexport)
|
|
|
|
#else
|
|
|
|
#define PHPAPI __declspec(dllimport)
|
|
|
|
#endif /* DOM_EXPORTS */
|
|
|
|
#endif /* PHP_WIN32 */
|
|
|
|
|
|
|
|
#define PHP_DOM_EXPORT(__type) PHPAPI __type
|
|
|
|
|
2003-06-10 04:20:55 +08:00
|
|
|
PHP_DOM_EXPORT(zval *) php_dom_create_object(xmlNodePtr obj, int *found, zval *in, zval* return_value, dom_object *domobj TSRMLS_DC);
|
2003-07-22 21:50:00 +08:00
|
|
|
PHP_DOM_EXPORT(zval *) dom_read_property(zval *object, zval *member, zend_bool silent TSRMLS_DC);
|
2003-06-06 01:06:52 +08:00
|
|
|
PHP_DOM_EXPORT(void) dom_write_property(zval *object, zval *member, zval *value TSRMLS_DC);
|
|
|
|
|
|
|
|
#define DOM_XMLNS_NAMESPACE \
|
|
|
|
(const xmlChar *) "http://www.w3.org/2000/xmlns/"
|
|
|
|
|
2003-06-20 22:08:56 +08:00
|
|
|
#define NODE_GET_OBJ(__ptr, __id, __prtype, __intern) { \
|
|
|
|
__intern = (node_object *)zend_object_store_get_object(__id TSRMLS_CC); \
|
2003-07-08 03:37:32 +08:00
|
|
|
if (__intern->ptr == NULL || !(__ptr = (__prtype)__intern->ptr->node)) { \
|
2003-06-10 04:20:55 +08:00
|
|
|
php_error(E_WARNING, "Couldn't fetch %s", __intern->std.ce->name);\
|
2003-06-06 01:06:52 +08:00
|
|
|
RETURN_NULL();\
|
|
|
|
} \
|
|
|
|
}
|
|
|
|
|
2003-06-14 23:27:15 +08:00
|
|
|
#define DOC_GET_OBJ(__ptr, __id, __prtype, __intern) { \
|
|
|
|
__intern = (node_object *)zend_object_store_get_object(__id TSRMLS_CC); \
|
|
|
|
if (__intern->document != NULL) { \
|
|
|
|
if (!(__ptr = (__prtype)__intern->document->ptr)) { \
|
|
|
|
php_error(E_WARNING, "Couldn't fetch %s", __intern->std.ce->name);\
|
|
|
|
RETURN_NULL();\
|
|
|
|
} \
|
|
|
|
} \
|
|
|
|
}
|
|
|
|
|
2003-06-20 22:08:56 +08:00
|
|
|
#define DOM_RET_OBJ(zval, obj, ret, domobject) \
|
2003-06-10 04:20:55 +08:00
|
|
|
if (NULL == (zval = php_dom_create_object(obj, ret, zval, return_value, domobject TSRMLS_CC))) { \
|
2003-08-24 18:24:22 +08:00
|
|
|
php_error(E_WARNING, "Cannot create required DOM object"); \
|
2003-06-06 01:06:52 +08:00
|
|
|
RETURN_FALSE; \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define DOM_GET_THIS(zval) \
|
|
|
|
if (NULL == (zval = getThis())) { \
|
2003-08-24 18:24:22 +08:00
|
|
|
php_error(E_WARNING, "Underlying object missing"); \
|
2003-06-06 01:06:52 +08:00
|
|
|
RETURN_FALSE; \
|
|
|
|
}
|
|
|
|
|
2003-06-10 04:20:55 +08:00
|
|
|
#define DOM_GET_THIS_OBJ(__ptr, __id, __prtype, __intern) \
|
2003-06-06 01:06:52 +08:00
|
|
|
DOM_GET_THIS(__id); \
|
2003-06-10 04:20:55 +08:00
|
|
|
DOM_GET_OBJ(__ptr, __id, __prtype, __intern);
|
2003-06-06 01:06:52 +08:00
|
|
|
|
|
|
|
#endif
|