wined3d: Track separate dirty ranges in buffers.
[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 = NULL;
90   DWORD i = 0;
91   
92   TRACE("(%p, %u, %s, %u)\n", iface, dwIndex, debugstr_w(pwszContainer), cchContainer);
93
94   if (NULL == pwszContainer) {
95     return E_INVALIDARG;
96   }
97   if (256 > cchContainer) {
98     return DXDIAG_E_INSUFFICIENT_BUFFER;
99   }
100   
101   p = This->subContainers;
102   while (NULL != p) {
103     if (dwIndex == i) {  
104       if (cchContainer <= strlenW(p->contName)) {
105         return DXDIAG_E_INSUFFICIENT_BUFFER;
106       }
107       lstrcpynW(pwszContainer, p->contName, cchContainer);
108       return S_OK;
109     }
110     p = p->next;
111     ++i;
112   }  
113   return E_INVALIDARG;
114 }
115
116 static HRESULT IDxDiagContainerImpl_GetChildContainerInternal(PDXDIAGCONTAINER iface, LPCWSTR pwszContainer, IDxDiagContainer** ppInstance) {
117   IDxDiagContainerImpl *This = (IDxDiagContainerImpl *)iface;
118   IDxDiagContainerImpl_SubContainer* p = NULL;
119
120   p = This->subContainers;
121   while (NULL != p) {
122     if (0 == lstrcmpW(p->contName, pwszContainer)) {
123       *ppInstance = p->pCont;
124       return S_OK;
125     }
126     p = p->next;
127   }
128   return E_INVALIDARG;
129 }
130
131 static HRESULT WINAPI IDxDiagContainerImpl_GetChildContainer(PDXDIAGCONTAINER iface, LPCWSTR pwszContainer, IDxDiagContainer** ppInstance) {
132   IDxDiagContainerImpl *This = (IDxDiagContainerImpl *)iface;
133   IDxDiagContainer* pContainer = NULL;
134   LPWSTR tmp, orig_tmp;
135   INT tmp_len;
136   WCHAR* cur;
137   HRESULT hr = E_INVALIDARG;
138
139   TRACE("(%p, %s, %p)\n", iface, debugstr_w(pwszContainer), ppInstance);
140
141   if (NULL == ppInstance || NULL == pwszContainer) {
142     return E_INVALIDARG;
143   }
144
145   pContainer = (PDXDIAGCONTAINER) This;
146
147   tmp_len = strlenW(pwszContainer) + 1;
148   orig_tmp = tmp = HeapAlloc(GetProcessHeap(), 0, tmp_len * sizeof(WCHAR));
149   if (NULL == tmp) return E_FAIL;
150   lstrcpynW(tmp, pwszContainer, tmp_len);
151
152   cur = strchrW(tmp, '.');
153   while (NULL != cur) {
154     *cur = '\0'; /* cut tmp string to '.' */
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   hr = IDxDiagContainerImpl_GetChildContainerInternal(pContainer, tmp, ppInstance);
164   if (SUCCEEDED(hr)) {
165     IDxDiagContainerImpl_AddRef(*ppInstance);
166   }
167
168 on_error:
169   HeapFree(GetProcessHeap(), 0, orig_tmp);
170   return hr;
171 }
172
173 static HRESULT WINAPI IDxDiagContainerImpl_GetNumberOfProps(PDXDIAGCONTAINER iface, DWORD* pdwCount) {
174   IDxDiagContainerImpl *This = (IDxDiagContainerImpl *)iface;
175   TRACE("(%p)\n", iface);
176   if (NULL == pdwCount) {
177     return E_INVALIDARG;
178   }
179   *pdwCount = This->nProperties;
180   return S_OK;
181 }
182
183 static HRESULT WINAPI IDxDiagContainerImpl_EnumPropNames(PDXDIAGCONTAINER iface, DWORD dwIndex, LPWSTR pwszPropName, DWORD cchPropName) {
184   IDxDiagContainerImpl *This = (IDxDiagContainerImpl *)iface;
185   IDxDiagContainerImpl_Property* p = NULL;
186   DWORD i = 0;
187   
188   TRACE("(%p, %u, %s, %u)\n", iface, dwIndex, debugstr_w(pwszPropName), cchPropName);
189
190   if (NULL == pwszPropName) {
191     return E_INVALIDARG;
192   }
193   if (256 > cchPropName) {
194     return DXDIAG_E_INSUFFICIENT_BUFFER;
195   }
196   
197   p = This->properties;
198   while (NULL != p) {
199     if (dwIndex == i) {  
200       if (cchPropName <= strlenW(p->vName)) {
201         return DXDIAG_E_INSUFFICIENT_BUFFER;
202       }
203       lstrcpynW(pwszPropName, p->vName, cchPropName);
204       return S_OK;
205     }
206     p = p->next;
207     ++i;
208   }  
209   return E_INVALIDARG;
210 }
211
212 static HRESULT WINAPI IDxDiagContainerImpl_GetProp(PDXDIAGCONTAINER iface, LPCWSTR pwszPropName, VARIANT* pvarProp) {
213   IDxDiagContainerImpl *This = (IDxDiagContainerImpl *)iface;
214   IDxDiagContainerImpl_Property* p = NULL;
215
216   TRACE("(%p, %s, %p)\n", iface, debugstr_w(pwszPropName), pvarProp);
217
218   if (NULL == pvarProp || NULL == pwszPropName) {
219     return E_INVALIDARG;
220   }
221
222   p = This->properties;
223   while (NULL != p) {
224     if (0 == lstrcmpW(p->vName, pwszPropName)) {      
225       VariantCopy(pvarProp, &p->v);
226       return S_OK;
227     }
228     p = p->next;
229   }
230   return S_OK;
231 }
232
233 HRESULT WINAPI IDxDiagContainerImpl_AddProp(PDXDIAGCONTAINER iface, LPCWSTR pwszPropName, VARIANT* pVarProp) {
234   IDxDiagContainerImpl *This = (IDxDiagContainerImpl *)iface;
235   IDxDiagContainerImpl_Property* p = NULL;
236   IDxDiagContainerImpl_Property* pNew = NULL;
237
238   TRACE("(%p, %s, %p)\n", iface, debugstr_w(pwszPropName), pVarProp);
239
240   if (NULL == pVarProp || NULL == pwszPropName) {
241     return E_INVALIDARG;
242   }
243
244   pNew =  HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(IDxDiagContainerImpl_Property));
245   if (NULL == pNew) {
246     return E_OUTOFMEMORY;
247   }
248   VariantInit(&pNew->v);
249   VariantCopy(&pNew->v, pVarProp);
250   pNew->vName = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, (lstrlenW(pwszPropName) + 1) * sizeof(WCHAR));
251   lstrcpyW(pNew->vName, pwszPropName);
252   pNew->next = NULL;
253
254   p = This->properties;
255   if (NULL == p) {
256     This->properties = pNew;
257   } else {
258     while (NULL != p->next) {
259       p = p->next;
260     }
261     p->next = pNew;
262   }
263   ++This->nProperties;
264   return S_OK;
265 }
266
267 HRESULT WINAPI IDxDiagContainerImpl_AddChildContainer(PDXDIAGCONTAINER iface, LPCWSTR pszContName, PDXDIAGCONTAINER pSubCont) {
268   IDxDiagContainerImpl *This = (IDxDiagContainerImpl *)iface;
269   IDxDiagContainerImpl_SubContainer* p = NULL;
270   IDxDiagContainerImpl_SubContainer* pNew = NULL;
271
272   TRACE("(%p, %s, %p)\n", iface, debugstr_w(pszContName), pSubCont);
273
274   if (NULL == pSubCont || NULL == pszContName) {
275     return E_INVALIDARG;
276   }
277
278   pNew =  HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(IDxDiagContainerImpl_SubContainer));
279   if (NULL == pNew) {
280     return E_OUTOFMEMORY;
281   }
282   pNew->pCont = pSubCont;
283   pNew->contName = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, (lstrlenW(pszContName) + 1) * sizeof(WCHAR));
284   lstrcpyW(pNew->contName, pszContName);
285   pNew->next = NULL;
286
287   p = This->subContainers;
288   if (NULL == p) {
289     This->subContainers = pNew;
290   } else {
291     while (NULL != p->next) {
292       p = p->next;
293     }
294     p->next = pNew;
295   }
296   ++This->nSubContainers;
297   return S_OK;
298 }
299
300 static const IDxDiagContainerVtbl DxDiagContainer_Vtbl =
301 {
302     IDxDiagContainerImpl_QueryInterface,
303     IDxDiagContainerImpl_AddRef,
304     IDxDiagContainerImpl_Release,
305     IDxDiagContainerImpl_GetNumberOfChildContainers,
306     IDxDiagContainerImpl_EnumChildContainerNames,
307     IDxDiagContainerImpl_GetChildContainer,
308     IDxDiagContainerImpl_GetNumberOfProps,
309     IDxDiagContainerImpl_EnumPropNames,
310     IDxDiagContainerImpl_GetProp
311 };
312
313
314 HRESULT DXDiag_CreateDXDiagContainer(REFIID riid, LPVOID *ppobj) {
315   IDxDiagContainerImpl* container;
316
317   TRACE("(%p, %p)\n", debugstr_guid(riid), ppobj);
318   
319   container = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(IDxDiagContainerImpl));
320   if (NULL == container) {
321     *ppobj = NULL;
322     return E_OUTOFMEMORY;
323   }
324   container->lpVtbl = &DxDiagContainer_Vtbl;
325   container->ref = 0; /* will be inited with QueryInterface */
326   return IDxDiagContainerImpl_QueryInterface((PDXDIAGCONTAINER)container, riid, ppobj);
327 }