2 * DOM processing instruction node implementation
4 * Copyright 2006 Huw Davies
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
32 #include "msxml_private.h"
34 #include "wine/debug.h"
36 WINE_DEFAULT_DEBUG_CHANNEL(msxml);
40 typedef struct _dom_pi
43 IXMLDOMProcessingInstruction IXMLDOMProcessingInstruction_iface;
47 static inline dom_pi *impl_from_IXMLDOMProcessingInstruction( IXMLDOMProcessingInstruction *iface )
49 return CONTAINING_RECORD(iface, dom_pi, IXMLDOMProcessingInstruction_iface);
52 static HRESULT WINAPI dom_pi_QueryInterface(
53 IXMLDOMProcessingInstruction *iface,
57 dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
58 TRACE("(%p)->(%s %p)\n", This, debugstr_guid(riid), ppvObject);
60 if ( IsEqualGUID( riid, &IID_IXMLDOMProcessingInstruction ) ||
61 IsEqualGUID( riid, &IID_IXMLDOMNode ) ||
62 IsEqualGUID( riid, &IID_IDispatch ) ||
63 IsEqualGUID( riid, &IID_IUnknown ) )
67 else if(node_query_interface(&This->node, riid, ppvObject))
69 return *ppvObject ? S_OK : E_NOINTERFACE;
73 FIXME("Unsupported interface %s\n", debugstr_guid(riid));
77 IUnknown_AddRef((IUnknown*)*ppvObject);
81 static ULONG WINAPI dom_pi_AddRef(
82 IXMLDOMProcessingInstruction *iface )
84 dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
85 return InterlockedIncrement( &This->ref );
88 static ULONG WINAPI dom_pi_Release(
89 IXMLDOMProcessingInstruction *iface )
91 dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
94 ref = InterlockedDecrement( &This->ref );
97 destroy_xmlnode(&This->node);
104 static HRESULT WINAPI dom_pi_GetTypeInfoCount(
105 IXMLDOMProcessingInstruction *iface,
108 dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
110 TRACE("(%p)->(%p)\n", This, pctinfo);
117 static HRESULT WINAPI dom_pi_GetTypeInfo(
118 IXMLDOMProcessingInstruction *iface,
119 UINT iTInfo, LCID lcid,
120 ITypeInfo** ppTInfo )
122 dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
125 TRACE("(%p)->(%u %u %p)\n", This, iTInfo, lcid, ppTInfo);
127 hr = get_typeinfo(IXMLDOMProcessingInstruction_tid, ppTInfo);
132 static HRESULT WINAPI dom_pi_GetIDsOfNames(
133 IXMLDOMProcessingInstruction *iface,
134 REFIID riid, LPOLESTR* rgszNames,
135 UINT cNames, LCID lcid, DISPID* rgDispId )
137 dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
141 TRACE("(%p)->(%s %p %u %u %p)\n", This, debugstr_guid(riid), rgszNames, cNames,
144 if(!rgszNames || cNames == 0 || !rgDispId)
147 hr = get_typeinfo(IXMLDOMProcessingInstruction_tid, &typeinfo);
150 hr = ITypeInfo_GetIDsOfNames(typeinfo, rgszNames, cNames, rgDispId);
151 ITypeInfo_Release(typeinfo);
157 static HRESULT WINAPI dom_pi_Invoke(
158 IXMLDOMProcessingInstruction *iface,
159 DISPID dispIdMember, REFIID riid, LCID lcid,
160 WORD wFlags, DISPPARAMS* pDispParams, VARIANT* pVarResult,
161 EXCEPINFO* pExcepInfo, UINT* puArgErr )
163 dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
167 TRACE("(%p)->(%d %s %d %d %p %p %p %p)\n", This, dispIdMember, debugstr_guid(riid),
168 lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr);
170 hr = get_typeinfo(IXMLDOMProcessingInstruction_tid, &typeinfo);
173 hr = ITypeInfo_Invoke(typeinfo, &This->IXMLDOMProcessingInstruction_iface, dispIdMember,
174 wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr);
175 ITypeInfo_Release(typeinfo);
181 static HRESULT WINAPI dom_pi_get_nodeName(
182 IXMLDOMProcessingInstruction *iface,
185 dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
187 TRACE("(%p)->(%p)\n", This, p);
189 return node_get_nodeName(&This->node, p);
192 static HRESULT WINAPI dom_pi_get_nodeValue(
193 IXMLDOMProcessingInstruction *iface,
196 dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
198 TRACE("(%p)->(%p)\n", This, value);
200 return node_get_content(&This->node, value);
203 static HRESULT WINAPI dom_pi_put_nodeValue(
204 IXMLDOMProcessingInstruction *iface,
207 dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
211 TRACE("(%p)->(%s)\n", This, debugstr_variant(&value));
213 /* Cannot set data to a PI node whose target is 'xml' */
214 hr = dom_pi_get_nodeName(iface, &sTarget);
217 static const WCHAR xmlW[] = {'x','m','l',0};
218 if(lstrcmpW( sTarget, xmlW) == 0)
220 SysFreeString(sTarget);
224 SysFreeString(sTarget);
227 return node_put_value(&This->node, &value);
230 static HRESULT WINAPI dom_pi_get_nodeType(
231 IXMLDOMProcessingInstruction *iface,
232 DOMNodeType* domNodeType )
234 dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
236 TRACE("(%p)->(%p)\n", This, domNodeType);
238 *domNodeType = NODE_PROCESSING_INSTRUCTION;
242 static HRESULT WINAPI dom_pi_get_parentNode(
243 IXMLDOMProcessingInstruction *iface,
244 IXMLDOMNode** parent )
246 dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
248 TRACE("(%p)->(%p)\n", This, parent);
250 return node_get_parent(&This->node, parent);
253 static HRESULT WINAPI dom_pi_get_childNodes(
254 IXMLDOMProcessingInstruction *iface,
255 IXMLDOMNodeList** outList)
257 dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
259 TRACE("(%p)->(%p)\n", This, outList);
261 return node_get_child_nodes(&This->node, outList);
264 static HRESULT WINAPI dom_pi_get_firstChild(
265 IXMLDOMProcessingInstruction *iface,
266 IXMLDOMNode** domNode)
268 dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
270 TRACE("(%p)->(%p)\n", This, domNode);
272 return return_null_node(domNode);
275 static HRESULT WINAPI dom_pi_get_lastChild(
276 IXMLDOMProcessingInstruction *iface,
277 IXMLDOMNode** domNode)
279 dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
281 TRACE("(%p)->(%p)\n", This, domNode);
283 return return_null_node(domNode);
286 static HRESULT WINAPI dom_pi_get_previousSibling(
287 IXMLDOMProcessingInstruction *iface,
288 IXMLDOMNode** domNode)
290 dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
292 TRACE("(%p)->(%p)\n", This, domNode);
294 return node_get_previous_sibling(&This->node, domNode);
297 static HRESULT WINAPI dom_pi_get_nextSibling(
298 IXMLDOMProcessingInstruction *iface,
299 IXMLDOMNode** domNode)
301 dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
303 TRACE("(%p)->(%p)\n", This, domNode);
305 return node_get_next_sibling(&This->node, domNode);
308 static HRESULT WINAPI dom_pi_get_attributes(
309 IXMLDOMProcessingInstruction *iface,
310 IXMLDOMNamedNodeMap** attributeMap)
312 dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
314 TRACE("(%p)->(%p)\n", This, attributeMap);
316 *attributeMap = create_nodemap((IXMLDOMNode*)&This->IXMLDOMProcessingInstruction_iface);
320 static HRESULT WINAPI dom_pi_insertBefore(
321 IXMLDOMProcessingInstruction *iface,
322 IXMLDOMNode* newNode, VARIANT refChild,
323 IXMLDOMNode** outOldNode)
325 dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
327 FIXME("(%p)->(%p %s %p) needs test\n", This, newNode, debugstr_variant(&refChild), outOldNode);
329 return node_insert_before(&This->node, newNode, &refChild, outOldNode);
332 static HRESULT WINAPI dom_pi_replaceChild(
333 IXMLDOMProcessingInstruction *iface,
334 IXMLDOMNode* newNode,
335 IXMLDOMNode* oldNode,
336 IXMLDOMNode** outOldNode)
338 dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
340 FIXME("(%p)->(%p %p %p) needs test\n", This, newNode, oldNode, outOldNode);
342 return node_replace_child(&This->node, newNode, oldNode, outOldNode);
345 static HRESULT WINAPI dom_pi_removeChild(
346 IXMLDOMProcessingInstruction *iface,
347 IXMLDOMNode *child, IXMLDOMNode **oldChild)
349 dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
350 TRACE("(%p)->(%p %p)\n", This, child, oldChild);
351 return node_remove_child(&This->node, child, oldChild);
354 static HRESULT WINAPI dom_pi_appendChild(
355 IXMLDOMProcessingInstruction *iface,
356 IXMLDOMNode *child, IXMLDOMNode **outChild)
358 dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
359 TRACE("(%p)->(%p %p)\n", This, child, outChild);
360 return node_append_child(&This->node, child, outChild);
363 static HRESULT WINAPI dom_pi_hasChildNodes(
364 IXMLDOMProcessingInstruction *iface,
367 dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
368 return IXMLDOMNode_hasChildNodes( &This->node.IXMLDOMNode_iface, pbool );
371 static HRESULT WINAPI dom_pi_get_ownerDocument(
372 IXMLDOMProcessingInstruction *iface,
373 IXMLDOMDocument** domDocument)
375 dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
376 return IXMLDOMNode_get_ownerDocument( &This->node.IXMLDOMNode_iface, domDocument );
379 static HRESULT WINAPI dom_pi_cloneNode(
380 IXMLDOMProcessingInstruction *iface,
381 VARIANT_BOOL deep, IXMLDOMNode** outNode)
383 dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
384 TRACE("(%p)->(%d %p)\n", This, deep, outNode);
385 return node_clone( &This->node, deep, outNode );
388 static HRESULT WINAPI dom_pi_get_nodeTypeString(
389 IXMLDOMProcessingInstruction *iface,
392 dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
393 static const WCHAR processinginstructionW[] =
394 {'p','r','o','c','e','s','s','i','n','g','i','n','s','t','r','u','c','t','i','o','n',0};
396 TRACE("(%p)->(%p)\n", This, p);
398 return return_bstr(processinginstructionW, p);
401 static HRESULT WINAPI dom_pi_get_text(
402 IXMLDOMProcessingInstruction *iface,
405 dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
406 return IXMLDOMNode_get_text( &This->node.IXMLDOMNode_iface, p );
409 static HRESULT WINAPI dom_pi_put_text(
410 IXMLDOMProcessingInstruction *iface,
413 dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
414 TRACE("(%p)->(%s)\n", This, debugstr_w(p));
415 return node_put_text( &This->node, p );
418 static HRESULT WINAPI dom_pi_get_specified(
419 IXMLDOMProcessingInstruction *iface,
420 VARIANT_BOOL* isSpecified)
422 dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
423 FIXME("(%p)->(%p) stub!\n", This, isSpecified);
424 *isSpecified = VARIANT_TRUE;
428 static HRESULT WINAPI dom_pi_get_definition(
429 IXMLDOMProcessingInstruction *iface,
430 IXMLDOMNode** definitionNode)
432 dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
433 FIXME("(%p)->(%p)\n", This, definitionNode);
437 static HRESULT WINAPI dom_pi_get_nodeTypedValue(
438 IXMLDOMProcessingInstruction *iface,
441 dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
442 FIXME("(%p)->(%p)\n", This, var1);
443 return return_null_var(var1);
446 static HRESULT WINAPI dom_pi_put_nodeTypedValue(
447 IXMLDOMProcessingInstruction *iface,
450 dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
451 FIXME("(%p)->(%s)\n", This, debugstr_variant(&typedValue));
455 static HRESULT WINAPI dom_pi_get_dataType(
456 IXMLDOMProcessingInstruction *iface,
459 dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
460 TRACE("(%p)->(%p)\n", This, typename);
461 return return_null_var( typename );
464 static HRESULT WINAPI dom_pi_put_dataType(
465 IXMLDOMProcessingInstruction *iface,
468 dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
470 FIXME("(%p)->(%s)\n", This, debugstr_w(p));
478 static HRESULT WINAPI dom_pi_get_xml(
479 IXMLDOMProcessingInstruction *iface,
482 dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
484 TRACE("(%p)->(%p)\n", This, p);
486 return node_get_xml(&This->node, FALSE, FALSE, p);
489 static HRESULT WINAPI dom_pi_transformNode(
490 IXMLDOMProcessingInstruction *iface,
491 IXMLDOMNode* domNode, BSTR* p)
493 dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
494 return IXMLDOMNode_transformNode( &This->node.IXMLDOMNode_iface, domNode, p );
497 static HRESULT WINAPI dom_pi_selectNodes(
498 IXMLDOMProcessingInstruction *iface,
499 BSTR p, IXMLDOMNodeList** outList)
501 dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
502 return IXMLDOMNode_selectNodes( &This->node.IXMLDOMNode_iface, p, outList );
505 static HRESULT WINAPI dom_pi_selectSingleNode(
506 IXMLDOMProcessingInstruction *iface,
507 BSTR p, IXMLDOMNode** outNode)
509 dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
510 return IXMLDOMNode_selectSingleNode( &This->node.IXMLDOMNode_iface, p, outNode );
513 static HRESULT WINAPI dom_pi_get_parsed(
514 IXMLDOMProcessingInstruction *iface,
515 VARIANT_BOOL* isParsed)
517 dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
518 FIXME("(%p)->(%p) stub!\n", This, isParsed);
519 *isParsed = VARIANT_TRUE;
523 static HRESULT WINAPI dom_pi_get_namespaceURI(
524 IXMLDOMProcessingInstruction *iface,
527 dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
528 TRACE("(%p)->(%p)\n", This, p);
529 return node_get_namespaceURI(&This->node, p);
532 static HRESULT WINAPI dom_pi_get_prefix(
533 IXMLDOMProcessingInstruction *iface,
536 dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
537 TRACE("(%p)->(%p)\n", This, prefix);
538 return return_null_bstr( prefix );
541 static HRESULT WINAPI dom_pi_get_baseName(
542 IXMLDOMProcessingInstruction *iface,
545 dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
546 TRACE("(%p)->(%p)\n", This, name);
547 return node_get_base_name( &This->node, name );
550 static HRESULT WINAPI dom_pi_transformNodeToObject(
551 IXMLDOMProcessingInstruction *iface,
552 IXMLDOMNode* domNode, VARIANT var1)
554 dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
555 FIXME("(%p)->(%p %s)\n", This, domNode, debugstr_variant(&var1));
559 static HRESULT WINAPI dom_pi_get_target(
560 IXMLDOMProcessingInstruction *iface,
563 dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
565 TRACE("(%p)->(%p)\n", This, p);
567 /* target returns the same value as nodeName property */
568 return node_get_nodeName(&This->node, p);
571 static HRESULT WINAPI dom_pi_get_data(
572 IXMLDOMProcessingInstruction *iface,
575 dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
579 TRACE("(%p)->(%p)\n", This, p);
584 hr = IXMLDOMProcessingInstruction_get_nodeValue( iface, &ret );
593 static HRESULT WINAPI dom_pi_put_data(
594 IXMLDOMProcessingInstruction *iface,
597 dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
602 TRACE("(%p)->(%s)\n", This, debugstr_w(data) );
604 /* Cannot set data to a PI node whose target is 'xml' */
605 hr = dom_pi_get_nodeName(iface, &sTarget);
608 static const WCHAR xmlW[] = {'x','m','l',0};
609 if(lstrcmpW( sTarget, xmlW) == 0)
611 SysFreeString(sTarget);
615 SysFreeString(sTarget);
618 V_VT(&val) = VT_BSTR;
621 return IXMLDOMProcessingInstruction_put_nodeValue( iface, val );
624 static const struct IXMLDOMProcessingInstructionVtbl dom_pi_vtbl =
626 dom_pi_QueryInterface,
629 dom_pi_GetTypeInfoCount,
631 dom_pi_GetIDsOfNames,
634 dom_pi_get_nodeValue,
635 dom_pi_put_nodeValue,
637 dom_pi_get_parentNode,
638 dom_pi_get_childNodes,
639 dom_pi_get_firstChild,
640 dom_pi_get_lastChild,
641 dom_pi_get_previousSibling,
642 dom_pi_get_nextSibling,
643 dom_pi_get_attributes,
648 dom_pi_hasChildNodes,
649 dom_pi_get_ownerDocument,
651 dom_pi_get_nodeTypeString,
654 dom_pi_get_specified,
655 dom_pi_get_definition,
656 dom_pi_get_nodeTypedValue,
657 dom_pi_put_nodeTypedValue,
661 dom_pi_transformNode,
663 dom_pi_selectSingleNode,
665 dom_pi_get_namespaceURI,
668 dom_pi_transformNodeToObject,
675 IUnknown* create_pi( xmlNodePtr pi )
679 This = heap_alloc( sizeof *This );
683 This->IXMLDOMProcessingInstruction_iface.lpVtbl = &dom_pi_vtbl;
686 init_xmlnode(&This->node, pi, (IXMLDOMNode*)&This->IXMLDOMProcessingInstruction_iface, NULL);
688 return (IUnknown*)&This->IXMLDOMProcessingInstruction_iface;