msvcrt: Add scheduler_resource_allocation_error class implementation.
[wine.git] / dlls / propsys / propstore.c
blob9c848fcaba609fb824fd2b33b903a069c56f5736
1 /*
2 * standard IPropertyStore implementation
4 * Copyright 2012 Vincent Povirk for CodeWeavers
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
21 #define COBJMACROS
22 #include "config.h"
24 #include <stdarg.h>
26 #include "windef.h"
27 #include "winbase.h"
28 #include "objbase.h"
29 #include "rpcproxy.h"
30 #include "propsys.h"
31 #include "wine/debug.h"
32 #include "wine/unicode.h"
33 #include "wine/list.h"
35 #include "initguid.h"
36 #include "propsys_private.h"
38 DEFINE_GUID(FMTID_NamedProperties, 0xd5cdd505, 0x2e9c, 0x101b, 0x93, 0x97, 0x08, 0x00, 0x2b, 0x2c, 0xf9, 0xae);
40 WINE_DEFAULT_DEBUG_CHANNEL(propsys);
42 typedef struct {
43 struct list entry;
44 DWORD pid;
45 PROPVARIANT propvar;
46 PSC_STATE state;
47 } propstore_value;
49 typedef struct {
50 struct list entry;
51 GUID fmtid;
52 struct list values; /* list of struct propstore_value */
53 DWORD count;
54 } propstore_format;
56 typedef struct {
57 IPropertyStoreCache IPropertyStoreCache_iface;
58 LONG ref;
59 CRITICAL_SECTION lock;
60 struct list formats; /* list of struct propstore_format */
61 } PropertyStore;
63 static inline PropertyStore *impl_from_IPropertyStoreCache(IPropertyStoreCache *iface)
65 return CONTAINING_RECORD(iface, PropertyStore, IPropertyStoreCache_iface);
68 static HRESULT WINAPI PropertyStore_QueryInterface(IPropertyStoreCache *iface, REFIID iid,
69 void **ppv)
71 PropertyStore *This = impl_from_IPropertyStoreCache(iface);
72 TRACE("(%p,%s,%p)\n", iface, debugstr_guid(iid), ppv);
74 if (!ppv) return E_INVALIDARG;
76 if (IsEqualIID(&IID_IUnknown, iid) || IsEqualIID(&IID_IPropertyStore, iid) ||
77 IsEqualIID(&IID_IPropertyStoreCache, iid))
79 *ppv = &This->IPropertyStoreCache_iface;
81 else
83 FIXME("No interface for %s\n", debugstr_guid(iid));
84 *ppv = NULL;
85 return E_NOINTERFACE;
88 IUnknown_AddRef((IUnknown*)*ppv);
89 return S_OK;
92 static ULONG WINAPI PropertyStore_AddRef(IPropertyStoreCache *iface)
94 PropertyStore *This = impl_from_IPropertyStoreCache(iface);
95 ULONG ref = InterlockedIncrement(&This->ref);
97 TRACE("(%p) refcount=%u\n", iface, ref);
99 return ref;
102 static void destroy_format(propstore_format *format)
104 propstore_value *cursor, *cursor2;
105 LIST_FOR_EACH_ENTRY_SAFE(cursor, cursor2, &format->values, propstore_value, entry)
107 PropVariantClear(&cursor->propvar);
108 HeapFree(GetProcessHeap(), 0, cursor);
110 HeapFree(GetProcessHeap(), 0, format);
113 static ULONG WINAPI PropertyStore_Release(IPropertyStoreCache *iface)
115 PropertyStore *This = impl_from_IPropertyStoreCache(iface);
116 ULONG ref = InterlockedDecrement(&This->ref);
118 TRACE("(%p) refcount=%u\n", iface, ref);
120 if (ref == 0)
122 propstore_format *cursor, *cursor2;
123 This->lock.DebugInfo->Spare[0] = 0;
124 DeleteCriticalSection(&This->lock);
125 LIST_FOR_EACH_ENTRY_SAFE(cursor, cursor2, &This->formats, propstore_format, entry)
126 destroy_format(cursor);
127 HeapFree(GetProcessHeap(), 0, This);
130 return ref;
133 static HRESULT WINAPI PropertyStore_GetCount(IPropertyStoreCache *iface,
134 DWORD *cProps)
136 PropertyStore *This = impl_from_IPropertyStoreCache(iface);
137 propstore_format *format;
139 TRACE("%p,%p\n", iface, cProps);
141 if (!cProps)
142 return E_POINTER;
144 *cProps = 0;
146 EnterCriticalSection(&This->lock);
148 LIST_FOR_EACH_ENTRY(format, &This->formats, propstore_format, entry)
149 *cProps += format->count;
151 LeaveCriticalSection(&This->lock);
153 return S_OK;
156 static HRESULT WINAPI PropertyStore_GetAt(IPropertyStoreCache *iface,
157 DWORD iProp, PROPERTYKEY *pkey)
159 PropertyStore *This = impl_from_IPropertyStoreCache(iface);
160 propstore_format *format=NULL, *format_candidate;
161 propstore_value *value;
162 HRESULT hr;
164 TRACE("%p,%d,%p\n", iface, iProp, pkey);
166 if (!pkey)
167 return E_POINTER;
169 EnterCriticalSection(&This->lock);
171 LIST_FOR_EACH_ENTRY(format_candidate, &This->formats, propstore_format, entry)
173 if (format_candidate->count > iProp)
175 format = format_candidate;
176 pkey->fmtid = format->fmtid;
177 break;
180 iProp -= format_candidate->count;
183 if (format)
185 LIST_FOR_EACH_ENTRY(value, &format->values, propstore_value, entry)
187 if (iProp == 0)
189 pkey->pid = value->pid;
190 break;
193 iProp--;
196 hr = S_OK;
198 else
199 hr = E_INVALIDARG;
201 LeaveCriticalSection(&This->lock);
203 return hr;
206 static HRESULT PropertyStore_LookupValue(PropertyStore *This, REFPROPERTYKEY key,
207 BOOL insert, propstore_value **result)
209 propstore_format *format=NULL, *format_candidate;
210 propstore_value *value=NULL, *value_candidate;
212 if (IsEqualGUID(&key->fmtid, &FMTID_NamedProperties))
214 /* This is used in the property store format [MS-PROPSTORE]
215 * for named values and probably gets special treatment. */
216 ERR("don't know how to handle FMTID_NamedProperties\n");
217 return E_FAIL;
220 LIST_FOR_EACH_ENTRY(format_candidate, &This->formats, propstore_format, entry)
222 if (IsEqualGUID(&format_candidate->fmtid, &key->fmtid))
224 format = format_candidate;
225 break;
229 if (!format)
231 if (!insert)
232 return TYPE_E_ELEMENTNOTFOUND;
234 format = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*format));
235 if (!format)
236 return E_OUTOFMEMORY;
238 format->fmtid = key->fmtid;
239 list_init(&format->values);
240 list_add_tail(&This->formats, &format->entry);
243 LIST_FOR_EACH_ENTRY(value_candidate, &format->values, propstore_value, entry)
245 if (value_candidate->pid == key->pid)
247 value = value_candidate;
248 break;
252 if (!value)
254 if (!insert)
255 return TYPE_E_ELEMENTNOTFOUND;
257 value = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*value));
258 if (!value)
259 return E_OUTOFMEMORY;
261 value->pid = key->pid;
262 list_add_tail(&format->values, &value->entry);
263 format->count++;
266 *result = value;
268 return S_OK;
271 static HRESULT WINAPI PropertyStore_GetValue(IPropertyStoreCache *iface,
272 REFPROPERTYKEY key, PROPVARIANT *pv)
274 PropertyStore *This = impl_from_IPropertyStoreCache(iface);
275 propstore_value *value;
276 HRESULT hr;
278 TRACE("%p,%p,%p\n", iface, key, pv);
280 if (!pv)
281 return E_POINTER;
283 EnterCriticalSection(&This->lock);
285 hr = PropertyStore_LookupValue(This, key, FALSE, &value);
287 if (SUCCEEDED(hr))
288 hr = PropVariantCopy(pv, &value->propvar);
289 else if (hr == TYPE_E_ELEMENTNOTFOUND)
291 PropVariantInit(pv);
292 hr = S_OK;
295 LeaveCriticalSection(&This->lock);
297 return hr;
300 static HRESULT WINAPI PropertyStore_SetValue(IPropertyStoreCache *iface,
301 REFPROPERTYKEY key, REFPROPVARIANT propvar)
303 PropertyStore *This = impl_from_IPropertyStoreCache(iface);
304 propstore_value *value;
305 HRESULT hr;
306 PROPVARIANT temp;
308 TRACE("%p,%p,%p\n", iface, key, propvar);
310 EnterCriticalSection(&This->lock);
312 hr = PropertyStore_LookupValue(This, key, TRUE, &value);
314 if (SUCCEEDED(hr))
315 hr = PropVariantCopy(&temp, propvar);
317 if (SUCCEEDED(hr))
319 PropVariantClear(&value->propvar);
320 value->propvar = temp;
323 LeaveCriticalSection(&This->lock);
325 return hr;
328 static HRESULT WINAPI PropertyStore_Commit(IPropertyStoreCache *iface)
330 FIXME("%p: stub\n", iface);
331 return S_OK;
334 static HRESULT WINAPI PropertyStore_GetState(IPropertyStoreCache *iface,
335 REFPROPERTYKEY key, PSC_STATE *pstate)
337 PropertyStore *This = impl_from_IPropertyStoreCache(iface);
338 propstore_value *value;
339 HRESULT hr;
341 TRACE("%p,%p,%p\n", iface, key, pstate);
343 EnterCriticalSection(&This->lock);
345 hr = PropertyStore_LookupValue(This, key, FALSE, &value);
347 if (SUCCEEDED(hr))
348 *pstate = value->state;
350 LeaveCriticalSection(&This->lock);
352 if (FAILED(hr))
353 *pstate = PSC_NORMAL;
355 return hr;
358 static HRESULT WINAPI PropertyStore_GetValueAndState(IPropertyStoreCache *iface,
359 REFPROPERTYKEY key, PROPVARIANT *ppropvar, PSC_STATE *pstate)
361 PropertyStore *This = impl_from_IPropertyStoreCache(iface);
362 propstore_value *value;
363 HRESULT hr;
365 TRACE("%p,%p,%p,%p\n", iface, key, ppropvar, pstate);
367 EnterCriticalSection(&This->lock);
369 hr = PropertyStore_LookupValue(This, key, FALSE, &value);
371 if (SUCCEEDED(hr))
372 hr = PropVariantCopy(ppropvar, &value->propvar);
374 if (SUCCEEDED(hr))
375 *pstate = value->state;
377 LeaveCriticalSection(&This->lock);
379 if (FAILED(hr))
381 PropVariantInit(ppropvar);
382 *pstate = PSC_NORMAL;
385 return hr;
388 static HRESULT WINAPI PropertyStore_SetState(IPropertyStoreCache *iface,
389 REFPROPERTYKEY key, PSC_STATE pstate)
391 PropertyStore *This = impl_from_IPropertyStoreCache(iface);
392 propstore_value *value;
393 HRESULT hr;
395 TRACE("%p,%p,%d\n", iface, key, pstate);
397 EnterCriticalSection(&This->lock);
399 hr = PropertyStore_LookupValue(This, key, FALSE, &value);
401 if (SUCCEEDED(hr))
402 value->state = pstate;
404 LeaveCriticalSection(&This->lock);
406 return hr;
409 static HRESULT WINAPI PropertyStore_SetValueAndState(IPropertyStoreCache *iface,
410 REFPROPERTYKEY key, const PROPVARIANT *ppropvar, PSC_STATE state)
412 PropertyStore *This = impl_from_IPropertyStoreCache(iface);
413 propstore_value *value;
414 HRESULT hr;
415 PROPVARIANT temp;
417 TRACE("%p,%p,%p,%d\n", iface, key, ppropvar, state);
419 EnterCriticalSection(&This->lock);
421 hr = PropertyStore_LookupValue(This, key, TRUE, &value);
423 if (SUCCEEDED(hr))
424 hr = PropVariantCopy(&temp, ppropvar);
426 if (SUCCEEDED(hr))
428 PropVariantClear(&value->propvar);
429 value->propvar = temp;
430 value->state = state;
433 LeaveCriticalSection(&This->lock);
435 return hr;
438 static const IPropertyStoreCacheVtbl PropertyStore_Vtbl = {
439 PropertyStore_QueryInterface,
440 PropertyStore_AddRef,
441 PropertyStore_Release,
442 PropertyStore_GetCount,
443 PropertyStore_GetAt,
444 PropertyStore_GetValue,
445 PropertyStore_SetValue,
446 PropertyStore_Commit,
447 PropertyStore_GetState,
448 PropertyStore_GetValueAndState,
449 PropertyStore_SetState,
450 PropertyStore_SetValueAndState
453 HRESULT PropertyStore_CreateInstance(IUnknown *pUnkOuter, REFIID iid, void** ppv)
455 PropertyStore *This;
456 HRESULT ret;
458 TRACE("(%p,%s,%p)\n", pUnkOuter, debugstr_guid(iid), ppv);
460 *ppv = NULL;
462 if (pUnkOuter) return CLASS_E_NOAGGREGATION;
464 This = HeapAlloc(GetProcessHeap(), 0, sizeof(PropertyStore));
465 if (!This) return E_OUTOFMEMORY;
467 This->IPropertyStoreCache_iface.lpVtbl = &PropertyStore_Vtbl;
468 This->ref = 1;
469 InitializeCriticalSection(&This->lock);
470 This->lock.DebugInfo->Spare[0] = (DWORD_PTR)(__FILE__ ": PropertyStore.lock");
471 list_init(&This->formats);
473 ret = IPropertyStoreCache_QueryInterface(&This->IPropertyStoreCache_iface, iid, ppv);
474 IPropertyStoreCache_Release(&This->IPropertyStoreCache_iface);
476 return ret;