wineps: Handle EMR_INVERTRGN record in spool files.
[wine.git] / dlls / msxml3 / msxml_private.h
blobcd8ae547c73de66b6f935eac5303f468d845e466
1 /*
2 * Common definitions
4 * Copyright 2005 Mike McCormack
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #ifndef __MSXML_PRIVATE__
22 #define __MSXML_PRIVATE__
24 #include "dispex.h"
26 #include "wine/heap.h"
27 #include "wine/list.h"
29 #include "msxml_dispex.h"
31 extern const CLSID * DOMDocument_version(MSXML_VERSION v) DECLSPEC_HIDDEN;
34 /* The XDR datatypes (urn:schemas-microsoft-com:datatypes)
35 * These are actually valid for XSD schemas as well
36 * See datatypes.xsd
38 typedef enum _XDR_DT {
39 DT_INVALID = -1,
40 DT_BIN_BASE64,
41 DT_BIN_HEX,
42 DT_BOOLEAN,
43 DT_CHAR,
44 DT_DATE,
45 DT_DATE_TZ,
46 DT_DATETIME,
47 DT_DATETIME_TZ,
48 DT_ENTITY,
49 DT_ENTITIES,
50 DT_ENUMERATION,
51 DT_FIXED_14_4,
52 DT_FLOAT,
53 DT_I1,
54 DT_I2,
55 DT_I4,
56 DT_I8,
57 DT_ID,
58 DT_IDREF,
59 DT_IDREFS,
60 DT_INT,
61 DT_NMTOKEN,
62 DT_NMTOKENS,
63 DT_NOTATION,
64 DT_NUMBER,
65 DT_R4,
66 DT_R8,
67 DT_STRING,
68 DT_TIME,
69 DT_TIME_TZ,
70 DT_UI1,
71 DT_UI2,
72 DT_UI4,
73 DT_UI8,
74 DT_URI,
75 DT_UUID,
76 LAST_DT
77 } XDR_DT;
79 extern HINSTANCE MSXML_hInstance DECLSPEC_HIDDEN;
81 /* XSLProcessor parameter list */
82 struct xslprocessor_par
84 struct list entry;
85 BSTR name;
86 BSTR value;
89 struct xslprocessor_params
91 struct list list;
92 unsigned int count;
95 extern void schemasInit(void) DECLSPEC_HIDDEN;
96 extern void schemasCleanup(void) DECLSPEC_HIDDEN;
98 /* IXMLDOMNode Internal Structure */
99 typedef struct _xmlnode
101 DispatchEx dispex;
102 IXMLDOMNode *iface;
103 IXMLDOMNode *parent;
104 xmlNodePtr node;
105 } xmlnode;
107 /* IXMLDOMNamedNodeMap custom function table */
108 struct nodemap_funcs
110 HRESULT (*get_named_item)(const xmlNodePtr,BSTR,IXMLDOMNode**);
111 HRESULT (*set_named_item)(xmlNodePtr,IXMLDOMNode*,IXMLDOMNode**);
112 HRESULT (*remove_named_item)(xmlNodePtr,BSTR,IXMLDOMNode**);
113 HRESULT (*get_item)(xmlNodePtr,LONG,IXMLDOMNode**);
114 HRESULT (*get_length)(xmlNodePtr,LONG*);
115 HRESULT (*get_qualified_item)(const xmlNodePtr,BSTR,BSTR,IXMLDOMNode**);
116 HRESULT (*remove_qualified_item)(xmlNodePtr,BSTR,BSTR,IXMLDOMNode**);
117 HRESULT (*next_node)(const xmlNodePtr,LONG*,IXMLDOMNode**);
120 /* used by IEnumVARIANT to access outer object items */
121 struct enumvariant_funcs
123 HRESULT (*get_item)(IUnknown*, LONG, VARIANT*);
124 HRESULT (*next)(IUnknown*);
127 /* constructors */
128 extern IUnknown *create_domdoc( xmlNodePtr ) DECLSPEC_HIDDEN;
129 extern IUnknown *create_xmldoc( void ) DECLSPEC_HIDDEN;
130 extern IXMLDOMNode *create_node( xmlNodePtr ) DECLSPEC_HIDDEN;
131 extern IUnknown *create_element( xmlNodePtr ) DECLSPEC_HIDDEN;
132 extern IUnknown *create_attribute( xmlNodePtr, BOOL ) DECLSPEC_HIDDEN;
133 extern IUnknown *create_text( xmlNodePtr ) DECLSPEC_HIDDEN;
134 extern IUnknown *create_pi( xmlNodePtr ) DECLSPEC_HIDDEN;
135 extern IUnknown *create_comment( xmlNodePtr ) DECLSPEC_HIDDEN;
136 extern IUnknown *create_cdata( xmlNodePtr ) DECLSPEC_HIDDEN;
137 extern IXMLDOMNodeList *create_children_nodelist( xmlNodePtr ) DECLSPEC_HIDDEN;
138 extern IXMLDOMNamedNodeMap *create_nodemap( xmlNodePtr, const struct nodemap_funcs* ) DECLSPEC_HIDDEN;
139 extern IUnknown *create_doc_fragment( xmlNodePtr ) DECLSPEC_HIDDEN;
140 extern IUnknown *create_doc_entity_ref( xmlNodePtr ) DECLSPEC_HIDDEN;
141 extern IUnknown *create_doc_type( xmlNodePtr ) DECLSPEC_HIDDEN;
142 extern HRESULT create_selection( xmlNodePtr, xmlChar*, IXMLDOMNodeList** ) DECLSPEC_HIDDEN;
143 extern HRESULT create_enumvariant( IUnknown*, BOOL, const struct enumvariant_funcs*, IEnumVARIANT**) DECLSPEC_HIDDEN;
144 extern HRESULT create_dom_implementation(IXMLDOMImplementation **obj) DECLSPEC_HIDDEN;
146 /* data accessors */
147 xmlNodePtr xmlNodePtr_from_domnode( IXMLDOMNode *iface, xmlElementType type ) DECLSPEC_HIDDEN;
149 /* helpers */
150 extern xmlChar *xmlChar_from_wchar( LPCWSTR str ) DECLSPEC_HIDDEN;
152 extern void xmldoc_init( xmlDocPtr doc, MSXML_VERSION version ) DECLSPEC_HIDDEN;
153 extern LONG xmldoc_add_ref( xmlDocPtr doc ) DECLSPEC_HIDDEN;
154 extern LONG xmldoc_release( xmlDocPtr doc ) DECLSPEC_HIDDEN;
155 extern LONG xmldoc_add_refs( xmlDocPtr doc, LONG refs ) DECLSPEC_HIDDEN;
156 extern LONG xmldoc_release_refs ( xmlDocPtr doc, LONG refs ) DECLSPEC_HIDDEN;
157 extern void xmlnode_add_ref(xmlNodePtr node) DECLSPEC_HIDDEN;
158 extern void xmlnode_release(xmlNodePtr node) DECLSPEC_HIDDEN;
159 extern int xmlnode_get_inst_cnt( xmlnode *node ) DECLSPEC_HIDDEN;
160 extern HRESULT xmldoc_add_orphan( xmlDocPtr doc, xmlNodePtr node ) DECLSPEC_HIDDEN;
161 extern HRESULT xmldoc_remove_orphan( xmlDocPtr doc, xmlNodePtr node ) DECLSPEC_HIDDEN;
162 extern void xmldoc_link_xmldecl(xmlDocPtr doc, xmlNodePtr node) DECLSPEC_HIDDEN;
163 extern xmlNodePtr xmldoc_unlink_xmldecl(xmlDocPtr doc) DECLSPEC_HIDDEN;
164 extern MSXML_VERSION xmldoc_version( xmlDocPtr doc ) DECLSPEC_HIDDEN;
166 extern HRESULT XMLElement_create( xmlNodePtr node, LPVOID *ppObj, BOOL own ) DECLSPEC_HIDDEN;
168 extern void wineXmlCallbackLog(char const* caller, xmlErrorLevel lvl, char const* msg, va_list ap) DECLSPEC_HIDDEN;
169 extern void wineXmlCallbackError(char const* caller, xmlErrorPtr err) DECLSPEC_HIDDEN;
171 #define LIBXML2_LOG_CALLBACK WINAPIV __WINE_PRINTF_ATTR(2,3)
173 #define LIBXML2_CALLBACK_TRACE(caller, msg, ap) \
174 wineXmlCallbackLog(#caller, XML_ERR_NONE, msg, ap)
176 #define LIBXML2_CALLBACK_WARN(caller, msg, ap) \
177 wineXmlCallbackLog(#caller, XML_ERR_WARNING, msg, ap)
179 #define LIBXML2_CALLBACK_ERR(caller, msg, ap) \
180 wineXmlCallbackLog(#caller, XML_ERR_ERROR, msg, ap)
182 #define LIBXML2_CALLBACK_SERROR(caller, err) wineXmlCallbackError(#caller, err)
184 extern BOOL is_preserving_whitespace(xmlNodePtr node) DECLSPEC_HIDDEN;
185 extern BOOL is_xpathmode(const xmlDocPtr doc) DECLSPEC_HIDDEN;
186 extern void set_xpathmode(xmlDocPtr doc, BOOL xpath) DECLSPEC_HIDDEN;
188 extern void init_xmlnode(xmlnode*,xmlNodePtr,IXMLDOMNode*,dispex_static_data_t*) DECLSPEC_HIDDEN;
189 extern void destroy_xmlnode(xmlnode*) DECLSPEC_HIDDEN;
190 extern BOOL node_query_interface(xmlnode*,REFIID,void**) DECLSPEC_HIDDEN;
191 extern xmlnode *get_node_obj(IXMLDOMNode*) DECLSPEC_HIDDEN;
193 extern HRESULT node_append_child(xmlnode*,IXMLDOMNode*,IXMLDOMNode**) DECLSPEC_HIDDEN;
194 extern HRESULT node_get_nodeName(xmlnode*,BSTR*) DECLSPEC_HIDDEN;
195 extern HRESULT node_get_content(xmlnode*,VARIANT*) DECLSPEC_HIDDEN;
196 extern HRESULT node_set_content(xmlnode*,LPCWSTR) DECLSPEC_HIDDEN;
197 extern HRESULT node_put_value(xmlnode*,VARIANT*) DECLSPEC_HIDDEN;
198 extern HRESULT node_put_value_escaped(xmlnode*,VARIANT*) DECLSPEC_HIDDEN;
199 extern HRESULT node_get_parent(xmlnode*,IXMLDOMNode**) DECLSPEC_HIDDEN;
200 extern HRESULT node_get_child_nodes(xmlnode*,IXMLDOMNodeList**) DECLSPEC_HIDDEN;
201 extern HRESULT node_get_first_child(xmlnode*,IXMLDOMNode**) DECLSPEC_HIDDEN;
202 extern HRESULT node_get_last_child(xmlnode*,IXMLDOMNode**) DECLSPEC_HIDDEN;
203 extern HRESULT node_get_previous_sibling(xmlnode*,IXMLDOMNode**) DECLSPEC_HIDDEN;
204 extern HRESULT node_get_next_sibling(xmlnode*,IXMLDOMNode**) DECLSPEC_HIDDEN;
205 extern HRESULT node_insert_before(xmlnode*,IXMLDOMNode*,const VARIANT*,IXMLDOMNode**) DECLSPEC_HIDDEN;
206 extern HRESULT node_replace_child(xmlnode*,IXMLDOMNode*,IXMLDOMNode*,IXMLDOMNode**) DECLSPEC_HIDDEN;
207 extern HRESULT node_put_text(xmlnode*,BSTR) DECLSPEC_HIDDEN;
208 extern HRESULT node_get_xml(xmlnode*,BOOL,BSTR*) DECLSPEC_HIDDEN;
209 extern HRESULT node_clone(xmlnode*,VARIANT_BOOL,IXMLDOMNode**) DECLSPEC_HIDDEN;
210 extern HRESULT node_get_prefix(xmlnode*,BSTR*) DECLSPEC_HIDDEN;
211 extern HRESULT node_get_base_name(xmlnode*,BSTR*) DECLSPEC_HIDDEN;
212 extern HRESULT node_get_namespaceURI(xmlnode*,BSTR*) DECLSPEC_HIDDEN;
213 extern HRESULT node_remove_child(xmlnode*,IXMLDOMNode*,IXMLDOMNode**) DECLSPEC_HIDDEN;
214 extern HRESULT node_has_childnodes(const xmlnode*,VARIANT_BOOL*) DECLSPEC_HIDDEN;
215 extern HRESULT node_get_owner_doc(const xmlnode*,IXMLDOMDocument**) DECLSPEC_HIDDEN;
216 extern HRESULT node_get_text(const xmlnode*,BSTR*) DECLSPEC_HIDDEN;
217 extern HRESULT node_select_nodes(const xmlnode*,BSTR,IXMLDOMNodeList**) DECLSPEC_HIDDEN;
218 extern HRESULT node_select_singlenode(const xmlnode*,BSTR,IXMLDOMNode**) DECLSPEC_HIDDEN;
219 extern HRESULT node_transform_node(const xmlnode*,IXMLDOMNode*,BSTR*) DECLSPEC_HIDDEN;
220 extern HRESULT node_transform_node_params(const xmlnode*,IXMLDOMNode*,BSTR*,ISequentialStream*,
221 const struct xslprocessor_params*) DECLSPEC_HIDDEN;
222 extern HRESULT node_create_supporterrorinfo(const tid_t*,void**) DECLSPEC_HIDDEN;
224 extern HRESULT get_domdoc_from_xmldoc(xmlDocPtr xmldoc, IXMLDOMDocument3 **document) DECLSPEC_HIDDEN;
226 extern HRESULT SchemaCache_validate_tree(IXMLDOMSchemaCollection2*, xmlNodePtr) DECLSPEC_HIDDEN;
227 extern XDR_DT SchemaCache_get_node_dt(IXMLDOMSchemaCollection2*, xmlNodePtr) DECLSPEC_HIDDEN;
228 extern HRESULT cache_from_doc_ns(IXMLDOMSchemaCollection2*, xmlnode*) DECLSPEC_HIDDEN;
230 extern XDR_DT str_to_dt(xmlChar const* str, int len /* calculated if -1 */) DECLSPEC_HIDDEN;
231 extern XDR_DT bstr_to_dt(OLECHAR const* bstr, int len /* calculated if -1 */) DECLSPEC_HIDDEN;
232 extern xmlChar const* dt_to_str(XDR_DT dt) DECLSPEC_HIDDEN;
233 extern const char* debugstr_dt(XDR_DT dt) DECLSPEC_HIDDEN;
234 extern OLECHAR const* dt_to_bstr(XDR_DT dt) DECLSPEC_HIDDEN;
235 extern HRESULT dt_validate(XDR_DT dt, xmlChar const* content) DECLSPEC_HIDDEN;
237 extern BSTR EnsureCorrectEOL(BSTR) DECLSPEC_HIDDEN;
239 extern xmlChar* tagName_to_XPath(const BSTR tagName) DECLSPEC_HIDDEN;
241 extern HRESULT dom_pi_put_xml_decl(IXMLDOMNode *node, BSTR data) DECLSPEC_HIDDEN;
243 #include <libxslt/documents.h>
244 extern xmlDocPtr xslt_doc_default_loader(const xmlChar *uri, xmlDictPtr dict, int options,
245 void *_ctxt, xsltLoadType type) DECLSPEC_HIDDEN;
247 static inline BSTR bstr_from_xmlChar(const xmlChar *str)
249 BSTR ret = NULL;
251 if(str) {
252 DWORD len = MultiByteToWideChar(CP_UTF8, 0, (LPCSTR)str, -1, NULL, 0);
253 ret = SysAllocStringLen(NULL, len-1);
254 if(ret)
255 MultiByteToWideChar( CP_UTF8, 0, (LPCSTR)str, -1, ret, len);
257 else
258 ret = SysAllocStringLen(NULL, 0);
260 return ret;
263 static inline xmlChar *xmlchar_from_wcharn(const WCHAR *str, int nchars, BOOL use_xml_alloc)
265 xmlChar *xmlstr;
266 DWORD len = WideCharToMultiByte( CP_UTF8, 0, str, nchars, NULL, 0, NULL, NULL );
268 xmlstr = use_xml_alloc ? xmlMalloc( len + 1 ) : heap_alloc( len + 1 );
269 if ( xmlstr )
271 WideCharToMultiByte( CP_UTF8, 0, str, nchars, (LPSTR) xmlstr, len+1, NULL, NULL );
272 xmlstr[len] = 0;
274 return xmlstr;
277 static inline xmlChar *xmlchar_from_wchar( const WCHAR *str )
279 return xmlchar_from_wcharn(str, -1, FALSE);
282 static inline xmlChar *heap_strdupxmlChar(const xmlChar *str)
284 xmlChar *ret = NULL;
286 if(str) {
287 DWORD size;
289 size = (xmlStrlen(str)+1)*sizeof(xmlChar);
290 ret = heap_alloc(size);
291 memcpy(ret, str, size);
294 return ret;
297 static inline HRESULT return_null_node(IXMLDOMNode **p)
299 if(!p)
300 return E_INVALIDARG;
301 *p = NULL;
302 return S_FALSE;
305 static inline HRESULT return_null_ptr(void **p)
307 if(!p)
308 return E_INVALIDARG;
309 *p = NULL;
310 return S_FALSE;
313 static inline HRESULT return_null_var(VARIANT *p)
315 if(!p)
316 return E_INVALIDARG;
318 V_VT(p) = VT_NULL;
319 return S_FALSE;
322 static inline HRESULT return_null_bstr(BSTR *p)
324 if(!p)
325 return E_INVALIDARG;
327 *p = NULL;
328 return S_FALSE;
331 static inline HRESULT return_var_false(VARIANT_BOOL *p)
333 if(!p)
334 return E_INVALIDARG;
336 *p = VARIANT_FALSE;
337 return S_FALSE;
340 extern IXMLDOMParseError *create_parseError( LONG code, BSTR url, BSTR reason, BSTR srcText,
341 LONG line, LONG linepos, LONG filepos ) DECLSPEC_HIDDEN;
342 extern HRESULT SchemaCache_create(MSXML_VERSION, void**) DECLSPEC_HIDDEN;
343 extern HRESULT XMLDocument_create(void**) DECLSPEC_HIDDEN;
344 extern HRESULT SAXXMLReader_create(MSXML_VERSION, void**) DECLSPEC_HIDDEN;
345 extern HRESULT SAXAttributes_create(MSXML_VERSION, void**) DECLSPEC_HIDDEN;
346 extern HRESULT XMLHTTPRequest_create(void **) DECLSPEC_HIDDEN;
347 extern HRESULT ServerXMLHTTP_create(void **) DECLSPEC_HIDDEN;
348 extern HRESULT XSLTemplate_create(void**) DECLSPEC_HIDDEN;
349 extern HRESULT MXWriter_create(MSXML_VERSION, void**) DECLSPEC_HIDDEN;
350 extern HRESULT MXNamespaceManager_create(void**) DECLSPEC_HIDDEN;
351 extern HRESULT XMLParser_create(void**) DECLSPEC_HIDDEN;
352 extern HRESULT XMLView_create(void**) DECLSPEC_HIDDEN;
354 /* Error Codes - not defined anywhere in the public headers */
355 #define E_XML_ELEMENT_UNDECLARED 0xC00CE00D
356 #define E_XML_ELEMENT_ID_NOT_FOUND 0xC00CE00E
357 /* ... */
358 #define E_XML_EMPTY_NOT_ALLOWED 0xC00CE011
359 #define E_XML_ELEMENT_NOT_COMPLETE 0xC00CE012
360 #define E_XML_ROOT_NAME_MISMATCH 0xC00CE013
361 #define E_XML_INVALID_CONTENT 0xC00CE014
362 #define E_XML_ATTRIBUTE_NOT_DEFINED 0xC00CE015
363 #define E_XML_ATTRIBUTE_FIXED 0xC00CE016
364 #define E_XML_ATTRIBUTE_VALUE 0xC00CE017
365 #define E_XML_ILLEGAL_TEXT 0xC00CE018
366 /* ... */
367 #define E_XML_REQUIRED_ATTRIBUTE_MISSING 0xC00CE020
369 #define NODE_PRIV_TRAILING_IGNORABLE_WS 0x40000000
370 #define NODE_PRIV_CHILD_IGNORABLE_WS 0x80000000
371 #define NODE_PRIV_REFCOUNT_MASK ~(NODE_PRIV_TRAILING_IGNORABLE_WS|NODE_PRIV_CHILD_IGNORABLE_WS)
372 #endif /* __MSXML_PRIVATE__ */