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
28 # include <libxml/parser.h>
29 # include <libxml/xmlerror.h>
30 # include <libxml/HTMLtree.h>
31 # ifdef SONAME_LIBXSLT
32 # ifdef HAVE_LIBXSLT_PATTERN_H
33 # include <libxslt/pattern.h>
35 # ifdef HAVE_LIBXSLT_TRANSFORM_H
36 # include <libxslt/transform.h>
38 # include <libxslt/xsltutils.h>
39 # include <libxslt/xsltInternals.h>
50 #include "msxml_private.h"
52 #include "wine/debug.h"
54 WINE_DEFAULT_DEBUG_CHANNEL(msxml);
59 extern void* libxslt_handle;
60 # define MAKE_FUNCPTR(f) extern typeof(f) * p##f
61 MAKE_FUNCPTR(xsltApplyStylesheet);
62 MAKE_FUNCPTR(xsltCleanupGlobals);
63 MAKE_FUNCPTR(xsltFreeStylesheet);
64 MAKE_FUNCPTR(xsltParseStylesheetDoc);
68 static const IID IID_xmlnode = {0x4f2f4ba2,0xb822,0x11df,{0x8b,0x8a,0x68,0x50,0xdf,0xd7,0x20,0x85}};
70 xmlNodePtr xmlNodePtr_from_domnode( IXMLDOMNode *iface, xmlElementType type )
76 This = get_node_obj( iface );
77 if ( !This || !This->node )
79 if ( type && This->node->type != type )
84 BOOL node_query_interface(xmlnode *This, REFIID riid, void **ppv)
86 if(IsEqualGUID(&IID_xmlnode, riid)) {
87 TRACE("(%p)->(IID_xmlnode %p)\n", This, ppv);
92 return dispex_query_interface(&This->dispex, riid, ppv);
95 /* common ISupportErrorInfo implementation */
97 ISupportErrorInfo ISupportErrorInfo_iface;
103 static inline SupportErrorInfo *impl_from_ISupportErrorInfo(ISupportErrorInfo *iface)
105 return CONTAINING_RECORD(iface, SupportErrorInfo, ISupportErrorInfo_iface);
108 static HRESULT WINAPI SupportErrorInfo_QueryInterface(ISupportErrorInfo *iface, REFIID riid, void **obj)
110 SupportErrorInfo *This = impl_from_ISupportErrorInfo(iface);
111 TRACE("(%p)->(%s %p)\n", This, debugstr_guid(riid), obj);
115 if (IsEqualGUID(riid, &IID_IUnknown) || IsEqualGUID(riid, &IID_ISupportErrorInfo)) {
117 ISupportErrorInfo_AddRef(iface);
121 return E_NOINTERFACE;
124 static ULONG WINAPI SupportErrorInfo_AddRef(ISupportErrorInfo *iface)
126 SupportErrorInfo *This = impl_from_ISupportErrorInfo(iface);
127 ULONG ref = InterlockedIncrement(&This->ref);
128 TRACE("(%p)->(%d)\n", This, ref );
132 static ULONG WINAPI SupportErrorInfo_Release(ISupportErrorInfo *iface)
134 SupportErrorInfo *This = impl_from_ISupportErrorInfo(iface);
135 LONG ref = InterlockedDecrement(&This->ref);
137 TRACE("(%p)->(%d)\n", This, ref);
145 static HRESULT WINAPI SupportErrorInfo_InterfaceSupportsErrorInfo(ISupportErrorInfo *iface, REFIID riid)
147 SupportErrorInfo *This = impl_from_ISupportErrorInfo(iface);
148 enum tid_t const *tid;
150 TRACE("(%p)->(%s)\n", This, debugstr_guid(riid));
155 if (IsEqualGUID(riid, get_riid_from_tid(*tid)))
163 static const struct ISupportErrorInfoVtbl SupportErrorInfoVtbl = {
164 SupportErrorInfo_QueryInterface,
165 SupportErrorInfo_AddRef,
166 SupportErrorInfo_Release,
167 SupportErrorInfo_InterfaceSupportsErrorInfo
170 HRESULT node_create_supporterrorinfo(enum tid_t const *iids, void **obj)
172 SupportErrorInfo *This;
174 This = heap_alloc(sizeof(*This));
175 if (!This) return E_OUTOFMEMORY;
177 This->ISupportErrorInfo_iface.lpVtbl = &SupportErrorInfoVtbl;
181 *obj = &This->ISupportErrorInfo_iface;
186 xmlnode *get_node_obj(IXMLDOMNode *node)
191 hres = IXMLDOMNode_QueryInterface(node, &IID_xmlnode, (void**)&obj);
192 if (!obj) WARN("node is not our IXMLDOMNode implementation\n");
193 return SUCCEEDED(hres) ? obj : NULL;
196 HRESULT node_get_nodeName(xmlnode *This, BSTR *name)
204 hr = node_get_base_name(This, &base);
205 if (hr != S_OK) return hr;
207 hr = node_get_prefix(This, &prefix);
210 static const WCHAR colW = ':';
214 ptr = *name = SysAllocStringLen(NULL, SysStringLen(base) + SysStringLen(prefix) + 1);
215 memcpy(ptr, prefix, SysStringByteLen(prefix));
216 ptr += SysStringLen(prefix);
217 memcpy(ptr++, &colW, sizeof(WCHAR));
218 memcpy(ptr, base, SysStringByteLen(base));
221 SysFreeString(prefix);
229 HRESULT node_get_content(xmlnode *This, VARIANT *value)
236 content = xmlNodeGetContent(This->node);
237 V_VT(value) = VT_BSTR;
238 V_BSTR(value) = bstr_from_xmlChar( content );
241 TRACE("%p returned %s\n", This, debugstr_w(V_BSTR(value)));
245 HRESULT node_set_content(xmlnode *This, LPCWSTR value)
249 TRACE("(%p)->(%s)\n", This, debugstr_w(value));
250 str = xmlchar_from_wchar(value);
252 return E_OUTOFMEMORY;
254 xmlNodeSetContent(This->node, str);
259 static HRESULT node_set_content_escaped(xmlnode *This, LPCWSTR value)
261 xmlChar *str, *escaped;
263 TRACE("(%p)->(%s)\n", This, debugstr_w(value));
264 str = xmlchar_from_wchar(value);
266 return E_OUTOFMEMORY;
268 escaped = xmlEncodeSpecialChars(NULL, str);
272 return E_OUTOFMEMORY;
275 xmlNodeSetContent(This->node, escaped);
283 HRESULT node_put_value(xmlnode *This, VARIANT *value)
285 VARIANT string_value;
288 VariantInit(&string_value);
289 hr = VariantChangeType(&string_value, value, 0, VT_BSTR);
291 WARN("Couldn't convert to VT_BSTR\n");
295 hr = node_set_content(This, V_BSTR(&string_value));
296 VariantClear(&string_value);
301 HRESULT node_put_value_escaped(xmlnode *This, VARIANT *value)
303 VARIANT string_value;
306 VariantInit(&string_value);
307 hr = VariantChangeType(&string_value, value, 0, VT_BSTR);
309 WARN("Couldn't convert to VT_BSTR\n");
313 hr = node_set_content_escaped(This, V_BSTR(&string_value));
314 VariantClear(&string_value);
319 static HRESULT get_node(
325 TRACE("(%p)->(%s %p %p)\n", This, name, node, out );
330 /* if we don't have a doc, use our parent. */
331 if(node && !node->doc && node->parent)
332 node->doc = node->parent->doc;
334 *out = create_node( node );
340 HRESULT node_get_parent(xmlnode *This, IXMLDOMNode **parent)
342 return get_node( This, "parent", This->node->parent, parent );
345 HRESULT node_get_child_nodes(xmlnode *This, IXMLDOMNodeList **ret)
350 *ret = create_children_nodelist(This->node);
352 return E_OUTOFMEMORY;
357 HRESULT node_get_first_child(xmlnode *This, IXMLDOMNode **ret)
359 return get_node(This, "firstChild", This->node->children, ret);
362 HRESULT node_get_last_child(xmlnode *This, IXMLDOMNode **ret)
364 return get_node(This, "lastChild", This->node->last, ret);
367 HRESULT node_get_previous_sibling(xmlnode *This, IXMLDOMNode **ret)
369 return get_node(This, "previous", This->node->prev, ret);
372 HRESULT node_get_next_sibling(xmlnode *This, IXMLDOMNode **ret)
374 return get_node(This, "next", This->node->next, ret);
377 HRESULT node_insert_before(xmlnode *This, IXMLDOMNode *new_child, const VARIANT *ref_child,
380 IXMLDOMNode *before = NULL;
388 node_obj = get_node_obj(new_child);
389 if(!node_obj) return E_FAIL;
391 switch(V_VT(ref_child))
399 if (V_UNKNOWN(ref_child))
401 hr = IUnknown_QueryInterface(V_UNKNOWN(ref_child), &IID_IXMLDOMNode, (void**)&before);
402 if(FAILED(hr)) return hr;
407 FIXME("refChild var type %x\n", V_VT(ref_child));
411 TRACE("new child %p, This->node %p\n", node_obj->node, This->node);
413 if(!node_obj->node->parent)
414 if(xmldoc_remove_orphan(node_obj->node->doc, node_obj->node) != S_OK)
415 WARN("%p is not an orphan of %p\n", node_obj->node, node_obj->node->doc);
419 xmlnode *before_node_obj = get_node_obj(before);
420 IXMLDOMNode_Release(before);
421 if(!before_node_obj) return E_FAIL;
423 /* unlink from current parent first */
426 hr = IXMLDOMNode_removeChild(node_obj->parent, node_obj->iface, NULL);
427 if (hr == S_OK) xmldoc_remove_orphan(node_obj->node->doc, node_obj->node);
429 doc = node_obj->node->doc;
430 xmldoc_add_ref(before_node_obj->node->doc);
431 xmlAddPrevSibling(before_node_obj->node, node_obj->node);
433 node_obj->parent = This->parent;
437 /* unlink from current parent first */
440 hr = IXMLDOMNode_removeChild(node_obj->parent, node_obj->iface, NULL);
441 if (hr == S_OK) xmldoc_remove_orphan(node_obj->node->doc, node_obj->node);
443 doc = node_obj->node->doc;
444 xmldoc_add_ref(This->node->doc);
445 /* xmlAddChild doesn't unlink node from previous parent */
446 xmlUnlinkNode(node_obj->node);
447 xmlAddChild(This->node, node_obj->node);
449 node_obj->parent = This->iface;
454 IXMLDOMNode_AddRef(new_child);
462 HRESULT node_replace_child(xmlnode *This, IXMLDOMNode *newChild, IXMLDOMNode *oldChild,
465 xmlnode *old_child, *new_child;
466 xmlDocPtr leaving_doc;
467 xmlNode *my_ancestor;
469 /* Do not believe any documentation telling that newChild == NULL
470 means removal. It does certainly *not* apply to msxml3! */
471 if(!newChild || !oldChild)
477 old_child = get_node_obj(oldChild);
478 if(!old_child) return E_FAIL;
480 if(old_child->node->parent != This->node)
482 WARN("childNode %p is not a child of %p\n", oldChild, This);
486 new_child = get_node_obj(newChild);
487 if(!new_child) return E_FAIL;
489 my_ancestor = This->node;
492 if(my_ancestor == new_child->node)
494 WARN("tried to create loop\n");
497 my_ancestor = my_ancestor->parent;
500 if(!new_child->node->parent)
501 if(xmldoc_remove_orphan(new_child->node->doc, new_child->node) != S_OK)
502 WARN("%p is not an orphan of %p\n", new_child->node, new_child->node->doc);
504 leaving_doc = new_child->node->doc;
505 xmldoc_add_ref(old_child->node->doc);
506 xmlReplaceNode(old_child->node, new_child->node);
507 xmldoc_release(leaving_doc);
508 new_child->parent = old_child->parent;
509 old_child->parent = NULL;
511 xmldoc_add_orphan(old_child->node->doc, old_child->node);
515 IXMLDOMNode_AddRef(oldChild);
522 HRESULT node_remove_child(xmlnode *This, IXMLDOMNode* child, IXMLDOMNode** oldChild)
526 if(!child) return E_INVALIDARG;
531 child_node = get_node_obj(child);
532 if(!child_node) return E_FAIL;
534 if(child_node->node->parent != This->node)
536 WARN("childNode %p is not a child of %p\n", child, This);
540 xmlUnlinkNode(child_node->node);
541 child_node->parent = NULL;
542 xmldoc_add_orphan(child_node->node->doc, child_node->node);
546 IXMLDOMNode_AddRef(child);
553 HRESULT node_append_child(xmlnode *This, IXMLDOMNode *child, IXMLDOMNode **outChild)
559 hr = IXMLDOMNode_get_nodeType(child, &type);
560 if(FAILED(hr) || type == NODE_ATTRIBUTE) {
561 if (outChild) *outChild = NULL;
566 return IXMLDOMNode_insertBefore(This->iface, child, var, outChild);
569 HRESULT node_has_childnodes(const xmlnode *This, VARIANT_BOOL *ret)
571 if (!ret) return E_INVALIDARG;
573 if (!This->node->children)
575 *ret = VARIANT_FALSE;
583 HRESULT node_get_owner_doc(const xmlnode *This, IXMLDOMDocument **doc)
585 return get_domdoc_from_xmldoc(This->node->doc, (IXMLDOMDocument3**)doc);
588 HRESULT node_clone(xmlnode *This, VARIANT_BOOL deep, IXMLDOMNode **cloneNode)
593 if(!cloneNode) return E_INVALIDARG;
595 clone = xmlCopyNode(This->node, deep ? 1 : 2);
598 clone->doc = This->node->doc;
599 xmldoc_add_orphan(clone->doc, clone);
601 node = create_node(clone);
604 ERR("Copy failed\n");
605 xmldoc_remove_orphan(clone->doc, clone);
614 ERR("Copy failed\n");
621 static inline xmlChar* trim_whitespace(xmlChar* str)
629 while (*ret && isspace(*ret))
631 len = xmlStrlen(ret);
633 while (isspace(ret[len-1])) --len;
635 ret = xmlStrndup(ret, len);
640 static xmlChar* do_get_text(xmlNodePtr node)
644 BOOL preserving = is_preserving_whitespace(node);
648 str = xmlNodeGetContent(node);
652 xmlElementType prev_type = XML_TEXT_NODE;
654 str = xmlStrdup(BAD_CAST "");
655 for (child = node->children; child != NULL; child = child->next)
659 case XML_ELEMENT_NODE:
660 tmp = do_get_text(child);
663 case XML_CDATA_SECTION_NODE:
664 case XML_ENTITY_REF_NODE:
665 case XML_ENTITY_NODE:
666 tmp = xmlNodeGetContent(child);
677 if (prev_type == XML_ELEMENT_NODE && child->type == XML_ELEMENT_NODE)
678 str = xmlStrcat(str, BAD_CAST " ");
679 str = xmlStrcat(str, tmp);
680 prev_type = child->type;
689 case XML_ELEMENT_NODE:
691 case XML_ENTITY_REF_NODE:
692 case XML_ENTITY_NODE:
693 case XML_DOCUMENT_NODE:
694 case XML_DOCUMENT_FRAG_NODE:
696 str = trim_whitespace(str);
705 HRESULT node_get_text(const xmlnode *This, BSTR *text)
710 if (!text) return E_INVALIDARG;
712 content = do_get_text(This->node);
715 str = bstr_from_xmlChar(content);
719 /* Always return a string. */
720 if (!str) str = SysAllocStringLen( NULL, 0 );
722 TRACE("%p %s\n", This, debugstr_w(str) );
728 HRESULT node_put_text(xmlnode *This, BSTR text)
732 TRACE("(%p)->(%s)\n", This, debugstr_w(text));
734 str = xmlchar_from_wchar(text);
736 /* Escape the string. */
737 str2 = xmlEncodeEntitiesReentrant(This->node->doc, str);
740 xmlNodeSetContent(This->node, str2);
746 BSTR EnsureCorrectEOL(BSTR sInput)
753 nLen = SysStringLen(sInput);
754 /* Count line endings */
755 for(i=0; i < nLen; i++)
757 if(sInput[i] == '\n')
761 TRACE("len=%d, num=%d\n", nLen, nNum);
763 /* Add linefeed as needed */
767 sNew = SysAllocStringLen(NULL, nLen + nNum);
768 for(i=0; i < nLen; i++)
770 if(sInput[i] == '\n')
772 sNew[i+nPlace] = '\r';
775 sNew[i+nPlace] = sInput[i];
778 SysFreeString(sInput);
785 TRACE("len %d\n", SysStringLen(sNew));
791 * We are trying to replicate the same behaviour as msxml by converting
792 * line endings to \r\n and using indents as \t. The problem is that msxml
793 * only formats nodes that have a line ending. Using libxml we cannot
794 * reproduce behaviour exactly.
797 HRESULT node_get_xml(xmlnode *This, BOOL ensure_eol, BSTR *ret)
799 xmlBufferPtr xml_buf;
808 xml_buf = xmlBufferCreate();
810 return E_OUTOFMEMORY;
812 xmldecl = xmldoc_unlink_xmldecl( This->node->doc );
814 size = xmlNodeDump(xml_buf, This->node->doc, This->node, 0, 1);
816 const xmlChar *buf_content;
819 /* Attribute Nodes return a space in front of their name */
820 buf_content = xmlBufferContent(xml_buf);
822 content = bstr_from_xmlChar(buf_content + (buf_content[0] == ' ' ? 1 : 0));
824 content = EnsureCorrectEOL(content);
828 *ret = SysAllocStringLen(NULL, 0);
831 xmlBufferFree(xml_buf);
832 xmldoc_link_xmldecl( This->node->doc, xmldecl );
833 return *ret ? S_OK : E_OUTOFMEMORY;
836 static void htmldtd_dumpcontent(xmlOutputBufferPtr buf, xmlDocPtr doc)
838 xmlDtdPtr cur = doc->intSubset;
840 xmlOutputBufferWriteString(buf, "<!DOCTYPE ");
841 xmlOutputBufferWriteString(buf, (const char *)cur->name);
844 xmlOutputBufferWriteString(buf, " PUBLIC ");
845 xmlBufferWriteQuotedString(buf->buffer, cur->ExternalID);
848 xmlOutputBufferWriteString(buf, " ");
849 xmlBufferWriteQuotedString(buf->buffer, cur->SystemID);
852 else if (cur->SystemID)
854 xmlOutputBufferWriteString(buf, " SYSTEM ");
855 xmlBufferWriteQuotedString(buf->buffer, cur->SystemID);
857 xmlOutputBufferWriteString(buf, ">\n");
860 static void htmldoc_dumpcontent(xmlOutputBufferPtr buf, xmlDocPtr doc)
864 /* force HTML output */
866 doc->type = XML_HTML_DOCUMENT_NODE;
868 htmldtd_dumpcontent(buf, doc);
871 xmlNodePtr cur = doc->children;
875 htmlNodeDumpFormatOutput(buf, doc, cur, NULL, 1);
883 HRESULT node_transform_node(const xmlnode *This, IXMLDOMNode *stylesheet, BSTR *p)
885 #ifdef SONAME_LIBXSLT
886 xsltStylesheetPtr xsltSS;
889 if (!libxslt_handle) return E_NOTIMPL;
890 if (!stylesheet || !p) return E_INVALIDARG;
894 sheet = get_node_obj(stylesheet);
895 if(!sheet) return E_FAIL;
897 xsltSS = pxsltParseStylesheetDoc(sheet->node->doc);
900 xmlDocPtr result = pxsltApplyStylesheet(xsltSS, This->node->doc, NULL);
903 const xmlChar *content;
905 if(result->type == XML_HTML_DOCUMENT_NODE)
907 xmlOutputBufferPtr output = xmlAllocOutputBuffer(NULL);
910 htmldoc_dumpcontent(output, result->doc);
911 content = xmlBufferContent(output->buffer);
912 *p = bstr_from_xmlChar(content);
913 xmlOutputBufferClose(output);
918 xmlBufferPtr buf = xmlBufferCreate();
921 int size = xmlNodeDump(buf, NULL, (xmlNodePtr)result, 0, 0);
924 content = xmlBufferContent(buf);
925 *p = bstr_from_xmlChar(content);
932 /* libxslt "helpfully" frees the XML document the stylesheet was
933 generated from, too */
935 pxsltFreeStylesheet(xsltSS);
938 if(!*p) *p = SysAllocStringLen(NULL, 0);
942 FIXME("libxslt headers were not found at compile time\n");
947 HRESULT node_select_nodes(const xmlnode *This, BSTR query, IXMLDOMNodeList **nodes)
952 if (!query || !nodes) return E_INVALIDARG;
954 str = xmlchar_from_wchar(query);
955 hr = create_selection(This->node, str, nodes);
961 HRESULT node_select_singlenode(const xmlnode *This, BSTR query, IXMLDOMNode **node)
963 IXMLDOMNodeList *list;
966 hr = node_select_nodes(This, query, &list);
969 hr = IXMLDOMNodeList_nextNode(list, node);
970 IXMLDOMNodeList_Release(list);
975 HRESULT node_get_namespaceURI(xmlnode *This, BSTR *namespaceURI)
977 xmlNsPtr ns = This->node->ns;
982 *namespaceURI = NULL;
985 *namespaceURI = bstr_from_xmlChar(ns->href);
987 TRACE("uri: %s\n", debugstr_w(*namespaceURI));
989 return *namespaceURI ? S_OK : S_FALSE;
992 HRESULT node_get_prefix(xmlnode *This, BSTR *prefix)
994 xmlNsPtr ns = This->node->ns;
996 if (!prefix) return E_INVALIDARG;
1000 if (ns && ns->prefix)
1001 *prefix = bstr_from_xmlChar(ns->prefix);
1003 TRACE("prefix: %s\n", debugstr_w(*prefix));
1005 return *prefix ? S_OK : S_FALSE;
1008 HRESULT node_get_base_name(xmlnode *This, BSTR *name)
1010 if (!name) return E_INVALIDARG;
1012 *name = bstr_from_xmlChar(This->node->name);
1013 if (!*name) return E_OUTOFMEMORY;
1015 TRACE("returning %s\n", debugstr_w(*name));
1020 void destroy_xmlnode(xmlnode *This)
1023 xmldoc_release(This->node->doc);
1024 release_dispex(&This->dispex);
1027 void init_xmlnode(xmlnode *This, xmlNodePtr node, IXMLDOMNode *node_iface, dispex_static_data_t *dispex_data)
1030 xmldoc_add_ref( node->doc );
1033 This->iface = node_iface;
1034 This->parent = NULL;
1036 init_dispex(&This->dispex, (IUnknown*)This->iface, dispex_data);
1041 IXMLDOMNode IXMLDOMNode_iface;
1045 static inline unknode *unknode_from_IXMLDOMNode(IXMLDOMNode *iface)
1047 return CONTAINING_RECORD(iface, unknode, IXMLDOMNode_iface);
1050 static HRESULT WINAPI unknode_QueryInterface(
1055 unknode *This = unknode_from_IXMLDOMNode( iface );
1057 TRACE("(%p)->(%s %p)\n", This, debugstr_guid(riid), ppvObject);
1059 if (IsEqualGUID(riid, &IID_IUnknown)) {
1061 }else if (IsEqualGUID( riid, &IID_IDispatch) ||
1062 IsEqualGUID( riid, &IID_IXMLDOMNode)) {
1063 *ppvObject = &This->IXMLDOMNode_iface;
1064 }else if(node_query_interface(&This->node, riid, ppvObject)) {
1065 return *ppvObject ? S_OK : E_NOINTERFACE;
1067 FIXME("interface %s not implemented\n", debugstr_guid(riid));
1069 return E_NOINTERFACE;
1072 IUnknown_AddRef((IUnknown*)*ppvObject);
1076 static ULONG WINAPI unknode_AddRef(
1077 IXMLDOMNode *iface )
1079 unknode *This = unknode_from_IXMLDOMNode( iface );
1081 return InterlockedIncrement(&This->ref);
1084 static ULONG WINAPI unknode_Release(
1085 IXMLDOMNode *iface )
1087 unknode *This = unknode_from_IXMLDOMNode( iface );
1090 ref = InterlockedDecrement( &This->ref );
1092 destroy_xmlnode(&This->node);
1099 static HRESULT WINAPI unknode_GetTypeInfoCount(
1103 unknode *This = unknode_from_IXMLDOMNode( iface );
1105 TRACE("(%p)->(%p)\n", This, pctinfo);
1112 static HRESULT WINAPI unknode_GetTypeInfo(
1116 ITypeInfo** ppTInfo )
1118 unknode *This = unknode_from_IXMLDOMNode( iface );
1121 TRACE("(%p)->(%u %u %p)\n", This, iTInfo, lcid, ppTInfo);
1123 hr = get_typeinfo(IXMLDOMNode_tid, ppTInfo);
1128 static HRESULT WINAPI unknode_GetIDsOfNames(
1131 LPOLESTR* rgszNames,
1136 unknode *This = unknode_from_IXMLDOMNode( iface );
1138 ITypeInfo *typeinfo;
1141 TRACE("(%p)->(%s %p %u %u %p)\n", This, debugstr_guid(riid), rgszNames, cNames,
1144 if(!rgszNames || cNames == 0 || !rgDispId)
1145 return E_INVALIDARG;
1147 hr = get_typeinfo(IXMLDOMNode_tid, &typeinfo);
1150 hr = ITypeInfo_GetIDsOfNames(typeinfo, rgszNames, cNames, rgDispId);
1151 ITypeInfo_Release(typeinfo);
1157 static HRESULT WINAPI unknode_Invoke(
1159 DISPID dispIdMember,
1163 DISPPARAMS* pDispParams,
1164 VARIANT* pVarResult,
1165 EXCEPINFO* pExcepInfo,
1168 unknode *This = unknode_from_IXMLDOMNode( iface );
1169 ITypeInfo *typeinfo;
1172 TRACE("(%p)->(%d %s %d %d %p %p %p %p)\n", This, dispIdMember, debugstr_guid(riid),
1173 lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr);
1175 hr = get_typeinfo(IXMLDOMNode_tid, &typeinfo);
1178 hr = ITypeInfo_Invoke(typeinfo, &This->IXMLDOMNode_iface, dispIdMember, wFlags, pDispParams,
1179 pVarResult, pExcepInfo, puArgErr);
1180 ITypeInfo_Release(typeinfo);
1186 static HRESULT WINAPI unknode_get_nodeName(
1190 unknode *This = unknode_from_IXMLDOMNode( iface );
1192 FIXME("(%p)->(%p)\n", This, p);
1194 return node_get_nodeName(&This->node, p);
1197 static HRESULT WINAPI unknode_get_nodeValue(
1201 unknode *This = unknode_from_IXMLDOMNode( iface );
1203 FIXME("(%p)->(%p)\n", This, value);
1206 return E_INVALIDARG;
1208 V_VT(value) = VT_NULL;
1212 static HRESULT WINAPI unknode_put_nodeValue(
1216 unknode *This = unknode_from_IXMLDOMNode( iface );
1217 FIXME("(%p)->(v%d)\n", This, V_VT(&value));
1221 static HRESULT WINAPI unknode_get_nodeType(
1223 DOMNodeType* domNodeType )
1225 unknode *This = unknode_from_IXMLDOMNode( iface );
1227 FIXME("(%p)->(%p)\n", This, domNodeType);
1229 *domNodeType = This->node.node->type;
1233 static HRESULT WINAPI unknode_get_parentNode(
1235 IXMLDOMNode** parent )
1237 unknode *This = unknode_from_IXMLDOMNode( iface );
1238 FIXME("(%p)->(%p)\n", This, parent);
1239 if (!parent) return E_INVALIDARG;
1244 static HRESULT WINAPI unknode_get_childNodes(
1246 IXMLDOMNodeList** outList)
1248 unknode *This = unknode_from_IXMLDOMNode( iface );
1250 TRACE("(%p)->(%p)\n", This, outList);
1252 return node_get_child_nodes(&This->node, outList);
1255 static HRESULT WINAPI unknode_get_firstChild(
1257 IXMLDOMNode** domNode)
1259 unknode *This = unknode_from_IXMLDOMNode( iface );
1261 TRACE("(%p)->(%p)\n", This, domNode);
1263 return node_get_first_child(&This->node, domNode);
1266 static HRESULT WINAPI unknode_get_lastChild(
1268 IXMLDOMNode** domNode)
1270 unknode *This = unknode_from_IXMLDOMNode( iface );
1272 TRACE("(%p)->(%p)\n", This, domNode);
1274 return node_get_last_child(&This->node, domNode);
1277 static HRESULT WINAPI unknode_get_previousSibling(
1279 IXMLDOMNode** domNode)
1281 unknode *This = unknode_from_IXMLDOMNode( iface );
1283 TRACE("(%p)->(%p)\n", This, domNode);
1285 return node_get_previous_sibling(&This->node, domNode);
1288 static HRESULT WINAPI unknode_get_nextSibling(
1290 IXMLDOMNode** domNode)
1292 unknode *This = unknode_from_IXMLDOMNode( iface );
1294 TRACE("(%p)->(%p)\n", This, domNode);
1296 return node_get_next_sibling(&This->node, domNode);
1299 static HRESULT WINAPI unknode_get_attributes(
1301 IXMLDOMNamedNodeMap** attributeMap)
1303 unknode *This = unknode_from_IXMLDOMNode( iface );
1305 FIXME("(%p)->(%p)\n", This, attributeMap);
1307 return return_null_ptr((void**)attributeMap);
1310 static HRESULT WINAPI unknode_insertBefore(
1312 IXMLDOMNode* newNode, VARIANT refChild,
1313 IXMLDOMNode** outOldNode)
1315 unknode *This = unknode_from_IXMLDOMNode( iface );
1317 FIXME("(%p)->(%p x%d %p)\n", This, newNode, V_VT(&refChild), outOldNode);
1319 return node_insert_before(&This->node, newNode, &refChild, outOldNode);
1322 static HRESULT WINAPI unknode_replaceChild(
1324 IXMLDOMNode* newNode,
1325 IXMLDOMNode* oldNode,
1326 IXMLDOMNode** outOldNode)
1328 unknode *This = unknode_from_IXMLDOMNode( iface );
1330 FIXME("(%p)->(%p %p %p)\n", This, newNode, oldNode, outOldNode);
1332 return node_replace_child(&This->node, newNode, oldNode, outOldNode);
1335 static HRESULT WINAPI unknode_removeChild(
1337 IXMLDOMNode* domNode, IXMLDOMNode** oldNode)
1339 unknode *This = unknode_from_IXMLDOMNode( iface );
1340 return node_remove_child(&This->node, domNode, oldNode);
1343 static HRESULT WINAPI unknode_appendChild(
1345 IXMLDOMNode* newNode, IXMLDOMNode** outNewNode)
1347 unknode *This = unknode_from_IXMLDOMNode( iface );
1348 return node_append_child(&This->node, newNode, outNewNode);
1351 static HRESULT WINAPI unknode_hasChildNodes(
1353 VARIANT_BOOL* pbool)
1355 unknode *This = unknode_from_IXMLDOMNode( iface );
1356 return node_has_childnodes(&This->node, pbool);
1359 static HRESULT WINAPI unknode_get_ownerDocument(
1361 IXMLDOMDocument** domDocument)
1363 unknode *This = unknode_from_IXMLDOMNode( iface );
1364 return node_get_owner_doc(&This->node, domDocument);
1367 static HRESULT WINAPI unknode_cloneNode(
1369 VARIANT_BOOL pbool, IXMLDOMNode** outNode)
1371 unknode *This = unknode_from_IXMLDOMNode( iface );
1372 return node_clone(&This->node, pbool, outNode );
1375 static HRESULT WINAPI unknode_get_nodeTypeString(
1379 unknode *This = unknode_from_IXMLDOMNode( iface );
1381 FIXME("(%p)->(%p)\n", This, p);
1383 return node_get_nodeName(&This->node, p);
1386 static HRESULT WINAPI unknode_get_text(
1390 unknode *This = unknode_from_IXMLDOMNode( iface );
1391 return node_get_text(&This->node, p);
1394 static HRESULT WINAPI unknode_put_text(
1398 unknode *This = unknode_from_IXMLDOMNode( iface );
1399 return node_put_text(&This->node, p);
1402 static HRESULT WINAPI unknode_get_specified(
1404 VARIANT_BOOL* isSpecified)
1406 unknode *This = unknode_from_IXMLDOMNode( iface );
1407 FIXME("(%p)->(%p) stub!\n", This, isSpecified);
1408 *isSpecified = VARIANT_TRUE;
1412 static HRESULT WINAPI unknode_get_definition(
1414 IXMLDOMNode** definitionNode)
1416 unknode *This = unknode_from_IXMLDOMNode( iface );
1417 FIXME("(%p)->(%p)\n", This, definitionNode);
1421 static HRESULT WINAPI unknode_get_nodeTypedValue(
1425 unknode *This = unknode_from_IXMLDOMNode( iface );
1426 FIXME("(%p)->(%p)\n", This, var1);
1427 return return_null_var(var1);
1430 static HRESULT WINAPI unknode_put_nodeTypedValue(
1434 unknode *This = unknode_from_IXMLDOMNode( iface );
1435 FIXME("(%p)->(%s)\n", This, debugstr_variant(&typedValue));
1439 static HRESULT WINAPI unknode_get_dataType(
1443 unknode *This = unknode_from_IXMLDOMNode( iface );
1444 TRACE("(%p)->(%p)\n", This, var1);
1445 return return_null_var(var1);
1448 static HRESULT WINAPI unknode_put_dataType(
1452 unknode *This = unknode_from_IXMLDOMNode( iface );
1454 FIXME("(%p)->(%s)\n", This, debugstr_w(p));
1457 return E_INVALIDARG;
1462 static HRESULT WINAPI unknode_get_xml(
1466 unknode *This = unknode_from_IXMLDOMNode( iface );
1468 FIXME("(%p)->(%p)\n", This, p);
1470 return node_get_xml(&This->node, FALSE, p);
1473 static HRESULT WINAPI unknode_transformNode(
1475 IXMLDOMNode* domNode, BSTR* p)
1477 unknode *This = unknode_from_IXMLDOMNode( iface );
1478 return node_transform_node(&This->node, domNode, p);
1481 static HRESULT WINAPI unknode_selectNodes(
1483 BSTR p, IXMLDOMNodeList** outList)
1485 unknode *This = unknode_from_IXMLDOMNode( iface );
1486 return node_select_nodes(&This->node, p, outList);
1489 static HRESULT WINAPI unknode_selectSingleNode(
1491 BSTR p, IXMLDOMNode** outNode)
1493 unknode *This = unknode_from_IXMLDOMNode( iface );
1494 return node_select_singlenode(&This->node, p, outNode);
1497 static HRESULT WINAPI unknode_get_parsed(
1499 VARIANT_BOOL* isParsed)
1501 unknode *This = unknode_from_IXMLDOMNode( iface );
1502 FIXME("(%p)->(%p) stub!\n", This, isParsed);
1503 *isParsed = VARIANT_TRUE;
1507 static HRESULT WINAPI unknode_get_namespaceURI(
1511 unknode *This = unknode_from_IXMLDOMNode( iface );
1512 TRACE("(%p)->(%p)\n", This, p);
1513 return node_get_namespaceURI(&This->node, p);
1516 static HRESULT WINAPI unknode_get_prefix(
1520 unknode *This = unknode_from_IXMLDOMNode( iface );
1521 return node_get_prefix(&This->node, p);
1524 static HRESULT WINAPI unknode_get_baseName(
1528 unknode *This = unknode_from_IXMLDOMNode( iface );
1529 return node_get_base_name(&This->node, p);
1532 static HRESULT WINAPI unknode_transformNodeToObject(
1534 IXMLDOMNode* domNode, VARIANT var1)
1536 unknode *This = unknode_from_IXMLDOMNode( iface );
1537 FIXME("(%p)->(%p %s)\n", This, domNode, debugstr_variant(&var1));
1541 static const struct IXMLDOMNodeVtbl unknode_vtbl =
1543 unknode_QueryInterface,
1546 unknode_GetTypeInfoCount,
1547 unknode_GetTypeInfo,
1548 unknode_GetIDsOfNames,
1550 unknode_get_nodeName,
1551 unknode_get_nodeValue,
1552 unknode_put_nodeValue,
1553 unknode_get_nodeType,
1554 unknode_get_parentNode,
1555 unknode_get_childNodes,
1556 unknode_get_firstChild,
1557 unknode_get_lastChild,
1558 unknode_get_previousSibling,
1559 unknode_get_nextSibling,
1560 unknode_get_attributes,
1561 unknode_insertBefore,
1562 unknode_replaceChild,
1563 unknode_removeChild,
1564 unknode_appendChild,
1565 unknode_hasChildNodes,
1566 unknode_get_ownerDocument,
1568 unknode_get_nodeTypeString,
1571 unknode_get_specified,
1572 unknode_get_definition,
1573 unknode_get_nodeTypedValue,
1574 unknode_put_nodeTypedValue,
1575 unknode_get_dataType,
1576 unknode_put_dataType,
1578 unknode_transformNode,
1579 unknode_selectNodes,
1580 unknode_selectSingleNode,
1582 unknode_get_namespaceURI,
1584 unknode_get_baseName,
1585 unknode_transformNodeToObject
1588 IXMLDOMNode *create_node( xmlNodePtr node )
1597 TRACE("type %d\n", node->type);
1600 case XML_ELEMENT_NODE:
1601 pUnk = create_element( node );
1603 case XML_ATTRIBUTE_NODE:
1604 pUnk = create_attribute( node );
1607 pUnk = create_text( node );
1609 case XML_CDATA_SECTION_NODE:
1610 pUnk = create_cdata( node );
1612 case XML_ENTITY_REF_NODE:
1613 pUnk = create_doc_entity_ref( node );
1616 pUnk = create_pi( node );
1618 case XML_COMMENT_NODE:
1619 pUnk = create_comment( node );
1621 case XML_DOCUMENT_NODE:
1622 pUnk = create_domdoc( node );
1624 case XML_DOCUMENT_FRAG_NODE:
1625 pUnk = create_doc_fragment( node );
1628 pUnk = create_doc_type( node );
1633 FIXME("only creating basic node for type %d\n", node->type);
1635 new_node = heap_alloc(sizeof(unknode));
1639 new_node->IXMLDOMNode_iface.lpVtbl = &unknode_vtbl;
1641 init_xmlnode(&new_node->node, node, &new_node->IXMLDOMNode_iface, NULL);
1642 pUnk = (IUnknown*)&new_node->IXMLDOMNode_iface;
1646 hr = IUnknown_QueryInterface(pUnk, &IID_IXMLDOMNode, (LPVOID*)&ret);
1647 IUnknown_Release(pUnk);
1648 if(FAILED(hr)) return NULL;