wininet: Add a test for status callbacks on ftp connections.
[wine.git] / dlls / msi / helpers.c
blob83569231029f36ed97d27c5601b908e81c5fcdc0
1 /*
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
22 * Here are helper functions formally in action.c that are used by a variety of
23 * actions and functions.
26 #include <stdarg.h>
28 #include "windef.h"
29 #include "wine/debug.h"
30 #include "msipriv.h"
31 #include "winuser.h"
32 #include "wine/unicode.h"
33 #include "msidefs.h"
35 WINE_DEFAULT_DEBUG_CHANNEL(msi);
37 static const WCHAR cszTargetDir[] = {'T','A','R','G','E','T','D','I','R',0};
38 static const WCHAR cszDatabase[]={'D','A','T','A','B','A','S','E',0};
40 LPWSTR build_icon_path(MSIPACKAGE *package, LPCWSTR icon_name )
42 LPWSTR SystemFolder, dest, FilePath;
44 static const WCHAR szInstaller[] =
45 {'M','i','c','r','o','s','o','f','t','\\',
46 'I','n','s','t','a','l','l','e','r','\\',0};
47 static const WCHAR szFolder[] =
48 {'A','p','p','D','a','t','a','F','o','l','d','e','r',0};
50 SystemFolder = msi_dup_property( package, szFolder );
52 dest = build_directory_name(3, SystemFolder, szInstaller, package->ProductCode);
54 create_full_pathW(dest);
56 FilePath = build_directory_name(2, dest, icon_name);
58 msi_free(SystemFolder);
59 msi_free(dest);
60 return FilePath;
63 LPWSTR msi_dup_record_field( MSIRECORD *rec, INT field )
65 DWORD sz = 0;
66 LPWSTR str;
67 UINT r;
69 if (MSI_RecordIsNull( rec, field ))
70 return NULL;
72 r = MSI_RecordGetStringW( rec, field, NULL, &sz );
73 if (r != ERROR_SUCCESS)
74 return NULL;
76 sz ++;
77 str = msi_alloc( sz * sizeof (WCHAR) );
78 if (!str)
79 return str;
80 str[0] = 0;
81 r = MSI_RecordGetStringW( rec, field, str, &sz );
82 if (r != ERROR_SUCCESS)
84 ERR("failed to get string!\n");
85 msi_free( str );
86 return NULL;
88 return str;
91 MSICOMPONENT* get_loaded_component( MSIPACKAGE* package, LPCWSTR Component )
93 MSICOMPONENT *comp;
95 LIST_FOR_EACH_ENTRY( comp, &package->components, MSICOMPONENT, entry )
97 if (lstrcmpW(Component,comp->Component)==0)
98 return comp;
100 return NULL;
103 MSIFEATURE* get_loaded_feature(MSIPACKAGE* package, LPCWSTR Feature )
105 MSIFEATURE *feature;
107 LIST_FOR_EACH_ENTRY( feature, &package->features, MSIFEATURE, entry )
109 if (lstrcmpW( Feature, feature->Feature )==0)
110 return feature;
112 return NULL;
115 MSIFILE* get_loaded_file( MSIPACKAGE* package, LPCWSTR key )
117 MSIFILE *file;
119 LIST_FOR_EACH_ENTRY( file, &package->files, MSIFILE, entry )
121 if (lstrcmpW( key, file->File )==0)
122 return file;
124 return NULL;
127 int track_tempfile( MSIPACKAGE *package, LPCWSTR path )
129 MSITEMPFILE *temp;
131 TRACE("%s\n", debugstr_w(path));
133 LIST_FOR_EACH_ENTRY( temp, &package->tempfiles, MSITEMPFILE, entry )
134 if (!lstrcmpW( path, temp->Path ))
135 return 0;
137 temp = msi_alloc_zero( sizeof (MSITEMPFILE) );
138 if (!temp)
139 return -1;
141 list_add_head( &package->tempfiles, &temp->entry );
142 temp->Path = strdupW( path );
144 return 0;
147 MSIFOLDER *get_loaded_folder( MSIPACKAGE *package, LPCWSTR dir )
149 MSIFOLDER *folder;
151 LIST_FOR_EACH_ENTRY( folder, &package->folders, MSIFOLDER, entry )
153 if (lstrcmpW( dir, folder->Directory )==0)
154 return folder;
156 return NULL;
159 void msi_reset_folders( MSIPACKAGE *package, BOOL source )
161 MSIFOLDER *folder;
163 LIST_FOR_EACH_ENTRY( folder, &package->folders, MSIFOLDER, entry )
165 if ( source )
167 msi_free( folder->ResolvedSource );
168 folder->ResolvedSource = NULL;
170 else
172 msi_free( folder->ResolvedTarget );
173 folder->ResolvedTarget = NULL;
178 static LPWSTR get_source_root( MSIPACKAGE *package )
180 LPWSTR path, p;
182 path = msi_dup_property( package, cszSourceDir );
183 if (path)
184 return path;
186 path = msi_dup_property( package, cszDatabase );
187 if (path)
189 p = strrchrW(path,'\\');
190 if (p)
191 *(p+1) = 0;
193 return path;
197 * clean_spaces_from_path()
199 * removes spaces from the beginning and end of path segments
200 * removes multiple \\ characters
202 static void clean_spaces_from_path( LPWSTR p )
204 LPWSTR q = p;
205 int n, len = 0;
207 while (1)
209 /* copy until the end of the string or a space */
210 while (*p != ' ' && (*q = *p))
212 p++, len++;
213 /* reduce many backslashes to one */
214 if (*p != '\\' || *q != '\\')
215 q++;
218 /* quit at the end of the string */
219 if (!*p)
220 break;
222 /* count the number of spaces */
223 n = 0;
224 while (p[n] == ' ')
225 n++;
227 /* if it's leading or trailing space, skip it */
228 if ( len == 0 || p[-1] == '\\' || p[n] == '\\' )
229 p += n;
230 else /* copy n spaces */
231 while (n && (*q++ = *p++)) n--;
235 LPWSTR resolve_file_source(MSIPACKAGE *package, MSIFILE *file)
237 LPWSTR p, path;
239 TRACE("Working to resolve source of file %s\n", debugstr_w(file->File));
241 if (file->IsCompressed)
242 return NULL;
244 p = resolve_folder(package, file->Component->Directory,
245 TRUE, FALSE, TRUE, NULL);
246 path = build_directory_name(2, p, file->ShortName);
248 if (file->LongName &&
249 GetFileAttributesW(path) == INVALID_FILE_ATTRIBUTES)
251 msi_free(path);
252 path = build_directory_name(2, p, file->LongName);
255 msi_free(p);
257 TRACE("file %s source resolves to %s\n", debugstr_w(file->File),
258 debugstr_w(path));
260 return path;
263 LPWSTR resolve_folder(MSIPACKAGE *package, LPCWSTR name, BOOL source,
264 BOOL set_prop, BOOL load_prop, MSIFOLDER **folder)
266 MSIFOLDER *f;
267 LPWSTR p, path = NULL, parent;
269 TRACE("Working to resolve %s\n",debugstr_w(name));
271 if (!name)
272 return NULL;
274 if (!lstrcmpW(name,cszSourceDir))
275 name = cszTargetDir;
277 f = get_loaded_folder( package, name );
278 if (!f)
279 return NULL;
281 /* special resolving for Target and Source root dir */
282 if (!strcmpW(name,cszTargetDir))
284 if (!f->ResolvedTarget && !f->Property)
286 LPWSTR check_path;
287 check_path = msi_dup_property( package, cszTargetDir );
288 if (!check_path)
290 check_path = msi_dup_property( package, cszRootDrive );
291 if (set_prop)
292 MSI_SetPropertyW(package,cszTargetDir,check_path);
295 /* correct misbuilt target dir */
296 path = build_directory_name(2, check_path, NULL);
297 clean_spaces_from_path( path );
298 if (strcmpiW(path,check_path)!=0)
299 MSI_SetPropertyW(package,cszTargetDir,path);
300 msi_free(check_path);
302 f->ResolvedTarget = path;
305 if (!f->ResolvedSource)
306 f->ResolvedSource = get_source_root( package );
309 if (folder)
310 *folder = f;
312 if (!source && f->ResolvedTarget)
314 path = strdupW( f->ResolvedTarget );
315 TRACE(" already resolved to %s\n",debugstr_w(path));
316 return path;
319 if (source && f->ResolvedSource)
321 path = strdupW( f->ResolvedSource );
322 TRACE(" (source)already resolved to %s\n",debugstr_w(path));
323 return path;
326 if (!source && f->Property)
328 path = build_directory_name( 2, f->Property, NULL );
330 TRACE(" internally set to %s\n",debugstr_w(path));
331 if (set_prop)
332 MSI_SetPropertyW( package, name, path );
333 return path;
336 if (!source && load_prop && (path = msi_dup_property( package, name )))
338 f->ResolvedTarget = strdupW( path );
339 TRACE(" property set to %s\n", debugstr_w(path));
340 return path;
343 if (!f->Parent)
344 return path;
346 parent = f->Parent;
348 TRACE(" ! Parent is %s\n", debugstr_w(parent));
350 p = resolve_folder(package, parent, source, set_prop, load_prop, NULL);
351 if (!source)
353 TRACE(" TargetDefault = %s\n", debugstr_w(f->TargetDefault));
355 path = build_directory_name( 3, p, f->TargetDefault, NULL );
356 clean_spaces_from_path( path );
357 f->ResolvedTarget = strdupW( path );
358 TRACE("target -> %s\n", debugstr_w(path));
359 if (set_prop)
360 MSI_SetPropertyW(package,name,path);
362 else
364 path = NULL;
366 if (package->WordCount & msidbSumInfoSourceTypeCompressed)
367 path = get_source_root( package );
368 else if (package->WordCount & msidbSumInfoSourceTypeSFN)
369 path = build_directory_name( 3, p, f->SourceShortPath, NULL );
370 else
371 path = build_directory_name( 3, p, f->SourceLongPath, NULL );
373 TRACE("source -> %s\n", debugstr_w(path));
374 f->ResolvedSource = strdupW( path );
376 msi_free(p);
378 return path;
381 /* wrapper to resist a need for a full rewrite right now */
382 DWORD deformat_string(MSIPACKAGE *package, LPCWSTR ptr, WCHAR** data )
384 if (ptr)
386 MSIRECORD *rec = MSI_CreateRecord(1);
387 DWORD size = 0;
389 MSI_RecordSetStringW(rec,0,ptr);
390 MSI_FormatRecordW(package,rec,NULL,&size);
392 size++;
393 *data = msi_alloc(size*sizeof(WCHAR));
394 if (size > 1)
395 MSI_FormatRecordW(package,rec,*data,&size);
396 else
397 *data[0] = 0;
399 msiobj_release( &rec->hdr );
400 return sizeof(WCHAR)*size;
403 *data = NULL;
404 return 0;
407 UINT schedule_action(MSIPACKAGE *package, UINT script, LPCWSTR action)
409 UINT count;
410 LPWSTR *newbuf = NULL;
411 if (script >= TOTAL_SCRIPTS)
413 FIXME("Unknown script requested %i\n",script);
414 return ERROR_FUNCTION_FAILED;
416 TRACE("Scheduling Action %s in script %i\n",debugstr_w(action), script);
418 count = package->script->ActionCount[script];
419 package->script->ActionCount[script]++;
420 if (count != 0)
421 newbuf = msi_realloc( package->script->Actions[script],
422 package->script->ActionCount[script]* sizeof(LPWSTR));
423 else
424 newbuf = msi_alloc( sizeof(LPWSTR));
426 newbuf[count] = strdupW(action);
427 package->script->Actions[script] = newbuf;
429 return ERROR_SUCCESS;
432 void msi_free_action_script(MSIPACKAGE *package, UINT script)
434 UINT i;
435 for (i = 0; i < package->script->ActionCount[script]; i++)
436 msi_free(package->script->Actions[script][i]);
438 msi_free(package->script->Actions[script]);
439 package->script->Actions[script] = NULL;
440 package->script->ActionCount[script] = 0;
443 static void remove_tracked_tempfiles(MSIPACKAGE* package)
445 struct list *item, *cursor;
447 LIST_FOR_EACH_SAFE( item, cursor, &package->tempfiles )
449 MSITEMPFILE *temp = LIST_ENTRY( item, MSITEMPFILE, entry );
451 list_remove( &temp->entry );
452 TRACE("deleting temp file %s\n", debugstr_w( temp->Path ));
453 if (!DeleteFileW( temp->Path ))
454 ERR("failed to delete %s\n", debugstr_w( temp->Path ));
455 msi_free( temp->Path );
456 msi_free( temp );
460 static void free_feature( MSIFEATURE *feature )
462 struct list *item, *cursor;
464 LIST_FOR_EACH_SAFE( item, cursor, &feature->Children )
466 FeatureList *fl = LIST_ENTRY( item, FeatureList, entry );
467 list_remove( &fl->entry );
468 msi_free( fl );
471 LIST_FOR_EACH_SAFE( item, cursor, &feature->Components )
473 ComponentList *cl = LIST_ENTRY( item, ComponentList, entry );
474 list_remove( &cl->entry );
475 msi_free( cl );
477 msi_free( feature->Feature );
478 msi_free( feature->Feature_Parent );
479 msi_free( feature->Directory );
480 msi_free( feature->Description );
481 msi_free( feature->Title );
482 msi_free( feature );
485 static void free_extension( MSIEXTENSION *ext )
487 struct list *item, *cursor;
489 LIST_FOR_EACH_SAFE( item, cursor, &ext->verbs )
491 MSIVERB *verb = LIST_ENTRY( item, MSIVERB, entry );
493 list_remove( &verb->entry );
494 msi_free( verb->Verb );
495 msi_free( verb->Command );
496 msi_free( verb->Argument );
497 msi_free( verb );
500 msi_free( ext->Extension );
501 msi_free( ext->ProgIDText );
502 msi_free( ext );
505 /* Called when the package is being closed */
506 void ACTION_free_package_structures( MSIPACKAGE* package)
508 INT i;
509 struct list *item, *cursor;
511 TRACE("Freeing package action data\n");
513 remove_tracked_tempfiles(package);
515 LIST_FOR_EACH_SAFE( item, cursor, &package->features )
517 MSIFEATURE *feature = LIST_ENTRY( item, MSIFEATURE, entry );
518 list_remove( &feature->entry );
519 free_feature( feature );
522 LIST_FOR_EACH_SAFE( item, cursor, &package->folders )
524 MSIFOLDER *folder = LIST_ENTRY( item, MSIFOLDER, entry );
526 list_remove( &folder->entry );
527 msi_free( folder->Parent );
528 msi_free( folder->Directory );
529 msi_free( folder->TargetDefault );
530 msi_free( folder->SourceLongPath );
531 msi_free( folder->SourceShortPath );
532 msi_free( folder->ResolvedTarget );
533 msi_free( folder->ResolvedSource );
534 msi_free( folder->Property );
535 msi_free( folder );
538 LIST_FOR_EACH_SAFE( item, cursor, &package->components )
540 MSICOMPONENT *comp = LIST_ENTRY( item, MSICOMPONENT, entry );
542 list_remove( &comp->entry );
543 msi_free( comp->Component );
544 msi_free( comp->ComponentId );
545 msi_free( comp->Directory );
546 msi_free( comp->Condition );
547 msi_free( comp->KeyPath );
548 msi_free( comp->FullKeypath );
549 msi_free( comp );
552 LIST_FOR_EACH_SAFE( item, cursor, &package->files )
554 MSIFILE *file = LIST_ENTRY( item, MSIFILE, entry );
556 list_remove( &file->entry );
557 msi_free( file->File );
558 msi_free( file->FileName );
559 msi_free( file->ShortName );
560 msi_free( file->LongName );
561 msi_free( file->Version );
562 msi_free( file->Language );
563 msi_free( file->TargetPath );
564 msi_free( file );
567 /* clean up extension, progid, class and verb structures */
568 LIST_FOR_EACH_SAFE( item, cursor, &package->classes )
570 MSICLASS *cls = LIST_ENTRY( item, MSICLASS, entry );
572 list_remove( &cls->entry );
573 msi_free( cls->clsid );
574 msi_free( cls->Context );
575 msi_free( cls->Description );
576 msi_free( cls->FileTypeMask );
577 msi_free( cls->IconPath );
578 msi_free( cls->DefInprocHandler );
579 msi_free( cls->DefInprocHandler32 );
580 msi_free( cls->Argument );
581 msi_free( cls->ProgIDText );
582 msi_free( cls );
585 LIST_FOR_EACH_SAFE( item, cursor, &package->extensions )
587 MSIEXTENSION *ext = LIST_ENTRY( item, MSIEXTENSION, entry );
589 list_remove( &ext->entry );
590 free_extension( ext );
593 LIST_FOR_EACH_SAFE( item, cursor, &package->progids )
595 MSIPROGID *progid = LIST_ENTRY( item, MSIPROGID, entry );
597 list_remove( &progid->entry );
598 msi_free( progid->ProgID );
599 msi_free( progid->Description );
600 msi_free( progid->IconPath );
601 msi_free( progid );
604 LIST_FOR_EACH_SAFE( item, cursor, &package->mimes )
606 MSIMIME *mt = LIST_ENTRY( item, MSIMIME, entry );
608 list_remove( &mt->entry );
609 msi_free( mt->clsid );
610 msi_free( mt->ContentType );
611 msi_free( mt );
614 LIST_FOR_EACH_SAFE( item, cursor, &package->appids )
616 MSIAPPID *appid = LIST_ENTRY( item, MSIAPPID, entry );
618 list_remove( &appid->entry );
619 msi_free( appid->AppID );
620 msi_free( appid->RemoteServerName );
621 msi_free( appid->LocalServer );
622 msi_free( appid->ServiceParameters );
623 msi_free( appid->DllSurrogate );
624 msi_free( appid );
627 LIST_FOR_EACH_SAFE( item, cursor, &package->sourcelist_info )
629 MSISOURCELISTINFO *info = LIST_ENTRY( item, MSISOURCELISTINFO, entry );
631 list_remove( &info->entry );
632 msi_free( info->value );
633 msi_free( info );
636 LIST_FOR_EACH_SAFE( item, cursor, &package->sourcelist_media )
638 MSIMEDIADISK *info = LIST_ENTRY( item, MSIMEDIADISK, entry );
640 list_remove( &info->entry );
641 msi_free( info->volume_label );
642 msi_free( info->disk_prompt );
643 msi_free( info );
646 if (package->script)
648 for (i = 0; i < TOTAL_SCRIPTS; i++)
649 msi_free_action_script(package, i);
651 for (i = 0; i < package->script->UniqueActionsCount; i++)
652 msi_free(package->script->UniqueActions[i]);
654 msi_free(package->script->UniqueActions);
655 msi_free(package->script);
658 if (package->patch)
660 msi_free(package->patch->patchcode);
661 msi_free(package->patch->transforms);
662 msi_free(package->patch);
665 msi_free(package->BaseURL);
666 msi_free(package->PackagePath);
667 msi_free(package->ProductCode);
668 msi_free(package->ActionFormat);
669 msi_free(package->LastAction);
671 /* cleanup control event subscriptions */
672 ControlEvent_CleanupSubscriptions(package);
676 * build_directory_name()
678 * This function is to save messing round with directory names
679 * It handles adding backslashes between path segments,
680 * and can add \ at the end of the directory name if told to.
682 * It takes a variable number of arguments.
683 * It always allocates a new string for the result, so make sure
684 * to free the return value when finished with it.
686 * The first arg is the number of path segments that follow.
687 * The arguments following count are a list of path segments.
688 * A path segment may be NULL.
690 * Path segments will be added with a \ separating them.
691 * A \ will not be added after the last segment, however if the
692 * last segment is NULL, then the last character will be a \
695 LPWSTR build_directory_name(DWORD count, ...)
697 DWORD sz = 1, i;
698 LPWSTR dir;
699 va_list va;
701 va_start(va,count);
702 for(i=0; i<count; i++)
704 LPCWSTR str = va_arg(va,LPCWSTR);
705 if (str)
706 sz += strlenW(str) + 1;
708 va_end(va);
710 dir = msi_alloc(sz*sizeof(WCHAR));
711 dir[0]=0;
713 va_start(va,count);
714 for(i=0; i<count; i++)
716 LPCWSTR str = va_arg(va,LPCWSTR);
717 if (!str)
718 continue;
719 strcatW(dir, str);
720 if( ((i+1)!=count) && dir[strlenW(dir)-1]!='\\')
721 strcatW(dir, szBackSlash);
723 return dir;
726 /***********************************************************************
727 * create_full_pathW
729 * Recursively create all directories in the path.
731 * shamelessly stolen from setupapi/queue.c
733 BOOL create_full_pathW(const WCHAR *path)
735 BOOL ret = TRUE;
736 int len;
737 WCHAR *new_path;
739 new_path = msi_alloc( (strlenW(path) + 1) * sizeof(WCHAR));
741 strcpyW(new_path, path);
743 while((len = strlenW(new_path)) && new_path[len - 1] == '\\')
744 new_path[len - 1] = 0;
746 while(!CreateDirectoryW(new_path, NULL))
748 WCHAR *slash;
749 DWORD last_error = GetLastError();
750 if(last_error == ERROR_ALREADY_EXISTS)
751 break;
753 if(last_error != ERROR_PATH_NOT_FOUND)
755 ret = FALSE;
756 break;
759 if(!(slash = strrchrW(new_path, '\\')))
761 ret = FALSE;
762 break;
765 len = slash - new_path;
766 new_path[len] = 0;
767 if(!create_full_pathW(new_path))
769 ret = FALSE;
770 break;
772 new_path[len] = '\\';
775 msi_free(new_path);
776 return ret;
779 void ui_progress(MSIPACKAGE *package, int a, int b, int c, int d )
781 MSIRECORD * row;
783 row = MSI_CreateRecord(4);
784 MSI_RecordSetInteger(row,1,a);
785 MSI_RecordSetInteger(row,2,b);
786 MSI_RecordSetInteger(row,3,c);
787 MSI_RecordSetInteger(row,4,d);
788 MSI_ProcessMessage(package, INSTALLMESSAGE_PROGRESS, row);
789 msiobj_release(&row->hdr);
791 msi_dialog_check_messages(NULL);
794 void ui_actiondata(MSIPACKAGE *package, LPCWSTR action, MSIRECORD * record)
796 static const WCHAR Query_t[] =
797 {'S','E','L','E','C','T',' ','*',' ','F','R','O','M',' ',
798 '`','A','c','t','i','o', 'n','T','e','x','t','`',' ',
799 'W','H','E','R','E',' ', '`','A','c','t','i','o','n','`',' ','=',
800 ' ','\'','%','s','\'',0};
801 WCHAR message[1024];
802 MSIRECORD * row = 0;
803 DWORD size;
805 if (!package->LastAction || strcmpW(package->LastAction,action))
807 row = MSI_QueryGetRecord(package->db, Query_t, action);
808 if (!row)
809 return;
811 if (MSI_RecordIsNull(row,3))
813 msiobj_release(&row->hdr);
814 return;
817 /* update the cached actionformat */
818 msi_free(package->ActionFormat);
819 package->ActionFormat = msi_dup_record_field(row,3);
821 msi_free(package->LastAction);
822 package->LastAction = strdupW(action);
824 msiobj_release(&row->hdr);
827 MSI_RecordSetStringW(record,0,package->ActionFormat);
828 size = 1024;
829 MSI_FormatRecordW(package,record,message,&size);
831 row = MSI_CreateRecord(1);
832 MSI_RecordSetStringW(row,1,message);
834 MSI_ProcessMessage(package, INSTALLMESSAGE_ACTIONDATA, row);
836 msiobj_release(&row->hdr);
839 BOOL ACTION_VerifyComponentForAction( const MSICOMPONENT* comp, INSTALLSTATE check )
841 if (!comp)
842 return FALSE;
844 if (comp->ActionRequest == check)
845 return TRUE;
846 else
847 return FALSE;
850 BOOL ACTION_VerifyFeatureForAction( const MSIFEATURE* feature, INSTALLSTATE check )
852 if (!feature)
853 return FALSE;
855 if (feature->ActionRequest == check)
856 return TRUE;
857 else
858 return FALSE;
861 void reduce_to_longfilename(WCHAR* filename)
863 LPWSTR p = strchrW(filename,'|');
864 if (p)
865 memmove(filename, p+1, (strlenW(p+1)+1)*sizeof(WCHAR));
868 LPWSTR create_component_advertise_string(MSIPACKAGE* package,
869 MSICOMPONENT* component, LPCWSTR feature)
871 static const WCHAR fmt[] = {'%','s','%','s','%','c','%','s',0};
872 WCHAR productid_85[21], component_85[21];
873 LPWSTR output = NULL;
874 DWORD sz = 0;
875 GUID clsid;
877 /* > is used if there is a component GUID and < if not. */
879 productid_85[0] = 0;
880 component_85[0] = 0;
882 CLSIDFromString(package->ProductCode, &clsid);
883 encode_base85_guid(&clsid, productid_85);
885 if (component)
887 CLSIDFromString(component->ComponentId, &clsid);
888 encode_base85_guid(&clsid, component_85);
891 TRACE("prod=%s feat=%s comp=%s\n", debugstr_w(productid_85),
892 debugstr_w(feature), debugstr_w(component_85));
894 sz = 20 + lstrlenW(feature) + 20 + 3;
896 output = msi_alloc_zero(sz*sizeof(WCHAR));
898 sprintfW(output, fmt, productid_85, feature,
899 component?'>':'<', component_85);
901 return output;
904 /* update component state based on a feature change */
905 void ACTION_UpdateComponentStates(MSIPACKAGE *package, LPCWSTR szFeature)
907 INSTALLSTATE newstate;
908 MSIFEATURE *feature;
909 ComponentList *cl;
911 feature = get_loaded_feature(package,szFeature);
912 if (!feature)
913 return;
915 newstate = feature->ActionRequest;
917 if (newstate == INSTALLSTATE_ABSENT)
918 newstate = INSTALLSTATE_UNKNOWN;
920 LIST_FOR_EACH_ENTRY( cl, &feature->Components, ComponentList, entry )
922 MSICOMPONENT* component = cl->component;
924 TRACE("MODIFYING(%i): Component %s (Installed %i, Action %i, Request %i)\n",
925 newstate, debugstr_w(component->Component), component->Installed,
926 component->Action, component->ActionRequest);
928 if (!component->Enabled)
929 continue;
931 if (newstate == INSTALLSTATE_LOCAL)
932 msi_component_set_state(package, component, INSTALLSTATE_LOCAL);
933 else
935 ComponentList *clist;
936 MSIFEATURE *f;
938 component->hasLocalFeature = FALSE;
940 msi_component_set_state(package, component, newstate);
942 /*if any other feature wants is local we need to set it local*/
943 LIST_FOR_EACH_ENTRY( f, &package->features, MSIFEATURE, entry )
945 if ( f->ActionRequest != INSTALLSTATE_LOCAL &&
946 f->ActionRequest != INSTALLSTATE_SOURCE )
948 continue;
951 LIST_FOR_EACH_ENTRY( clist, &f->Components, ComponentList, entry )
953 if ( clist->component == component &&
954 (f->ActionRequest == INSTALLSTATE_LOCAL ||
955 f->ActionRequest == INSTALLSTATE_SOURCE) )
957 TRACE("Saved by %s\n", debugstr_w(f->Feature));
958 component->hasLocalFeature = TRUE;
960 if (component->Attributes & msidbComponentAttributesOptional)
962 if (f->Attributes & msidbFeatureAttributesFavorSource)
963 msi_component_set_state(package, component, INSTALLSTATE_SOURCE);
964 else
965 msi_component_set_state(package, component, INSTALLSTATE_LOCAL);
967 else if (component->Attributes & msidbComponentAttributesSourceOnly)
968 msi_component_set_state(package, component, INSTALLSTATE_SOURCE);
969 else
970 msi_component_set_state(package, component, INSTALLSTATE_LOCAL);
975 TRACE("Result (%i): Component %s (Installed %i, Action %i, Request %i)\n",
976 newstate, debugstr_w(component->Component), component->Installed,
977 component->Action, component->ActionRequest);
981 UINT register_unique_action(MSIPACKAGE *package, LPCWSTR action)
983 UINT count;
984 LPWSTR *newbuf = NULL;
986 if (!package->script)
987 return FALSE;
989 TRACE("Registering Action %s as having fun\n",debugstr_w(action));
991 count = package->script->UniqueActionsCount;
992 package->script->UniqueActionsCount++;
993 if (count != 0)
994 newbuf = msi_realloc( package->script->UniqueActions,
995 package->script->UniqueActionsCount* sizeof(LPWSTR));
996 else
997 newbuf = msi_alloc( sizeof(LPWSTR));
999 newbuf[count] = strdupW(action);
1000 package->script->UniqueActions = newbuf;
1002 return ERROR_SUCCESS;
1005 BOOL check_unique_action(const MSIPACKAGE *package, LPCWSTR action)
1007 UINT i;
1009 if (!package->script)
1010 return FALSE;
1012 for (i = 0; i < package->script->UniqueActionsCount; i++)
1013 if (!strcmpW(package->script->UniqueActions[i],action))
1014 return TRUE;
1016 return FALSE;
1019 WCHAR* generate_error_string(MSIPACKAGE *package, UINT error, DWORD count, ... )
1021 static const WCHAR query[] = {'S','E','L','E','C','T',' ','`','M','e','s','s','a','g','e','`',' ','F','R','O','M',' ','`','E','r','r','o','r','`',' ','W','H','E','R','E',' ','`','E','r','r','o','r','`',' ','=',' ','%','i',0};
1023 MSIRECORD *rec;
1024 MSIRECORD *row;
1025 DWORD size = 0;
1026 DWORD i;
1027 va_list va;
1028 LPCWSTR str;
1029 LPWSTR data;
1031 row = MSI_QueryGetRecord(package->db, query, error);
1032 if (!row)
1033 return 0;
1035 rec = MSI_CreateRecord(count+2);
1037 str = MSI_RecordGetString(row,1);
1038 MSI_RecordSetStringW(rec,0,str);
1039 msiobj_release( &row->hdr );
1040 MSI_RecordSetInteger(rec,1,error);
1042 va_start(va,count);
1043 for (i = 0; i < count; i++)
1045 str = va_arg(va,LPCWSTR);
1046 MSI_RecordSetStringW(rec,(i+2),str);
1048 va_end(va);
1050 MSI_FormatRecordW(package,rec,NULL,&size);
1052 size++;
1053 data = msi_alloc(size*sizeof(WCHAR));
1054 if (size > 1)
1055 MSI_FormatRecordW(package,rec,data,&size);
1056 else
1057 data[0] = 0;
1058 msiobj_release( &rec->hdr );
1059 return data;