ICreateDevEnum_CreateClassEnumerator can return S_FALSE when
[wine] / dlls / devenum / parsedisplayname.c
1 /*
2  *      IParseDisplayName implementation for DEVENUM.dll
3  *
4  * Copyright (C) 2002 Robert Shearman
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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  * NOTES ON THIS FILE:
21  * - Implements IParseDisplayName interface which creates a moniker
22  *   from a string in a special format
23  */
24 #include "devenum_private.h"
25
26 #include "wine/debug.h"
27
28 WINE_DEFAULT_DEBUG_CHANNEL(devenum);
29
30 static HRESULT WINAPI DEVENUM_IParseDisplayName_QueryInterface(
31     LPPARSEDISPLAYNAME iface,
32     REFIID riid,
33     LPVOID *ppvObj)
34 {
35     ICOM_THIS(ParseDisplayNameImpl, iface);
36     TRACE("\n\tIID:\t%s\n",debugstr_guid(riid));
37
38     if (This == NULL || ppvObj == NULL) return E_POINTER;
39
40     if (IsEqualGUID(riid, &IID_IUnknown) ||
41         IsEqualGUID(riid, &IID_IParseDisplayName))
42     {
43         *ppvObj = (LPVOID)iface;
44         IParseDisplayName_AddRef(iface);
45         return S_OK;
46     }
47
48     FIXME("- no interface\n\tIID:\t%s\n", debugstr_guid(riid));
49     return E_NOINTERFACE;
50 }
51
52 /**********************************************************************
53  * DEVENUM_IParseDisplayName_AddRef (also IUnknown)
54  */
55 static ULONG WINAPI DEVENUM_IParseDisplayName_AddRef(LPPARSEDISPLAYNAME iface)
56 {
57     ICOM_THIS(ParseDisplayNameImpl, iface);
58     TRACE("\n");
59
60     if (This == NULL) return E_POINTER;
61
62     if (InterlockedIncrement(&This->ref) == 1) {
63         InterlockedIncrement(&dll_ref);
64     }
65
66     return ++This->ref;
67 }
68
69 /**********************************************************************
70  * DEVENUM_IParseDisplayName_Release (also IUnknown)
71  */
72 static ULONG WINAPI DEVENUM_IParseDisplayName_Release(LPPARSEDISPLAYNAME iface)
73 {
74     ICOM_THIS(ParseDisplayNameImpl, iface);
75     ULONG ref;
76     TRACE("\n");
77
78     if (This == NULL) return E_POINTER;
79
80     ref = --This->ref;
81     if (InterlockedDecrement(&This->ref) == 0) {
82         InterlockedDecrement(&dll_ref);
83     }
84     return ref;
85 }
86
87 /**********************************************************************
88  * DEVENUM_IParseDisplayName_ParseDisplayName
89  *
90  *  Creates a moniker referenced to by the display string argument
91  *
92  * POSSIBLE BUGS:
93  *  Might not handle more complicated strings properly (ie not in
94  *  "@device:sw:{CLSID1}\{CLSID2}" format
95  */
96 static HRESULT WINAPI DEVENUM_IParseDisplayName_ParseDisplayName(
97     LPPARSEDISPLAYNAME iface,
98     IBindCtx *pbc,
99     LPOLESTR pszDisplayName,
100     ULONG *pchEaten,
101     IMoniker **ppmkOut)
102 {
103     LPOLESTR pszBetween = NULL;
104     LPOLESTR pszClass = NULL;
105     IEnumMoniker * pEm = NULL;
106     MediaCatMoniker * pMoniker = NULL;
107     CLSID clsidDevice;
108     HRESULT res = S_OK;
109     TRACE("(%p, %s, %p, %p)\n", pbc, debugstr_w(pszDisplayName), pchEaten, ppmkOut);
110
111     *ppmkOut = NULL;
112     if (pchEaten)
113         *pchEaten = strlenW(pszDisplayName);
114
115     pszDisplayName = strchrW(pszDisplayName, '{');
116     pszBetween = strchrW(pszDisplayName, '}') + 2;
117
118     /* size = pszBetween - pszDisplayName - 1 (for '\\' after CLSID)
119      * + 1 (for NULL character)
120      */
121     pszClass = CoTaskMemAlloc((int)(pszBetween - pszDisplayName) * sizeof(WCHAR));
122     if (!pszClass)
123         return E_OUTOFMEMORY;
124
125     strncpyW(pszClass, pszDisplayName, (int)(pszBetween - pszDisplayName) - 1);
126     pszClass[(int)(pszBetween - pszDisplayName) - 1] = 0;
127
128     TRACE("Device CLSID: %s\n", debugstr_w(pszClass));
129
130     res = CLSIDFromString(pszClass, &clsidDevice);
131
132     if (SUCCEEDED(res))
133     {
134         res = DEVENUM_ICreateDevEnum_CreateClassEnumerator((ICreateDevEnum *)(char*)&DEVENUM_CreateDevEnum, &clsidDevice, &pEm, 0);
135         if (res == S_FALSE) /* S_FALSE means no category */
136             res = MK_E_NOOBJECT;
137     }
138
139     if (SUCCEEDED(res))
140     {
141         pMoniker = DEVENUM_IMediaCatMoniker_Construct();
142         if (pMoniker)
143         {
144             if (RegCreateKeyW(((EnumMonikerImpl *)pEm)->hkey,
145                                pszBetween,
146                                &pMoniker->hkey) == ERROR_SUCCESS)
147                 *ppmkOut = (LPMONIKER)pMoniker;
148             else
149             {
150                 IMoniker_Release((LPMONIKER)pMoniker);
151                 res = MK_E_NOOBJECT;
152             }
153         }
154     }
155
156     if (pEm)
157         IEnumMoniker_Release(pEm);
158
159     if (pszClass)
160         CoTaskMemFree(pszClass);
161
162     TRACE("-- returning: %lx\n", res);
163     return res;
164 }
165
166 /**********************************************************************
167  * IParseDisplayName_Vtbl
168  */
169 static ICOM_VTABLE(IParseDisplayName) IParseDisplayName_Vtbl =
170 {
171     ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE
172     DEVENUM_IParseDisplayName_QueryInterface,
173     DEVENUM_IParseDisplayName_AddRef,
174     DEVENUM_IParseDisplayName_Release,
175     DEVENUM_IParseDisplayName_ParseDisplayName
176 };
177
178 /* The one instance of this class */
179 ParseDisplayNameImpl DEVENUM_ParseDisplayName = { &IParseDisplayName_Vtbl, 0 };