Robert Shearman | d38cce8 | 2003-07-01 04:30:30 +0000 | [diff] [blame] | 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 |
Jonathan Ernst | 360a3f9 | 2006-05-18 14:49:52 +0200 | [diff] [blame] | 18 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA |
Robert Shearman | d38cce8 | 2003-07-01 04:30:30 +0000 | [diff] [blame] | 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 | |
Michael Stefaniuc | 448986f | 2012-04-03 00:22:12 +0200 | [diff] [blame] | 30 | static HRESULT WINAPI DEVENUM_IParseDisplayName_QueryInterface(IParseDisplayName *iface, |
| 31 | REFIID riid, void **ppv) |
Robert Shearman | d38cce8 | 2003-07-01 04:30:30 +0000 | [diff] [blame] | 32 | { |
Robert Shearman | d38cce8 | 2003-07-01 04:30:30 +0000 | [diff] [blame] | 33 | TRACE("\n\tIID:\t%s\n",debugstr_guid(riid)); |
| 34 | |
Michael Stefaniuc | 448986f | 2012-04-03 00:22:12 +0200 | [diff] [blame] | 35 | if (!ppv) |
| 36 | return E_POINTER; |
Robert Shearman | d38cce8 | 2003-07-01 04:30:30 +0000 | [diff] [blame] | 37 | |
| 38 | if (IsEqualGUID(riid, &IID_IUnknown) || |
| 39 | IsEqualGUID(riid, &IID_IParseDisplayName)) |
| 40 | { |
Michael Stefaniuc | 448986f | 2012-04-03 00:22:12 +0200 | [diff] [blame] | 41 | *ppv = iface; |
| 42 | IParseDisplayName_AddRef(iface); |
| 43 | return S_OK; |
Robert Shearman | d38cce8 | 2003-07-01 04:30:30 +0000 | [diff] [blame] | 44 | } |
| 45 | |
Michael Stefaniuc | 71d7331 | 2010-01-11 23:47:51 +0100 | [diff] [blame] | 46 | FIXME("- no interface IID: %s\n", debugstr_guid(riid)); |
Michael Stefaniuc | 448986f | 2012-04-03 00:22:12 +0200 | [diff] [blame] | 47 | *ppv = NULL; |
Robert Shearman | d38cce8 | 2003-07-01 04:30:30 +0000 | [diff] [blame] | 48 | return E_NOINTERFACE; |
| 49 | } |
| 50 | |
Michael Stefaniuc | 448986f | 2012-04-03 00:22:12 +0200 | [diff] [blame] | 51 | static ULONG WINAPI DEVENUM_IParseDisplayName_AddRef(IParseDisplayName *iface) |
Robert Shearman | d38cce8 | 2003-07-01 04:30:30 +0000 | [diff] [blame] | 52 | { |
Robert Shearman | d38cce8 | 2003-07-01 04:30:30 +0000 | [diff] [blame] | 53 | TRACE("\n"); |
| 54 | |
Robert Shearman | e7110f0 | 2004-12-07 14:37:11 +0000 | [diff] [blame] | 55 | DEVENUM_LockModule(); |
Robert Shearman | d38cce8 | 2003-07-01 04:30:30 +0000 | [diff] [blame] | 56 | |
Robert Shearman | e7110f0 | 2004-12-07 14:37:11 +0000 | [diff] [blame] | 57 | return 2; /* non-heap based object */ |
Robert Shearman | d38cce8 | 2003-07-01 04:30:30 +0000 | [diff] [blame] | 58 | } |
| 59 | |
Michael Stefaniuc | 448986f | 2012-04-03 00:22:12 +0200 | [diff] [blame] | 60 | static ULONG WINAPI DEVENUM_IParseDisplayName_Release(IParseDisplayName *iface) |
Robert Shearman | d38cce8 | 2003-07-01 04:30:30 +0000 | [diff] [blame] | 61 | { |
Robert Shearman | d38cce8 | 2003-07-01 04:30:30 +0000 | [diff] [blame] | 62 | TRACE("\n"); |
| 63 | |
Robert Shearman | e7110f0 | 2004-12-07 14:37:11 +0000 | [diff] [blame] | 64 | DEVENUM_UnlockModule(); |
Robert Shearman | d38cce8 | 2003-07-01 04:30:30 +0000 | [diff] [blame] | 65 | |
Robert Shearman | e7110f0 | 2004-12-07 14:37:11 +0000 | [diff] [blame] | 66 | return 1; /* non-heap based object */ |
Robert Shearman | d38cce8 | 2003-07-01 04:30:30 +0000 | [diff] [blame] | 67 | } |
| 68 | |
| 69 | /********************************************************************** |
| 70 | * DEVENUM_IParseDisplayName_ParseDisplayName |
| 71 | * |
| 72 | * Creates a moniker referenced to by the display string argument |
| 73 | * |
| 74 | * POSSIBLE BUGS: |
Robert Shearman | e14e101 | 2003-12-30 21:52:45 +0000 | [diff] [blame] | 75 | * Might not handle more complicated strings properly (ie anything |
| 76 | * not in "@device:sw:{CLSID1}\<filter name or CLSID>" format |
Robert Shearman | d38cce8 | 2003-07-01 04:30:30 +0000 | [diff] [blame] | 77 | */ |
Michael Stefaniuc | 448986f | 2012-04-03 00:22:12 +0200 | [diff] [blame] | 78 | static HRESULT WINAPI DEVENUM_IParseDisplayName_ParseDisplayName(IParseDisplayName *iface, |
| 79 | IBindCtx *pbc, LPOLESTR pszDisplayName, ULONG *pchEaten, IMoniker **ppmkOut) |
Robert Shearman | d38cce8 | 2003-07-01 04:30:30 +0000 | [diff] [blame] | 80 | { |
| 81 | LPOLESTR pszBetween = NULL; |
| 82 | LPOLESTR pszClass = NULL; |
Robert Shearman | d38cce8 | 2003-07-01 04:30:30 +0000 | [diff] [blame] | 83 | MediaCatMoniker * pMoniker = NULL; |
| 84 | CLSID clsidDevice; |
| 85 | HRESULT res = S_OK; |
Alexander Dorofeyev | de70686 | 2008-06-29 15:07:32 +0300 | [diff] [blame] | 86 | WCHAR wszRegKeyName[MAX_PATH]; |
| 87 | HKEY hbasekey; |
Peter Berg Larsen | 6e3bcb5 | 2005-04-18 10:30:55 +0000 | [diff] [blame] | 88 | int classlen; |
Alexander Dorofeyev | de70686 | 2008-06-29 15:07:32 +0300 | [diff] [blame] | 89 | static const WCHAR wszRegSeparator[] = {'\\', 0 }; |
Robert Shearman | e14e101 | 2003-12-30 21:52:45 +0000 | [diff] [blame] | 90 | |
Robert Shearman | d38cce8 | 2003-07-01 04:30:30 +0000 | [diff] [blame] | 91 | TRACE("(%p, %s, %p, %p)\n", pbc, debugstr_w(pszDisplayName), pchEaten, ppmkOut); |
| 92 | |
| 93 | *ppmkOut = NULL; |
| 94 | if (pchEaten) |
| 95 | *pchEaten = strlenW(pszDisplayName); |
| 96 | |
| 97 | pszDisplayName = strchrW(pszDisplayName, '{'); |
| 98 | pszBetween = strchrW(pszDisplayName, '}') + 2; |
| 99 | |
| 100 | /* size = pszBetween - pszDisplayName - 1 (for '\\' after CLSID) |
| 101 | * + 1 (for NULL character) |
| 102 | */ |
Peter Berg Larsen | 6e3bcb5 | 2005-04-18 10:30:55 +0000 | [diff] [blame] | 103 | classlen = (int)(pszBetween - pszDisplayName - 1); |
| 104 | pszClass = CoTaskMemAlloc((classlen + 1) * sizeof(WCHAR)); |
Robert Shearman | d38cce8 | 2003-07-01 04:30:30 +0000 | [diff] [blame] | 105 | if (!pszClass) |
| 106 | return E_OUTOFMEMORY; |
| 107 | |
Peter Berg Larsen | 6e3bcb5 | 2005-04-18 10:30:55 +0000 | [diff] [blame] | 108 | memcpy(pszClass, pszDisplayName, classlen * sizeof(WCHAR)); |
| 109 | pszClass[classlen] = 0; |
Robert Shearman | d38cce8 | 2003-07-01 04:30:30 +0000 | [diff] [blame] | 110 | |
| 111 | TRACE("Device CLSID: %s\n", debugstr_w(pszClass)); |
| 112 | |
| 113 | res = CLSIDFromString(pszClass, &clsidDevice); |
| 114 | |
| 115 | if (SUCCEEDED(res)) |
| 116 | { |
Alexander Dorofeyev | de70686 | 2008-06-29 15:07:32 +0300 | [diff] [blame] | 117 | res = DEVENUM_GetCategoryKey(&clsidDevice, &hbasekey, wszRegKeyName, MAX_PATH); |
Robert Shearman | d38cce8 | 2003-07-01 04:30:30 +0000 | [diff] [blame] | 118 | } |
| 119 | |
| 120 | if (SUCCEEDED(res)) |
| 121 | { |
| 122 | pMoniker = DEVENUM_IMediaCatMoniker_Construct(); |
| 123 | if (pMoniker) |
| 124 | { |
Alexander Dorofeyev | de70686 | 2008-06-29 15:07:32 +0300 | [diff] [blame] | 125 | strcatW(wszRegKeyName, wszRegSeparator); |
| 126 | strcatW(wszRegKeyName, pszBetween); |
| 127 | |
| 128 | if (RegCreateKeyW(hbasekey, wszRegKeyName, &pMoniker->hkey) == ERROR_SUCCESS) |
Michael Stefaniuc | 25aa60b | 2012-04-03 00:18:39 +0200 | [diff] [blame] | 129 | *ppmkOut = &pMoniker->IMoniker_iface; |
Robert Shearman | d38cce8 | 2003-07-01 04:30:30 +0000 | [diff] [blame] | 130 | else |
| 131 | { |
Michael Stefaniuc | 25aa60b | 2012-04-03 00:18:39 +0200 | [diff] [blame] | 132 | IMoniker_Release(&pMoniker->IMoniker_iface); |
Robert Shearman | d38cce8 | 2003-07-01 04:30:30 +0000 | [diff] [blame] | 133 | res = MK_E_NOOBJECT; |
| 134 | } |
| 135 | } |
| 136 | } |
| 137 | |
James Hawkins | 99e2c6d | 2006-10-06 18:05:08 -0700 | [diff] [blame] | 138 | CoTaskMemFree(pszClass); |
Robert Shearman | d38cce8 | 2003-07-01 04:30:30 +0000 | [diff] [blame] | 139 | |
Michael Stefaniuc | 36d88d9 | 2006-10-08 18:58:22 +0200 | [diff] [blame] | 140 | TRACE("-- returning: %x\n", res); |
Robert Shearman | d38cce8 | 2003-07-01 04:30:30 +0000 | [diff] [blame] | 141 | return res; |
| 142 | } |
| 143 | |
| 144 | /********************************************************************** |
| 145 | * IParseDisplayName_Vtbl |
| 146 | */ |
Dmitry Timoshkov | 247246e | 2005-05-30 10:01:08 +0000 | [diff] [blame] | 147 | static const IParseDisplayNameVtbl IParseDisplayName_Vtbl = |
Robert Shearman | d38cce8 | 2003-07-01 04:30:30 +0000 | [diff] [blame] | 148 | { |
Robert Shearman | d38cce8 | 2003-07-01 04:30:30 +0000 | [diff] [blame] | 149 | DEVENUM_IParseDisplayName_QueryInterface, |
| 150 | DEVENUM_IParseDisplayName_AddRef, |
| 151 | DEVENUM_IParseDisplayName_Release, |
| 152 | DEVENUM_IParseDisplayName_ParseDisplayName |
| 153 | }; |
| 154 | |
| 155 | /* The one instance of this class */ |
Jacek Caban | 9940756 | 2012-04-04 10:43:12 +0200 | [diff] [blame] | 156 | IParseDisplayName DEVENUM_ParseDisplayName = { &IParseDisplayName_Vtbl }; |