dxdiagn: Simplify the root container initialization.
[wine] / dlls / dxdiagn / container.c
1 /* 
2  * IDxDiagContainer Implementation
3  * 
4  * Copyright 2004 Raphael Junqueira
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
22 #include "config.h"
23
24 #define COBJMACROS
25 #include "dxdiag_private.h"
26 #include "wine/debug.h"
27 #include "wine/unicode.h"
28
29 WINE_DEFAULT_DEBUG_CHANNEL(dxdiag);
30
31 /* IDxDiagContainer IUnknown parts follow: */
32 HRESULT WINAPI IDxDiagContainerImpl_QueryInterface(PDXDIAGCONTAINER iface, REFIID riid, LPVOID *ppobj)
33 {
34     IDxDiagContainerImpl *This = (IDxDiagContainerImpl *)iface;
35
36     if (!ppobj) return E_INVALIDARG;
37
38     if (IsEqualGUID(riid, &IID_IUnknown)
39         || IsEqualGUID(riid, &IID_IDxDiagContainer)) {
40         IUnknown_AddRef(iface);
41         *ppobj = This;
42         return S_OK;
43     }
44
45     WARN("(%p)->(%s,%p),not found\n",This,debugstr_guid(riid),ppobj);
46     *ppobj = NULL;
47     return E_NOINTERFACE;
48 }
49
50 static ULONG WINAPI IDxDiagContainerImpl_AddRef(PDXDIAGCONTAINER iface) {
51     IDxDiagContainerImpl *This = (IDxDiagContainerImpl *)iface;
52     ULONG refCount = InterlockedIncrement(&This->ref);
53
54     TRACE("(%p)->(ref before=%u)\n", This, refCount - 1);
55
56     DXDIAGN_LockModule();
57
58     return refCount;
59 }
60
61 static ULONG WINAPI IDxDiagContainerImpl_Release(PDXDIAGCONTAINER iface) {
62     IDxDiagContainerImpl *This = (IDxDiagContainerImpl *)iface;
63     ULONG refCount = InterlockedDecrement(&This->ref);
64
65     TRACE("(%p)->(ref before=%u)\n", This, refCount + 1);
66
67     if (!refCount) {
68         HeapFree(GetProcessHeap(), 0, This);
69     }
70
71     DXDIAGN_UnlockModule();
72     
73     return refCount;
74 }
75
76 /* IDxDiagContainer Interface follow: */
77 static HRESULT WINAPI IDxDiagContainerImpl_GetNumberOfChildContainers(PDXDIAGCONTAINER iface, DWORD* pdwCount) {
78   IDxDiagContainerImpl *This = (IDxDiagContainerImpl *)iface;
79   TRACE("(%p)\n", iface);
80   if (NULL == pdwCount) {
81     return E_INVALIDARG;
82   }
83   *pdwCount = This->nSubContainers;
84   return S_OK;
85 }
86
87 static HRESULT WINAPI IDxDiagContainerImpl_EnumChildContainerNames(PDXDIAGCONTAINER iface, DWORD dwIndex, LPWSTR pwszContainer, DWORD cchContainer) {
88   IDxDiagContainerImpl *This = (IDxDiagContainerImpl *)iface;
89   IDxDiagContainerImpl_SubContainer *p;
90   DWORD i = 0;
91
92   TRACE("(%p, %u, %p, %u)\n", iface, dwIndex, pwszContainer, cchContainer);
93
94   if (NULL == pwszContainer || 0 == cchContainer) {
95     return E_INVALIDARG;
96   }
97
98   LIST_FOR_EACH_ENTRY(p, &This->subContainers, IDxDiagContainerImpl_SubContainer, entry)
99   {
100     if (dwIndex == i) {
101       TRACE("Found container name %s, copying string\n", debugstr_w(p->contName));
102       lstrcpynW(pwszContainer, p->contName, cchContainer);
103       return (cchContainer <= strlenW(p->contName)) ?
104               DXDIAG_E_INSUFFICIENT_BUFFER : S_OK;
105     }
106     ++i;
107   }
108
109   TRACE("Failed to find container name at specified index\n");
110   *pwszContainer = '\0';
111   return E_INVALIDARG;
112 }
113
114 static HRESULT IDxDiagContainerImpl_GetChildContainerInternal(PDXDIAGCONTAINER iface, LPCWSTR pwszContainer, IDxDiagContainer** ppInstance) {
115   IDxDiagContainerImpl *This = (IDxDiagContainerImpl *)iface;
116   IDxDiagContainerImpl_SubContainer *p;
117
118   LIST_FOR_EACH_ENTRY(p, &This->subContainers, IDxDiagContainerImpl_SubContainer, entry)
119   {
120     if (0 == lstrcmpW(p->contName, pwszContainer)) {
121       *ppInstance = p->pCont;
122       return S_OK;
123     }
124   }
125
126   return E_INVALIDARG;
127 }
128
129 static HRESULT WINAPI IDxDiagContainerImpl_GetChildContainer(PDXDIAGCONTAINER iface, LPCWSTR pwszContainer, IDxDiagContainer** ppInstance) {
130   IDxDiagContainerImpl *This = (IDxDiagContainerImpl *)iface;
131   IDxDiagContainer* pContainer = (PDXDIAGCONTAINER)This;
132   LPWSTR tmp, orig_tmp;
133   INT tmp_len;
134   WCHAR* cur;
135   HRESULT hr = E_INVALIDARG;
136
137   TRACE("(%p, %s, %p)\n", iface, debugstr_w(pwszContainer), ppInstance);
138
139   if (NULL == ppInstance || NULL == pwszContainer) {
140     return E_INVALIDARG;
141   }
142
143   *ppInstance = NULL;
144
145   tmp_len = strlenW(pwszContainer) + 1;
146   orig_tmp = tmp = HeapAlloc(GetProcessHeap(), 0, tmp_len * sizeof(WCHAR));
147   if (NULL == tmp) return E_FAIL;
148   lstrcpynW(tmp, pwszContainer, tmp_len);
149
150   cur = strchrW(tmp, '.');
151   while (NULL != cur) {
152     *cur = '\0'; /* cut tmp string to '.' */
153     if (!*(cur + 1)) break; /* Account for a lone terminating period, as in "cont1.cont2.". */
154     TRACE("Trying to get parent container %s\n", debugstr_w(tmp));
155     hr = IDxDiagContainerImpl_GetChildContainerInternal(pContainer, tmp, &pContainer);
156     if (FAILED(hr) || NULL == pContainer)
157       goto on_error;
158     cur++; /* go after '.' (just replaced by \0) */
159     tmp = cur;
160     cur = strchrW(tmp, '.');
161   }
162
163   TRACE("Trying to get container %s\n", debugstr_w(tmp));
164   hr = IDxDiagContainerImpl_GetChildContainerInternal(pContainer, tmp, ppInstance);
165   if (SUCCEEDED(hr)) {
166     TRACE("Succeeded in getting the container instance\n");
167     IDxDiagContainerImpl_AddRef(*ppInstance);
168   }
169
170 on_error:
171   HeapFree(GetProcessHeap(), 0, orig_tmp);
172   return hr;
173 }
174
175 static HRESULT WINAPI IDxDiagContainerImpl_GetNumberOfProps(PDXDIAGCONTAINER iface, DWORD* pdwCount) {
176   IDxDiagContainerImpl *This = (IDxDiagContainerImpl *)iface;
177   TRACE("(%p)\n", iface);
178   if (NULL == pdwCount) {
179     return E_INVALIDARG;
180   }
181   *pdwCount = This->nProperties;
182   return S_OK;
183 }
184
185 static HRESULT WINAPI IDxDiagContainerImpl_EnumPropNames(PDXDIAGCONTAINER iface, DWORD dwIndex, LPWSTR pwszPropName, DWORD cchPropName) {
186   IDxDiagContainerImpl *This = (IDxDiagContainerImpl *)iface;
187   IDxDiagContainerImpl_Property *p;
188   DWORD i = 0;
189
190   TRACE("(%p, %u, %p, %u)\n", iface, dwIndex, pwszPropName, cchPropName);
191
192   if (NULL == pwszPropName || 0 == cchPropName) {
193     return E_INVALIDARG;
194   }
195
196   LIST_FOR_EACH_ENTRY(p, &This->properties, IDxDiagContainerImpl_Property, entry)
197   {
198     if (dwIndex == i) {
199       TRACE("Found property name %s, copying string\n", debugstr_w(p->propName));
200       lstrcpynW(pwszPropName, p->propName, cchPropName);
201       return (cchPropName <= strlenW(p->propName)) ?
202               DXDIAG_E_INSUFFICIENT_BUFFER : S_OK;
203     }
204     ++i;
205   }
206
207   TRACE("Failed to find property name at specified index\n");
208   return E_INVALIDARG;
209 }
210
211 static HRESULT WINAPI IDxDiagContainerImpl_GetProp(PDXDIAGCONTAINER iface, LPCWSTR pwszPropName, VARIANT* pvarProp) {
212   IDxDiagContainerImpl *This = (IDxDiagContainerImpl *)iface;
213   IDxDiagContainerImpl_Property *p;
214
215   TRACE("(%p, %s, %p)\n", iface, debugstr_w(pwszPropName), pvarProp);
216
217   if (NULL == pvarProp || NULL == pwszPropName) {
218     return E_INVALIDARG;
219   }
220
221   LIST_FOR_EACH_ENTRY(p, &This->properties, IDxDiagContainerImpl_Property, entry)
222   {
223     if (0 == lstrcmpW(p->propName, pwszPropName)) {
224       HRESULT hr = VariantClear(pvarProp);
225       if (hr == DISP_E_ARRAYISLOCKED || hr == DISP_E_BADVARTYPE)
226         VariantInit(pvarProp);
227
228       return VariantCopy(pvarProp, &p->vProp);
229     }
230   }
231
232   return E_INVALIDARG;
233 }
234
235 HRESULT WINAPI IDxDiagContainerImpl_AddProp(PDXDIAGCONTAINER iface, LPCWSTR pwszPropName, VARIANT* pVarProp) {
236   IDxDiagContainerImpl *This = (IDxDiagContainerImpl *)iface;
237   IDxDiagContainerImpl_Property *pNew;
238
239   TRACE("(%p, %s, %p)\n", iface, debugstr_w(pwszPropName), pVarProp);
240
241   if (NULL == pVarProp || NULL == pwszPropName) {
242     return E_INVALIDARG;
243   }
244
245   pNew = HeapAlloc(GetProcessHeap(), 0, sizeof(IDxDiagContainerImpl_Property));
246   if (NULL == pNew) {
247     return E_OUTOFMEMORY;
248   }
249
250   pNew->propName = HeapAlloc(GetProcessHeap(), 0, (lstrlenW(pwszPropName) + 1) * sizeof(WCHAR));
251   if (NULL == pNew->propName) {
252     HeapFree(GetProcessHeap(), 0, pNew);
253     return E_OUTOFMEMORY;
254   }
255   lstrcpyW(pNew->propName, pwszPropName);
256   VariantInit(&pNew->vProp);
257   VariantCopy(&pNew->vProp, pVarProp);
258
259   list_add_tail(&This->properties, &pNew->entry);
260   ++This->nProperties;
261   return S_OK;
262 }
263
264 HRESULT WINAPI IDxDiagContainerImpl_AddChildContainer(PDXDIAGCONTAINER iface, LPCWSTR pszContName, PDXDIAGCONTAINER pSubCont) {
265   IDxDiagContainerImpl *This = (IDxDiagContainerImpl *)iface;
266   IDxDiagContainerImpl_SubContainer *pNew;
267
268   TRACE("(%p, %s, %p)\n", iface, debugstr_w(pszContName), pSubCont);
269
270   if (NULL == pSubCont || NULL == pszContName) {
271     return E_INVALIDARG;
272   }
273
274   pNew = HeapAlloc(GetProcessHeap(), 0, sizeof(IDxDiagContainerImpl_SubContainer));
275   if (NULL == pNew) {
276     return E_OUTOFMEMORY;
277   }
278
279   pNew->contName = HeapAlloc(GetProcessHeap(), 0, (lstrlenW(pszContName) + 1) * sizeof(WCHAR));
280   if (NULL == pNew->contName) {
281     HeapFree(GetProcessHeap(), 0, pNew);
282     return E_OUTOFMEMORY;
283   }
284   lstrcpyW(pNew->contName, pszContName);
285   pNew->pCont = pSubCont;
286
287   list_add_tail(&This->subContainers, &pNew->entry);
288   ++This->nSubContainers;
289   return S_OK;
290 }
291
292 static const IDxDiagContainerVtbl DxDiagContainer_Vtbl =
293 {
294     IDxDiagContainerImpl_QueryInterface,
295     IDxDiagContainerImpl_AddRef,
296     IDxDiagContainerImpl_Release,
297     IDxDiagContainerImpl_GetNumberOfChildContainers,
298     IDxDiagContainerImpl_EnumChildContainerNames,
299     IDxDiagContainerImpl_GetChildContainer,
300     IDxDiagContainerImpl_GetNumberOfProps,
301     IDxDiagContainerImpl_EnumPropNames,
302     IDxDiagContainerImpl_GetProp
303 };
304
305
306 HRESULT DXDiag_CreateDXDiagContainer(REFIID riid, LPVOID *ppobj) {
307   IDxDiagContainerImpl* container;
308
309   TRACE("(%p, %p)\n", debugstr_guid(riid), ppobj);
310   
311   container = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(IDxDiagContainerImpl));
312   if (NULL == container) {
313     *ppobj = NULL;
314     return E_OUTOFMEMORY;
315   }
316   container->lpVtbl = &DxDiagContainer_Vtbl;
317   container->ref = 0; /* will be inited with QueryInterface */
318   list_init(&container->properties);
319   list_init(&container->subContainers);
320   return IDxDiagContainerImpl_QueryInterface((PDXDIAGCONTAINER)container, riid, ppobj);
321 }