2 * Implementation of the Microsoft Installer (msi.dll)
4 * Copyright 2004 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #define NONAMELESSUNION
31 #include "wine/debug.h"
39 #include "wine/unicode.h"
42 WINE_DEFAULT_DEBUG_CHANNEL(msi);
45 * The MSVC headers define the MSIDBOPEN_* macros cast to LPCTSTR,
46 * which is a problem because LPCTSTR isn't defined when compiling wine.
47 * To work around this problem, we need to define LPCTSTR as LPCWSTR here,
48 * and make sure to only use it in W functions.
50 #define LPCTSTR LPCWSTR
52 static void MSI_FreePackage( MSIOBJECTHDR *arg)
54 MSIPACKAGE *package= (MSIPACKAGE*) arg;
57 msi_dialog_destroy( package->dialog );
58 ACTION_free_package_structures(package);
60 msiobj_release( &package->db->hdr );
63 static UINT clone_properties(MSIDATABASE *db)
65 MSIQUERY * view = NULL;
67 static const WCHAR CreateSql[] = {
68 'C','R','E','A','T','E',' ','T','A','B','L','E',' ','`','_','P','r','o',
69 'p','e','r','t','y','`',' ','(',' ','`','_','P','r','o','p','e','r','t',
70 'y','`',' ','C','H','A','R','(','5','6',')',' ','N','O','T',' ','N','U',
71 'L','L',',',' ','`','V','a','l','u','e','`',' ','C','H','A','R','(','9',
72 '8',')',' ','N','O','T',' ','N','U','L','L',' ','P','R','I','M','A','R',
73 'Y',' ','K','E','Y',' ','`','_','P','r','o','p','e','r','t','y','`',')',0};
74 static const WCHAR Query[] = {
75 'S','E','L','E','C','T',' ','*',' ',
76 'F','R','O','M',' ','`','P','r','o','p','e','r','t','y','`',0};
77 static const WCHAR Insert[] = {
78 'I','N','S','E','R','T',' ','i','n','t','o',' ',
79 '`','_','P','r','o','p','e','r','t','y','`',' ',
80 '(','`','_','P','r','o','p','e','r','t','y','`',',',
81 '`','V','a','l','u','e','`',')',' ',
82 'V','A','L','U','E','S',' ','(','?',',','?',')',0};
84 /* create the temporary properties table */
85 rc = MSI_DatabaseOpenViewW(db, CreateSql, &view);
86 if (rc != ERROR_SUCCESS)
88 rc = MSI_ViewExecute(view,0);
90 msiobj_release(&view->hdr);
91 if (rc != ERROR_SUCCESS)
94 /* clone the existing properties */
95 rc = MSI_DatabaseOpenViewW(db, Query, &view);
96 if (rc != ERROR_SUCCESS)
99 rc = MSI_ViewExecute(view, 0);
100 if (rc != ERROR_SUCCESS)
103 msiobj_release(&view->hdr);
111 rc = MSI_ViewFetch(view,&row);
112 if (rc != ERROR_SUCCESS)
115 rc = MSI_DatabaseOpenViewW(db,Insert,&view2);
116 if (rc!= ERROR_SUCCESS)
118 rc = MSI_ViewExecute(view2,row);
119 MSI_ViewClose(view2);
120 msiobj_release(&view2->hdr);
122 if (rc == ERROR_SUCCESS)
123 msiobj_release(&row->hdr);
126 msiobj_release(&view->hdr);
132 * There are a whole slew of these we need to set
135 http://msdn.microsoft.com/library/default.asp?url=/library/en-us/msi/setup/properties.asp
137 static VOID set_installer_properties(MSIPACKAGE *package)
141 OSVERSIONINFOA OSVersion;
144 WCHAR verstr[10], bufstr[20];
147 static const WCHAR cszbs[]={'\\',0};
148 static const WCHAR CFF[] =
149 {'C','o','m','m','o','n','F','i','l','e','s','F','o','l','d','e','r',0};
150 static const WCHAR PFF[] =
151 {'P','r','o','g','r','a','m','F','i','l','e','s','F','o','l','d','e','r',0};
152 static const WCHAR CADF[] =
153 {'C','o','m','m','o','n','A','p','p','D','a','t','a','F','o','l','d','e','r',0};
154 static const WCHAR FaF[] =
155 {'F','a','v','o','r','i','t','e','s','F','o','l','d','e','r',0};
156 static const WCHAR FoF[] =
157 {'F','o','n','t','s','F','o','l','d','e','r',0};
158 static const WCHAR SendTF[] =
159 {'S','e','n','d','T','o','F','o','l','d','e','r',0};
160 static const WCHAR SMF[] =
161 {'S','t','a','r','t','M','e','n','u','F','o','l','d','e','r',0};
162 static const WCHAR StF[] =
163 {'S','t','a','r','t','u','p','F','o','l','d','e','r',0};
164 static const WCHAR TemplF[] =
165 {'T','e','m','p','l','a','t','e','F','o','l','d','e','r',0};
166 static const WCHAR DF[] =
167 {'D','e','s','k','t','o','p','F','o','l','d','e','r',0};
168 static const WCHAR PMF[] =
169 {'P','r','o','g','r','a','m','M','e','n','u','F','o','l','d','e','r',0};
170 static const WCHAR ATF[] =
171 {'A','d','m','i','n','T','o','o','l','s','F','o','l','d','e','r',0};
172 static const WCHAR ADF[] =
173 {'A','p','p','D','a','t','a','F','o','l','d','e','r',0};
174 static const WCHAR SF[] =
175 {'S','y','s','t','e','m','F','o','l','d','e','r',0};
176 static const WCHAR SF16[] =
177 {'S','y','s','t','e','m','1','6','F','o','l','d','e','r',0};
178 static const WCHAR LADF[] =
179 {'L','o','c','a','l','A','p','p','D','a','t','a','F','o','l','d','e','r',0};
180 static const WCHAR MPF[] =
181 {'M','y','P','i','c','t','u','r','e','s','F','o','l','d','e','r',0};
182 static const WCHAR PF[] =
183 {'P','e','r','s','o','n','a','l','F','o','l','d','e','r',0};
184 static const WCHAR WF[] =
185 {'W','i','n','d','o','w','s','F','o','l','d','e','r',0};
186 static const WCHAR WV[] =
187 {'W','i','n','d','o','w','s','V','o','l','u','m','e',0};
188 static const WCHAR TF[]=
189 {'T','e','m','p','F','o','l','d','e','r',0};
190 static const WCHAR szAdminUser[] =
191 {'A','d','m','i','n','U','s','e','r',0};
192 static const WCHAR szPriv[] =
193 {'P','r','i','v','i','l','e','g','e','d',0};
194 static const WCHAR szOne[] =
196 static const WCHAR v9x[] = { 'V','e','r','s','i','o','n','9','X',0 };
197 static const WCHAR vNT[] = { 'V','e','r','s','i','o','n','N','T',0 };
198 static const WCHAR szFormat[] = {'%','l','i',0};
199 static const WCHAR szWinBuild[] =
200 {'W','i','n','d','o','w','s','B','u','i','l','d', 0 };
201 static const WCHAR szSPL[] =
202 {'S','e','r','v','i','c','e','P','a','c','k','L','e','v','e','l',0 };
203 static const WCHAR szSix[] = {'6',0 };
205 static const WCHAR szVersionMsi[] = { 'V','e','r','s','i','o','n','M','s','i',0 };
206 static const WCHAR szPhysicalMemory[] = { 'P','h','y','s','i','c','a','l','M','e','m','o','r','y',0 };
207 static const WCHAR szFormat2[] = {'%','l','i','.','%','l','i',0};
208 /* Screen properties */
209 static const WCHAR szScreenX[] = {'S','c','r','e','e','n','X',0};
210 static const WCHAR szScreenY[] = {'S','c','r','e','e','n','Y',0};
211 static const WCHAR szColorBits[] = {'C','o','l','o','r','B','i','t','s',0};
212 static const WCHAR szScreenFormat[] = {'%','d',0};
215 * Other things I notice set
238 SHGetFolderPathW(NULL,CSIDL_PROGRAM_FILES_COMMON,NULL,0,pth);
240 MSI_SetPropertyW(package, CFF, pth);
242 SHGetFolderPathW(NULL,CSIDL_PROGRAM_FILES,NULL,0,pth);
244 MSI_SetPropertyW(package, PFF, pth);
246 SHGetFolderPathW(NULL,CSIDL_COMMON_APPDATA,NULL,0,pth);
248 MSI_SetPropertyW(package, CADF, pth);
250 SHGetFolderPathW(NULL,CSIDL_FAVORITES,NULL,0,pth);
252 MSI_SetPropertyW(package, FaF, pth);
254 SHGetFolderPathW(NULL,CSIDL_FONTS,NULL,0,pth);
256 MSI_SetPropertyW(package, FoF, pth);
258 SHGetFolderPathW(NULL,CSIDL_SENDTO,NULL,0,pth);
260 MSI_SetPropertyW(package, SendTF, pth);
262 SHGetFolderPathW(NULL,CSIDL_STARTMENU,NULL,0,pth);
264 MSI_SetPropertyW(package, SMF, pth);
266 SHGetFolderPathW(NULL,CSIDL_STARTUP,NULL,0,pth);
268 MSI_SetPropertyW(package, StF, pth);
270 SHGetFolderPathW(NULL,CSIDL_TEMPLATES,NULL,0,pth);
272 MSI_SetPropertyW(package, TemplF, pth);
274 SHGetFolderPathW(NULL,CSIDL_DESKTOP,NULL,0,pth);
276 MSI_SetPropertyW(package, DF, pth);
278 SHGetFolderPathW(NULL,CSIDL_PROGRAMS,NULL,0,pth);
280 MSI_SetPropertyW(package, PMF, pth);
282 SHGetFolderPathW(NULL,CSIDL_ADMINTOOLS,NULL,0,pth);
284 MSI_SetPropertyW(package, ATF, pth);
286 SHGetFolderPathW(NULL,CSIDL_APPDATA,NULL,0,pth);
288 MSI_SetPropertyW(package, ADF, pth);
290 SHGetFolderPathW(NULL,CSIDL_SYSTEM,NULL,0,pth);
292 MSI_SetPropertyW(package, SF, pth);
293 MSI_SetPropertyW(package, SF16, pth);
295 SHGetFolderPathW(NULL,CSIDL_LOCAL_APPDATA,NULL,0,pth);
297 MSI_SetPropertyW(package, LADF, pth);
299 SHGetFolderPathW(NULL,CSIDL_MYPICTURES,NULL,0,pth);
301 MSI_SetPropertyW(package, MPF, pth);
303 SHGetFolderPathW(NULL,CSIDL_PERSONAL,NULL,0,pth);
305 MSI_SetPropertyW(package, PF, pth);
307 SHGetFolderPathW(NULL,CSIDL_WINDOWS,NULL,0,pth);
309 MSI_SetPropertyW(package, WF, pth);
311 /* Physical Memory is specified in MB. Using total amount. */
312 msex.dwLength = sizeof(msex);
313 GlobalMemoryStatusEx( &msex );
314 sprintfW( bufstr, szScreenFormat, (int)(msex.ullTotalPhys/1024/1024));
315 MSI_SetPropertyW(package, szPhysicalMemory, bufstr);
317 SHGetFolderPathW(NULL,CSIDL_WINDOWS,NULL,0,pth);
318 ptr = strchrW(pth,'\\');
321 MSI_SetPropertyW(package, WV, pth);
323 GetTempPathW(MAX_PATH,pth);
324 MSI_SetPropertyW(package, TF, pth);
327 /* in a wine environment the user is always admin and privileged */
328 MSI_SetPropertyW(package,szAdminUser,szOne);
329 MSI_SetPropertyW(package,szPriv,szOne);
331 /* set the os things */
332 OSVersion.dwOSVersionInfoSize = sizeof(OSVERSIONINFOA);
333 GetVersionExA(&OSVersion);
334 verval = OSVersion.dwMinorVersion+OSVersion.dwMajorVersion*100;
335 sprintfW(verstr,szFormat,verval);
336 switch (OSVersion.dwPlatformId)
338 case VER_PLATFORM_WIN32_WINDOWS:
339 MSI_SetPropertyW(package,v9x,verstr);
341 case VER_PLATFORM_WIN32_NT:
342 MSI_SetPropertyW(package,vNT,verstr);
345 sprintfW(verstr,szFormat,OSVersion.dwBuildNumber);
346 MSI_SetPropertyW(package,szWinBuild,verstr);
347 /* just fudge this */
348 MSI_SetPropertyW(package,szSPL,szSix);
350 sprintfW( bufstr, szFormat2, MSI_MAJORVERSION, MSI_MINORVERSION);
351 MSI_SetPropertyW( package, szVersionMsi, bufstr );
353 /* Screen properties. */
355 sprintfW( bufstr, szScreenFormat, GetDeviceCaps( dc, HORZRES ) );
356 MSI_SetPropertyW( package, szScreenX, bufstr );
357 sprintfW( bufstr, szScreenFormat, GetDeviceCaps( dc, VERTRES ));
358 MSI_SetPropertyW( package, szScreenY, bufstr );
359 sprintfW( bufstr, szScreenFormat, GetDeviceCaps( dc, BITSPIXEL ));
360 MSI_SetPropertyW( package, szColorBits, bufstr );
364 MSIPACKAGE *MSI_CreatePackage( MSIDATABASE *db )
366 static const WCHAR szLevel[] = { 'U','I','L','e','v','e','l',0 };
367 static const WCHAR szpi[] = {'%','i',0};
368 MSIPACKAGE *package = NULL;
373 package = alloc_msiobject( MSIHANDLETYPE_PACKAGE, sizeof (MSIPACKAGE),
377 msiobj_addref( &db->hdr );
380 package->features = NULL;
381 package->folders = NULL;
382 package->components = NULL;
383 package->files = NULL;
384 package->loaded_features = 0;
385 package->loaded_folders = 0;
386 package->loaded_components= 0;
387 package->loaded_files = 0;
388 package->ActionFormat = NULL;
389 package->LastAction = NULL;
390 package->dialog = NULL;
391 package->next_dialog = NULL;
392 list_init( &package->subscriptions );
394 /* OK, here is where we do a slew of things to the database to
395 * prep for all that is to come as a package */
397 clone_properties(db);
398 set_installer_properties(package);
399 sprintfW(uilevel,szpi,gUILevel);
400 MSI_SetPropertyW(package, szLevel, uilevel);
406 UINT MSI_OpenPackageW(LPCWSTR szPackage, MSIPACKAGE **pPackage)
408 MSIDATABASE *db = NULL;
412 TRACE("%s %p\n", debugstr_w(szPackage), pPackage);
414 if( szPackage[0] == '#' )
416 handle = atoiW(&szPackage[1]);
417 db = msihandle2msiinfo( handle, MSIHANDLETYPE_DATABASE );
419 return ERROR_INVALID_HANDLE;
423 UINT r = MSI_OpenDatabaseW(szPackage, MSIDBOPEN_READONLY, &db);
424 if( r != ERROR_SUCCESS )
428 package = MSI_CreatePackage( db );
429 msiobj_release( &db->hdr );
431 return ERROR_FUNCTION_FAILED;
434 * FIXME: I don't think this is right. Maybe we should be storing the
435 * name of the database in the MSIDATABASE structure and fetching this
436 * info from there, or maybe this is only relevant to cached databases.
438 if( szPackage[0] != '#' )
440 static const WCHAR OriginalDatabase[] =
441 {'O','r','i','g','i','n','a','l','D','a','t','a','b','a','s','e',0};
442 static const WCHAR Database[] = {'D','A','T','A','B','A','S','E',0};
444 MSI_SetPropertyW( package, OriginalDatabase, szPackage );
445 MSI_SetPropertyW( package, Database, szPackage );
450 return ERROR_SUCCESS;
453 UINT WINAPI MsiOpenPackageExW(LPCWSTR szPackage, DWORD dwOptions, MSIHANDLE *phPackage)
455 MSIPACKAGE *package = NULL;
457 WCHAR path[MAX_PATH];
458 WCHAR filename[MAX_PATH];
459 static const WCHAR szMSI[] = {'M','S','I',0};
461 TRACE("%s %08lx %p\n",debugstr_w(szPackage), dwOptions, phPackage);
463 /* copy the msi file to a temp file to pervent locking a CD
464 * with a multi disc install
466 if( szPackage[0] == '#' )
467 strcpyW(filename,szPackage);
470 GetTempPathW(MAX_PATH, path);
471 GetTempFileNameW(path, szMSI, 0, filename);
473 CopyFileW(szPackage, filename, FALSE);
475 TRACE("Opening relocated package %s\n",debugstr_w(filename));
479 FIXME("dwOptions %08lx not supported\n", dwOptions);
481 ret = MSI_OpenPackageW( filename, &package);
482 if( ret == ERROR_SUCCESS )
484 *phPackage = alloc_msihandle( &package->hdr );
485 msiobj_release( &package->hdr );
488 if( szPackage[0] != '#' )
489 DeleteFileW(filename);
494 UINT WINAPI MsiOpenPackageW(LPCWSTR szPackage, MSIHANDLE *phPackage)
496 return MsiOpenPackageExW( szPackage, 0, phPackage );
499 UINT WINAPI MsiOpenPackageExA(LPCSTR szPackage, DWORD dwOptions, MSIHANDLE *phPackage)
501 LPWSTR szwPack = NULL;
506 szwPack = strdupAtoW( szPackage );
508 return ERROR_OUTOFMEMORY;
511 ret = MsiOpenPackageExW( szwPack, dwOptions, phPackage );
513 HeapFree( GetProcessHeap(), 0, szwPack );
518 UINT WINAPI MsiOpenPackageA(LPCSTR szPackage, MSIHANDLE *phPackage)
520 return MsiOpenPackageExA( szPackage, 0, phPackage );
523 MSIHANDLE WINAPI MsiGetActiveDatabase(MSIHANDLE hInstall)
526 MSIHANDLE handle = 0;
528 TRACE("(%ld)\n",hInstall);
530 package = msihandle2msiinfo( hInstall, MSIHANDLETYPE_PACKAGE);
533 handle = alloc_msihandle( &package->db->hdr );
534 msiobj_release( &package->hdr );
540 INT MSI_ProcessMessage( MSIPACKAGE *package, INSTALLMESSAGE eMessageType,
546 DWORD total_size = 0;
553 TRACE("%x \n",eMessageType);
556 if ((eMessageType & 0xff000000) == INSTALLMESSAGE_ERROR)
557 log_type |= INSTALLLOGMODE_ERROR;
558 if ((eMessageType & 0xff000000) == INSTALLMESSAGE_WARNING)
559 log_type |= INSTALLLOGMODE_WARNING;
560 if ((eMessageType & 0xff000000) == INSTALLMESSAGE_USER)
561 log_type |= INSTALLLOGMODE_USER;
562 if ((eMessageType & 0xff000000) == INSTALLMESSAGE_INFO)
563 log_type |= INSTALLLOGMODE_INFO;
564 if ((eMessageType & 0xff000000) == INSTALLMESSAGE_COMMONDATA)
565 log_type |= INSTALLLOGMODE_COMMONDATA;
566 if ((eMessageType & 0xff000000) == INSTALLMESSAGE_ACTIONSTART)
567 log_type |= INSTALLLOGMODE_ACTIONSTART;
568 if ((eMessageType & 0xff000000) == INSTALLMESSAGE_ACTIONDATA)
569 log_type |= INSTALLLOGMODE_ACTIONDATA;
571 if ((eMessageType & 0xff000000) == INSTALLMESSAGE_PROGRESS)
574 message = HeapAlloc(GetProcessHeap(),0,1*sizeof (WCHAR));
576 msg_field = MSI_RecordGetFieldCount(record);
577 for (i = 1; i <= msg_field; i++)
581 const static WCHAR format[] = { '%','i',':',' ',0};
582 const static WCHAR space[] = { ' ',0};
584 MSI_RecordGetStringW(record,i,NULL,&sz);
586 total_size+=sz*sizeof(WCHAR);
587 tmp = HeapAlloc(GetProcessHeap(),0,sz*sizeof(WCHAR));
588 message = HeapReAlloc(GetProcessHeap(),0,message,total_size*sizeof (WCHAR));
590 MSI_RecordGetStringW(record,i,tmp,&sz);
594 sprintfW(number,format,i);
595 strcatW(message,number);
597 strcatW(message,tmp);
599 strcatW(message,space);
601 HeapFree(GetProcessHeap(),0,tmp);
604 TRACE("(%p %lx %lx %s)\n",gUIHandlerA, gUIFilter, log_type,
605 debugstr_w(message));
607 /* convert it to ASCII */
608 len = WideCharToMultiByte( CP_ACP, 0, message, -1,
609 NULL, 0, NULL, NULL );
610 msg = HeapAlloc( GetProcessHeap(), 0, len );
611 WideCharToMultiByte( CP_ACP, 0, message, -1,
612 msg, len, NULL, NULL );
614 if (gUIHandlerA && (gUIFilter & log_type))
616 rc = gUIHandlerA(gUIContext,eMessageType,msg);
619 if ((!rc) && (gszLogFile[0]) && !((eMessageType & 0xff000000) ==
620 INSTALLMESSAGE_PROGRESS))
623 HANDLE log_file = CreateFileW(gszLogFile,GENERIC_WRITE, 0, NULL,
624 OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
626 if (log_file != INVALID_HANDLE_VALUE)
628 SetFilePointer(log_file,0, NULL, FILE_END);
629 WriteFile(log_file,msg,strlen(msg),&write,NULL);
630 WriteFile(log_file,"\n",1,&write,NULL);
631 CloseHandle(log_file);
634 HeapFree( GetProcessHeap(), 0, msg );
636 HeapFree(GetProcessHeap(),0,message);
637 return ERROR_SUCCESS;
640 INT WINAPI MsiProcessMessage( MSIHANDLE hInstall, INSTALLMESSAGE eMessageType,
643 UINT ret = ERROR_INVALID_HANDLE;
644 MSIPACKAGE *package = NULL;
645 MSIRECORD *record = NULL;
647 package = msihandle2msiinfo( hInstall, MSIHANDLETYPE_PACKAGE );
649 return ERROR_INVALID_HANDLE;
651 record = msihandle2msiinfo( hRecord, MSIHANDLETYPE_RECORD );
655 ret = MSI_ProcessMessage( package, eMessageType, record );
658 msiobj_release( &package->hdr );
660 msiobj_release( &record->hdr );
666 UINT WINAPI MsiSetPropertyA( MSIHANDLE hInstall, LPCSTR szName, LPCSTR szValue)
668 LPWSTR szwName = NULL, szwValue = NULL;
669 UINT hr = ERROR_INSTALL_FAILURE;
673 szwName = strdupAtoW( szName );
680 szwValue = strdupAtoW( szValue );
685 hr = MsiSetPropertyW( hInstall, szwName, szwValue);
688 HeapFree( GetProcessHeap(), 0, szwName );
689 HeapFree( GetProcessHeap(), 0, szwValue );
694 UINT MSI_SetPropertyW( MSIPACKAGE *package, LPCWSTR szName, LPCWSTR szValue)
700 static const WCHAR Insert[]=
701 {'I','N','S','E','R','T',' ','i','n','t','o',' ','`','_','P','r','o','p'
702 ,'e','r','t','y','`',' ','(','`','_','P','r','o','p','e','r','t','y','`'
703 ,',','`','V','a','l','u','e','`',')',' ','V','A','L','U','E','S'
704 ,' ','(','?',',','?',')',0};
705 static const WCHAR Update[]=
706 {'U','P','D','A','T','E',' ','_','P','r','o','p','e'
707 ,'r','t','y',' ','s','e','t',' ','`','V','a','l','u','e','`',' ','='
708 ,' ','?',' ','w','h','e','r','e',' ','`','_','P','r','o','p'
709 ,'e','r','t','y','`',' ','=',' ','\'','%','s','\'',0};
712 TRACE("Setting property (%s %s)\n",debugstr_w(szName),
713 debugstr_w(szValue));
715 rc = MSI_GetPropertyW(package,szName,0,&sz);
716 if (rc==ERROR_MORE_DATA || rc == ERROR_SUCCESS)
718 sprintfW(Query,Update,szName);
720 row = MSI_CreateRecord(1);
721 MSI_RecordSetStringW(row,1,szValue);
726 strcpyW(Query,Insert);
728 row = MSI_CreateRecord(2);
729 MSI_RecordSetStringW(row,1,szName);
730 MSI_RecordSetStringW(row,2,szValue);
734 rc = MSI_DatabaseOpenViewW(package->db,Query,&view);
735 if (rc!= ERROR_SUCCESS)
737 msiobj_release(&row->hdr);
741 rc = MSI_ViewExecute(view,row);
743 msiobj_release(&row->hdr);
745 msiobj_release(&view->hdr);
750 UINT WINAPI MsiSetPropertyW( MSIHANDLE hInstall, LPCWSTR szName, LPCWSTR szValue)
756 return ERROR_INVALID_PARAMETER;
758 return ERROR_INVALID_PARAMETER;
760 package = msihandle2msiinfo( hInstall, MSIHANDLETYPE_PACKAGE);
762 return ERROR_INVALID_HANDLE;
763 ret = MSI_SetPropertyW( package, szName, szValue);
764 msiobj_release( &package->hdr );
768 static UINT MSI_GetPropertyRow(MSIPACKAGE *package, LPCWSTR szName, MSIRECORD **row)
772 static const WCHAR select[]=
773 {'S','E','L','E','C','T',' ','`','V','a','l','u','e','`',' ',
774 'F','R','O','M',' ' ,'`','_','P','r','o','p','e','r','t','y','`',
775 ' ','W','H','E','R','E',' ' ,'`','_','P','r','o','p','e','r','t','y','`',
776 '=','\'','%','s','\'',0};
780 return ERROR_INVALID_PARAMETER;
782 sz = sizeof select + strlenW(szName)*sizeof(WCHAR);
783 query = HeapAlloc(GetProcessHeap(), 0, sz);
784 sprintfW(query,select,szName);
786 rc = MSI_DatabaseOpenViewW(package->db, query, &view);
787 HeapFree(GetProcessHeap(), 0, query);
788 if (rc == ERROR_SUCCESS)
790 rc = MSI_ViewExecute(view, 0);
791 if (rc == ERROR_SUCCESS)
792 rc = MSI_ViewFetch(view,row);
795 msiobj_release(&view->hdr);
801 UINT MSI_GetPropertyW(MSIPACKAGE *package, LPCWSTR szName,
802 LPWSTR szValueBuf, DWORD* pchValueBuf)
807 rc = MSI_GetPropertyRow(package, szName, &row);
809 if (*pchValueBuf > 0)
812 if (rc == ERROR_SUCCESS)
814 rc = MSI_RecordGetStringW(row,1,szValueBuf,pchValueBuf);
815 msiobj_release(&row->hdr);
818 if (rc == ERROR_SUCCESS)
819 TRACE("returning %s for property %s\n", debugstr_w(szValueBuf),
821 else if (rc == ERROR_MORE_DATA)
822 TRACE("need %li sized buffer for %s\n", *pchValueBuf,
827 TRACE("property %s not found\n", debugstr_w(szName));
833 UINT MSI_GetPropertyA(MSIPACKAGE *package, LPCSTR szName,
834 LPSTR szValueBuf, DWORD* pchValueBuf)
838 LPWSTR szwName = NULL;
840 if (*pchValueBuf > 0)
845 szwName = strdupAtoW( szName );
847 return ERROR_NOT_ENOUGH_MEMORY;
850 rc = MSI_GetPropertyRow(package, szwName, &row);
851 if (rc == ERROR_SUCCESS)
853 rc = MSI_RecordGetStringA(row,1,szValueBuf,pchValueBuf);
854 msiobj_release(&row->hdr);
857 if (rc == ERROR_SUCCESS)
858 TRACE("returning %s for property %s\n", debugstr_a(szValueBuf),
860 else if (rc == ERROR_MORE_DATA)
861 TRACE("need %ld sized buffer for %s\n", *pchValueBuf,
866 TRACE("property not found\n");
868 HeapFree( GetProcessHeap(), 0, szwName );
873 UINT WINAPI MsiGetPropertyA(MSIHANDLE hInstall, LPCSTR szName, LPSTR szValueBuf, DWORD* pchValueBuf)
878 TRACE("%lu %s %lu\n", hInstall, debugstr_a(szName), *pchValueBuf);
881 return ERROR_INVALID_HANDLE;
883 return ERROR_INVALID_PARAMETER;
884 if (NULL != szValueBuf && NULL == pchValueBuf)
885 return ERROR_INVALID_PARAMETER;
887 package = msihandle2msiinfo( hInstall, MSIHANDLETYPE_PACKAGE);
889 return ERROR_INVALID_HANDLE;
890 ret = MSI_GetPropertyA(package, szName, szValueBuf, pchValueBuf );
891 msiobj_release( &package->hdr );
893 /* MsiGetProperty does not return error codes on missing properties */
894 if (ret!= ERROR_MORE_DATA)
895 return ERROR_SUCCESS;
901 UINT WINAPI MsiGetPropertyW(MSIHANDLE hInstall, LPCWSTR szName,
902 LPWSTR szValueBuf, DWORD* pchValueBuf)
908 return ERROR_INVALID_HANDLE;
910 return ERROR_INVALID_PARAMETER;
911 if (NULL != szValueBuf && NULL == pchValueBuf)
912 return ERROR_INVALID_PARAMETER;
914 package = msihandle2msiinfo( hInstall, MSIHANDLETYPE_PACKAGE);
916 return ERROR_INVALID_HANDLE;
917 ret = MSI_GetPropertyW(package, szName, szValueBuf, pchValueBuf );
918 msiobj_release( &package->hdr );
920 /* MsiGetProperty does not return error codes on missing properties */
921 if (ret!= ERROR_MORE_DATA)
922 return ERROR_SUCCESS;