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/imports.h>
39 # include <libxslt/variables.h>
40 # include <libxslt/xsltutils.h>
41 # include <libxslt/xsltInternals.h>
52 #include "msxml_private.h"
54 #include "wine/debug.h"
58 WINE_DEFAULT_DEBUG_CHANNEL(msxml
);
61 extern void* libxslt_handle
;
62 # define MAKE_FUNCPTR(f) extern typeof(f) * p##f
63 MAKE_FUNCPTR(xsltApplyStylesheet
);
64 MAKE_FUNCPTR(xsltApplyStylesheetUser
);
65 MAKE_FUNCPTR(xsltCleanupGlobals
);
66 MAKE_FUNCPTR(xsltFreeStylesheet
);
67 MAKE_FUNCPTR(xsltFreeTransformContext
);
68 MAKE_FUNCPTR(xsltNewTransformContext
);
69 MAKE_FUNCPTR(xsltNextImport
);
70 MAKE_FUNCPTR(xsltParseStylesheetDoc
);
71 MAKE_FUNCPTR(xsltQuoteUserParams
);
72 MAKE_FUNCPTR(xsltSaveResultTo
);
75 WINE_DECLARE_DEBUG_CHANNEL(winediag
);
78 static const IID IID_xmlnode
= {0x4f2f4ba2,0xb822,0x11df,{0x8b,0x8a,0x68,0x50,0xdf,0xd7,0x20,0x85}};
80 xmlNodePtr
xmlNodePtr_from_domnode( IXMLDOMNode
*iface
, xmlElementType type
)
86 This
= get_node_obj( iface
);
87 if ( !This
|| !This
->node
)
89 if ( type
&& This
->node
->type
!= type
)
94 BOOL
node_query_interface(xmlnode
*This
, REFIID riid
, void **ppv
)
96 if(IsEqualGUID(&IID_xmlnode
, riid
)) {
97 TRACE("(%p)->(IID_xmlnode %p)\n", This
, ppv
);
102 return dispex_query_interface(&This
->dispex
, riid
, ppv
);
105 /* common ISupportErrorInfo implementation */
107 ISupportErrorInfo ISupportErrorInfo_iface
;
113 static inline SupportErrorInfo
*impl_from_ISupportErrorInfo(ISupportErrorInfo
*iface
)
115 return CONTAINING_RECORD(iface
, SupportErrorInfo
, ISupportErrorInfo_iface
);
118 static HRESULT WINAPI
SupportErrorInfo_QueryInterface(ISupportErrorInfo
*iface
, REFIID riid
, void **obj
)
120 SupportErrorInfo
*This
= impl_from_ISupportErrorInfo(iface
);
121 TRACE("(%p)->(%s %p)\n", This
, debugstr_guid(riid
), obj
);
125 if (IsEqualGUID(riid
, &IID_IUnknown
) || IsEqualGUID(riid
, &IID_ISupportErrorInfo
)) {
127 ISupportErrorInfo_AddRef(iface
);
131 return E_NOINTERFACE
;
134 static ULONG WINAPI
SupportErrorInfo_AddRef(ISupportErrorInfo
*iface
)
136 SupportErrorInfo
*This
= impl_from_ISupportErrorInfo(iface
);
137 ULONG ref
= InterlockedIncrement(&This
->ref
);
138 TRACE("(%p)->(%d)\n", This
, ref
);
142 static ULONG WINAPI
SupportErrorInfo_Release(ISupportErrorInfo
*iface
)
144 SupportErrorInfo
*This
= impl_from_ISupportErrorInfo(iface
);
145 LONG ref
= InterlockedDecrement(&This
->ref
);
147 TRACE("(%p)->(%d)\n", This
, ref
);
155 static HRESULT WINAPI
SupportErrorInfo_InterfaceSupportsErrorInfo(ISupportErrorInfo
*iface
, REFIID riid
)
157 SupportErrorInfo
*This
= impl_from_ISupportErrorInfo(iface
);
158 enum tid_t
const *tid
;
160 TRACE("(%p)->(%s)\n", This
, debugstr_guid(riid
));
163 while (*tid
!= NULL_tid
)
165 if (IsEqualGUID(riid
, get_riid_from_tid(*tid
)))
173 static const struct ISupportErrorInfoVtbl SupportErrorInfoVtbl
= {
174 SupportErrorInfo_QueryInterface
,
175 SupportErrorInfo_AddRef
,
176 SupportErrorInfo_Release
,
177 SupportErrorInfo_InterfaceSupportsErrorInfo
180 HRESULT
node_create_supporterrorinfo(enum tid_t
const *iids
, void **obj
)
182 SupportErrorInfo
*This
;
184 This
= heap_alloc(sizeof(*This
));
185 if (!This
) return E_OUTOFMEMORY
;
187 This
->ISupportErrorInfo_iface
.lpVtbl
= &SupportErrorInfoVtbl
;
191 *obj
= &This
->ISupportErrorInfo_iface
;
196 xmlnode
*get_node_obj(IXMLDOMNode
*node
)
201 hres
= IXMLDOMNode_QueryInterface(node
, &IID_xmlnode
, (void**)&obj
);
202 if (!obj
) WARN("node is not our IXMLDOMNode implementation\n");
203 return SUCCEEDED(hres
) ? obj
: NULL
;
206 HRESULT
node_get_nodeName(xmlnode
*This
, BSTR
*name
)
214 hr
= node_get_base_name(This
, &base
);
215 if (hr
!= S_OK
) return hr
;
217 hr
= node_get_prefix(This
, &prefix
);
220 static const WCHAR colW
= ':';
224 ptr
= *name
= SysAllocStringLen(NULL
, SysStringLen(base
) + SysStringLen(prefix
) + 1);
225 memcpy(ptr
, prefix
, SysStringByteLen(prefix
));
226 ptr
+= SysStringLen(prefix
);
227 memcpy(ptr
++, &colW
, sizeof(WCHAR
));
228 memcpy(ptr
, base
, SysStringByteLen(base
));
231 SysFreeString(prefix
);
239 HRESULT
node_get_content(xmlnode
*This
, VARIANT
*value
)
246 content
= xmlNodeGetContent(This
->node
);
247 V_VT(value
) = VT_BSTR
;
248 V_BSTR(value
) = bstr_from_xmlChar( content
);
251 TRACE("%p returned %s\n", This
, debugstr_w(V_BSTR(value
)));
255 HRESULT
node_set_content(xmlnode
*This
, LPCWSTR value
)
259 TRACE("(%p)->(%s)\n", This
, debugstr_w(value
));
260 str
= xmlchar_from_wchar(value
);
262 return E_OUTOFMEMORY
;
264 xmlNodeSetContent(This
->node
, str
);
269 static HRESULT
node_set_content_escaped(xmlnode
*This
, LPCWSTR value
)
271 xmlChar
*str
, *escaped
;
273 TRACE("(%p)->(%s)\n", This
, debugstr_w(value
));
274 str
= xmlchar_from_wchar(value
);
276 return E_OUTOFMEMORY
;
278 escaped
= xmlEncodeSpecialChars(NULL
, str
);
282 return E_OUTOFMEMORY
;
285 xmlNodeSetContent(This
->node
, escaped
);
293 HRESULT
node_put_value(xmlnode
*This
, VARIANT
*value
)
297 if (V_VT(value
) != VT_BSTR
)
299 VARIANT string_value
;
301 VariantInit(&string_value
);
302 hr
= VariantChangeType(&string_value
, value
, 0, VT_BSTR
);
304 WARN("Couldn't convert to VT_BSTR\n");
308 hr
= node_set_content(This
, V_BSTR(&string_value
));
309 VariantClear(&string_value
);
312 hr
= node_set_content(This
, V_BSTR(value
));
317 HRESULT
node_put_value_escaped(xmlnode
*This
, VARIANT
*value
)
321 if (V_VT(value
) != VT_BSTR
)
323 VARIANT string_value
;
325 VariantInit(&string_value
);
326 hr
= VariantChangeType(&string_value
, value
, 0, VT_BSTR
);
328 WARN("Couldn't convert to VT_BSTR\n");
332 hr
= node_set_content_escaped(This
, V_BSTR(&string_value
));
333 VariantClear(&string_value
);
336 hr
= node_set_content_escaped(This
, V_BSTR(value
));
341 static HRESULT
get_node(
347 TRACE("(%p)->(%s %p %p)\n", This
, name
, node
, out
);
352 /* if we don't have a doc, use our parent. */
353 if(node
&& !node
->doc
&& node
->parent
)
354 node
->doc
= node
->parent
->doc
;
356 *out
= create_node( node
);
362 HRESULT
node_get_parent(xmlnode
*This
, IXMLDOMNode
**parent
)
364 return get_node( This
, "parent", This
->node
->parent
, parent
);
367 HRESULT
node_get_child_nodes(xmlnode
*This
, IXMLDOMNodeList
**ret
)
372 *ret
= create_children_nodelist(This
->node
);
374 return E_OUTOFMEMORY
;
379 HRESULT
node_get_first_child(xmlnode
*This
, IXMLDOMNode
**ret
)
381 return get_node(This
, "firstChild", This
->node
->children
, ret
);
384 HRESULT
node_get_last_child(xmlnode
*This
, IXMLDOMNode
**ret
)
386 return get_node(This
, "lastChild", This
->node
->last
, ret
);
389 HRESULT
node_get_previous_sibling(xmlnode
*This
, IXMLDOMNode
**ret
)
391 return get_node(This
, "previous", This
->node
->prev
, ret
);
394 HRESULT
node_get_next_sibling(xmlnode
*This
, IXMLDOMNode
**ret
)
396 return get_node(This
, "next", This
->node
->next
, ret
);
399 static int node_get_inst_cnt(xmlNodePtr node
)
401 int ret
= *(LONG
*)&node
->_private
;
404 /* add attribute counts */
405 if (node
->type
== XML_ELEMENT_NODE
)
407 xmlAttrPtr prop
= node
->properties
;
411 ret
+= node_get_inst_cnt((xmlNodePtr
)prop
);
416 /* add children counts */
417 child
= node
->children
;
420 ret
+= node_get_inst_cnt(child
);
427 int xmlnode_get_inst_cnt(xmlnode
*node
)
429 return node_get_inst_cnt(node
->node
);
432 HRESULT
node_insert_before(xmlnode
*This
, IXMLDOMNode
*new_child
, const VARIANT
*ref_child
,
435 IXMLDOMNode
*before
= NULL
;
444 node_obj
= get_node_obj(new_child
);
445 if(!node_obj
) return E_FAIL
;
447 switch(V_VT(ref_child
))
455 if (V_UNKNOWN(ref_child
))
457 hr
= IUnknown_QueryInterface(V_UNKNOWN(ref_child
), &IID_IXMLDOMNode
, (void**)&before
);
458 if(FAILED(hr
)) return hr
;
463 FIXME("refChild var type %x\n", V_VT(ref_child
));
467 TRACE("new child %p, This->node %p\n", node_obj
->node
, This
->node
);
469 if(!node_obj
->node
->parent
)
470 if(xmldoc_remove_orphan(node_obj
->node
->doc
, node_obj
->node
) != S_OK
)
471 WARN("%p is not an orphan of %p\n", node_obj
->node
, node_obj
->node
->doc
);
473 refcount
= xmlnode_get_inst_cnt(node_obj
);
477 xmlnode
*before_node_obj
= get_node_obj(before
);
478 IXMLDOMNode_Release(before
);
479 if(!before_node_obj
) return E_FAIL
;
482 /* unlink from current parent first */
485 hr
= IXMLDOMNode_removeChild(node_obj
->parent
, node_obj
->iface
, NULL
);
486 if (hr
== S_OK
) xmldoc_remove_orphan(node_obj
->node
->doc
, node_obj
->node
);
488 doc
= node_obj
->node
->doc
;
492 xmlnode
*before_node_obj
= get_node_obj(before
);
494 /* refs count including subtree */
495 if (doc
!= before_node_obj
->node
->doc
)
496 refcount
= xmlnode_get_inst_cnt(node_obj
);
498 if (refcount
) xmldoc_add_refs(before_node_obj
->node
->doc
, refcount
);
499 xmlAddPrevSibling(before_node_obj
->node
, node_obj
->node
);
500 if (refcount
) xmldoc_release_refs(doc
, refcount
);
501 node_obj
->parent
= This
->parent
;
505 if (doc
!= This
->node
->doc
)
506 refcount
= xmlnode_get_inst_cnt(node_obj
);
508 if (refcount
) xmldoc_add_refs(This
->node
->doc
, refcount
);
509 /* xmlAddChild doesn't unlink node from previous parent */
510 xmlUnlinkNode(node_obj
->node
);
511 xmlAddChild(This
->node
, node_obj
->node
);
512 if (refcount
) xmldoc_release_refs(doc
, refcount
);
513 node_obj
->parent
= This
->iface
;
518 IXMLDOMNode_AddRef(new_child
);
526 HRESULT
node_replace_child(xmlnode
*This
, IXMLDOMNode
*newChild
, IXMLDOMNode
*oldChild
,
529 xmlnode
*old_child
, *new_child
;
530 xmlDocPtr leaving_doc
;
531 xmlNode
*my_ancestor
;
534 /* Do not believe any documentation telling that newChild == NULL
535 means removal. It does certainly *not* apply to msxml3! */
536 if(!newChild
|| !oldChild
)
542 old_child
= get_node_obj(oldChild
);
543 if(!old_child
) return E_FAIL
;
545 if(old_child
->node
->parent
!= This
->node
)
547 WARN("childNode %p is not a child of %p\n", oldChild
, This
);
551 new_child
= get_node_obj(newChild
);
552 if(!new_child
) return E_FAIL
;
554 my_ancestor
= This
->node
;
557 if(my_ancestor
== new_child
->node
)
559 WARN("tried to create loop\n");
562 my_ancestor
= my_ancestor
->parent
;
565 if(!new_child
->node
->parent
)
566 if(xmldoc_remove_orphan(new_child
->node
->doc
, new_child
->node
) != S_OK
)
567 WARN("%p is not an orphan of %p\n", new_child
->node
, new_child
->node
->doc
);
569 leaving_doc
= new_child
->node
->doc
;
571 if (leaving_doc
!= old_child
->node
->doc
)
572 refcount
= xmlnode_get_inst_cnt(new_child
);
574 if (refcount
) xmldoc_add_refs(old_child
->node
->doc
, refcount
);
575 xmlReplaceNode(old_child
->node
, new_child
->node
);
576 if (refcount
) xmldoc_release_refs(leaving_doc
, refcount
);
577 new_child
->parent
= old_child
->parent
;
578 old_child
->parent
= NULL
;
580 xmldoc_add_orphan(old_child
->node
->doc
, old_child
->node
);
584 IXMLDOMNode_AddRef(oldChild
);
591 HRESULT
node_remove_child(xmlnode
*This
, IXMLDOMNode
* child
, IXMLDOMNode
** oldChild
)
595 if(!child
) return E_INVALIDARG
;
600 child_node
= get_node_obj(child
);
601 if(!child_node
) return E_FAIL
;
603 if(child_node
->node
->parent
!= This
->node
)
605 WARN("childNode %p is not a child of %p\n", child
, This
);
609 xmlUnlinkNode(child_node
->node
);
610 child_node
->parent
= NULL
;
611 xmldoc_add_orphan(child_node
->node
->doc
, child_node
->node
);
615 IXMLDOMNode_AddRef(child
);
622 HRESULT
node_append_child(xmlnode
*This
, IXMLDOMNode
*child
, IXMLDOMNode
**outChild
)
631 hr
= IXMLDOMNode_get_nodeType(child
, &type
);
632 if(FAILED(hr
) || type
== NODE_ATTRIBUTE
) {
633 if (outChild
) *outChild
= NULL
;
638 return IXMLDOMNode_insertBefore(This
->iface
, child
, var
, outChild
);
641 HRESULT
node_has_childnodes(const xmlnode
*This
, VARIANT_BOOL
*ret
)
643 if (!ret
) return E_INVALIDARG
;
645 if (!This
->node
->children
)
647 *ret
= VARIANT_FALSE
;
655 HRESULT
node_get_owner_doc(const xmlnode
*This
, IXMLDOMDocument
**doc
)
657 return get_domdoc_from_xmldoc(This
->node
->doc
, (IXMLDOMDocument3
**)doc
);
660 HRESULT
node_clone(xmlnode
*This
, VARIANT_BOOL deep
, IXMLDOMNode
**cloneNode
)
665 if(!cloneNode
) return E_INVALIDARG
;
667 clone
= xmlCopyNode(This
->node
, deep
? 1 : 2);
670 xmlSetTreeDoc(clone
, This
->node
->doc
);
671 xmldoc_add_orphan(clone
->doc
, clone
);
673 node
= create_node(clone
);
676 ERR("Copy failed\n");
677 xmldoc_remove_orphan(clone
->doc
, clone
);
686 ERR("Copy failed\n");
693 static inline xmlChar
* trim_whitespace(xmlChar
* str
)
701 while (*ret
&& isspace(*ret
))
703 len
= xmlStrlen(ret
);
705 while (isspace(ret
[len
-1])) --len
;
707 ret
= xmlStrndup(ret
, len
);
712 static xmlChar
* do_get_text(xmlNodePtr node
)
716 BOOL preserving
= is_preserving_whitespace(node
);
720 str
= xmlNodeGetContent(node
);
724 xmlElementType prev_type
= XML_TEXT_NODE
;
726 str
= xmlStrdup(BAD_CAST
"");
727 for (child
= node
->children
; child
!= NULL
; child
= child
->next
)
731 case XML_ELEMENT_NODE
:
732 tmp
= do_get_text(child
);
735 case XML_CDATA_SECTION_NODE
:
736 case XML_ENTITY_REF_NODE
:
737 case XML_ENTITY_NODE
:
738 tmp
= xmlNodeGetContent(child
);
749 if (prev_type
== XML_ELEMENT_NODE
&& child
->type
== XML_ELEMENT_NODE
)
750 str
= xmlStrcat(str
, BAD_CAST
" ");
751 str
= xmlStrcat(str
, tmp
);
752 prev_type
= child
->type
;
761 case XML_ELEMENT_NODE
:
763 case XML_ENTITY_REF_NODE
:
764 case XML_ENTITY_NODE
:
765 case XML_DOCUMENT_NODE
:
766 case XML_DOCUMENT_FRAG_NODE
:
768 str
= trim_whitespace(str
);
777 HRESULT
node_get_text(const xmlnode
*This
, BSTR
*text
)
782 if (!text
) return E_INVALIDARG
;
784 content
= do_get_text(This
->node
);
787 str
= bstr_from_xmlChar(content
);
791 /* Always return a string. */
792 if (!str
) str
= SysAllocStringLen( NULL
, 0 );
794 TRACE("%p %s\n", This
, debugstr_w(str
) );
800 HRESULT
node_put_text(xmlnode
*This
, BSTR text
)
804 TRACE("(%p)->(%s)\n", This
, debugstr_w(text
));
806 str
= xmlchar_from_wchar(text
);
808 /* Escape the string. */
809 str2
= xmlEncodeEntitiesReentrant(This
->node
->doc
, str
);
812 xmlNodeSetContent(This
->node
, str2
);
818 BSTR
EnsureCorrectEOL(BSTR sInput
)
825 nLen
= SysStringLen(sInput
);
826 /* Count line endings */
827 for(i
=0; i
< nLen
; i
++)
829 if(sInput
[i
] == '\n')
833 TRACE("len=%d, num=%d\n", nLen
, nNum
);
835 /* Add linefeed as needed */
839 sNew
= SysAllocStringLen(NULL
, nLen
+ nNum
);
840 for(i
=0; i
< nLen
; i
++)
842 if(sInput
[i
] == '\n')
844 sNew
[i
+nPlace
] = '\r';
847 sNew
[i
+nPlace
] = sInput
[i
];
850 SysFreeString(sInput
);
857 TRACE("len %d\n", SysStringLen(sNew
));
863 * We are trying to replicate the same behaviour as msxml by converting
864 * line endings to \r\n and using indents as \t. The problem is that msxml
865 * only formats nodes that have a line ending. Using libxml we cannot
866 * reproduce behaviour exactly.
869 HRESULT
node_get_xml(xmlnode
*This
, BOOL ensure_eol
, BSTR
*ret
)
871 xmlBufferPtr xml_buf
;
880 xml_buf
= xmlBufferCreate();
882 return E_OUTOFMEMORY
;
884 xmldecl
= xmldoc_unlink_xmldecl( This
->node
->doc
);
886 size
= xmlNodeDump(xml_buf
, This
->node
->doc
, This
->node
, 0, 1);
888 const xmlChar
*buf_content
;
891 /* Attribute Nodes return a space in front of their name */
892 buf_content
= xmlBufferContent(xml_buf
);
894 content
= bstr_from_xmlChar(buf_content
+ (buf_content
[0] == ' ' ? 1 : 0));
896 content
= EnsureCorrectEOL(content
);
900 *ret
= SysAllocStringLen(NULL
, 0);
903 xmlBufferFree(xml_buf
);
904 xmldoc_link_xmldecl( This
->node
->doc
, xmldecl
);
905 return *ret
? S_OK
: E_OUTOFMEMORY
;
908 #ifdef SONAME_LIBXSLT
910 /* duplicates xmlBufferWriteQuotedString() logic */
911 static void xml_write_quotedstring(xmlOutputBufferPtr buf
, const xmlChar
*string
)
913 const xmlChar
*cur
, *base
;
915 if (xmlStrchr(string
, '\"'))
917 if (xmlStrchr(string
, '\''))
919 xmlOutputBufferWrite(buf
, 1, "\"");
927 xmlOutputBufferWrite(buf
, cur
-base
, (const char*)base
);
928 xmlOutputBufferWrite(buf
, 6, """);
936 xmlOutputBufferWrite(buf
, cur
-base
, (const char*)base
);
937 xmlOutputBufferWrite(buf
, 1, "\"");
941 xmlOutputBufferWrite(buf
, 1, "\'");
942 xmlOutputBufferWriteString(buf
, (const char*)string
);
943 xmlOutputBufferWrite(buf
, 1, "\'");
948 xmlOutputBufferWrite(buf
, 1, "\"");
949 xmlOutputBufferWriteString(buf
, (const char*)string
);
950 xmlOutputBufferWrite(buf
, 1, "\"");
954 static int XMLCALL
transform_to_stream_write(void *context
, const char *buffer
, int len
)
957 HRESULT hr
= IStream_Write((IStream
*)context
, buffer
, len
, &written
);
958 return hr
== S_OK
? written
: -1;
961 /* Output for method "text" */
962 static void transform_write_text(xmlDocPtr result
, xsltStylesheetPtr style
, xmlOutputBufferPtr output
)
964 xmlNodePtr cur
= result
->children
;
967 if (cur
->type
== XML_TEXT_NODE
)
968 xmlOutputBufferWriteString(output
, (const char*)cur
->content
);
970 /* skip to next node */
973 if ((cur
->children
->type
!= XML_ENTITY_DECL
) &&
974 (cur
->children
->type
!= XML_ENTITY_REF_NODE
) &&
975 (cur
->children
->type
!= XML_ENTITY_NODE
))
992 if (cur
== (xmlNodePtr
) style
->doc
) {
1004 #undef XSLT_GET_IMPORT_PTR
1005 #define XSLT_GET_IMPORT_PTR(res, style, name) { \
1006 xsltStylesheetPtr st = style; \
1008 while (st != NULL) { \
1009 if (st->name != NULL) { res = st->name; break; } \
1010 st = pxsltNextImport(st); \
1013 #undef XSLT_GET_IMPORT_INT
1014 #define XSLT_GET_IMPORT_INT(res, style, name) { \
1015 xsltStylesheetPtr st = style; \
1017 while (st != NULL) { \
1018 if (st->name != -1) { res = st->name; break; } \
1019 st = pxsltNextImport(st); \
1022 static void transform_write_xmldecl(xmlDocPtr result
, xsltStylesheetPtr style
, BOOL omit_encoding
, xmlOutputBufferPtr output
)
1024 int omit_xmldecl
, standalone
;
1026 XSLT_GET_IMPORT_INT(omit_xmldecl
, style
, omitXmlDeclaration
);
1027 if (omit_xmldecl
== 1) return;
1029 XSLT_GET_IMPORT_INT(standalone
, style
, standalone
);
1031 xmlOutputBufferWriteString(output
, "<?xml version=");
1032 if (result
->version
)
1034 xmlOutputBufferWriteString(output
, "\"");
1035 xmlOutputBufferWriteString(output
, (const char *)result
->version
);
1036 xmlOutputBufferWriteString(output
, "\"");
1039 xmlOutputBufferWriteString(output
, "\"1.0\"");
1043 const xmlChar
*encoding
;
1045 /* default encoding is UTF-16 */
1046 XSLT_GET_IMPORT_PTR(encoding
, style
, encoding
);
1047 xmlOutputBufferWriteString(output
, " encoding=");
1048 xmlOutputBufferWriteString(output
, "\"");
1049 xmlOutputBufferWriteString(output
, encoding
? (const char *)encoding
: "UTF-16");
1050 xmlOutputBufferWriteString(output
, "\"");
1053 /* standalone attribute */
1054 if (standalone
!= -1)
1055 xmlOutputBufferWriteString(output
, standalone
== 0 ? " standalone=\"no\"" : " standalone=\"yes\"");
1057 xmlOutputBufferWriteString(output
, "?>");
1060 static void htmldtd_dumpcontent(xmlOutputBufferPtr buf
, xmlDocPtr doc
)
1062 xmlDtdPtr cur
= doc
->intSubset
;
1064 xmlOutputBufferWriteString(buf
, "<!DOCTYPE ");
1065 xmlOutputBufferWriteString(buf
, (const char *)cur
->name
);
1066 if (cur
->ExternalID
)
1068 xmlOutputBufferWriteString(buf
, " PUBLIC ");
1069 xml_write_quotedstring(buf
, cur
->ExternalID
);
1072 xmlOutputBufferWriteString(buf
, " ");
1073 xml_write_quotedstring(buf
, cur
->SystemID
);
1076 else if (cur
->SystemID
)
1078 xmlOutputBufferWriteString(buf
, " SYSTEM ");
1079 xml_write_quotedstring(buf
, cur
->SystemID
);
1081 xmlOutputBufferWriteString(buf
, ">\n");
1084 /* Duplicates htmlDocContentDumpFormatOutput() the way we need it - doesn't add trailing newline. */
1085 static void htmldoc_dumpcontent(xmlOutputBufferPtr buf
, xmlDocPtr doc
, const char *encoding
, int format
)
1087 xmlElementType type
;
1089 /* force HTML output */
1091 doc
->type
= XML_HTML_DOCUMENT_NODE
;
1093 htmldtd_dumpcontent(buf
, doc
);
1094 if (doc
->children
) {
1095 xmlNodePtr cur
= doc
->children
;
1097 htmlNodeDumpFormatOutput(buf
, doc
, cur
, encoding
, format
);
1104 static inline BOOL
transform_is_empty_resultdoc(xmlDocPtr result
)
1106 return !result
->children
|| ((result
->children
->type
== XML_DTD_NODE
) && !result
->children
->next
);
1109 static inline BOOL
transform_is_valid_method(xsltStylesheetPtr style
)
1111 return !style
->methodURI
|| !(style
->method
&& xmlStrEqual(style
->method
, (const xmlChar
*)"xhtml"));
1114 /* Helper to write transformation result to specified output buffer. */
1115 static HRESULT
node_transform_write(xsltStylesheetPtr style
, xmlDocPtr result
, BOOL omit_encoding
, const char *encoding
, xmlOutputBufferPtr output
)
1117 const xmlChar
*method
;
1120 if (!transform_is_valid_method(style
))
1122 ERR("unknown output method\n");
1126 XSLT_GET_IMPORT_PTR(method
, style
, method
)
1127 XSLT_GET_IMPORT_INT(indent
, style
, indent
);
1129 if (!method
&& (result
->type
== XML_HTML_DOCUMENT_NODE
))
1130 method
= (const xmlChar
*) "html";
1132 if (method
&& xmlStrEqual(method
, (const xmlChar
*)"html"))
1134 htmlSetMetaEncoding(result
, (const xmlChar
*)encoding
);
1137 htmldoc_dumpcontent(output
, result
, (const char*)encoding
, indent
);
1139 else if (method
&& xmlStrEqual(method
, (const xmlChar
*)"xhtml"))
1141 htmlSetMetaEncoding(result
, (const xmlChar
*) encoding
);
1142 htmlDocContentDumpOutput(output
, result
, encoding
);
1144 else if (method
&& xmlStrEqual(method
, (const xmlChar
*)"text"))
1145 transform_write_text(result
, style
, output
);
1148 transform_write_xmldecl(result
, style
, omit_encoding
, output
);
1150 if (result
->children
)
1152 xmlNodePtr child
= result
->children
;
1156 xmlNodeDumpOutput(output
, result
, child
, 0, indent
== 1, encoding
);
1157 if (indent
&& ((child
->type
== XML_DTD_NODE
) || ((child
->type
== XML_COMMENT_NODE
) && child
->next
)))
1158 xmlOutputBufferWriteString(output
, "\r\n");
1159 child
= child
->next
;
1164 xmlOutputBufferFlush(output
);
1168 /* For BSTR output is always UTF-16, without 'encoding' attribute */
1169 static HRESULT
node_transform_write_to_bstr(xsltStylesheetPtr style
, xmlDocPtr result
, BSTR
*str
)
1173 if (transform_is_empty_resultdoc(result
))
1174 *str
= SysAllocStringLen(NULL
, 0);
1177 xmlOutputBufferPtr output
= xmlAllocOutputBuffer(xmlFindCharEncodingHandler("UTF-16"));
1178 const xmlChar
*content
;
1183 return E_OUTOFMEMORY
;
1185 hr
= node_transform_write(style
, result
, TRUE
, "UTF-16", output
);
1186 #ifdef LIBXML2_NEW_BUFFER
1187 content
= xmlBufContent(output
->conv
);
1188 len
= xmlBufUse(output
->conv
);
1190 content
= xmlBufferContent(output
->conv
);
1191 len
= xmlBufferLength(output
->conv
);
1193 /* UTF-16 encoder places UTF-16 bom, we don't need it for BSTR */
1194 content
+= sizeof(WCHAR
);
1195 *str
= SysAllocStringLen((WCHAR
*)content
, len
/sizeof(WCHAR
) - 1);
1196 xmlOutputBufferClose(output
);
1199 return *str
? hr
: E_OUTOFMEMORY
;
1202 static HRESULT
node_transform_write_to_stream(xsltStylesheetPtr style
, xmlDocPtr result
, IStream
*stream
)
1204 static const xmlChar
*utf16
= (const xmlChar
*)"UTF-16";
1205 xmlOutputBufferPtr output
;
1206 const xmlChar
*encoding
;
1209 if (transform_is_empty_resultdoc(result
))
1211 WARN("empty result document\n");
1215 if (style
->methodURI
&& (!style
->method
|| !xmlStrEqual(style
->method
, (const xmlChar
*) "xhtml")))
1217 ERR("unknown output method\n");
1221 /* default encoding is UTF-16 */
1222 XSLT_GET_IMPORT_PTR(encoding
, style
, encoding
);
1226 output
= xmlOutputBufferCreateIO(transform_to_stream_write
, NULL
, stream
, xmlFindCharEncodingHandler((const char*)encoding
));
1228 return E_OUTOFMEMORY
;
1230 hr
= node_transform_write(style
, result
, FALSE
, (const char*)encoding
, output
);
1231 xmlOutputBufferClose(output
);
1237 HRESULT
node_transform_node_params(const xmlnode
*This
, IXMLDOMNode
*stylesheet
, BSTR
*p
,
1238 IStream
*stream
, const struct xslprocessor_params
*params
)
1240 #ifdef SONAME_LIBXSLT
1241 xsltStylesheetPtr xsltSS
;
1245 if (!libxslt_handle
) return E_NOTIMPL
;
1246 if (!stylesheet
|| !p
) return E_INVALIDARG
;
1250 sheet
= get_node_obj(stylesheet
);
1251 if(!sheet
) return E_FAIL
;
1253 xsltSS
= pxsltParseStylesheetDoc(sheet
->node
->doc
);
1256 const char **xslparams
= NULL
;
1260 /* convert our parameter list to libxml2 format */
1261 if (params
&& params
->count
)
1263 struct xslprocessor_par
*par
;
1266 xslparams
= heap_alloc((params
->count
*2 + 1)*sizeof(char*));
1267 LIST_FOR_EACH_ENTRY(par
, ¶ms
->list
, struct xslprocessor_par
, entry
)
1269 xslparams
[i
++] = (char*)xmlchar_from_wchar(par
->name
);
1270 xslparams
[i
++] = (char*)xmlchar_from_wchar(par
->value
);
1272 xslparams
[i
] = NULL
;
1277 xsltTransformContextPtr ctxt
= pxsltNewTransformContext(xsltSS
, This
->node
->doc
);
1279 /* push parameters to user context */
1280 pxsltQuoteUserParams(ctxt
, xslparams
);
1281 result
= pxsltApplyStylesheetUser(xsltSS
, This
->node
->doc
, NULL
, NULL
, NULL
, ctxt
);
1282 pxsltFreeTransformContext(ctxt
);
1284 for (i
= 0; i
< params
->count
*2; i
++)
1285 heap_free((char*)xslparams
[i
]);
1286 heap_free(xslparams
);
1289 result
= pxsltApplyStylesheet(xsltSS
, This
->node
->doc
, NULL
);
1294 hr
= node_transform_write_to_stream(xsltSS
, result
, stream
);
1296 hr
= node_transform_write_to_bstr(xsltSS
, result
, p
);
1299 /* libxslt "helpfully" frees the XML document the stylesheet was
1300 generated from, too */
1302 pxsltFreeStylesheet(xsltSS
);
1305 if(!*p
) *p
= SysAllocStringLen(NULL
, 0);
1309 ERR_(winediag
)("libxslt headers were not found at compile time. Expect problems.\n");
1315 HRESULT
node_transform_node(const xmlnode
*node
, IXMLDOMNode
*stylesheet
, BSTR
*p
)
1317 return node_transform_node_params(node
, stylesheet
, p
, NULL
, NULL
);
1320 HRESULT
node_select_nodes(const xmlnode
*This
, BSTR query
, IXMLDOMNodeList
**nodes
)
1325 if (!query
|| !nodes
) return E_INVALIDARG
;
1327 str
= xmlchar_from_wchar(query
);
1328 hr
= create_selection(This
->node
, str
, nodes
);
1334 HRESULT
node_select_singlenode(const xmlnode
*This
, BSTR query
, IXMLDOMNode
**node
)
1336 IXMLDOMNodeList
*list
;
1339 hr
= node_select_nodes(This
, query
, &list
);
1342 hr
= IXMLDOMNodeList_nextNode(list
, node
);
1343 IXMLDOMNodeList_Release(list
);
1348 HRESULT
node_get_namespaceURI(xmlnode
*This
, BSTR
*namespaceURI
)
1350 xmlNsPtr ns
= This
->node
->ns
;
1353 return E_INVALIDARG
;
1355 *namespaceURI
= NULL
;
1358 *namespaceURI
= bstr_from_xmlChar(ns
->href
);
1360 TRACE("uri: %s\n", debugstr_w(*namespaceURI
));
1362 return *namespaceURI
? S_OK
: S_FALSE
;
1365 HRESULT
node_get_prefix(xmlnode
*This
, BSTR
*prefix
)
1367 xmlNsPtr ns
= This
->node
->ns
;
1369 if (!prefix
) return E_INVALIDARG
;
1373 if (ns
&& ns
->prefix
)
1374 *prefix
= bstr_from_xmlChar(ns
->prefix
);
1376 TRACE("prefix: %s\n", debugstr_w(*prefix
));
1378 return *prefix
? S_OK
: S_FALSE
;
1381 HRESULT
node_get_base_name(xmlnode
*This
, BSTR
*name
)
1383 if (!name
) return E_INVALIDARG
;
1385 *name
= bstr_from_xmlChar(This
->node
->name
);
1386 if (!*name
) return E_OUTOFMEMORY
;
1388 TRACE("returning %s\n", debugstr_w(*name
));
1393 /* _private field holds a number of COM instances spawned from this libxml2 node */
1394 static void xmlnode_add_ref(xmlNodePtr node
)
1396 if (node
->type
== XML_DOCUMENT_NODE
) return;
1397 InterlockedIncrement((LONG
*)&node
->_private
);
1400 static void xmlnode_release(xmlNodePtr node
)
1402 if (node
->type
== XML_DOCUMENT_NODE
) return;
1403 InterlockedDecrement((LONG
*)&node
->_private
);
1406 void destroy_xmlnode(xmlnode
*This
)
1410 xmlnode_release(This
->node
);
1411 xmldoc_release(This
->node
->doc
);
1415 void init_xmlnode(xmlnode
*This
, xmlNodePtr node
, IXMLDOMNode
*node_iface
, dispex_static_data_t
*dispex_data
)
1419 xmlnode_add_ref(node
);
1420 xmldoc_add_ref(node
->doc
);
1424 This
->iface
= node_iface
;
1425 This
->parent
= NULL
;
1427 init_dispex(&This
->dispex
, (IUnknown
*)This
->iface
, dispex_data
);
1432 IXMLDOMNode IXMLDOMNode_iface
;
1436 static inline unknode
*unknode_from_IXMLDOMNode(IXMLDOMNode
*iface
)
1438 return CONTAINING_RECORD(iface
, unknode
, IXMLDOMNode_iface
);
1441 static HRESULT WINAPI
unknode_QueryInterface(
1446 unknode
*This
= unknode_from_IXMLDOMNode( iface
);
1448 TRACE("(%p)->(%s %p)\n", This
, debugstr_guid(riid
), ppvObject
);
1450 if (IsEqualGUID(riid
, &IID_IUnknown
)) {
1452 }else if (IsEqualGUID( riid
, &IID_IDispatch
) ||
1453 IsEqualGUID( riid
, &IID_IXMLDOMNode
)) {
1454 *ppvObject
= &This
->IXMLDOMNode_iface
;
1455 }else if(node_query_interface(&This
->node
, riid
, ppvObject
)) {
1456 return *ppvObject
? S_OK
: E_NOINTERFACE
;
1458 FIXME("interface %s not implemented\n", debugstr_guid(riid
));
1460 return E_NOINTERFACE
;
1463 IUnknown_AddRef((IUnknown
*)*ppvObject
);
1467 static ULONG WINAPI
unknode_AddRef(
1468 IXMLDOMNode
*iface
)
1470 unknode
*This
= unknode_from_IXMLDOMNode( iface
);
1472 return InterlockedIncrement(&This
->ref
);
1475 static ULONG WINAPI
unknode_Release(
1476 IXMLDOMNode
*iface
)
1478 unknode
*This
= unknode_from_IXMLDOMNode( iface
);
1481 ref
= InterlockedDecrement( &This
->ref
);
1483 destroy_xmlnode(&This
->node
);
1490 static HRESULT WINAPI
unknode_GetTypeInfoCount(
1494 unknode
*This
= unknode_from_IXMLDOMNode( iface
);
1496 TRACE("(%p)->(%p)\n", This
, pctinfo
);
1503 static HRESULT WINAPI
unknode_GetTypeInfo(
1507 ITypeInfo
** ppTInfo
)
1509 unknode
*This
= unknode_from_IXMLDOMNode( iface
);
1512 TRACE("(%p)->(%u %u %p)\n", This
, iTInfo
, lcid
, ppTInfo
);
1514 hr
= get_typeinfo(IXMLDOMNode_tid
, ppTInfo
);
1519 static HRESULT WINAPI
unknode_GetIDsOfNames(
1522 LPOLESTR
* rgszNames
,
1527 unknode
*This
= unknode_from_IXMLDOMNode( iface
);
1529 ITypeInfo
*typeinfo
;
1532 TRACE("(%p)->(%s %p %u %u %p)\n", This
, debugstr_guid(riid
), rgszNames
, cNames
,
1535 if(!rgszNames
|| cNames
== 0 || !rgDispId
)
1536 return E_INVALIDARG
;
1538 hr
= get_typeinfo(IXMLDOMNode_tid
, &typeinfo
);
1541 hr
= ITypeInfo_GetIDsOfNames(typeinfo
, rgszNames
, cNames
, rgDispId
);
1542 ITypeInfo_Release(typeinfo
);
1548 static HRESULT WINAPI
unknode_Invoke(
1550 DISPID dispIdMember
,
1554 DISPPARAMS
* pDispParams
,
1555 VARIANT
* pVarResult
,
1556 EXCEPINFO
* pExcepInfo
,
1559 unknode
*This
= unknode_from_IXMLDOMNode( iface
);
1560 ITypeInfo
*typeinfo
;
1563 TRACE("(%p)->(%d %s %d %d %p %p %p %p)\n", This
, dispIdMember
, debugstr_guid(riid
),
1564 lcid
, wFlags
, pDispParams
, pVarResult
, pExcepInfo
, puArgErr
);
1566 hr
= get_typeinfo(IXMLDOMNode_tid
, &typeinfo
);
1569 hr
= ITypeInfo_Invoke(typeinfo
, &This
->IXMLDOMNode_iface
, dispIdMember
, wFlags
, pDispParams
,
1570 pVarResult
, pExcepInfo
, puArgErr
);
1571 ITypeInfo_Release(typeinfo
);
1577 static HRESULT WINAPI
unknode_get_nodeName(
1581 unknode
*This
= unknode_from_IXMLDOMNode( iface
);
1583 FIXME("(%p)->(%p)\n", This
, p
);
1585 return node_get_nodeName(&This
->node
, p
);
1588 static HRESULT WINAPI
unknode_get_nodeValue(
1592 unknode
*This
= unknode_from_IXMLDOMNode( iface
);
1594 FIXME("(%p)->(%p)\n", This
, value
);
1597 return E_INVALIDARG
;
1599 V_VT(value
) = VT_NULL
;
1603 static HRESULT WINAPI
unknode_put_nodeValue(
1607 unknode
*This
= unknode_from_IXMLDOMNode( iface
);
1608 FIXME("(%p)->(v%d)\n", This
, V_VT(&value
));
1612 static HRESULT WINAPI
unknode_get_nodeType(
1614 DOMNodeType
* domNodeType
)
1616 unknode
*This
= unknode_from_IXMLDOMNode( iface
);
1618 FIXME("(%p)->(%p)\n", This
, domNodeType
);
1620 *domNodeType
= This
->node
.node
->type
;
1624 static HRESULT WINAPI
unknode_get_parentNode(
1626 IXMLDOMNode
** parent
)
1628 unknode
*This
= unknode_from_IXMLDOMNode( iface
);
1629 FIXME("(%p)->(%p)\n", This
, parent
);
1630 if (!parent
) return E_INVALIDARG
;
1635 static HRESULT WINAPI
unknode_get_childNodes(
1637 IXMLDOMNodeList
** outList
)
1639 unknode
*This
= unknode_from_IXMLDOMNode( iface
);
1641 TRACE("(%p)->(%p)\n", This
, outList
);
1643 return node_get_child_nodes(&This
->node
, outList
);
1646 static HRESULT WINAPI
unknode_get_firstChild(
1648 IXMLDOMNode
** domNode
)
1650 unknode
*This
= unknode_from_IXMLDOMNode( iface
);
1652 TRACE("(%p)->(%p)\n", This
, domNode
);
1654 return node_get_first_child(&This
->node
, domNode
);
1657 static HRESULT WINAPI
unknode_get_lastChild(
1659 IXMLDOMNode
** domNode
)
1661 unknode
*This
= unknode_from_IXMLDOMNode( iface
);
1663 TRACE("(%p)->(%p)\n", This
, domNode
);
1665 return node_get_last_child(&This
->node
, domNode
);
1668 static HRESULT WINAPI
unknode_get_previousSibling(
1670 IXMLDOMNode
** domNode
)
1672 unknode
*This
= unknode_from_IXMLDOMNode( iface
);
1674 TRACE("(%p)->(%p)\n", This
, domNode
);
1676 return node_get_previous_sibling(&This
->node
, domNode
);
1679 static HRESULT WINAPI
unknode_get_nextSibling(
1681 IXMLDOMNode
** domNode
)
1683 unknode
*This
= unknode_from_IXMLDOMNode( iface
);
1685 TRACE("(%p)->(%p)\n", This
, domNode
);
1687 return node_get_next_sibling(&This
->node
, domNode
);
1690 static HRESULT WINAPI
unknode_get_attributes(
1692 IXMLDOMNamedNodeMap
** attributeMap
)
1694 unknode
*This
= unknode_from_IXMLDOMNode( iface
);
1696 FIXME("(%p)->(%p)\n", This
, attributeMap
);
1698 return return_null_ptr((void**)attributeMap
);
1701 static HRESULT WINAPI
unknode_insertBefore(
1703 IXMLDOMNode
* newNode
, VARIANT refChild
,
1704 IXMLDOMNode
** outOldNode
)
1706 unknode
*This
= unknode_from_IXMLDOMNode( iface
);
1708 FIXME("(%p)->(%p x%d %p)\n", This
, newNode
, V_VT(&refChild
), outOldNode
);
1710 return node_insert_before(&This
->node
, newNode
, &refChild
, outOldNode
);
1713 static HRESULT WINAPI
unknode_replaceChild(
1715 IXMLDOMNode
* newNode
,
1716 IXMLDOMNode
* oldNode
,
1717 IXMLDOMNode
** outOldNode
)
1719 unknode
*This
= unknode_from_IXMLDOMNode( iface
);
1721 FIXME("(%p)->(%p %p %p)\n", This
, newNode
, oldNode
, outOldNode
);
1723 return node_replace_child(&This
->node
, newNode
, oldNode
, outOldNode
);
1726 static HRESULT WINAPI
unknode_removeChild(
1728 IXMLDOMNode
* domNode
, IXMLDOMNode
** oldNode
)
1730 unknode
*This
= unknode_from_IXMLDOMNode( iface
);
1731 return node_remove_child(&This
->node
, domNode
, oldNode
);
1734 static HRESULT WINAPI
unknode_appendChild(
1736 IXMLDOMNode
* newNode
, IXMLDOMNode
** outNewNode
)
1738 unknode
*This
= unknode_from_IXMLDOMNode( iface
);
1739 return node_append_child(&This
->node
, newNode
, outNewNode
);
1742 static HRESULT WINAPI
unknode_hasChildNodes(
1744 VARIANT_BOOL
* pbool
)
1746 unknode
*This
= unknode_from_IXMLDOMNode( iface
);
1747 return node_has_childnodes(&This
->node
, pbool
);
1750 static HRESULT WINAPI
unknode_get_ownerDocument(
1752 IXMLDOMDocument
** domDocument
)
1754 unknode
*This
= unknode_from_IXMLDOMNode( iface
);
1755 return node_get_owner_doc(&This
->node
, domDocument
);
1758 static HRESULT WINAPI
unknode_cloneNode(
1760 VARIANT_BOOL pbool
, IXMLDOMNode
** outNode
)
1762 unknode
*This
= unknode_from_IXMLDOMNode( iface
);
1763 return node_clone(&This
->node
, pbool
, outNode
);
1766 static HRESULT WINAPI
unknode_get_nodeTypeString(
1770 unknode
*This
= unknode_from_IXMLDOMNode( iface
);
1772 FIXME("(%p)->(%p)\n", This
, p
);
1774 return node_get_nodeName(&This
->node
, p
);
1777 static HRESULT WINAPI
unknode_get_text(
1781 unknode
*This
= unknode_from_IXMLDOMNode( iface
);
1782 return node_get_text(&This
->node
, p
);
1785 static HRESULT WINAPI
unknode_put_text(
1789 unknode
*This
= unknode_from_IXMLDOMNode( iface
);
1790 return node_put_text(&This
->node
, p
);
1793 static HRESULT WINAPI
unknode_get_specified(
1795 VARIANT_BOOL
* isSpecified
)
1797 unknode
*This
= unknode_from_IXMLDOMNode( iface
);
1798 FIXME("(%p)->(%p) stub!\n", This
, isSpecified
);
1799 *isSpecified
= VARIANT_TRUE
;
1803 static HRESULT WINAPI
unknode_get_definition(
1805 IXMLDOMNode
** definitionNode
)
1807 unknode
*This
= unknode_from_IXMLDOMNode( iface
);
1808 FIXME("(%p)->(%p)\n", This
, definitionNode
);
1812 static HRESULT WINAPI
unknode_get_nodeTypedValue(
1816 unknode
*This
= unknode_from_IXMLDOMNode( iface
);
1817 FIXME("(%p)->(%p)\n", This
, var1
);
1818 return return_null_var(var1
);
1821 static HRESULT WINAPI
unknode_put_nodeTypedValue(
1825 unknode
*This
= unknode_from_IXMLDOMNode( iface
);
1826 FIXME("(%p)->(%s)\n", This
, debugstr_variant(&typedValue
));
1830 static HRESULT WINAPI
unknode_get_dataType(
1834 unknode
*This
= unknode_from_IXMLDOMNode( iface
);
1835 TRACE("(%p)->(%p)\n", This
, var1
);
1836 return return_null_var(var1
);
1839 static HRESULT WINAPI
unknode_put_dataType(
1843 unknode
*This
= unknode_from_IXMLDOMNode( iface
);
1845 FIXME("(%p)->(%s)\n", This
, debugstr_w(p
));
1848 return E_INVALIDARG
;
1853 static HRESULT WINAPI
unknode_get_xml(
1857 unknode
*This
= unknode_from_IXMLDOMNode( iface
);
1859 FIXME("(%p)->(%p)\n", This
, p
);
1861 return node_get_xml(&This
->node
, FALSE
, p
);
1864 static HRESULT WINAPI
unknode_transformNode(
1866 IXMLDOMNode
* domNode
, BSTR
* p
)
1868 unknode
*This
= unknode_from_IXMLDOMNode( iface
);
1869 return node_transform_node(&This
->node
, domNode
, p
);
1872 static HRESULT WINAPI
unknode_selectNodes(
1874 BSTR p
, IXMLDOMNodeList
** outList
)
1876 unknode
*This
= unknode_from_IXMLDOMNode( iface
);
1877 return node_select_nodes(&This
->node
, p
, outList
);
1880 static HRESULT WINAPI
unknode_selectSingleNode(
1882 BSTR p
, IXMLDOMNode
** outNode
)
1884 unknode
*This
= unknode_from_IXMLDOMNode( iface
);
1885 return node_select_singlenode(&This
->node
, p
, outNode
);
1888 static HRESULT WINAPI
unknode_get_parsed(
1890 VARIANT_BOOL
* isParsed
)
1892 unknode
*This
= unknode_from_IXMLDOMNode( iface
);
1893 FIXME("(%p)->(%p) stub!\n", This
, isParsed
);
1894 *isParsed
= VARIANT_TRUE
;
1898 static HRESULT WINAPI
unknode_get_namespaceURI(
1902 unknode
*This
= unknode_from_IXMLDOMNode( iface
);
1903 TRACE("(%p)->(%p)\n", This
, p
);
1904 return node_get_namespaceURI(&This
->node
, p
);
1907 static HRESULT WINAPI
unknode_get_prefix(
1911 unknode
*This
= unknode_from_IXMLDOMNode( iface
);
1912 return node_get_prefix(&This
->node
, p
);
1915 static HRESULT WINAPI
unknode_get_baseName(
1919 unknode
*This
= unknode_from_IXMLDOMNode( iface
);
1920 return node_get_base_name(&This
->node
, p
);
1923 static HRESULT WINAPI
unknode_transformNodeToObject(
1925 IXMLDOMNode
* domNode
, VARIANT var1
)
1927 unknode
*This
= unknode_from_IXMLDOMNode( iface
);
1928 FIXME("(%p)->(%p %s)\n", This
, domNode
, debugstr_variant(&var1
));
1932 static const struct IXMLDOMNodeVtbl unknode_vtbl
=
1934 unknode_QueryInterface
,
1937 unknode_GetTypeInfoCount
,
1938 unknode_GetTypeInfo
,
1939 unknode_GetIDsOfNames
,
1941 unknode_get_nodeName
,
1942 unknode_get_nodeValue
,
1943 unknode_put_nodeValue
,
1944 unknode_get_nodeType
,
1945 unknode_get_parentNode
,
1946 unknode_get_childNodes
,
1947 unknode_get_firstChild
,
1948 unknode_get_lastChild
,
1949 unknode_get_previousSibling
,
1950 unknode_get_nextSibling
,
1951 unknode_get_attributes
,
1952 unknode_insertBefore
,
1953 unknode_replaceChild
,
1954 unknode_removeChild
,
1955 unknode_appendChild
,
1956 unknode_hasChildNodes
,
1957 unknode_get_ownerDocument
,
1959 unknode_get_nodeTypeString
,
1962 unknode_get_specified
,
1963 unknode_get_definition
,
1964 unknode_get_nodeTypedValue
,
1965 unknode_put_nodeTypedValue
,
1966 unknode_get_dataType
,
1967 unknode_put_dataType
,
1969 unknode_transformNode
,
1970 unknode_selectNodes
,
1971 unknode_selectSingleNode
,
1973 unknode_get_namespaceURI
,
1975 unknode_get_baseName
,
1976 unknode_transformNodeToObject
1979 IXMLDOMNode
*create_node( xmlNodePtr node
)
1988 TRACE("type %d\n", node
->type
);
1991 case XML_ELEMENT_NODE
:
1992 pUnk
= create_element( node
);
1994 case XML_ATTRIBUTE_NODE
:
1995 pUnk
= create_attribute( node
);
1998 pUnk
= create_text( node
);
2000 case XML_CDATA_SECTION_NODE
:
2001 pUnk
= create_cdata( node
);
2003 case XML_ENTITY_REF_NODE
:
2004 pUnk
= create_doc_entity_ref( node
);
2007 pUnk
= create_pi( node
);
2009 case XML_COMMENT_NODE
:
2010 pUnk
= create_comment( node
);
2012 case XML_DOCUMENT_NODE
:
2013 pUnk
= create_domdoc( node
);
2015 case XML_DOCUMENT_FRAG_NODE
:
2016 pUnk
= create_doc_fragment( node
);
2019 pUnk
= create_doc_type( node
);
2024 FIXME("only creating basic node for type %d\n", node
->type
);
2026 new_node
= heap_alloc(sizeof(unknode
));
2030 new_node
->IXMLDOMNode_iface
.lpVtbl
= &unknode_vtbl
;
2032 init_xmlnode(&new_node
->node
, node
, &new_node
->IXMLDOMNode_iface
, NULL
);
2033 pUnk
= (IUnknown
*)&new_node
->IXMLDOMNode_iface
;
2037 hr
= IUnknown_QueryInterface(pUnk
, &IID_IXMLDOMNode
, (LPVOID
*)&ret
);
2038 IUnknown_Release(pUnk
);
2039 if(FAILED(hr
)) return NULL
;