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"
43 WINE_DEFAULT_DEBUG_CHANNEL(msi
);
45 static MSIAPPID
*load_appid( MSIPACKAGE
* package
, MSIRECORD
*row
)
50 /* fill in the data */
52 appid
= msi_alloc_zero( sizeof(MSIAPPID
) );
56 appid
->AppID
= msi_dup_record_field( row
, 1 );
57 TRACE("loading appid %s\n", debugstr_w( appid
->AppID
));
59 buffer
= MSI_RecordGetString(row
,2);
60 deformat_string( package
, buffer
, &appid
->RemoteServerName
);
62 appid
->LocalServer
= msi_dup_record_field(row
,3);
63 appid
->ServiceParameters
= msi_dup_record_field(row
,4);
64 appid
->DllSurrogate
= msi_dup_record_field(row
,5);
66 appid
->ActivateAtStorage
= !MSI_RecordIsNull(row
,6);
67 appid
->RunAsInteractiveUser
= !MSI_RecordIsNull(row
,7);
69 list_add_tail( &package
->appids
, &appid
->entry
);
74 static MSIAPPID
*load_given_appid( MSIPACKAGE
*package
, LPCWSTR name
)
78 static const WCHAR ExecSeqQuery
[] =
79 {'S','E','L','E','C','T',' ','*',' ','F','R','O','M',' ',
80 '`','A','p','p','I','d','`',' ','W','H','E','R','E',' ',
81 '`','A','p','p','I','d','`',' ','=',' ','\'','%','s','\'',0};
86 /* check for appids already loaded */
87 LIST_FOR_EACH_ENTRY( appid
, &package
->appids
, MSIAPPID
, entry
)
89 if (lstrcmpiW( appid
->AppID
, name
)==0)
91 TRACE("found appid %s %p\n", debugstr_w(name
), appid
);
96 row
= MSI_QueryGetRecord(package
->db
, ExecSeqQuery
, name
);
100 appid
= load_appid(package
, row
);
101 msiobj_release(&row
->hdr
);
106 static MSIPROGID
*load_given_progid(MSIPACKAGE
*package
, LPCWSTR progid
);
107 static MSICLASS
*load_given_class( MSIPACKAGE
*package
, LPCWSTR classid
);
109 static MSIPROGID
*load_progid( MSIPACKAGE
* package
, MSIRECORD
*row
)
114 /* fill in the data */
116 progid
= msi_alloc_zero( sizeof(MSIPROGID
) );
120 list_add_tail( &package
->progids
, &progid
->entry
);
122 progid
->ProgID
= msi_dup_record_field(row
,1);
123 TRACE("loading progid %s\n",debugstr_w(progid
->ProgID
));
125 buffer
= MSI_RecordGetString(row
,2);
126 progid
->Parent
= load_given_progid(package
,buffer
);
127 if (progid
->Parent
== NULL
&& buffer
)
128 FIXME("Unknown parent ProgID %s\n",debugstr_w(buffer
));
130 buffer
= MSI_RecordGetString(row
,3);
131 progid
->Class
= load_given_class(package
,buffer
);
132 if (progid
->Class
== NULL
&& buffer
)
133 FIXME("Unknown class %s\n",debugstr_w(buffer
));
135 progid
->Description
= msi_dup_record_field(row
,4);
137 if (!MSI_RecordIsNull(row
,6))
139 INT icon_index
= MSI_RecordGetInteger(row
,6);
140 LPCWSTR FileName
= MSI_RecordGetString(row
,5);
142 static const WCHAR fmt
[] = {'%','s',',','%','i',0};
144 FilePath
= build_icon_path(package
,FileName
);
146 progid
->IconPath
= msi_alloc( (strlenW(FilePath
)+10)* sizeof(WCHAR
) );
148 sprintfW(progid
->IconPath
,fmt
,FilePath
,icon_index
);
154 buffer
= MSI_RecordGetString(row
,5);
156 progid
->IconPath
= build_icon_path(package
,buffer
);
159 progid
->CurVer
= NULL
;
160 progid
->VersionInd
= NULL
;
162 /* if we have a parent then we may be that parents CurVer */
163 if (progid
->Parent
&& progid
->Parent
!= progid
)
165 MSIPROGID
*parent
= progid
->Parent
;
167 while (parent
->Parent
&& parent
->Parent
!= parent
)
168 parent
= parent
->Parent
;
170 /* FIXME: need to determine if we are really the CurVer */
172 progid
->CurVer
= parent
;
173 parent
->VersionInd
= progid
;
179 static MSIPROGID
*load_given_progid(MSIPACKAGE
*package
, LPCWSTR name
)
183 static const WCHAR ExecSeqQuery
[] =
184 {'S','E','L','E','C','T',' ','*',' ','F','R','O','M',' ',
185 '`','P','r','o','g','I','d','`',' ','W','H','E','R','E',' ',
186 '`','P','r','o','g','I','d','`',' ','=',' ','\'','%','s','\'',0};
191 /* check for progids already loaded */
192 LIST_FOR_EACH_ENTRY( progid
, &package
->progids
, MSIPROGID
, entry
)
194 if (strcmpiW( progid
->ProgID
,name
)==0)
196 TRACE("found progid %s (%p)\n",debugstr_w(name
), progid
);
201 row
= MSI_QueryGetRecord( package
->db
, ExecSeqQuery
, name
);
205 progid
= load_progid(package
, row
);
206 msiobj_release(&row
->hdr
);
211 static MSICLASS
*load_class( MSIPACKAGE
* package
, MSIRECORD
*row
)
217 /* fill in the data */
219 cls
= msi_alloc_zero( sizeof(MSICLASS
) );
223 list_add_tail( &package
->classes
, &cls
->entry
);
225 cls
->clsid
= msi_dup_record_field( row
, 1 );
226 TRACE("loading class %s\n",debugstr_w(cls
->clsid
));
227 cls
->Context
= msi_dup_record_field( row
, 2 );
228 buffer
= MSI_RecordGetString(row
,3);
229 cls
->Component
= get_loaded_component(package
, buffer
);
231 cls
->ProgIDText
= msi_dup_record_field(row
,4);
232 cls
->ProgID
= load_given_progid(package
, cls
->ProgIDText
);
234 cls
->Description
= msi_dup_record_field(row
,5);
236 buffer
= MSI_RecordGetString(row
,6);
238 cls
->AppID
= load_given_appid(package
, buffer
);
240 cls
->FileTypeMask
= msi_dup_record_field(row
,7);
242 if (!MSI_RecordIsNull(row
,9))
245 INT icon_index
= MSI_RecordGetInteger(row
,9);
246 LPCWSTR FileName
= MSI_RecordGetString(row
,8);
248 static const WCHAR fmt
[] = {'%','s',',','%','i',0};
250 FilePath
= build_icon_path(package
,FileName
);
252 cls
->IconPath
= msi_alloc( (strlenW(FilePath
)+5)* sizeof(WCHAR
) );
254 sprintfW(cls
->IconPath
,fmt
,FilePath
,icon_index
);
260 buffer
= MSI_RecordGetString(row
,8);
262 cls
->IconPath
= build_icon_path(package
,buffer
);
265 if (!MSI_RecordIsNull(row
,10))
267 i
= MSI_RecordGetInteger(row
,10);
268 if (i
!= MSI_NULL_INTEGER
&& i
> 0 && i
< 4)
270 static const WCHAR ole2
[] = {'o','l','e','2','.','d','l','l',0};
271 static const WCHAR ole32
[] = {'o','l','e','3','2','.','d','l','l',0};
276 cls
->DefInprocHandler
= strdupW(ole2
);
279 cls
->DefInprocHandler32
= strdupW(ole32
);
282 cls
->DefInprocHandler
= strdupW(ole2
);
283 cls
->DefInprocHandler32
= strdupW(ole32
);
289 cls
->DefInprocHandler32
= msi_dup_record_field( row
, 10);
290 reduce_to_longfilename(cls
->DefInprocHandler32
);
293 buffer
= MSI_RecordGetString(row
,11);
294 deformat_string(package
,buffer
,&cls
->Argument
);
296 buffer
= MSI_RecordGetString(row
,12);
297 cls
->Feature
= get_loaded_feature(package
,buffer
);
299 cls
->Attributes
= MSI_RecordGetInteger(row
,13);
305 * the Class table has 3 primary keys. Generally it is only
306 * referenced through the first CLSID key. However when loading
307 * all of the classes we need to make sure we do not ignore rows
308 * with other Context and ComponentIndexs
310 static MSICLASS
*load_given_class(MSIPACKAGE
*package
, LPCWSTR classid
)
314 static const WCHAR ExecSeqQuery
[] =
315 {'S','E','L','E','C','T',' ','*',' ','F','R','O','M',' ',
316 '`','C','l','a','s','s','`',' ','W','H','E','R','E',' ',
317 '`','C','L','S','I','D','`',' ','=',' ','\'','%','s','\'',0};
322 /* check for classes already loaded */
323 LIST_FOR_EACH_ENTRY( cls
, &package
->classes
, MSICLASS
, entry
)
325 if (lstrcmpiW( cls
->clsid
, classid
)==0)
327 TRACE("found class %s (%p)\n",debugstr_w(classid
), cls
);
332 row
= MSI_QueryGetRecord(package
->db
, ExecSeqQuery
, classid
);
336 cls
= load_class(package
, row
);
337 msiobj_release(&row
->hdr
);
342 static MSIEXTENSION
*load_given_extension( MSIPACKAGE
*package
, LPCWSTR extension
);
344 static MSIMIME
*load_mime( MSIPACKAGE
* package
, MSIRECORD
*row
)
349 /* fill in the data */
351 mt
= msi_alloc_zero( sizeof(MSIMIME
) );
355 mt
->ContentType
= msi_dup_record_field( row
, 1 );
356 TRACE("loading mime %s\n", debugstr_w(mt
->ContentType
));
358 buffer
= MSI_RecordGetString( row
, 2 );
359 mt
->Extension
= load_given_extension( package
, buffer
);
361 mt
->clsid
= msi_dup_record_field( row
, 3 );
362 mt
->Class
= load_given_class( package
, mt
->clsid
);
364 list_add_tail( &package
->mimes
, &mt
->entry
);
369 static MSIMIME
*load_given_mime( MSIPACKAGE
*package
, LPCWSTR mime
)
372 static const WCHAR ExecSeqQuery
[] =
373 {'S','E','L','E','C','T',' ','*',' ','F','R','O','M',' ',
374 '`','M','I','M','E','`',' ','W','H','E','R','E',' ',
375 '`','C','o','n','t','e','n','t','T','y','p','e','`',' ','=',' ',
376 '\'','%','s','\'',0};
382 /* check for mime already loaded */
383 LIST_FOR_EACH_ENTRY( mt
, &package
->mimes
, MSIMIME
, entry
)
385 if (strcmpiW(mt
->ContentType
,mime
)==0)
387 TRACE("found mime %s (%p)\n",debugstr_w(mime
), mt
);
392 row
= MSI_QueryGetRecord(package
->db
, ExecSeqQuery
, mime
);
396 mt
= load_mime(package
, row
);
397 msiobj_release(&row
->hdr
);
402 static MSIEXTENSION
*load_extension( MSIPACKAGE
* package
, MSIRECORD
*row
)
407 /* fill in the data */
409 ext
= msi_alloc_zero( sizeof(MSIEXTENSION
) );
413 list_init( &ext
->verbs
);
415 list_add_tail( &package
->extensions
, &ext
->entry
);
417 ext
->Extension
= msi_dup_record_field( row
, 1 );
418 TRACE("loading extension %s\n", debugstr_w(ext
->Extension
));
420 buffer
= MSI_RecordGetString( row
, 2 );
421 ext
->Component
= get_loaded_component( package
,buffer
);
423 ext
->ProgIDText
= msi_dup_record_field( row
, 3 );
424 ext
->ProgID
= load_given_progid( package
, ext
->ProgIDText
);
426 buffer
= MSI_RecordGetString( row
, 4 );
427 ext
->Mime
= load_given_mime( package
, buffer
);
429 buffer
= MSI_RecordGetString(row
,5);
430 ext
->Feature
= get_loaded_feature( package
, buffer
);
436 * While the extension table has 2 primary keys, this function is only looking
437 * at the Extension key which is what is referenced as a foreign key
439 static MSIEXTENSION
*load_given_extension( MSIPACKAGE
*package
, LPCWSTR name
)
443 static const WCHAR ExecSeqQuery
[] =
444 {'S','E','L','E','C','T',' ','*',' ','F','R','O','M',' ',
445 '`','E','x','t','e','n','s','i','o','n','`',' ',
446 'W','H','E','R','E',' ',
447 '`','E','x','t','e','n','s','i','o','n','`',' ','=',' ',
448 '\'','%','s','\'',0};
456 /* check for extensions already loaded */
457 LIST_FOR_EACH_ENTRY( ext
, &package
->extensions
, MSIEXTENSION
, entry
)
459 if (strcmpiW( ext
->Extension
, name
)==0)
461 TRACE("extension %s already loaded %p\n", debugstr_w(name
), ext
);
466 row
= MSI_QueryGetRecord( package
->db
, ExecSeqQuery
, name
);
470 ext
= load_extension(package
, row
);
471 msiobj_release(&row
->hdr
);
476 static UINT
iterate_load_verb(MSIRECORD
*row
, LPVOID param
)
478 MSIPACKAGE
* package
= param
;
481 MSIEXTENSION
*extension
;
483 buffer
= MSI_RecordGetString(row
,1);
484 extension
= load_given_extension( package
, buffer
);
487 ERR("Verb unable to find loaded extension %s\n", debugstr_w(buffer
));
488 return ERROR_SUCCESS
;
491 /* fill in the data */
493 verb
= msi_alloc_zero( sizeof(MSIVERB
) );
495 return ERROR_OUTOFMEMORY
;
497 verb
->Verb
= msi_dup_record_field(row
,2);
498 TRACE("loading verb %s\n",debugstr_w(verb
->Verb
));
499 verb
->Sequence
= MSI_RecordGetInteger(row
,3);
501 buffer
= MSI_RecordGetString(row
,4);
502 deformat_string(package
,buffer
,&verb
->Command
);
504 buffer
= MSI_RecordGetString(row
,5);
505 deformat_string(package
,buffer
,&verb
->Argument
);
507 /* associate the verb with the correct extension */
508 list_add_tail( &extension
->verbs
, &verb
->entry
);
510 return ERROR_SUCCESS
;
513 static UINT
iterate_all_classes(MSIRECORD
*rec
, LPVOID param
)
519 MSIPACKAGE
* package
= param
;
523 clsid
= MSI_RecordGetString(rec
,1);
524 context
= MSI_RecordGetString(rec
,2);
525 buffer
= MSI_RecordGetString(rec
,3);
526 comp
= get_loaded_component(package
,buffer
);
528 LIST_FOR_EACH_ENTRY( cls
, &package
->classes
, MSICLASS
, entry
)
530 if (strcmpiW( clsid
, cls
->clsid
))
532 if (strcmpW( context
, cls
->Context
))
534 if (comp
== cls
->Component
)
542 load_class(package
, rec
);
544 return ERROR_SUCCESS
;
547 static VOID
load_all_classes(MSIPACKAGE
*package
)
549 UINT rc
= ERROR_SUCCESS
;
552 static const WCHAR ExecSeqQuery
[] =
553 {'S','E','L','E','C','T',' ','*',' ', 'F','R','O','M',' ',
554 '`','C','l','a','s','s','`',0};
556 rc
= MSI_DatabaseOpenViewW(package
->db
, ExecSeqQuery
, &view
);
557 if (rc
!= ERROR_SUCCESS
)
560 rc
= MSI_IterateRecords(view
, NULL
, iterate_all_classes
, package
);
561 msiobj_release(&view
->hdr
);
564 static UINT
iterate_all_extensions(MSIRECORD
*rec
, LPVOID param
)
569 MSIPACKAGE
* package
= param
;
573 extension
= MSI_RecordGetString(rec
,1);
574 buffer
= MSI_RecordGetString(rec
,2);
575 comp
= get_loaded_component(package
,buffer
);
577 LIST_FOR_EACH_ENTRY( ext
, &package
->extensions
, MSIEXTENSION
, entry
)
579 if (strcmpiW(extension
,ext
->Extension
))
581 if (comp
== ext
->Component
)
589 load_extension(package
, rec
);
591 return ERROR_SUCCESS
;
594 static VOID
load_all_extensions(MSIPACKAGE
*package
)
596 UINT rc
= ERROR_SUCCESS
;
599 static const WCHAR ExecSeqQuery
[] =
600 {'S','E','L','E','C','T',' ','*',' ','F','R','O','M',' ',
601 '`','E','x','t','e','n','s','i','o','n','`',0};
603 rc
= MSI_DatabaseOpenViewW(package
->db
, ExecSeqQuery
, &view
);
604 if (rc
!= ERROR_SUCCESS
)
607 rc
= MSI_IterateRecords(view
, NULL
, iterate_all_extensions
, package
);
608 msiobj_release(&view
->hdr
);
611 static UINT
iterate_all_progids(MSIRECORD
*rec
, LPVOID param
)
614 MSIPACKAGE
* package
= param
;
616 buffer
= MSI_RecordGetString(rec
,1);
617 load_given_progid(package
,buffer
);
618 return ERROR_SUCCESS
;
621 static VOID
load_all_progids(MSIPACKAGE
*package
)
623 UINT rc
= ERROR_SUCCESS
;
626 static const WCHAR ExecSeqQuery
[] =
627 {'S','E','L','E','C','T',' ','`','P','r','o','g','I','d','`',' ',
628 'F','R','O','M',' ', '`','P','r','o','g','I','d','`',0};
630 rc
= MSI_DatabaseOpenViewW(package
->db
, ExecSeqQuery
, &view
);
631 if (rc
!= ERROR_SUCCESS
)
634 rc
= MSI_IterateRecords(view
, NULL
, iterate_all_progids
, package
);
635 msiobj_release(&view
->hdr
);
638 static VOID
load_all_verbs(MSIPACKAGE
*package
)
640 UINT rc
= ERROR_SUCCESS
;
643 static const WCHAR ExecSeqQuery
[] =
644 {'S','E','L','E','C','T',' ','*',' ','F','R','O','M',' ',
645 '`','V','e','r','b','`',0};
647 rc
= MSI_DatabaseOpenViewW(package
->db
, ExecSeqQuery
, &view
);
648 if (rc
!= ERROR_SUCCESS
)
651 rc
= MSI_IterateRecords(view
, NULL
, iterate_load_verb
, package
);
652 msiobj_release(&view
->hdr
);
655 static UINT
iterate_all_mimes(MSIRECORD
*rec
, LPVOID param
)
658 MSIPACKAGE
* package
= param
;
660 buffer
= MSI_RecordGetString(rec
,1);
661 load_given_mime(package
,buffer
);
662 return ERROR_SUCCESS
;
665 static VOID
load_all_mimes(MSIPACKAGE
*package
)
667 UINT rc
= ERROR_SUCCESS
;
670 static const WCHAR ExecSeqQuery
[] =
671 {'S','E','L','E','C','T',' ',
672 '`','C','o','n','t','e','n','t','T','y','p','e','`',
673 ' ','F','R','O','M',' ',
674 '`','M','I','M','E','`',0};
676 rc
= MSI_DatabaseOpenViewW(package
->db
, ExecSeqQuery
, &view
);
677 if (rc
!= ERROR_SUCCESS
)
680 rc
= MSI_IterateRecords(view
, NULL
, iterate_all_mimes
, package
);
681 msiobj_release(&view
->hdr
);
684 static void load_classes_and_such(MSIPACKAGE
*package
)
686 TRACE("Loading all the class info and related tables\n");
688 /* check if already loaded */
689 if (!list_empty( &package
->classes
) ||
690 !list_empty( &package
->mimes
) ||
691 !list_empty( &package
->extensions
) ||
692 !list_empty( &package
->progids
) )
695 load_all_classes(package
);
696 load_all_extensions(package
);
697 load_all_progids(package
);
698 /* these loads must come after the other loads */
699 load_all_verbs(package
);
700 load_all_mimes(package
);
703 static void mark_progid_for_install( MSIPACKAGE
* package
, MSIPROGID
*progid
)
710 if (progid
->InstallMe
)
713 progid
->InstallMe
= TRUE
;
715 /* all children if this is a parent also install */
716 LIST_FOR_EACH_ENTRY( child
, &package
->progids
, MSIPROGID
, entry
)
718 if (child
->Parent
== progid
)
719 mark_progid_for_install( package
, child
);
723 static void mark_mime_for_install( MSIMIME
*mime
)
727 mime
->InstallMe
= TRUE
;
730 static UINT
register_appid(const MSIAPPID
*appid
, LPCWSTR app
)
732 static const WCHAR szAppID
[] = { 'A','p','p','I','D',0 };
733 static const WCHAR szRemoteServerName
[] =
734 {'R','e','m','o','t','e','S','e','r','v','e','r','N','a','m','e',0};
735 static const WCHAR szLocalService
[] =
736 {'L','o','c','a','l','S','e','r','v','i','c','e',0};
737 static const WCHAR szService
[] =
738 {'S','e','r','v','i','c','e','P','a','r','a','m','e','t','e','r','s',0};
739 static const WCHAR szDLL
[] =
740 {'D','l','l','S','u','r','r','o','g','a','t','e',0};
741 static const WCHAR szActivate
[] =
742 {'A','c','t','i','v','a','t','e','A','s','S','t','o','r','a','g','e',0};
743 static const WCHAR szY
[] = {'Y',0};
744 static const WCHAR szRunAs
[] = {'R','u','n','A','s',0};
745 static const WCHAR szUser
[] =
746 {'I','n','t','e','r','a','c','t','i','v','e',' ','U','s','e','r',0};
750 RegCreateKeyW(HKEY_CLASSES_ROOT
,szAppID
,&hkey2
);
751 RegCreateKeyW( hkey2
, appid
->AppID
, &hkey3
);
753 msi_reg_set_val_str( hkey3
, NULL
, app
);
755 if (appid
->RemoteServerName
)
756 msi_reg_set_val_str( hkey3
, szRemoteServerName
, appid
->RemoteServerName
);
758 if (appid
->LocalServer
)
759 msi_reg_set_val_str( hkey3
, szLocalService
, appid
->LocalServer
);
761 if (appid
->ServiceParameters
)
762 msi_reg_set_val_str( hkey3
, szService
, appid
->ServiceParameters
);
764 if (appid
->DllSurrogate
)
765 msi_reg_set_val_str( hkey3
, szDLL
, appid
->DllSurrogate
);
767 if (appid
->ActivateAtStorage
)
768 msi_reg_set_val_str( hkey3
, szActivate
, szY
);
770 if (appid
->RunAsInteractiveUser
)
771 msi_reg_set_val_str( hkey3
, szRunAs
, szUser
);
774 return ERROR_SUCCESS
;
777 UINT
ACTION_RegisterClassInfo(MSIPACKAGE
*package
)
780 * Again I am assuming the words, "Whose key file represents" when referring
781 * to a Component as to meaning that Components KeyPath file
786 static const WCHAR szCLSID
[] = { 'C','L','S','I','D',0 };
787 static const WCHAR szProgID
[] = { 'P','r','o','g','I','D',0 };
788 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 };
789 static const WCHAR szAppID
[] = { 'A','p','p','I','D',0 };
790 static const WCHAR szFileType_fmt
[] = {'F','i','l','e','T','y','p','e','\\','%','s','\\','%','i',0};
791 HKEY hkey
,hkey2
,hkey3
;
794 load_classes_and_such(package
);
795 rc
= RegCreateKeyW(HKEY_CLASSES_ROOT
,szCLSID
,&hkey
);
796 if (rc
!= ERROR_SUCCESS
)
797 return ERROR_FUNCTION_FAILED
;
799 LIST_FOR_EACH_ENTRY( cls
, &package
->classes
, MSICLASS
, entry
)
807 comp
= cls
->Component
;
811 feature
= cls
->Feature
;
816 * MSDN says that these are based on Feature not on Component.
818 if (feature
->ActionRequest
!= INSTALLSTATE_LOCAL
&&
819 feature
->ActionRequest
!= INSTALLSTATE_ADVERTISED
)
821 TRACE("Feature %s not scheduled for installation, skipping regstration of class %s\n",
822 debugstr_w(feature
->Feature
), debugstr_w(cls
->clsid
));
826 TRACE("Registering class %s (%p)\n", debugstr_w(cls
->clsid
), cls
);
828 cls
->Installed
= TRUE
;
829 mark_progid_for_install( package
, cls
->ProgID
);
831 RegCreateKeyW( hkey
, cls
->clsid
, &hkey2
);
833 if (cls
->Description
)
834 msi_reg_set_val_str( hkey2
, NULL
, cls
->Description
);
836 RegCreateKeyW( hkey2
, cls
->Context
, &hkey3
);
837 file
= get_loaded_file( package
, comp
->KeyPath
);
840 TRACE("COM server not provided, skipping class %s\n", debugstr_w(cls
->clsid
));
845 * FIXME: Implement install on demand (advertised components).
847 * ole32.dll should call msi.MsiProvideComponentFromDescriptor()
848 * when it needs an InProcServer that doesn't exist.
849 * The component advertise string should be in the "InProcServer" value.
851 size
= lstrlenW( file
->TargetPath
)+1;
853 size
+= lstrlenW(cls
->Argument
)+1;
855 argument
= msi_alloc( size
* sizeof(WCHAR
) );
856 lstrcpyW( argument
, file
->TargetPath
);
860 lstrcatW( argument
, szSpace
);
861 lstrcatW( argument
, cls
->Argument
);
864 msi_reg_set_val_str( hkey3
, NULL
, argument
);
869 if (cls
->ProgID
|| cls
->ProgIDText
)
874 progid
= cls
->ProgID
->ProgID
;
876 progid
= cls
->ProgIDText
;
878 msi_reg_set_subkey_val( hkey2
, szProgID
, NULL
, progid
);
880 if (cls
->ProgID
&& cls
->ProgID
->VersionInd
)
882 msi_reg_set_subkey_val( hkey2
, szVIProgID
, NULL
,
883 cls
->ProgID
->VersionInd
->ProgID
);
889 MSIAPPID
*appid
= cls
->AppID
;
891 msi_reg_set_val_str( hkey2
, szAppID
, appid
->AppID
);
893 register_appid( appid
, cls
->Description
);
898 static const WCHAR szDefaultIcon
[] =
899 {'D','e','f','a','u','l','t','I','c','o','n',0};
901 msi_reg_set_subkey_val( hkey2
, szDefaultIcon
, NULL
, cls
->IconPath
);
904 if (cls
->DefInprocHandler
)
906 static const WCHAR szInproc
[] =
907 {'I','n','p','r','o','c','H','a','n','d','l','e','r',0};
909 msi_reg_set_subkey_val( hkey2
, szInproc
, NULL
, cls
->DefInprocHandler
);
912 if (cls
->DefInprocHandler32
)
914 static const WCHAR szInproc32
[] =
915 {'I','n','p','r','o','c','H','a','n','d','l','e','r','3','2',0};
917 msi_reg_set_subkey_val( hkey2
, szInproc32
, NULL
, cls
->DefInprocHandler32
);
922 /* if there is a FileTypeMask, register the FileType */
923 if (cls
->FileTypeMask
)
928 ptr
= cls
->FileTypeMask
;
931 ptr2
= strchrW(ptr
,';');
934 keyname
= msi_alloc( (strlenW(szFileType_fmt
) + strlenW(cls
->clsid
) + 4) * sizeof(WCHAR
));
935 sprintfW( keyname
, szFileType_fmt
, cls
->clsid
, index
);
937 msi_reg_set_subkey_val( HKEY_CLASSES_ROOT
, keyname
, NULL
, ptr
);
949 uirow
= MSI_CreateRecord(1);
951 MSI_RecordSetStringW( uirow
, 1, cls
->clsid
);
952 ui_actiondata(package
,szRegisterClassInfo
,uirow
);
953 msiobj_release(&uirow
->hdr
);
960 static LPCWSTR
get_clsid_of_progid( const MSIPROGID
*progid
)
965 return progid
->Class
->clsid
;
966 if (progid
->Parent
== progid
)
968 progid
= progid
->Parent
;
973 static UINT
register_progid( const MSIPROGID
* progid
)
975 static const WCHAR szCLSID
[] = { 'C','L','S','I','D',0 };
976 static const WCHAR szDefaultIcon
[] =
977 {'D','e','f','a','u','l','t','I','c','o','n',0};
978 static const WCHAR szCurVer
[] =
979 {'C','u','r','V','e','r',0};
983 rc
= RegCreateKeyW( HKEY_CLASSES_ROOT
, progid
->ProgID
, &hkey
);
984 if (rc
== ERROR_SUCCESS
)
986 LPCWSTR clsid
= get_clsid_of_progid( progid
);
989 msi_reg_set_subkey_val( hkey
, szCLSID
, NULL
, clsid
);
991 ERR("%s has no class\n", debugstr_w( progid
->ProgID
) );
993 if (progid
->Description
)
994 msi_reg_set_val_str( hkey
, NULL
, progid
->Description
);
996 if (progid
->IconPath
)
997 msi_reg_set_subkey_val( hkey
, szDefaultIcon
, NULL
, progid
->IconPath
);
999 /* write out the current version */
1001 msi_reg_set_subkey_val( hkey
, szCurVer
, NULL
, progid
->CurVer
->ProgID
);
1006 ERR("failed to create key %s\n", debugstr_w( progid
->ProgID
) );
1011 UINT
ACTION_RegisterProgIdInfo(MSIPACKAGE
*package
)
1016 load_classes_and_such(package
);
1018 LIST_FOR_EACH_ENTRY( progid
, &package
->progids
, MSIPROGID
, entry
)
1020 /* check if this progid is to be installed */
1021 if (progid
->Class
&& progid
->Class
->Installed
)
1022 progid
->InstallMe
= TRUE
;
1024 if (!progid
->InstallMe
)
1026 TRACE("progid %s not scheduled to be installed\n",
1027 debugstr_w(progid
->ProgID
));
1031 TRACE("Registering progid %s\n", debugstr_w(progid
->ProgID
));
1033 register_progid( progid
);
1035 uirow
= MSI_CreateRecord( 1 );
1036 MSI_RecordSetStringW( uirow
, 1, progid
->ProgID
);
1037 ui_actiondata( package
, szRegisterProgIdInfo
, uirow
);
1038 msiobj_release( &uirow
->hdr
);
1041 return ERROR_SUCCESS
;
1044 static UINT
register_verb(MSIPACKAGE
*package
, LPCWSTR progid
,
1045 MSICOMPONENT
* component
, const MSIEXTENSION
* extension
,
1046 MSIVERB
* verb
, INT
* Sequence
)
1050 static const WCHAR szShell
[] = {'s','h','e','l','l',0};
1051 static const WCHAR szCommand
[] = {'c','o','m','m','a','n','d',0};
1052 static const WCHAR fmt
[] = {'\"','%','s','\"',' ','%','s',0};
1053 static const WCHAR fmt2
[] = {'\"','%','s','\"',0};
1058 keyname
= build_directory_name(4, progid
, szShell
, verb
->Verb
, szCommand
);
1060 TRACE("Making Key %s\n",debugstr_w(keyname
));
1061 RegCreateKeyW(HKEY_CLASSES_ROOT
, keyname
, &key
);
1062 size
= strlenW(component
->FullKeypath
);
1064 size
+= strlenW(verb
->Argument
);
1067 command
= msi_alloc(size
* sizeof (WCHAR
));
1069 sprintfW(command
, fmt
, component
->FullKeypath
, verb
->Argument
);
1071 sprintfW(command
, fmt2
, component
->FullKeypath
);
1073 msi_reg_set_val_str( key
, NULL
, command
);
1076 advertise
= create_component_advertise_string(package
, component
,
1077 extension
->Feature
->Feature
);
1079 size
= strlenW(advertise
);
1082 size
+= strlenW(verb
->Argument
);
1085 command
= msi_alloc_zero(size
* sizeof (WCHAR
));
1087 strcpyW(command
,advertise
);
1090 strcatW(command
,szSpace
);
1091 strcatW(command
,verb
->Argument
);
1094 msi_reg_set_val_multi_str( key
, szCommand
, command
);
1098 msi_free(advertise
);
1103 keyname
= build_directory_name(3, progid
, szShell
, verb
->Verb
);
1104 msi_reg_set_subkey_val( HKEY_CLASSES_ROOT
, keyname
, NULL
, verb
->Command
);
1108 if (verb
->Sequence
!= MSI_NULL_INTEGER
)
1110 if (*Sequence
== MSI_NULL_INTEGER
|| verb
->Sequence
< *Sequence
)
1112 *Sequence
= verb
->Sequence
;
1113 keyname
= build_directory_name(2, progid
, szShell
);
1114 msi_reg_set_subkey_val( HKEY_CLASSES_ROOT
, keyname
, NULL
, verb
->Verb
);
1118 return ERROR_SUCCESS
;
1121 UINT
ACTION_RegisterExtensionInfo(MSIPACKAGE
*package
)
1123 static const WCHAR szContentType
[] =
1124 {'C','o','n','t','e','n','t',' ','T','y','p','e',0 };
1128 BOOL install_on_demand
= TRUE
;
1130 load_classes_and_such(package
);
1132 /* We need to set install_on_demand based on if the shell handles advertised
1133 * shortcuts and the like. Because Mike McCormack is working on this i am
1134 * going to default to TRUE
1137 LIST_FOR_EACH_ENTRY( ext
, &package
->extensions
, MSIEXTENSION
, entry
)
1140 MSIFEATURE
*feature
;
1142 if (!ext
->Component
)
1145 feature
= ext
->Feature
;
1150 * yes. MSDN says that these are based on _Feature_ not on
1151 * Component. So verify the feature is to be installed
1153 if (feature
->ActionRequest
!= INSTALLSTATE_LOCAL
&&
1154 !(install_on_demand
&& feature
->ActionRequest
== INSTALLSTATE_ADVERTISED
))
1156 TRACE("Feature %s not scheduled for installation, skipping registration of extension %s\n",
1157 debugstr_w(feature
->Feature
), debugstr_w(ext
->Extension
));
1161 TRACE("Registering extension %s (%p)\n", debugstr_w(ext
->Extension
), ext
);
1163 ext
->Installed
= TRUE
;
1165 /* this is only registered if the extension has at least 1 verb
1168 if (ext
->ProgID
&& !list_empty( &ext
->verbs
) )
1169 mark_progid_for_install( package
, ext
->ProgID
);
1171 mark_mime_for_install(ext
->Mime
);
1173 extension
= msi_alloc( (lstrlenW( ext
->Extension
) + 2)*sizeof(WCHAR
) );
1175 lstrcpyW(extension
+1,ext
->Extension
);
1177 RegCreateKeyW(HKEY_CLASSES_ROOT
,extension
,&hkey
);
1178 msi_free( extension
);
1181 msi_reg_set_val_str( hkey
, szContentType
, ext
->Mime
->ContentType
);
1183 if (ext
->ProgID
|| ext
->ProgIDText
)
1185 static const WCHAR szSN
[] =
1186 {'\\','S','h','e','l','l','N','e','w',0};
1191 INT Sequence
= MSI_NULL_INTEGER
;
1194 progid
= ext
->ProgID
->ProgID
;
1196 progid
= ext
->ProgIDText
;
1198 msi_reg_set_val_str( hkey
, NULL
, progid
);
1200 newkey
= msi_alloc( (strlenW(progid
)+strlenW(szSN
)+1) * sizeof(WCHAR
));
1202 strcpyW(newkey
,progid
);
1203 strcatW(newkey
,szSN
);
1204 RegCreateKeyW(hkey
,newkey
,&hkey2
);
1209 /* do all the verbs */
1210 LIST_FOR_EACH_ENTRY( verb
, &ext
->verbs
, MSIVERB
, entry
)
1212 register_verb( package
, progid
, ext
->Component
,
1213 ext
, verb
, &Sequence
);
1219 uirow
= MSI_CreateRecord(1);
1220 MSI_RecordSetStringW( uirow
, 1, ext
->Extension
);
1221 ui_actiondata(package
,szRegisterExtensionInfo
,uirow
);
1222 msiobj_release(&uirow
->hdr
);
1225 return ERROR_SUCCESS
;
1228 UINT
ACTION_RegisterMIMEInfo(MSIPACKAGE
*package
)
1230 static const WCHAR szExten
[] =
1231 {'E','x','t','e','n','s','i','o','n',0 };
1235 load_classes_and_such(package
);
1237 LIST_FOR_EACH_ENTRY( mt
, &package
->mimes
, MSIMIME
, entry
)
1242 static const WCHAR fmt
[] =
1243 {'M','I','M','E','\\','D','a','t','a','b','a','s','e','\\',
1244 'C','o','n','t','e','n','t',' ','T','y','p','e','\\', '%','s',0};
1248 * check if the MIME is to be installed. Either as requested by an
1249 * extension or Class
1251 mt
->InstallMe
= (mt
->InstallMe
||
1252 (mt
->Class
&& mt
->Class
->Installed
) ||
1253 (mt
->Extension
&& mt
->Extension
->Installed
));
1257 TRACE("MIME %s not scheduled to be installed\n",
1258 debugstr_w(mt
->ContentType
));
1262 mime
= mt
->ContentType
;
1263 exten
= mt
->Extension
->Extension
;
1265 extension
= msi_alloc( (lstrlenW( exten
) + 2)*sizeof(WCHAR
) );
1267 lstrcpyW(extension
+1,exten
);
1269 key
= msi_alloc( (strlenW(mime
)+strlenW(fmt
)+1) * sizeof(WCHAR
) );
1270 sprintfW(key
,fmt
,mime
);
1271 msi_reg_set_subkey_val( HKEY_CLASSES_ROOT
, key
, szExten
, extension
);
1273 msi_free(extension
);
1277 FIXME("Handle non null for field 3\n");
1279 uirow
= MSI_CreateRecord(2);
1280 MSI_RecordSetStringW(uirow
,1,mt
->ContentType
);
1281 MSI_RecordSetStringW(uirow
,2,exten
);
1282 ui_actiondata(package
,szRegisterMIMEInfo
,uirow
);
1283 msiobj_release(&uirow
->hdr
);
1286 return ERROR_SUCCESS
;