2 * Implementation of the Microsoft Installer (msi.dll)
4 * Copyright 2005 Aric Stewart 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 /* actions handled in this module
24 * RegisterExtensionInfo
26 * UnRegisterClassInfo (TODO)
27 * UnRegisterProgIdInfo (TODO)
28 * UnRegisterExtensionInfo (TODO)
29 * UnRegisterMIMEInfo (TODO)
38 #include "wine/debug.h"
41 #include "wine/unicode.h"
44 WINE_DEFAULT_DEBUG_CHANNEL(msi);
47 extern const WCHAR szRegisterClassInfo[];
48 extern const WCHAR szRegisterProgIdInfo[];
49 extern const WCHAR szRegisterExtensionInfo[];
50 extern const WCHAR szRegisterMIMEInfo[];
52 extern const WCHAR szUnregisterClassInfo[];
53 extern const WCHAR szUnregisterExtensionInfo[];
54 extern const WCHAR szUnregisterMIMEInfo[];
55 extern const WCHAR szUnregisterProgIdInfo[];
57 static MSIAPPID *load_appid( MSIPACKAGE* package, MSIRECORD *row )
62 /* fill in the data */
64 appid = msi_alloc_zero( sizeof(MSIAPPID) );
68 appid->AppID = msi_dup_record_field( row, 1 );
69 TRACE("loading appid %s\n", debugstr_w( appid->AppID ));
71 buffer = MSI_RecordGetString(row,2);
72 deformat_string( package, buffer, &appid->RemoteServerName );
74 appid->LocalServer = msi_dup_record_field(row,3);
75 appid->ServiceParameters = msi_dup_record_field(row,4);
76 appid->DllSurrogate = msi_dup_record_field(row,5);
78 appid->ActivateAtStorage = !MSI_RecordIsNull(row,6);
79 appid->RunAsInteractiveUser = !MSI_RecordIsNull(row,7);
81 list_add_tail( &package->appids, &appid->entry );
86 static MSIAPPID *load_given_appid( MSIPACKAGE *package, LPCWSTR name )
90 static const WCHAR ExecSeqQuery[] =
91 {'S','E','L','E','C','T',' ','*',' ','F','R','O','M',' ',
92 '`','A','p','p','I','d','`',' ','W','H','E','R','E',' ',
93 '`','A','p','p','I','d','`',' ','=',' ','\'','%','s','\'',0};
98 /* check for appids already loaded */
99 LIST_FOR_EACH_ENTRY( appid, &package->appids, MSIAPPID, entry )
101 if (lstrcmpiW( appid->AppID, name )==0)
103 TRACE("found appid %s %p\n", debugstr_w(name), appid);
108 row = MSI_QueryGetRecord(package->db, ExecSeqQuery, name);
112 appid = load_appid(package, row);
113 msiobj_release(&row->hdr);
118 static MSIPROGID *load_given_progid(MSIPACKAGE *package, LPCWSTR progid);
119 static MSICLASS *load_given_class( MSIPACKAGE *package, LPCWSTR classid );
121 static MSIPROGID *load_progid( MSIPACKAGE* package, MSIRECORD *row )
126 /* fill in the data */
128 progid = msi_alloc_zero( sizeof(MSIPROGID) );
132 list_add_tail( &package->progids, &progid->entry );
134 progid->ProgID = msi_dup_record_field(row,1);
135 TRACE("loading progid %s\n",debugstr_w(progid->ProgID));
137 buffer = MSI_RecordGetString(row,2);
138 progid->Parent = load_given_progid(package,buffer);
139 if (progid->Parent == NULL && buffer)
140 FIXME("Unknown parent ProgID %s\n",debugstr_w(buffer));
142 buffer = MSI_RecordGetString(row,3);
143 progid->Class = load_given_class(package,buffer);
144 if (progid->Class == NULL && buffer)
145 FIXME("Unknown class %s\n",debugstr_w(buffer));
147 progid->Description = msi_dup_record_field(row,4);
149 if (!MSI_RecordIsNull(row,6))
151 INT icon_index = MSI_RecordGetInteger(row,6);
152 LPCWSTR FileName = MSI_RecordGetString(row,5);
154 static const WCHAR fmt[] = {'%','s',',','%','i',0};
156 FilePath = build_icon_path(package,FileName);
158 progid->IconPath = msi_alloc( (strlenW(FilePath)+10)* sizeof(WCHAR) );
160 sprintfW(progid->IconPath,fmt,FilePath,icon_index);
166 buffer = MSI_RecordGetString(row,5);
168 progid->IconPath = build_icon_path(package,buffer);
171 progid->CurVer = NULL;
172 progid->VersionInd = NULL;
174 /* if we have a parent then we may be that parents CurVer */
175 if (progid->Parent && progid->Parent != progid)
177 MSIPROGID *parent = progid->Parent;
179 while (parent->Parent && parent->Parent != parent)
180 parent = parent->Parent;
182 /* FIXME: need to determing if we are really the CurVer */
184 progid->CurVer = parent;
185 parent->VersionInd = progid;
191 static MSIPROGID *load_given_progid(MSIPACKAGE *package, LPCWSTR name)
195 static const WCHAR ExecSeqQuery[] =
196 {'S','E','L','E','C','T',' ','*',' ','F','R','O','M',' ',
197 '`','P','r','o','g','I','d','`',' ','W','H','E','R','E',' ',
198 '`','P','r','o','g','I','d','`',' ','=',' ','\'','%','s','\'',0};
203 /* check for progids already loaded */
204 LIST_FOR_EACH_ENTRY( progid, &package->progids, MSIPROGID, entry )
206 if (strcmpiW( progid->ProgID,name )==0)
208 TRACE("found progid %s (%p)\n",debugstr_w(name), progid );
213 row = MSI_QueryGetRecord( package->db, ExecSeqQuery, name );
217 progid = load_progid(package, row);
218 msiobj_release(&row->hdr);
223 static MSICLASS *load_class( MSIPACKAGE* package, MSIRECORD *row )
229 /* fill in the data */
231 cls = msi_alloc_zero( sizeof(MSICLASS) );
235 list_add_tail( &package->classes, &cls->entry );
237 cls->clsid = msi_dup_record_field( row, 1 );
238 TRACE("loading class %s\n",debugstr_w(cls->clsid));
239 cls->Context = msi_dup_record_field( row, 2 );
240 buffer = MSI_RecordGetString(row,3);
241 cls->Component = get_loaded_component(package, buffer);
243 cls->ProgIDText = msi_dup_record_field(row,4);
244 cls->ProgID = load_given_progid(package, cls->ProgIDText);
246 cls->Description = msi_dup_record_field(row,5);
248 buffer = MSI_RecordGetString(row,6);
250 cls->AppID = load_given_appid(package, buffer);
252 cls->FileTypeMask = msi_dup_record_field(row,7);
254 if (!MSI_RecordIsNull(row,9))
257 INT icon_index = MSI_RecordGetInteger(row,9);
258 LPCWSTR FileName = MSI_RecordGetString(row,8);
260 static const WCHAR fmt[] = {'%','s',',','%','i',0};
262 FilePath = build_icon_path(package,FileName);
264 cls->IconPath = msi_alloc( (strlenW(FilePath)+5)* sizeof(WCHAR) );
266 sprintfW(cls->IconPath,fmt,FilePath,icon_index);
272 buffer = MSI_RecordGetString(row,8);
274 cls->IconPath = build_icon_path(package,buffer);
277 if (!MSI_RecordIsNull(row,10))
279 i = MSI_RecordGetInteger(row,10);
280 if (i != MSI_NULL_INTEGER && i > 0 && i < 4)
282 static const WCHAR ole2[] = {'o','l','e','2','.','d','l','l',0};
283 static const WCHAR ole32[] = {'o','l','e','3','2','.','d','l','l',0};
288 cls->DefInprocHandler = strdupW(ole2);
291 cls->DefInprocHandler32 = strdupW(ole32);
294 cls->DefInprocHandler = strdupW(ole2);
295 cls->DefInprocHandler32 = strdupW(ole32);
301 cls->DefInprocHandler32 = msi_dup_record_field( row, 10);
302 reduce_to_longfilename(cls->DefInprocHandler32);
305 buffer = MSI_RecordGetString(row,11);
306 deformat_string(package,buffer,&cls->Argument);
308 buffer = MSI_RecordGetString(row,12);
309 cls->Feature = get_loaded_feature(package,buffer);
311 cls->Attributes = MSI_RecordGetInteger(row,13);
317 * the Class table has 3 primary keys. Generally it is only
318 * referenced through the first CLSID key. However when loading
319 * all of the classes we need to make sure we do not ignore rows
320 * with other Context and ComponentIndexs
322 static MSICLASS *load_given_class(MSIPACKAGE *package, LPCWSTR classid)
326 static const WCHAR ExecSeqQuery[] =
327 {'S','E','L','E','C','T',' ','*',' ','F','R','O','M',' ',
328 '`','C','l','a','s','s','`',' ','W','H','E','R','E',' ',
329 '`','C','L','S','I','D','`',' ','=',' ','\'','%','s','\'',0};
334 /* check for classes already loaded */
335 LIST_FOR_EACH_ENTRY( cls, &package->classes, MSICLASS, entry )
337 if (lstrcmpiW( cls->clsid, classid )==0)
339 TRACE("found class %s (%p)\n",debugstr_w(classid), cls);
344 row = MSI_QueryGetRecord(package->db, ExecSeqQuery, classid);
348 cls = load_class(package, row);
349 msiobj_release(&row->hdr);
354 static MSIEXTENSION *load_given_extension( MSIPACKAGE *package, LPCWSTR extension );
356 static MSIMIME *load_mime( MSIPACKAGE* package, MSIRECORD *row )
361 /* fill in the data */
363 mt = msi_alloc_zero( sizeof(MSIMIME) );
367 mt->ContentType = msi_dup_record_field( row, 1 );
368 TRACE("loading mime %s\n", debugstr_w(mt->ContentType));
370 buffer = MSI_RecordGetString( row, 2 );
371 mt->Extension = load_given_extension( package, buffer );
373 mt->clsid = msi_dup_record_field( row, 3 );
374 mt->Class = load_given_class( package, mt->clsid );
376 list_add_tail( &package->mimes, &mt->entry );
381 static MSIMIME *load_given_mime( MSIPACKAGE *package, LPCWSTR mime )
384 static const WCHAR ExecSeqQuery[] =
385 {'S','E','L','E','C','T',' ','*',' ','F','R','O','M',' ',
386 '`','M','I','M','E','`',' ','W','H','E','R','E',' ',
387 '`','C','o','n','t','e','n','t','T','y','p','e','`',' ','=',' ',
388 '\'','%','s','\'',0};
394 /* check for mime already loaded */
395 LIST_FOR_EACH_ENTRY( mt, &package->mimes, MSIMIME, entry )
397 if (strcmpiW(mt->ContentType,mime)==0)
399 TRACE("found mime %s (%p)\n",debugstr_w(mime), mt);
404 row = MSI_QueryGetRecord(package->db, ExecSeqQuery, mime);
408 mt = load_mime(package, row);
409 msiobj_release(&row->hdr);
414 static MSIEXTENSION *load_extension( MSIPACKAGE* package, MSIRECORD *row )
419 /* fill in the data */
421 ext = msi_alloc_zero( sizeof(MSIEXTENSION) );
425 list_init( &ext->verbs );
427 list_add_tail( &package->extensions, &ext->entry );
429 ext->Extension = msi_dup_record_field( row, 1 );
430 TRACE("loading extension %s\n", debugstr_w(ext->Extension));
432 buffer = MSI_RecordGetString( row, 2 );
433 ext->Component = get_loaded_component( package,buffer );
435 ext->ProgIDText = msi_dup_record_field( row, 3 );
436 ext->ProgID = load_given_progid( package, ext->ProgIDText );
438 buffer = MSI_RecordGetString( row, 4 );
439 ext->Mime = load_given_mime( package, buffer );
441 buffer = MSI_RecordGetString(row,5);
442 ext->Feature = get_loaded_feature( package, buffer );
448 * While the extension table has 2 primary keys, this function is only looking
449 * at the Extension key which is what is referenced as a forign key
451 static MSIEXTENSION *load_given_extension( MSIPACKAGE *package, LPCWSTR name )
455 static const WCHAR ExecSeqQuery[] =
456 {'S','E','L','E','C','T',' ','*',' ','F','R','O','M',' ',
457 '`','E','x','t','e','n','s','i','o','n','`',' ',
458 'W','H','E','R','E',' ',
459 '`','E','x','t','e','n','s','i','o','n','`',' ','=',' ',
460 '\'','%','s','\'',0};
465 /* check for extensions already loaded */
466 LIST_FOR_EACH_ENTRY( ext, &package->extensions, MSIEXTENSION, entry )
468 if (strcmpiW( ext->Extension, name )==0)
470 TRACE("extension %s already loaded %p\n", debugstr_w(name), ext);
475 row = MSI_QueryGetRecord( package->db, ExecSeqQuery, name );
479 ext = load_extension(package, row);
480 msiobj_release(&row->hdr);
485 static UINT iterate_load_verb(MSIRECORD *row, LPVOID param)
487 MSIPACKAGE* package = (MSIPACKAGE*)param;
490 MSIEXTENSION *extension;
492 buffer = MSI_RecordGetString(row,1);
493 extension = load_given_extension( package, buffer );
496 ERR("Verb unable to find loaded extension %s\n", debugstr_w(buffer));
497 return ERROR_SUCCESS;
500 /* fill in the data */
502 verb = msi_alloc_zero( sizeof(MSIVERB) );
504 return ERROR_OUTOFMEMORY;
506 verb->Verb = msi_dup_record_field(row,2);
507 TRACE("loading verb %s\n",debugstr_w(verb->Verb));
508 verb->Sequence = MSI_RecordGetInteger(row,3);
510 buffer = MSI_RecordGetString(row,4);
511 deformat_string(package,buffer,&verb->Command);
513 buffer = MSI_RecordGetString(row,5);
514 deformat_string(package,buffer,&verb->Argument);
516 /* assosiate the verb with the correct extension */
517 list_add_tail( &extension->verbs, &verb->entry );
519 return ERROR_SUCCESS;
522 static UINT iterate_all_classes(MSIRECORD *rec, LPVOID param)
528 MSIPACKAGE* package =(MSIPACKAGE*)param;
532 clsid = MSI_RecordGetString(rec,1);
533 context = MSI_RecordGetString(rec,2);
534 buffer = MSI_RecordGetString(rec,3);
535 comp = get_loaded_component(package,buffer);
537 LIST_FOR_EACH_ENTRY( cls, &package->classes, MSICLASS, entry )
539 if (strcmpiW( clsid, cls->clsid ))
541 if (strcmpW( context, cls->Context ))
543 if (comp == cls->Component)
551 load_class(package, rec);
553 return ERROR_SUCCESS;
556 static VOID load_all_classes(MSIPACKAGE *package)
558 UINT rc = ERROR_SUCCESS;
561 static const WCHAR ExecSeqQuery[] =
562 {'S','E','L','E','C','T',' ','*',' ', 'F','R','O','M',' ',
563 '`','C','l','a','s','s','`',0};
565 rc = MSI_DatabaseOpenViewW(package->db, ExecSeqQuery, &view);
566 if (rc != ERROR_SUCCESS)
569 rc = MSI_IterateRecords(view, NULL, iterate_all_classes, package);
570 msiobj_release(&view->hdr);
573 static UINT iterate_all_extensions(MSIRECORD *rec, LPVOID param)
578 MSIPACKAGE* package =(MSIPACKAGE*)param;
582 extension = MSI_RecordGetString(rec,1);
583 buffer = MSI_RecordGetString(rec,2);
584 comp = get_loaded_component(package,buffer);
586 LIST_FOR_EACH_ENTRY( ext, &package->extensions, MSIEXTENSION, entry )
588 if (strcmpiW(extension,ext->Extension))
590 if (comp == ext->Component)
598 load_extension(package, rec);
600 return ERROR_SUCCESS;
603 static VOID load_all_extensions(MSIPACKAGE *package)
605 UINT rc = ERROR_SUCCESS;
608 static const WCHAR ExecSeqQuery[] =
609 {'S','E','L','E','C','T',' ','*',' ','F','R','O','M',' ',
610 '`','E','x','t','e','n','s','i','o','n','`',0};
612 rc = MSI_DatabaseOpenViewW(package->db, ExecSeqQuery, &view);
613 if (rc != ERROR_SUCCESS)
616 rc = MSI_IterateRecords(view, NULL, iterate_all_extensions, package);
617 msiobj_release(&view->hdr);
620 static UINT iterate_all_progids(MSIRECORD *rec, LPVOID param)
623 MSIPACKAGE* package =(MSIPACKAGE*)param;
625 buffer = MSI_RecordGetString(rec,1);
626 load_given_progid(package,buffer);
627 return ERROR_SUCCESS;
630 static VOID load_all_progids(MSIPACKAGE *package)
632 UINT rc = ERROR_SUCCESS;
635 static const WCHAR ExecSeqQuery[] =
636 {'S','E','L','E','C','T',' ','`','P','r','o','g','I','d','`',' ',
637 'F','R','O','M',' ', '`','P','r','o','g','I','d','`',0};
639 rc = MSI_DatabaseOpenViewW(package->db, ExecSeqQuery, &view);
640 if (rc != ERROR_SUCCESS)
643 rc = MSI_IterateRecords(view, NULL, iterate_all_progids, package);
644 msiobj_release(&view->hdr);
647 static VOID load_all_verbs(MSIPACKAGE *package)
649 UINT rc = ERROR_SUCCESS;
652 static const WCHAR ExecSeqQuery[] =
653 {'S','E','L','E','C','T',' ','*',' ','F','R','O','M',' ',
654 '`','V','e','r','b','`',0};
656 rc = MSI_DatabaseOpenViewW(package->db, ExecSeqQuery, &view);
657 if (rc != ERROR_SUCCESS)
660 rc = MSI_IterateRecords(view, NULL, iterate_load_verb, package);
661 msiobj_release(&view->hdr);
664 static UINT iterate_all_mimes(MSIRECORD *rec, LPVOID param)
667 MSIPACKAGE* package =(MSIPACKAGE*)param;
669 buffer = MSI_RecordGetString(rec,1);
670 load_given_mime(package,buffer);
671 return ERROR_SUCCESS;
674 static VOID load_all_mimes(MSIPACKAGE *package)
676 UINT rc = ERROR_SUCCESS;
679 static const WCHAR ExecSeqQuery[] =
680 {'S','E','L','E','C','T',' ',
681 '`','C','o','n','t','e','n','t','T','y','p','e','`',
682 ' ','F','R','O','M',' ',
683 '`','M','I','M','E','`',0};
685 rc = MSI_DatabaseOpenViewW(package->db, ExecSeqQuery, &view);
686 if (rc != ERROR_SUCCESS)
689 rc = MSI_IterateRecords(view, NULL, iterate_all_mimes, package);
690 msiobj_release(&view->hdr);
693 static void load_classes_and_such(MSIPACKAGE *package)
695 TRACE("Loading all the class info and related tables\n");
697 /* check if already loaded */
698 if (!list_empty( &package->classes ) ||
699 !list_empty( &package->mimes ) ||
700 !list_empty( &package->extensions ) ||
701 !list_empty( &package->progids ) )
704 load_all_classes(package);
705 load_all_extensions(package);
706 load_all_progids(package);
707 /* these loads must come after the other loads */
708 load_all_verbs(package);
709 load_all_mimes(package);
712 static void mark_progid_for_install( MSIPACKAGE* package, MSIPROGID *progid )
719 if (progid->InstallMe)
722 progid->InstallMe = TRUE;
724 /* all children if this is a parent also install */
725 LIST_FOR_EACH_ENTRY( child, &package->progids, MSIPROGID, entry )
727 if (child->Parent == progid)
728 mark_progid_for_install( package, child );
732 static void mark_mime_for_install( MSIMIME *mime )
736 mime->InstallMe = TRUE;
739 static UINT register_appid(MSIAPPID *appid, LPCWSTR app )
741 static const WCHAR szAppID[] = { 'A','p','p','I','D',0 };
742 static const WCHAR szRemoteServerName[] =
743 {'R','e','m','o','t','e','S','e','r','v','e','r','N','a','m','e',0};
744 static const WCHAR szLocalService[] =
745 {'L','o','c','a','l','S','e','r','v','i','c','e',0};
746 static const WCHAR szService[] =
747 {'S','e','r','v','i','c','e','P','a','r','a','m','e','t','e','r','s',0};
748 static const WCHAR szDLL[] =
749 {'D','l','l','S','u','r','r','o','g','a','t','e',0};
750 static const WCHAR szActivate[] =
751 {'A','c','t','i','v','a','t','e','A','s','S','t','o','r','a','g','e',0};
752 static const WCHAR szY[] = {'Y',0};
753 static const WCHAR szRunAs[] = {'R','u','n','A','s',0};
754 static const WCHAR szUser[] =
755 {'I','n','t','e','r','a','c','t','i','v','e',' ','U','s','e','r',0};
759 RegCreateKeyW(HKEY_CLASSES_ROOT,szAppID,&hkey2);
760 RegCreateKeyW( hkey2, appid->AppID, &hkey3 );
762 msi_reg_set_val_str( hkey3, NULL, app );
764 if (appid->RemoteServerName)
765 msi_reg_set_val_str( hkey3, szRemoteServerName, appid->RemoteServerName );
767 if (appid->LocalServer)
768 msi_reg_set_val_str( hkey3, szLocalService, appid->LocalServer );
770 if (appid->ServiceParameters)
771 msi_reg_set_val_str( hkey3, szService, appid->ServiceParameters );
773 if (appid->DllSurrogate)
774 msi_reg_set_val_str( hkey3, szDLL, appid->DllSurrogate );
776 if (appid->ActivateAtStorage)
777 msi_reg_set_val_str( hkey3, szActivate, szY );
779 if (appid->RunAsInteractiveUser)
780 msi_reg_set_val_str( hkey3, szRunAs, szUser );
783 return ERROR_SUCCESS;
786 UINT ACTION_RegisterClassInfo(MSIPACKAGE *package)
789 * Again I am assuming the words, "Whose key file represents" when referring
790 * to a Component as to meaning that Components KeyPath file
795 static const WCHAR szCLSID[] = { 'C','L','S','I','D',0 };
796 static const WCHAR szProgID[] = { 'P','r','o','g','I','D',0 };
797 static const WCHAR szVIProgID[] = { 'V','e','r','s','i','o','n','I','n','d','e','p','e','n','d','e','n','t','P','r','o','g','I','D',0 };
798 static const WCHAR szAppID[] = { 'A','p','p','I','D',0 };
799 static const WCHAR szSpace[] = {' ',0};
800 static const WCHAR szFileType_fmt[] = {'F','i','l','e','T','y','p','e','\\','%','s','\\','%','i',0};
801 HKEY hkey,hkey2,hkey3;
804 load_classes_and_such(package);
805 rc = RegCreateKeyW(HKEY_CLASSES_ROOT,szCLSID,&hkey);
806 if (rc != ERROR_SUCCESS)
807 return ERROR_FUNCTION_FAILED;
809 LIST_FOR_EACH_ENTRY( cls, &package->classes, MSICLASS, entry )
817 comp = cls->Component;
821 feature = cls->Feature;
824 * MSDN says that these are based on Feature not on Component.
826 if (!ACTION_VerifyFeatureForAction( feature, INSTALLSTATE_LOCAL ) &&
827 !ACTION_VerifyFeatureForAction( feature, INSTALLSTATE_ADVERTISED ))
829 TRACE("Skipping class %s reg due to disabled feature %s\n",
830 debugstr_w(cls->clsid), debugstr_w(feature->Feature));
835 TRACE("Registering class %s (%p)\n", debugstr_w(cls->clsid), cls);
837 cls->Installed = TRUE;
838 mark_progid_for_install( package, cls->ProgID );
840 RegCreateKeyW( hkey, cls->clsid, &hkey2 );
842 if (cls->Description)
843 msi_reg_set_val_str( hkey2, NULL, cls->Description );
845 RegCreateKeyW( hkey2, cls->Context, &hkey3 );
846 file = get_loaded_file( package, comp->KeyPath );
849 TRACE("COM server not provided, skipping class %s\n", debugstr_w(cls->clsid));
854 * FIXME: Implement install on demand (advertised components).
856 * ole32.dll should call msi.MsiProvideComponentFromDescriptor()
857 * when it needs an InProcServer that doesn't exist.
858 * The component advertise string should be in the "InProcServer" value.
860 size = lstrlenW( file->TargetPath )+1;
862 size += lstrlenW(cls->Argument)+1;
864 argument = msi_alloc( size * sizeof(WCHAR) );
865 lstrcpyW( argument, file->TargetPath );
869 lstrcatW( argument, szSpace );
870 lstrcatW( argument, cls->Argument );
873 msi_reg_set_val_str( hkey3, NULL, argument );
878 if (cls->ProgID || cls->ProgIDText)
883 progid = cls->ProgID->ProgID;
885 progid = cls->ProgIDText;
887 msi_reg_set_subkey_val( hkey2, szProgID, NULL, progid );
889 if (cls->ProgID && cls->ProgID->VersionInd)
891 msi_reg_set_subkey_val( hkey2, szVIProgID, NULL,
892 cls->ProgID->VersionInd->ProgID );
898 MSIAPPID *appid = cls->AppID;
900 msi_reg_set_val_str( hkey2, szAppID, appid->AppID );
902 register_appid( appid, cls->Description );
907 static const WCHAR szDefaultIcon[] =
908 {'D','e','f','a','u','l','t','I','c','o','n',0};
910 msi_reg_set_subkey_val( hkey2, szDefaultIcon, NULL, cls->IconPath );
913 if (cls->DefInprocHandler)
915 static const WCHAR szInproc[] =
916 {'I','n','p','r','o','c','H','a','n','d','l','e','r',0};
918 msi_reg_set_subkey_val( hkey2, szInproc, NULL, cls->DefInprocHandler );
921 if (cls->DefInprocHandler32)
923 static const WCHAR szInproc32[] =
924 {'I','n','p','r','o','c','H','a','n','d','l','e','r','3','2',0};
926 msi_reg_set_subkey_val( hkey2, szInproc32, NULL, cls->DefInprocHandler32 );
931 /* if there is a FileTypeMask, register the FileType */
932 if (cls->FileTypeMask)
937 ptr = cls->FileTypeMask;
940 ptr2 = strchrW(ptr,';');
943 keyname = msi_alloc( (strlenW(szFileType_fmt) + strlenW(cls->clsid) + 4) * sizeof(WCHAR));
944 sprintfW( keyname, szFileType_fmt, cls->clsid, index );
946 msi_reg_set_subkey_val( HKEY_CLASSES_ROOT, keyname, NULL, ptr );
958 uirow = MSI_CreateRecord(1);
960 MSI_RecordSetStringW( uirow, 1, cls->clsid );
961 ui_actiondata(package,szRegisterClassInfo,uirow);
962 msiobj_release(&uirow->hdr);
969 static LPCWSTR get_clsid_of_progid( MSIPROGID *progid )
974 return progid->Class->clsid;
975 progid = progid->Parent;
980 static UINT register_progid( MSIPROGID* progid )
982 static const WCHAR szCLSID[] = { 'C','L','S','I','D',0 };
983 static const WCHAR szDefaultIcon[] =
984 {'D','e','f','a','u','l','t','I','c','o','n',0};
985 static const WCHAR szCurVer[] =
986 {'C','u','r','V','e','r',0};
990 rc = RegCreateKeyW( HKEY_CLASSES_ROOT, progid->ProgID, &hkey );
991 if (rc == ERROR_SUCCESS)
993 LPCWSTR clsid = get_clsid_of_progid( progid );
996 msi_reg_set_subkey_val( hkey, szCLSID, NULL, clsid );
998 ERR("%s has no class\n", debugstr_w( progid->ProgID ) );
1000 if (progid->Description)
1001 msi_reg_set_val_str( hkey, NULL, progid->Description );
1003 if (progid->IconPath)
1004 msi_reg_set_subkey_val( hkey, szDefaultIcon, NULL, progid->IconPath );
1006 /* write out the current version */
1008 msi_reg_set_subkey_val( hkey, szCurVer, NULL, progid->CurVer->ProgID );
1013 ERR("failed to create key %s\n", debugstr_w( progid->ProgID ) );
1018 UINT ACTION_RegisterProgIdInfo(MSIPACKAGE *package)
1023 load_classes_and_such(package);
1025 LIST_FOR_EACH_ENTRY( progid, &package->progids, MSIPROGID, entry )
1027 /* check if this progid is to be installed */
1028 if (progid->Class && progid->Class->Installed)
1029 progid->InstallMe = TRUE;
1031 if (!progid->InstallMe)
1033 TRACE("progid %s not scheduled to be installed\n",
1034 debugstr_w(progid->ProgID));
1038 TRACE("Registering progid %s\n", debugstr_w(progid->ProgID));
1040 register_progid( progid );
1042 uirow = MSI_CreateRecord( 1 );
1043 MSI_RecordSetStringW( uirow, 1, progid->ProgID );
1044 ui_actiondata( package, szRegisterProgIdInfo, uirow );
1045 msiobj_release( &uirow->hdr );
1048 return ERROR_SUCCESS;
1051 static UINT register_verb(MSIPACKAGE *package, LPCWSTR progid,
1052 MSICOMPONENT* component, MSIEXTENSION* extension,
1053 MSIVERB* verb, INT* Sequence )
1057 static const WCHAR szShell[] = {'s','h','e','l','l',0};
1058 static const WCHAR szCommand[] = {'c','o','m','m','a','n','d',0};
1059 static const WCHAR fmt[] = {'\"','%','s','\"',' ','%','s',0};
1060 static const WCHAR fmt2[] = {'\"','%','s','\"',0};
1065 keyname = build_directory_name(4, progid, szShell, verb->Verb, szCommand);
1067 TRACE("Making Key %s\n",debugstr_w(keyname));
1068 RegCreateKeyW(HKEY_CLASSES_ROOT, keyname, &key);
1069 size = strlenW(component->FullKeypath);
1071 size += strlenW(verb->Argument);
1074 command = msi_alloc(size * sizeof (WCHAR));
1076 sprintfW(command, fmt, component->FullKeypath, verb->Argument);
1078 sprintfW(command, fmt2, component->FullKeypath);
1080 msi_reg_set_val_str( key, NULL, command );
1083 advertise = create_component_advertise_string(package, component,
1084 extension->Feature->Feature);
1086 size = strlenW(advertise);
1089 size += strlenW(verb->Argument);
1092 command = msi_alloc_zero(size * sizeof (WCHAR));
1094 strcpyW(command,advertise);
1097 static const WCHAR szSpace[] = {' ',0};
1098 strcatW(command,szSpace);
1099 strcatW(command,verb->Argument);
1102 msi_reg_set_val_multi_str( key, szCommand, command );
1106 msi_free(advertise);
1111 keyname = build_directory_name(3, progid, szShell, verb->Verb);
1112 msi_reg_set_subkey_val( HKEY_CLASSES_ROOT, keyname, NULL, verb->Command );
1116 if (verb->Sequence != MSI_NULL_INTEGER)
1118 if (*Sequence == MSI_NULL_INTEGER || verb->Sequence < *Sequence)
1120 *Sequence = verb->Sequence;
1121 keyname = build_directory_name(2, progid, szShell);
1122 msi_reg_set_subkey_val( HKEY_CLASSES_ROOT, keyname, NULL, verb->Verb );
1126 return ERROR_SUCCESS;
1129 UINT ACTION_RegisterExtensionInfo(MSIPACKAGE *package)
1131 static const WCHAR szContentType[] =
1132 {'C','o','n','t','e','n','t',' ','T','y','p','e',0 };
1136 BOOL install_on_demand = TRUE;
1138 load_classes_and_such(package);
1140 /* We need to set install_on_demand based on if the shell handles advertised
1141 * shortcuts and the like. Because Mike McCormack is working on this i am
1142 * going to default to TRUE
1145 LIST_FOR_EACH_ENTRY( ext, &package->extensions, MSIEXTENSION, entry )
1148 MSIFEATURE *feature;
1150 if (!ext->Component)
1153 feature = ext->Feature;
1156 * yes. MSDN says that these are based on _Feature_ not on
1157 * Component. So verify the feature is to be installed
1159 if ((!ACTION_VerifyFeatureForAction( feature, INSTALLSTATE_LOCAL )) &&
1160 !(install_on_demand &&
1161 ACTION_VerifyFeatureForAction( feature, INSTALLSTATE_ADVERTISED )))
1163 TRACE("Skipping extension %s reg due to disabled feature %s\n",
1164 debugstr_w(ext->Extension), debugstr_w(feature->Feature));
1169 TRACE("Registering extension %s (%p)\n", debugstr_w(ext->Extension), ext);
1171 ext->Installed = TRUE;
1173 /* this is only registered if the extension has at least 1 verb
1176 if (ext->ProgID && !list_empty( &ext->verbs ) )
1177 mark_progid_for_install( package, ext->ProgID );
1179 mark_mime_for_install(ext->Mime);
1181 extension = msi_alloc( (lstrlenW( ext->Extension ) + 2)*sizeof(WCHAR) );
1183 lstrcpyW(extension+1,ext->Extension);
1185 RegCreateKeyW(HKEY_CLASSES_ROOT,extension,&hkey);
1186 msi_free( extension );
1189 msi_reg_set_val_str( hkey, szContentType, ext->Mime->ContentType );
1191 if (ext->ProgID || ext->ProgIDText)
1193 static const WCHAR szSN[] =
1194 {'\\','S','h','e','l','l','N','e','w',0};
1199 INT Sequence = MSI_NULL_INTEGER;
1202 progid = ext->ProgID->ProgID;
1204 progid = ext->ProgIDText;
1206 msi_reg_set_val_str( hkey, NULL, progid );
1208 newkey = msi_alloc( (strlenW(progid)+strlenW(szSN)+1) * sizeof(WCHAR));
1210 strcpyW(newkey,progid);
1211 strcatW(newkey,szSN);
1212 RegCreateKeyW(hkey,newkey,&hkey2);
1217 /* do all the verbs */
1218 LIST_FOR_EACH_ENTRY( verb, &ext->verbs, MSIVERB, entry )
1220 register_verb( package, progid, ext->Component,
1221 ext, verb, &Sequence);
1227 uirow = MSI_CreateRecord(1);
1228 MSI_RecordSetStringW( uirow, 1, ext->Extension );
1229 ui_actiondata(package,szRegisterExtensionInfo,uirow);
1230 msiobj_release(&uirow->hdr);
1233 return ERROR_SUCCESS;
1236 UINT ACTION_RegisterMIMEInfo(MSIPACKAGE *package)
1238 static const WCHAR szExten[] =
1239 {'E','x','t','e','n','s','i','o','n',0 };
1243 load_classes_and_such(package);
1245 LIST_FOR_EACH_ENTRY( mt, &package->mimes, MSIMIME, entry )
1250 static const WCHAR fmt[] =
1251 {'M','I','M','E','\\','D','a','t','a','b','a','s','e','\\',
1252 'C','o','n','t','e','n','t',' ','T','y','p','e','\\', '%','s',0};
1256 * check if the MIME is to be installed. Either as requesed by an
1257 * extension or Class
1259 mt->InstallMe = (mt->InstallMe ||
1260 (mt->Class && mt->Class->Installed) ||
1261 (mt->Extension && mt->Extension->Installed));
1265 TRACE("MIME %s not scheduled to be installed\n",
1266 debugstr_w(mt->ContentType));
1270 mime = mt->ContentType;
1271 exten = mt->Extension->Extension;
1273 extension = msi_alloc( (lstrlenW( exten ) + 2)*sizeof(WCHAR) );
1275 lstrcpyW(extension+1,exten);
1277 key = msi_alloc( (strlenW(mime)+strlenW(fmt)+1) * sizeof(WCHAR) );
1278 sprintfW(key,fmt,mime);
1279 msi_reg_set_subkey_val( HKEY_CLASSES_ROOT, key, szExten, extension );
1281 msi_free(extension);
1285 FIXME("Handle non null for field 3\n");
1287 uirow = MSI_CreateRecord(2);
1288 MSI_RecordSetStringW(uirow,1,mt->ContentType);
1289 MSI_RecordSetStringW(uirow,2,exten);
1290 ui_actiondata(package,szRegisterMIMEInfo,uirow);
1291 msiobj_release(&uirow->hdr);
1294 return ERROR_SUCCESS;