usp10: Update tests in test_ScriptItemIzeShapePlace to match Windows results.
[wine/multimedia.git] / dlls / amstream / regsvr.c
blob04cc05a438a91315bf5ddef8a8edc893f50a2bb4
1 /*
2 * self-registerable dll functions for amstream.dll
4 * Copyright (C) 2003 John K. Hohm
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 COM_NO_WINDOWS_H
22 #include <stdarg.h>
23 #include <string.h>
25 #include "windef.h"
26 #include "winbase.h"
27 #include "winuser.h"
28 #include "wingdi.h"
29 #include "winreg.h"
30 #include "winerror.h"
32 #include "ole2.h"
33 #include "uuids.h"
35 #include "amstream.h"
37 #include "wine/debug.h"
39 WINE_DEFAULT_DEBUG_CHANNEL(amstream);
42 * Near the bottom of this file are the exported DllRegisterServer and
43 * DllUnregisterServer, which make all this worthwhile.
46 /***********************************************************************
47 * interface for self-registering
49 struct regsvr_interface
51 IID const *iid; /* NULL for end of list */
52 LPCSTR name; /* can be NULL to omit */
53 IID const *base_iid; /* can be NULL to omit */
54 int num_methods; /* can be <0 to omit */
55 CLSID const *ps_clsid; /* can be NULL to omit */
56 CLSID const *ps_clsid32; /* can be NULL to omit */
59 static HRESULT register_interfaces(struct regsvr_interface const *list);
60 static HRESULT unregister_interfaces(struct regsvr_interface const *list);
62 struct regsvr_coclass
64 CLSID const *clsid; /* NULL for end of list */
65 LPCSTR name; /* can be NULL to omit */
66 LPCSTR ips; /* can be NULL to omit */
67 LPCSTR ips32; /* can be NULL to omit */
68 LPCSTR ips32_tmodel; /* can be NULL to omit */
69 LPCSTR progid; /* can be NULL to omit */
70 LPCSTR viprogid; /* can be NULL to omit */
71 LPCSTR progid_extra; /* can be NULL to omit */
74 static HRESULT register_coclasses(struct regsvr_coclass const *list);
75 static HRESULT unregister_coclasses(struct regsvr_coclass const *list);
77 /***********************************************************************
78 * static string constants
80 static WCHAR const interface_keyname[10] = {
81 'I', 'n', 't', 'e', 'r', 'f', 'a', 'c', 'e', 0 };
82 static WCHAR const base_ifa_keyname[14] = {
83 'B', 'a', 's', 'e', 'I', 'n', 't', 'e', 'r', 'f', 'a', 'c',
84 'e', 0 };
85 static WCHAR const num_methods_keyname[11] = {
86 'N', 'u', 'm', 'M', 'e', 't', 'h', 'o', 'd', 's', 0 };
87 static WCHAR const ps_clsid_keyname[15] = {
88 'P', 'r', 'o', 'x', 'y', 'S', 't', 'u', 'b', 'C', 'l', 's',
89 'i', 'd', 0 };
90 static WCHAR const ps_clsid32_keyname[17] = {
91 'P', 'r', 'o', 'x', 'y', 'S', 't', 'u', 'b', 'C', 'l', 's',
92 'i', 'd', '3', '2', 0 };
93 static WCHAR const clsid_keyname[6] = {
94 'C', 'L', 'S', 'I', 'D', 0 };
95 static WCHAR const curver_keyname[7] = {
96 'C', 'u', 'r', 'V', 'e', 'r', 0 };
97 static WCHAR const ips_keyname[13] = {
98 'I', 'n', 'P', 'r', 'o', 'c', 'S', 'e', 'r', 'v', 'e', 'r',
99 0 };
100 static WCHAR const ips32_keyname[15] = {
101 'I', 'n', 'P', 'r', 'o', 'c', 'S', 'e', 'r', 'v', 'e', 'r',
102 '3', '2', 0 };
103 static WCHAR const progid_keyname[7] = {
104 'P', 'r', 'o', 'g', 'I', 'D', 0 };
105 static WCHAR const viprogid_keyname[25] = {
106 'V', 'e', 'r', 's', 'i', 'o', 'n', 'I', 'n', 'd', 'e', 'p',
107 'e', 'n', 'd', 'e', 'n', 't', 'P', 'r', 'o', 'g', 'I', 'D',
108 0 };
109 static char const tmodel_valuename[] = "ThreadingModel";
111 /***********************************************************************
112 * static helper functions
114 static LONG register_key_guid(HKEY base, WCHAR const *name, GUID const *guid);
115 static LONG register_key_defvalueW(HKEY base, WCHAR const *name,
116 WCHAR const *value);
117 static LONG register_key_defvalueA(HKEY base, WCHAR const *name,
118 char const *value);
119 static LONG register_progid(WCHAR const *clsid,
120 char const *progid, char const *curver_progid,
121 char const *name, char const *extra);
122 static LONG recursive_delete_key(HKEY key);
123 static LONG recursive_delete_keyA(HKEY base, char const *name);
124 static LONG recursive_delete_keyW(HKEY base, WCHAR const *name);
126 /***********************************************************************
127 * register_interfaces
129 static HRESULT register_interfaces(struct regsvr_interface const *list)
131 LONG res = ERROR_SUCCESS;
132 HKEY interface_key;
134 res = RegCreateKeyExW(HKEY_CLASSES_ROOT, interface_keyname, 0, NULL, 0,
135 KEY_READ | KEY_WRITE, NULL, &interface_key, NULL);
136 if (res != ERROR_SUCCESS) goto error_return;
138 for (; res == ERROR_SUCCESS && list->iid; ++list) {
139 WCHAR buf[39];
140 HKEY iid_key;
142 StringFromGUID2(list->iid, buf, 39);
143 res = RegCreateKeyExW(interface_key, buf, 0, NULL, 0,
144 KEY_READ | KEY_WRITE, NULL, &iid_key, NULL);
145 if (res != ERROR_SUCCESS) goto error_close_interface_key;
147 if (list->name) {
148 res = RegSetValueExA(iid_key, NULL, 0, REG_SZ,
149 (CONST BYTE*)(list->name),
150 strlen(list->name) + 1);
151 if (res != ERROR_SUCCESS) goto error_close_iid_key;
154 if (list->base_iid) {
155 res = register_key_guid(iid_key, base_ifa_keyname, list->base_iid);
156 if (res != ERROR_SUCCESS) goto error_close_iid_key;
159 if (0 <= list->num_methods) {
160 static WCHAR const fmt[3] = { '%', 'd', 0 };
161 HKEY key;
163 res = RegCreateKeyExW(iid_key, num_methods_keyname, 0, NULL, 0,
164 KEY_READ | KEY_WRITE, NULL, &key, NULL);
165 if (res != ERROR_SUCCESS) goto error_close_iid_key;
167 wsprintfW(buf, fmt, list->num_methods);
168 res = RegSetValueExW(key, NULL, 0, REG_SZ,
169 (CONST BYTE*)buf,
170 (lstrlenW(buf) + 1) * sizeof(WCHAR));
171 RegCloseKey(key);
173 if (res != ERROR_SUCCESS) goto error_close_iid_key;
176 if (list->ps_clsid) {
177 register_key_guid(iid_key, ps_clsid_keyname, list->ps_clsid);
178 if (res != ERROR_SUCCESS) goto error_close_iid_key;
181 if (list->ps_clsid32) {
182 register_key_guid(iid_key, ps_clsid32_keyname, list->ps_clsid32);
183 if (res != ERROR_SUCCESS) goto error_close_iid_key;
186 error_close_iid_key:
187 RegCloseKey(iid_key);
190 error_close_interface_key:
191 RegCloseKey(interface_key);
192 error_return:
193 return res != ERROR_SUCCESS ? HRESULT_FROM_WIN32(res) : S_OK;
196 /***********************************************************************
197 * unregister_interfaces
199 static HRESULT unregister_interfaces(struct regsvr_interface const *list)
201 LONG res = ERROR_SUCCESS;
202 HKEY interface_key;
204 res = RegOpenKeyExW(HKEY_CLASSES_ROOT, interface_keyname, 0,
205 KEY_READ | KEY_WRITE, &interface_key);
206 if (res == ERROR_FILE_NOT_FOUND) return S_OK;
207 if (res != ERROR_SUCCESS) goto error_return;
209 for (; res == ERROR_SUCCESS && list->iid; ++list) {
210 WCHAR buf[39];
212 StringFromGUID2(list->iid, buf, 39);
213 res = recursive_delete_keyW(interface_key, buf);
216 RegCloseKey(interface_key);
217 error_return:
218 return res != ERROR_SUCCESS ? HRESULT_FROM_WIN32(res) : S_OK;
221 /***********************************************************************
222 * register_coclasses
224 static HRESULT register_coclasses(struct regsvr_coclass const *list)
226 LONG res = ERROR_SUCCESS;
227 HKEY coclass_key;
229 res = RegCreateKeyExW(HKEY_CLASSES_ROOT, clsid_keyname, 0, NULL, 0,
230 KEY_READ | KEY_WRITE, NULL, &coclass_key, NULL);
231 if (res != ERROR_SUCCESS) goto error_return;
233 for (; res == ERROR_SUCCESS && list->clsid; ++list) {
234 WCHAR buf[39];
235 HKEY clsid_key;
237 StringFromGUID2(list->clsid, buf, 39);
238 res = RegCreateKeyExW(coclass_key, buf, 0, NULL, 0,
239 KEY_READ | KEY_WRITE, NULL, &clsid_key, NULL);
240 if (res != ERROR_SUCCESS) goto error_close_coclass_key;
242 if (list->name) {
243 res = RegSetValueExA(clsid_key, NULL, 0, REG_SZ,
244 (CONST BYTE*)(list->name),
245 strlen(list->name) + 1);
246 if (res != ERROR_SUCCESS) goto error_close_clsid_key;
249 if (list->ips) {
250 res = register_key_defvalueA(clsid_key, ips_keyname, list->ips);
251 if (res != ERROR_SUCCESS) goto error_close_clsid_key;
254 if (list->ips32) {
255 HKEY ips32_key;
257 res = RegCreateKeyExW(clsid_key, ips32_keyname, 0, NULL, 0,
258 KEY_READ | KEY_WRITE, NULL,
259 &ips32_key, NULL);
260 if (res != ERROR_SUCCESS) goto error_close_clsid_key;
262 res = RegSetValueExA(ips32_key, NULL, 0, REG_SZ,
263 (CONST BYTE*)list->ips32,
264 lstrlenA(list->ips32) + 1);
265 if (res == ERROR_SUCCESS && list->ips32_tmodel)
266 res = RegSetValueExA(ips32_key, tmodel_valuename, 0, REG_SZ,
267 (CONST BYTE*)list->ips32_tmodel,
268 strlen(list->ips32_tmodel) + 1);
269 RegCloseKey(ips32_key);
270 if (res != ERROR_SUCCESS) goto error_close_clsid_key;
273 if (list->progid) {
274 res = register_key_defvalueA(clsid_key, progid_keyname,
275 list->progid);
276 if (res != ERROR_SUCCESS) goto error_close_clsid_key;
278 res = register_progid(buf, list->progid, NULL,
279 list->name, list->progid_extra);
280 if (res != ERROR_SUCCESS) goto error_close_clsid_key;
283 if (list->viprogid) {
284 res = register_key_defvalueA(clsid_key, viprogid_keyname,
285 list->viprogid);
286 if (res != ERROR_SUCCESS) goto error_close_clsid_key;
288 res = register_progid(buf, list->viprogid, list->progid,
289 list->name, list->progid_extra);
290 if (res != ERROR_SUCCESS) goto error_close_clsid_key;
293 error_close_clsid_key:
294 RegCloseKey(clsid_key);
297 error_close_coclass_key:
298 RegCloseKey(coclass_key);
299 error_return:
300 return res != ERROR_SUCCESS ? HRESULT_FROM_WIN32(res) : S_OK;
303 /***********************************************************************
304 * unregister_coclasses
306 static HRESULT unregister_coclasses(struct regsvr_coclass const *list)
308 LONG res = ERROR_SUCCESS;
309 HKEY coclass_key;
311 res = RegOpenKeyExW(HKEY_CLASSES_ROOT, clsid_keyname, 0,
312 KEY_READ | KEY_WRITE, &coclass_key);
313 if (res == ERROR_FILE_NOT_FOUND) return S_OK;
314 if (res != ERROR_SUCCESS) goto error_return;
316 for (; res == ERROR_SUCCESS && list->clsid; ++list) {
317 WCHAR buf[39];
319 StringFromGUID2(list->clsid, buf, 39);
320 res = recursive_delete_keyW(coclass_key, buf);
321 if (res != ERROR_SUCCESS) goto error_close_coclass_key;
323 if (list->progid) {
324 res = recursive_delete_keyA(HKEY_CLASSES_ROOT, list->progid);
325 if (res != ERROR_SUCCESS) goto error_close_coclass_key;
328 if (list->viprogid) {
329 res = recursive_delete_keyA(HKEY_CLASSES_ROOT, list->viprogid);
330 if (res != ERROR_SUCCESS) goto error_close_coclass_key;
334 error_close_coclass_key:
335 RegCloseKey(coclass_key);
336 error_return:
337 return res != ERROR_SUCCESS ? HRESULT_FROM_WIN32(res) : S_OK;
340 /***********************************************************************
341 * regsvr_key_guid
343 static LONG register_key_guid(HKEY base, WCHAR const *name, GUID const *guid)
345 WCHAR buf[39];
347 StringFromGUID2(guid, buf, 39);
348 return register_key_defvalueW(base, name, buf);
351 /***********************************************************************
352 * regsvr_key_defvalueW
354 static LONG register_key_defvalueW(
355 HKEY base,
356 WCHAR const *name,
357 WCHAR const *value)
359 LONG res;
360 HKEY key;
362 res = RegCreateKeyExW(base, name, 0, NULL, 0,
363 KEY_READ | KEY_WRITE, NULL, &key, NULL);
364 if (res != ERROR_SUCCESS) return res;
365 res = RegSetValueExW(key, NULL, 0, REG_SZ, (CONST BYTE*)value,
366 (lstrlenW(value) + 1) * sizeof(WCHAR));
367 RegCloseKey(key);
368 return res;
371 /***********************************************************************
372 * regsvr_key_defvalueA
374 static LONG register_key_defvalueA(
375 HKEY base,
376 WCHAR const *name,
377 char const *value)
379 LONG res;
380 HKEY key;
382 res = RegCreateKeyExW(base, name, 0, NULL, 0,
383 KEY_READ | KEY_WRITE, NULL, &key, NULL);
384 if (res != ERROR_SUCCESS) return res;
385 res = RegSetValueExA(key, NULL, 0, REG_SZ, (CONST BYTE*)value,
386 lstrlenA(value) + 1);
387 RegCloseKey(key);
388 return res;
391 /***********************************************************************
392 * regsvr_progid
394 static LONG register_progid(
395 WCHAR const *clsid,
396 char const *progid,
397 char const *curver_progid,
398 char const *name,
399 char const *extra)
401 LONG res;
402 HKEY progid_key;
404 res = RegCreateKeyExA(HKEY_CLASSES_ROOT, progid, 0,
405 NULL, 0, KEY_READ | KEY_WRITE, NULL,
406 &progid_key, NULL);
407 if (res != ERROR_SUCCESS) return res;
409 if (name) {
410 res = RegSetValueExA(progid_key, NULL, 0, REG_SZ,
411 (CONST BYTE*)name, strlen(name) + 1);
412 if (res != ERROR_SUCCESS) goto error_close_progid_key;
415 if (clsid) {
416 res = register_key_defvalueW(progid_key, clsid_keyname, clsid);
417 if (res != ERROR_SUCCESS) goto error_close_progid_key;
420 if (curver_progid) {
421 res = register_key_defvalueA(progid_key, curver_keyname,
422 curver_progid);
423 if (res != ERROR_SUCCESS) goto error_close_progid_key;
426 if (extra) {
427 HKEY extra_key;
429 res = RegCreateKeyExA(progid_key, extra, 0,
430 NULL, 0, KEY_READ | KEY_WRITE, NULL,
431 &extra_key, NULL);
432 if (res == ERROR_SUCCESS)
433 RegCloseKey(extra_key);
436 error_close_progid_key:
437 RegCloseKey(progid_key);
438 return res;
441 /***********************************************************************
442 * recursive_delete_key
444 static LONG recursive_delete_key(HKEY key)
446 LONG res;
447 WCHAR subkey_name[MAX_PATH];
448 DWORD cName;
449 HKEY subkey;
451 for (;;) {
452 cName = sizeof(subkey_name) / sizeof(WCHAR);
453 res = RegEnumKeyExW(key, 0, subkey_name, &cName,
454 NULL, NULL, NULL, NULL);
455 if (res != ERROR_SUCCESS && res != ERROR_MORE_DATA) {
456 res = ERROR_SUCCESS; /* presumably we're done enumerating */
457 break;
459 res = RegOpenKeyExW(key, subkey_name, 0,
460 KEY_READ | KEY_WRITE, &subkey);
461 if (res == ERROR_FILE_NOT_FOUND) continue;
462 if (res != ERROR_SUCCESS) break;
464 res = recursive_delete_key(subkey);
465 RegCloseKey(subkey);
466 if (res != ERROR_SUCCESS) break;
469 if (res == ERROR_SUCCESS) res = RegDeleteKeyW(key, 0);
470 return res;
473 /***********************************************************************
474 * recursive_delete_keyA
476 static LONG recursive_delete_keyA(HKEY base, char const *name)
478 LONG res;
479 HKEY key;
481 res = RegOpenKeyExA(base, name, 0, KEY_READ | KEY_WRITE, &key);
482 if (res == ERROR_FILE_NOT_FOUND) return ERROR_SUCCESS;
483 if (res != ERROR_SUCCESS) return res;
484 res = recursive_delete_key(key);
485 RegCloseKey(key);
486 return res;
489 /***********************************************************************
490 * recursive_delete_keyW
492 static LONG recursive_delete_keyW(HKEY base, WCHAR const *name)
494 LONG res;
495 HKEY key;
497 res = RegOpenKeyExW(base, name, 0, KEY_READ | KEY_WRITE, &key);
498 if (res == ERROR_FILE_NOT_FOUND) return ERROR_SUCCESS;
499 if (res != ERROR_SUCCESS) return res;
500 res = recursive_delete_key(key);
501 RegCloseKey(key);
502 return res;
505 /***********************************************************************
506 * coclass list
508 static struct regsvr_coclass const coclass_list[] = {
509 { &CLSID_AMMultiMediaStream,
510 "ActiveMovie MultiMedia Stream",
511 NULL,
512 "amstream.dll",
513 "Both"
515 { NULL } /* list terminator */
518 /***********************************************************************
519 * interface list
522 static struct regsvr_interface const interface_list[] = {
523 { NULL } /* list terminator */
526 /***********************************************************************
527 * DllRegisterServer (AMSTREAM.@)
529 HRESULT WINAPI DllRegisterServer(void)
531 HRESULT hr;
533 TRACE("\n");
535 hr = register_coclasses(coclass_list);
536 if (SUCCEEDED(hr))
537 hr = register_interfaces(interface_list);
538 return hr;
541 /***********************************************************************
542 * DllUnregisterServer (AMSTREAM.@)
544 HRESULT WINAPI DllUnregisterServer(void)
546 HRESULT hr;
548 TRACE("\n");
550 hr = unregister_coclasses(coclass_list);
551 if (SUCCEEDED(hr))
552 hr = unregister_interfaces(interface_list);
553 return hr;