crypt32/tests: Cast-qual warning fixes.
[wine] / dlls / msxml3 / pi.c
1 /*
2  *    DOM processing instruction node implementation
3  *
4  * Copyright 2006 Huw Davies
5  *
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.
10  *
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.
15  *
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
19  */
20
21 #define COBJMACROS
22
23 #include "config.h"
24
25 #include <stdarg.h>
26 #include "windef.h"
27 #include "winbase.h"
28 #include "winuser.h"
29 #include "ole2.h"
30 #include "msxml2.h"
31
32 #include "msxml_private.h"
33
34 #include "wine/debug.h"
35
36 WINE_DEFAULT_DEBUG_CHANNEL(msxml);
37
38 #ifdef HAVE_LIBXML2
39
40 typedef struct _dom_pi
41 {
42     const struct IXMLDOMProcessingInstructionVtbl *lpVtbl;
43     LONG ref;
44     IUnknown *node_unk;
45     IXMLDOMNode *node;
46 } dom_pi;
47
48 static inline dom_pi *impl_from_IXMLDOMProcessingInstruction( IXMLDOMProcessingInstruction *iface )
49 {
50     return (dom_pi *)((char*)iface - FIELD_OFFSET(dom_pi, lpVtbl));
51 }
52
53 static inline xmlNodePtr get_pi( dom_pi *This )
54 {
55     return xmlNodePtr_from_domnode( This->node, XML_PI_NODE );
56 }
57
58 static HRESULT WINAPI dom_pi_QueryInterface(
59     IXMLDOMProcessingInstruction *iface,
60     REFIID riid,
61     void** ppvObject )
62 {
63     dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
64     TRACE("%p %s %p\n", This, debugstr_guid(riid), ppvObject);
65
66     if ( IsEqualGUID( riid, &IID_IXMLDOMProcessingInstruction ) ||
67          IsEqualGUID( riid, &IID_IUnknown ) )
68     {
69         *ppvObject = iface;
70     }
71     else if ( IsEqualGUID( riid, &IID_IDispatch ) ||
72               IsEqualGUID( riid, &IID_IXMLDOMNode ) )
73     {
74         return IUnknown_QueryInterface(This->node_unk, riid, ppvObject);
75     }
76     else
77     {
78         FIXME("Unsupported inteferace %s\n", debugstr_guid(riid));
79         return E_NOINTERFACE;
80     }
81
82     IXMLDOMProcessingInstruction_AddRef( iface );
83
84     return S_OK;
85 }
86
87 static ULONG WINAPI dom_pi_AddRef(
88     IXMLDOMProcessingInstruction *iface )
89 {
90     dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
91     return InterlockedIncrement( &This->ref );
92 }
93
94 static ULONG WINAPI dom_pi_Release(
95     IXMLDOMProcessingInstruction *iface )
96 {
97     dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
98     ULONG ref;
99
100     ref = InterlockedDecrement( &This->ref );
101     if ( ref == 0 )
102     {
103         IUnknown_Release( This->node_unk );
104         HeapFree( GetProcessHeap(), 0, This );
105     }
106
107     return ref;
108 }
109
110 static HRESULT WINAPI dom_pi_GetTypeInfoCount(
111     IXMLDOMProcessingInstruction *iface,
112     UINT* pctinfo )
113 {
114     FIXME("\n");
115     return E_NOTIMPL;
116 }
117
118 static HRESULT WINAPI dom_pi_GetTypeInfo(
119     IXMLDOMProcessingInstruction *iface,
120     UINT iTInfo, LCID lcid,
121     ITypeInfo** ppTInfo )
122 {
123     FIXME("\n");
124     return E_NOTIMPL;
125 }
126
127 static HRESULT WINAPI dom_pi_GetIDsOfNames(
128     IXMLDOMProcessingInstruction *iface,
129     REFIID riid, LPOLESTR* rgszNames,
130     UINT cNames, LCID lcid, DISPID* rgDispId )
131 {
132     FIXME("\n");
133     return E_NOTIMPL;
134 }
135
136 static HRESULT WINAPI dom_pi_Invoke(
137     IXMLDOMProcessingInstruction *iface,
138     DISPID dispIdMember, REFIID riid, LCID lcid,
139     WORD wFlags, DISPPARAMS* pDispParams, VARIANT* pVarResult,
140     EXCEPINFO* pExcepInfo, UINT* puArgErr )
141 {
142     FIXME("\n");
143     return E_NOTIMPL;
144 }
145
146 static HRESULT WINAPI dom_pi_get_nodeName(
147     IXMLDOMProcessingInstruction *iface,
148     BSTR* p )
149 {
150     dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
151     return IXMLDOMNode_get_nodeName( This->node, p );
152 }
153
154 static HRESULT WINAPI dom_pi_get_nodeValue(
155     IXMLDOMProcessingInstruction *iface,
156     VARIANT* var1 )
157 {
158     dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
159     return IXMLDOMNode_get_nodeValue( This->node, var1 );
160 }
161
162 static HRESULT WINAPI dom_pi_put_nodeValue(
163     IXMLDOMProcessingInstruction *iface,
164     VARIANT var1 )
165 {
166     dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
167     return IXMLDOMNode_put_nodeValue( This->node, var1 );
168 }
169
170 static HRESULT WINAPI dom_pi_get_nodeType(
171     IXMLDOMProcessingInstruction *iface,
172     DOMNodeType* domNodeType )
173 {
174     dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
175     return IXMLDOMNode_get_nodeType( This->node, domNodeType );
176 }
177
178 static HRESULT WINAPI dom_pi_get_parentNode(
179     IXMLDOMProcessingInstruction *iface,
180     IXMLDOMNode** parent )
181 {
182     dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
183     return IXMLDOMNode_get_parentNode( This->node, parent );
184 }
185
186 static HRESULT WINAPI dom_pi_get_childNodes(
187     IXMLDOMProcessingInstruction *iface,
188     IXMLDOMNodeList** outList)
189 {
190     dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
191     return IXMLDOMNode_get_childNodes( This->node, outList );
192 }
193
194 static HRESULT WINAPI dom_pi_get_firstChild(
195     IXMLDOMProcessingInstruction *iface,
196     IXMLDOMNode** domNode)
197 {
198     dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
199     return IXMLDOMNode_get_firstChild( This->node, domNode );
200 }
201
202 static HRESULT WINAPI dom_pi_get_lastChild(
203     IXMLDOMProcessingInstruction *iface,
204     IXMLDOMNode** domNode)
205 {
206     dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
207     return IXMLDOMNode_get_lastChild( This->node, domNode );
208 }
209
210 static HRESULT WINAPI dom_pi_get_previousSibling(
211     IXMLDOMProcessingInstruction *iface,
212     IXMLDOMNode** domNode)
213 {
214     dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
215     return IXMLDOMNode_get_previousSibling( This->node, domNode );
216 }
217
218 static HRESULT WINAPI dom_pi_get_nextSibling(
219     IXMLDOMProcessingInstruction *iface,
220     IXMLDOMNode** domNode)
221 {
222     dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
223     return IXMLDOMNode_get_nextSibling( This->node, domNode );
224 }
225
226 static HRESULT WINAPI dom_pi_get_attributes(
227     IXMLDOMProcessingInstruction *iface,
228     IXMLDOMNamedNodeMap** attributeMap)
229 {
230     dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
231     return IXMLDOMNode_get_attributes( This->node, attributeMap );
232 }
233
234 static HRESULT WINAPI dom_pi_insertBefore(
235     IXMLDOMProcessingInstruction *iface,
236     IXMLDOMNode* newNode, VARIANT var1,
237     IXMLDOMNode** outOldNode)
238 {
239     dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
240     return IXMLDOMNode_insertBefore( This->node, newNode, var1, outOldNode );
241 }
242
243 static HRESULT WINAPI dom_pi_replaceChild(
244     IXMLDOMProcessingInstruction *iface,
245     IXMLDOMNode* newNode,
246     IXMLDOMNode* oldNode,
247     IXMLDOMNode** outOldNode)
248 {
249     dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
250     return IXMLDOMNode_replaceChild( This->node, newNode, oldNode, outOldNode );
251 }
252
253 static HRESULT WINAPI dom_pi_removeChild(
254     IXMLDOMProcessingInstruction *iface,
255     IXMLDOMNode* domNode, IXMLDOMNode** oldNode)
256 {
257     dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
258     return IXMLDOMNode_removeChild( This->node, domNode, oldNode );
259 }
260
261 static HRESULT WINAPI dom_pi_appendChild(
262     IXMLDOMProcessingInstruction *iface,
263     IXMLDOMNode* newNode, IXMLDOMNode** outNewNode)
264 {
265     dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
266     return IXMLDOMNode_appendChild( This->node, newNode, outNewNode );
267 }
268
269 static HRESULT WINAPI dom_pi_hasChildNodes(
270     IXMLDOMProcessingInstruction *iface,
271     VARIANT_BOOL* pbool)
272 {
273     dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
274     return IXMLDOMNode_hasChildNodes( This->node, pbool );
275 }
276
277 static HRESULT WINAPI dom_pi_get_ownerDocument(
278     IXMLDOMProcessingInstruction *iface,
279     IXMLDOMDocument** domDocument)
280 {
281     dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
282     return IXMLDOMNode_get_ownerDocument( This->node, domDocument );
283 }
284
285 static HRESULT WINAPI dom_pi_cloneNode(
286     IXMLDOMProcessingInstruction *iface,
287     VARIANT_BOOL pbool, IXMLDOMNode** outNode)
288 {
289     dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
290     return IXMLDOMNode_cloneNode( This->node, pbool, outNode );
291 }
292
293 static HRESULT WINAPI dom_pi_get_nodeTypeString(
294     IXMLDOMProcessingInstruction *iface,
295     BSTR* p)
296 {
297     dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
298     return IXMLDOMNode_get_nodeTypeString( This->node, p );
299 }
300
301 static HRESULT WINAPI dom_pi_get_text(
302     IXMLDOMProcessingInstruction *iface,
303     BSTR* p)
304 {
305     dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
306     return IXMLDOMNode_get_text( This->node, p );
307 }
308
309 static HRESULT WINAPI dom_pi_put_text(
310     IXMLDOMProcessingInstruction *iface,
311     BSTR p)
312 {
313     dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
314     return IXMLDOMNode_put_text( This->node, p );
315 }
316
317 static HRESULT WINAPI dom_pi_get_specified(
318     IXMLDOMProcessingInstruction *iface,
319     VARIANT_BOOL* pbool)
320 {
321     dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
322     return IXMLDOMNode_get_specified( This->node, pbool );
323 }
324
325 static HRESULT WINAPI dom_pi_get_definition(
326     IXMLDOMProcessingInstruction *iface,
327     IXMLDOMNode** domNode)
328 {
329     dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
330     return IXMLDOMNode_get_definition( This->node, domNode );
331 }
332
333 static HRESULT WINAPI dom_pi_get_nodeTypedValue(
334     IXMLDOMProcessingInstruction *iface,
335     VARIANT* var1)
336 {
337     dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
338     return IXMLDOMNode_get_nodeTypedValue( This->node, var1 );
339 }
340
341 static HRESULT WINAPI dom_pi_put_nodeTypedValue(
342     IXMLDOMProcessingInstruction *iface,
343     VARIANT var1)
344 {
345     dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
346     return IXMLDOMNode_put_nodeTypedValue( This->node, var1 );
347 }
348
349 static HRESULT WINAPI dom_pi_get_dataType(
350     IXMLDOMProcessingInstruction *iface,
351     VARIANT* var1)
352 {
353     dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
354     return IXMLDOMNode_get_dataType( This->node, var1 );
355 }
356
357 static HRESULT WINAPI dom_pi_put_dataType(
358     IXMLDOMProcessingInstruction *iface,
359     BSTR p)
360 {
361     dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
362     return IXMLDOMNode_put_dataType( This->node, p );
363 }
364
365 static HRESULT WINAPI dom_pi_get_xml(
366     IXMLDOMProcessingInstruction *iface,
367     BSTR* p)
368 {
369     dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
370     return IXMLDOMNode_get_xml( This->node, p );
371 }
372
373 static HRESULT WINAPI dom_pi_transformNode(
374     IXMLDOMProcessingInstruction *iface,
375     IXMLDOMNode* domNode, BSTR* p)
376 {
377     dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
378     return IXMLDOMNode_transformNode( This->node, domNode, p );
379 }
380
381 static HRESULT WINAPI dom_pi_selectNodes(
382     IXMLDOMProcessingInstruction *iface,
383     BSTR p, IXMLDOMNodeList** outList)
384 {
385     dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
386     return IXMLDOMNode_selectNodes( This->node, p, outList );
387 }
388
389 static HRESULT WINAPI dom_pi_selectSingleNode(
390     IXMLDOMProcessingInstruction *iface,
391     BSTR p, IXMLDOMNode** outNode)
392 {
393     dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
394     return IXMLDOMNode_selectSingleNode( This->node, p, outNode );
395 }
396
397 static HRESULT WINAPI dom_pi_get_parsed(
398     IXMLDOMProcessingInstruction *iface,
399     VARIANT_BOOL* pbool)
400 {
401     dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
402     return IXMLDOMNode_get_parsed( This->node, pbool );
403 }
404
405 static HRESULT WINAPI dom_pi_get_namespaceURI(
406     IXMLDOMProcessingInstruction *iface,
407     BSTR* p)
408 {
409     dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
410     return IXMLDOMNode_get_namespaceURI( This->node, p );
411 }
412
413 static HRESULT WINAPI dom_pi_get_prefix(
414     IXMLDOMProcessingInstruction *iface,
415     BSTR* p)
416 {
417     dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
418     return IXMLDOMNode_get_prefix( This->node, p );
419 }
420
421 static HRESULT WINAPI dom_pi_get_baseName(
422     IXMLDOMProcessingInstruction *iface,
423     BSTR* p)
424 {
425     dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
426     return IXMLDOMNode_get_baseName( This->node, p );
427 }
428
429 static HRESULT WINAPI dom_pi_transformNodeToObject(
430     IXMLDOMProcessingInstruction *iface,
431     IXMLDOMNode* domNode, VARIANT var1)
432 {
433     dom_pi *This = impl_from_IXMLDOMProcessingInstruction( iface );
434     return IXMLDOMNode_transformNodeToObject( This->node, domNode, var1 );
435 }
436
437 static HRESULT WINAPI dom_pi_get_target(
438     IXMLDOMProcessingInstruction *iface,
439     BSTR *p)
440 {
441     FIXME("\n");
442     return E_NOTIMPL;
443 }
444
445 static HRESULT WINAPI dom_pi_get_data(
446     IXMLDOMProcessingInstruction *iface,
447     BSTR *p)
448 {
449     FIXME("\n");
450     return E_NOTIMPL;
451 }
452
453 static HRESULT WINAPI dom_pi_put_data(
454     IXMLDOMProcessingInstruction *iface,
455     BSTR data)
456 {
457     FIXME("\n");
458     return E_NOTIMPL;
459 }
460
461 static const struct IXMLDOMProcessingInstructionVtbl dom_pi_vtbl =
462 {
463     dom_pi_QueryInterface,
464     dom_pi_AddRef,
465     dom_pi_Release,
466     dom_pi_GetTypeInfoCount,
467     dom_pi_GetTypeInfo,
468     dom_pi_GetIDsOfNames,
469     dom_pi_Invoke,
470     dom_pi_get_nodeName,
471     dom_pi_get_nodeValue,
472     dom_pi_put_nodeValue,
473     dom_pi_get_nodeType,
474     dom_pi_get_parentNode,
475     dom_pi_get_childNodes,
476     dom_pi_get_firstChild,
477     dom_pi_get_lastChild,
478     dom_pi_get_previousSibling,
479     dom_pi_get_nextSibling,
480     dom_pi_get_attributes,
481     dom_pi_insertBefore,
482     dom_pi_replaceChild,
483     dom_pi_removeChild,
484     dom_pi_appendChild,
485     dom_pi_hasChildNodes,
486     dom_pi_get_ownerDocument,
487     dom_pi_cloneNode,
488     dom_pi_get_nodeTypeString,
489     dom_pi_get_text,
490     dom_pi_put_text,
491     dom_pi_get_specified,
492     dom_pi_get_definition,
493     dom_pi_get_nodeTypedValue,
494     dom_pi_put_nodeTypedValue,
495     dom_pi_get_dataType,
496     dom_pi_put_dataType,
497     dom_pi_get_xml,
498     dom_pi_transformNode,
499     dom_pi_selectNodes,
500     dom_pi_selectSingleNode,
501     dom_pi_get_parsed,
502     dom_pi_get_namespaceURI,
503     dom_pi_get_prefix,
504     dom_pi_get_baseName,
505     dom_pi_transformNodeToObject,
506
507     dom_pi_get_target,
508     dom_pi_get_data,
509     dom_pi_put_data
510 };
511
512 IUnknown* create_pi( xmlNodePtr pi )
513 {
514     dom_pi *This;
515     HRESULT hr;
516
517     This = HeapAlloc( GetProcessHeap(), 0, sizeof *This );
518     if ( !This )
519         return NULL;
520
521     This->lpVtbl = &dom_pi_vtbl;
522     This->ref = 1;
523
524     This->node_unk = create_basic_node( pi, (IUnknown*)&This->lpVtbl );
525     if(!This->node_unk)
526     {
527         HeapFree(GetProcessHeap(), 0, This);
528         return NULL;
529     }
530
531     hr = IUnknown_QueryInterface(This->node_unk, &IID_IXMLDOMNode, (LPVOID*)&This->node);
532     if(FAILED(hr))
533     {
534         IUnknown_Release(This->node_unk);
535         HeapFree( GetProcessHeap(), 0, This );
536         return NULL;
537     }
538     /* The ref on This->node is actually looped back into this object, so release it */
539     IXMLDOMNode_Release(This->node);
540
541     return (IUnknown*) &This->lpVtbl;
542 }
543
544 #endif