- build a standard Wine list of appids instead of using an array
[wine] / dlls / msi / msipriv.h
1 /*
2  * Implementation of the Microsoft Installer (msi.dll)
3  *
4  * Copyright 2002-2005 Mike McCormack for CodeWeavers
5  *
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.
10  *
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.
15  *
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
19  */
20
21 #ifndef __WINE_MSI_PRIVATE__
22 #define __WINE_MSI_PRIVATE__
23
24 #include <stdarg.h>
25
26 #include "windef.h"
27 #include "winbase.h"
28 #include "msi.h"
29 #include "msiquery.h"
30 #include "objbase.h"
31 #include "objidl.h"
32 #include "winnls.h"
33 #include "wine/list.h"
34
35 #define MSI_DATASIZEMASK 0x00ff
36 #define MSITYPE_VALID    0x0100
37 #define MSITYPE_STRING   0x0800
38 #define MSITYPE_NULLABLE 0x1000
39 #define MSITYPE_KEY      0x2000
40
41 #define MSITYPE_BINARY 0x8900
42
43 struct tagMSITABLE;
44 typedef struct tagMSITABLE MSITABLE;
45
46 struct string_table;
47 typedef struct string_table string_table;
48
49 struct tagMSIOBJECTHDR;
50 typedef struct tagMSIOBJECTHDR MSIOBJECTHDR;
51
52 typedef VOID (*msihandledestructor)( MSIOBJECTHDR * );
53
54 struct tagMSIOBJECTHDR
55 {
56     UINT magic;
57     UINT type;
58     LONG refcount;
59     msihandledestructor destructor;
60     struct tagMSIOBJECTHDR *next;
61     struct tagMSIOBJECTHDR *prev;
62 };
63
64 typedef struct tagMSIDATABASE
65 {
66     MSIOBJECTHDR hdr;
67     IStorage *storage;
68     string_table *strings;
69     LPCWSTR mode;
70     MSITABLE *first_table, *last_table;
71 } MSIDATABASE;
72
73 typedef struct tagMSIVIEW MSIVIEW;
74
75 typedef struct tagMSIQUERY
76 {
77     MSIOBJECTHDR hdr;
78     MSIVIEW *view;
79     UINT row;
80     MSIDATABASE *db;
81     struct list mem;
82 } MSIQUERY;
83
84 /* maybe we can use a Variant instead of doing it ourselves? */
85 typedef struct tagMSIFIELD
86 {
87     UINT type;
88     union
89     {
90         INT iVal;
91         LPWSTR szwVal;
92         IStream *stream;
93     } u;
94 } MSIFIELD;
95
96 typedef struct tagMSIRECORD
97 {
98     MSIOBJECTHDR hdr;
99     UINT count;       /* as passed to MsiCreateRecord */
100     MSIFIELD fields[1]; /* nb. array size is count+1 */
101 } MSIRECORD;
102
103 typedef struct tagMSIVIEWOPS
104 {
105     /*
106      * fetch_int - reads one integer from {row,col} in the table
107      *
108      *  This function should be called after the execute method.
109      *  Data returned by the function should not change until 
110      *   close or delete is called.
111      *  To get a string value, query the database's string table with
112      *   the integer value returned from this function.
113      */
114     UINT (*fetch_int)( struct tagMSIVIEW *, UINT row, UINT col, UINT *val );
115
116     /*
117      * fetch_int - reads one integer from {row,col} in the table
118      *
119      *  This function is similar to fetch_int, except fetches a
120      *    stream instead of an integer.
121      */
122     UINT (*fetch_stream)( struct tagMSIVIEW *, UINT row, UINT col, IStream **stm );
123
124     /*
125      * get_int - sets one integer at {row,col} in the table
126      *
127      *  Similar semantics to fetch_int
128      */
129     UINT (*set_int)( struct tagMSIVIEW *, UINT row, UINT col, UINT val );
130
131     /*
132      * Inserts a new, blank row into the database
133      *  *row receives the number of the new row
134      */
135     UINT (*insert_row)( struct tagMSIVIEW *, UINT *row );
136
137     /*
138      * execute - loads the underlying data into memory so it can be read
139      */
140     UINT (*execute)( struct tagMSIVIEW *, MSIRECORD * );
141
142     /*
143      * close - clears the data read by execute from memory
144      */
145     UINT (*close)( struct tagMSIVIEW * );
146
147     /*
148      * get_dimensions - returns the number of rows or columns in a table.
149      *
150      *  The number of rows can only be queried after the execute method
151      *   is called. The number of columns can be queried at any time.
152      */
153     UINT (*get_dimensions)( struct tagMSIVIEW *, UINT *rows, UINT *cols );
154
155     /*
156      * get_column_info - returns the name and type of a specific column
157      *
158      *  The name is HeapAlloc'ed by this function and should be freed by
159      *   the caller.
160      *  The column information can be queried at any time.
161      */
162     UINT (*get_column_info)( struct tagMSIVIEW *, UINT n, LPWSTR *name, UINT *type );
163
164     /*
165      * modify - not yet implemented properly
166      */
167     UINT (*modify)( struct tagMSIVIEW *, MSIMODIFY, MSIRECORD * );
168
169     /*
170      * delete - destroys the structure completely
171      */
172     UINT (*delete)( struct tagMSIVIEW * );
173
174 } MSIVIEWOPS;
175
176 struct tagMSIVIEW
177 {
178     MSIOBJECTHDR hdr;
179     MSIVIEWOPS   *ops;
180 };
181
182 struct msi_dialog_tag;
183 typedef struct msi_dialog_tag msi_dialog;
184
185 typedef struct tagMSIPACKAGE
186 {
187     MSIOBJECTHDR hdr;
188     MSIDATABASE *db;
189     struct list components;
190     struct list features;
191     struct list files;
192     struct list folders;
193     LPWSTR ActionFormat;
194     LPWSTR LastAction;
195
196     struct tagMSICLASS *classes;
197     UINT loaded_classes;
198     struct tagMSIEXTENSION *extensions;
199     UINT loaded_extensions;
200     struct tagMSIPROGID *progids;
201     UINT loaded_progids;
202     struct tagMSIVERB *verbs;
203     UINT loaded_verbs;
204     struct tagMSIMIME *mimes;
205     UINT loaded_mimes;
206     struct list appids;
207     
208     struct tagMSISCRIPT *script;
209
210     struct tagMSIRUNNINGACTION *RunningAction;
211     UINT RunningActionCount;
212
213     LPWSTR PackagePath;
214     LPWSTR msiFilePath;
215     LPWSTR ProductCode;
216
217     UINT CurrentInstallState;
218     msi_dialog *dialog;
219     LPWSTR next_dialog;
220     
221     struct list subscriptions;
222 } MSIPACKAGE;
223
224 typedef struct tagMSIPREVIEW
225 {
226     MSIOBJECTHDR hdr;
227     MSIPACKAGE *package;
228     msi_dialog *dialog;
229 } MSIPREVIEW;
230
231 #define MSIHANDLETYPE_ANY 0
232 #define MSIHANDLETYPE_DATABASE 1
233 #define MSIHANDLETYPE_SUMMARYINFO 2
234 #define MSIHANDLETYPE_VIEW 3
235 #define MSIHANDLETYPE_RECORD 4
236 #define MSIHANDLETYPE_PACKAGE 5
237 #define MSIHANDLETYPE_PREVIEW 6
238
239 #define MSI_MAJORVERSION 2
240 #define MSI_MINORVERSION 0
241 #define MSI_BUILDNUMBER 2600
242
243 #define GUID_SIZE 39
244
245 #define MSIHANDLE_MAGIC 0x4d434923
246 #define MSIMAXHANDLES 0xf0
247
248 #define MSISUMINFO_OFFSET 0x30LL
249
250 DEFINE_GUID(CLSID_IMsiServer,   0x000C101C,0x0000,0x0000,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x46);
251 DEFINE_GUID(CLSID_IMsiServerX1, 0x000C103E,0x0000,0x0000,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x46);
252 DEFINE_GUID(CLSID_IMsiServerX2, 0x000C1090,0x0000,0x0000,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x46);
253 DEFINE_GUID(CLSID_IMsiServerX3, 0x000C1094,0x0000,0x0000,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x46);
254
255 DEFINE_GUID(CLSID_IMsiServerMessage, 0x000C101D,0x0000,0x0000,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x46);
256
257
258 /* handle functions */
259 extern void *msihandle2msiinfo(MSIHANDLE handle, UINT type);
260 extern MSIHANDLE alloc_msihandle( MSIOBJECTHDR * );
261 extern void *alloc_msiobject(UINT type, UINT size, msihandledestructor destroy );
262 extern void msiobj_addref(MSIOBJECTHDR *);
263 extern int msiobj_release(MSIOBJECTHDR *);
264 extern void msiobj_lock(MSIOBJECTHDR *);
265 extern void msiobj_unlock(MSIOBJECTHDR *);
266 extern MSIHANDLE msiobj_findhandle( MSIOBJECTHDR *hdr );
267
268 /* add this table to the list of cached tables in the database */
269 extern void add_table(MSIDATABASE *db, MSITABLE *table);
270 extern void remove_table( MSIDATABASE *db, MSITABLE *table );
271 extern void free_table( MSIDATABASE *db, MSITABLE *table );
272 extern void free_cached_tables( MSIDATABASE *db );
273 extern UINT find_cached_table(MSIDATABASE *db, LPCWSTR name, MSITABLE **table);
274 extern UINT get_table(MSIDATABASE *db, LPCWSTR name, MSITABLE **table);
275 extern UINT load_string_table( MSIDATABASE *db );
276 extern UINT MSI_CommitTables( MSIDATABASE *db );
277 extern HRESULT init_string_table( IStorage *stg );
278
279
280 /* string table functions */
281 extern BOOL msi_addstring( string_table *st, UINT string_no, const CHAR *data, int len, UINT refcount );
282 extern BOOL msi_addstringW( string_table *st, UINT string_no, const WCHAR *data, int len, UINT refcount );
283 extern UINT msi_id2stringW( string_table *st, UINT string_no, LPWSTR buffer, UINT *sz );
284 extern UINT msi_id2stringA( string_table *st, UINT string_no, LPSTR buffer, UINT *sz );
285
286 extern LPWSTR MSI_makestring( MSIDATABASE *db, UINT stringid);
287 extern UINT msi_string2idW( string_table *st, LPCWSTR buffer, UINT *id );
288 extern UINT msi_string2idA( string_table *st, LPCSTR str, UINT *id );
289 extern string_table *msi_init_stringtable( int entries, UINT codepage );
290 extern VOID msi_destroy_stringtable( string_table *st );
291 extern UINT msi_string_count( string_table *st );
292 extern UINT msi_id_refcount( string_table *st, UINT i );
293 extern UINT msi_string_totalsize( string_table *st, UINT *last );
294 extern UINT msi_strcmp( string_table *st, UINT lval, UINT rval, UINT *res );
295 extern const WCHAR *msi_string_lookup_id( string_table *st, UINT id );
296 extern UINT msi_string_get_codepage( string_table *st );
297
298
299 extern UINT VIEW_find_column( MSIVIEW *view, LPCWSTR name, UINT *n );
300
301 extern BOOL TABLE_Exists( MSIDATABASE *db, LPWSTR name );
302
303 extern UINT read_raw_stream_data( MSIDATABASE*, LPCWSTR stname,
304                               USHORT **pdata, UINT *psz );
305
306 /* action internals */
307 extern UINT ACTION_DoTopLevelINSTALL( MSIPACKAGE *, LPCWSTR, LPCWSTR, LPCWSTR );
308 extern void ACTION_free_package_structures( MSIPACKAGE* );
309 extern UINT ACTION_DialogBox( MSIPACKAGE*, LPCWSTR);
310
311 /* record internals */
312 extern UINT MSI_RecordSetIStream( MSIRECORD *, unsigned int, IStream *);
313 extern UINT MSI_RecordGetIStream( MSIRECORD *, unsigned int, IStream **);
314 extern const WCHAR *MSI_RecordGetString( MSIRECORD *, unsigned int );
315 extern MSIRECORD *MSI_CreateRecord( unsigned int );
316 extern UINT MSI_RecordSetInteger( MSIRECORD *, unsigned int, int );
317 extern UINT MSI_RecordSetStringW( MSIRECORD *, unsigned int, LPCWSTR );
318 extern UINT MSI_RecordSetStringA( MSIRECORD *, unsigned int, LPCSTR );
319 extern BOOL MSI_RecordIsNull( MSIRECORD *, unsigned int );
320 extern UINT MSI_RecordGetStringW( MSIRECORD * , unsigned int, LPWSTR, DWORD *);
321 extern UINT MSI_RecordGetStringA( MSIRECORD *, unsigned int, LPSTR, DWORD *);
322 extern int MSI_RecordGetInteger( MSIRECORD *, unsigned int );
323 extern UINT MSI_RecordReadStream( MSIRECORD *, unsigned int, char *, DWORD *);
324 extern unsigned int MSI_RecordGetFieldCount( MSIRECORD *rec );
325 extern UINT MSI_RecordSetStreamW( MSIRECORD *, unsigned int, LPCWSTR );
326 extern UINT MSI_RecordSetStreamA( MSIRECORD *, unsigned int, LPCSTR );
327 extern UINT MSI_RecordDataSize( MSIRECORD *, unsigned int );
328 extern UINT MSI_RecordStreamToFile( MSIRECORD *, unsigned int, LPCWSTR );
329
330 /* stream internals */
331 extern UINT get_raw_stream( MSIHANDLE hdb, LPCWSTR stname, IStream **stm );
332 extern UINT db_get_raw_stream( MSIDATABASE *db, LPCWSTR stname, IStream **stm );
333 extern void enum_stream_names( IStorage *stg );
334
335 /* database internals */
336 extern UINT MSI_OpenDatabaseW( LPCWSTR, LPCWSTR, MSIDATABASE ** );
337 extern UINT MSI_DatabaseOpenViewW(MSIDATABASE *, LPCWSTR, MSIQUERY ** );
338 extern UINT MSI_OpenQuery( MSIDATABASE *, MSIQUERY **, LPCWSTR, ... );
339 typedef UINT (*record_func)( MSIRECORD *, LPVOID );
340 extern UINT MSI_IterateRecords( MSIQUERY *, DWORD *, record_func, LPVOID );
341 extern MSIRECORD *MSI_QueryGetRecord( MSIDATABASE *db, LPCWSTR query, ... );
342 extern UINT MSI_DatabaseImport( MSIDATABASE *, LPCWSTR, LPCWSTR );
343 extern UINT MSI_DatabaseExport( MSIDATABASE *, LPCWSTR, LPCWSTR, LPCWSTR );
344 extern UINT MSI_DatabaseGetPrimaryKeys( MSIDATABASE *, LPCWSTR, MSIRECORD ** );
345
346 /* view internals */
347 extern UINT MSI_ViewExecute( MSIQUERY*, MSIRECORD * );
348 extern UINT MSI_ViewFetch( MSIQUERY*, MSIRECORD ** );
349 extern UINT MSI_ViewClose( MSIQUERY* );
350
351 /* package internals */
352 extern MSIPACKAGE *MSI_CreatePackage( MSIDATABASE * );
353 extern UINT MSI_OpenPackageW( LPCWSTR szPackage, MSIPACKAGE ** );
354 extern UINT MSI_SetTargetPathW( MSIPACKAGE *, LPCWSTR, LPCWSTR );
355 extern UINT MSI_SetPropertyW( MSIPACKAGE *, LPCWSTR, LPCWSTR );
356 extern INT MSI_ProcessMessage( MSIPACKAGE *, INSTALLMESSAGE, MSIRECORD * );
357 extern UINT MSI_GetPropertyW( MSIPACKAGE *, LPCWSTR, LPWSTR, DWORD * );
358 extern UINT MSI_GetPropertyA(MSIPACKAGE *, LPCSTR, LPSTR, DWORD* );
359 extern MSICONDITION MSI_EvaluateConditionW( MSIPACKAGE *, LPCWSTR );
360 extern UINT MSI_GetComponentStateW( MSIPACKAGE *, LPWSTR, INSTALLSTATE *, INSTALLSTATE * );
361 extern UINT MSI_GetFeatureStateW( MSIPACKAGE *, LPWSTR, INSTALLSTATE *, INSTALLSTATE * );
362 extern UINT WINAPI MSI_SetFeatureStateW(MSIPACKAGE*, LPCWSTR, INSTALLSTATE );
363
364 /* for deformating */
365 extern UINT MSI_FormatRecordW( MSIPACKAGE *, MSIRECORD *, LPWSTR, DWORD * );
366 extern UINT MSI_FormatRecordA( MSIPACKAGE *, MSIRECORD *, LPSTR, DWORD * );
367     
368 /* registry data encoding/decoding functions */
369 extern BOOL unsquash_guid(LPCWSTR in, LPWSTR out);
370 extern BOOL squash_guid(LPCWSTR in, LPWSTR out);
371 extern BOOL encode_base85_guid(GUID *,LPWSTR);
372 extern BOOL decode_base85_guid(LPCWSTR,GUID*);
373 extern UINT MSIREG_OpenUninstallKey(LPCWSTR szProduct, HKEY* key, BOOL create);
374 extern UINT MSIREG_OpenUserProductsKey(LPCWSTR szProduct, HKEY* key, BOOL create);
375 extern UINT MSIREG_OpenFeatures(HKEY* key);
376 extern UINT MSIREG_OpenFeaturesKey(LPCWSTR szProduct, HKEY* key, BOOL create);
377 extern UINT MSIREG_OpenComponents(HKEY* key);
378 extern UINT MSIREG_OpenUserComponentsKey(LPCWSTR szComponent, HKEY* key, BOOL create);
379 extern UINT MSIREG_OpenComponentsKey(LPCWSTR szComponent, HKEY* key, BOOL create);
380 extern UINT MSIREG_OpenProductsKey(LPCWSTR szProduct, HKEY* key, BOOL create);
381 extern UINT MSIREG_OpenUserFeaturesKey(LPCWSTR szProduct, HKEY* key, BOOL create);
382 extern UINT MSIREG_OpenUserComponentsKey(LPCWSTR szComponent, HKEY* key, BOOL create);
383 extern UINT MSIREG_OpenUpgradeCodesKey(LPCWSTR szProduct, HKEY* key, BOOL create);
384 extern UINT MSIREG_OpenUserUpgradeCodesKey(LPCWSTR szProduct, HKEY* key, BOOL create);
385
386 /* msi dialog interface */
387 typedef UINT (*msi_dialog_event_handler)( MSIPACKAGE*, LPCWSTR, LPCWSTR, msi_dialog* );
388 extern msi_dialog *msi_dialog_create( MSIPACKAGE*, LPCWSTR, msi_dialog_event_handler );
389 extern UINT msi_dialog_run_message_loop( msi_dialog* );
390 extern void msi_dialog_end_dialog( msi_dialog* );
391 extern void msi_dialog_check_messages( HANDLE );
392 extern void msi_dialog_do_preview( msi_dialog* );
393 extern void msi_dialog_destroy( msi_dialog* );
394 extern BOOL msi_dialog_register_class( void );
395 extern void msi_dialog_unregister_class( void );
396 extern void msi_dialog_handle_event( msi_dialog*, LPCWSTR, LPCWSTR, MSIRECORD * );
397
398 /* preview */
399 extern MSIPREVIEW *MSI_EnableUIPreview( MSIDATABASE * );
400 extern UINT MSI_PreviewDialogW( MSIPREVIEW *, LPCWSTR );
401
402 /* undocumented functions */
403 UINT WINAPI MsiCreateAndVerifyInstallerDirectory( DWORD );
404 UINT WINAPI MsiDecomposeDescriptorW( LPCWSTR, LPWSTR, LPWSTR, LPWSTR, DWORD * );
405 UINT WINAPI MsiDecomposeDescriptorA( LPCSTR, LPSTR, LPSTR, LPSTR, DWORD * );
406 LANGID WINAPI MsiLoadStringW( MSIHANDLE, UINT, LPWSTR, int, LANGID );
407 LANGID WINAPI MsiLoadStringA( MSIHANDLE, UINT, LPSTR, int, LANGID );
408
409 /* UI globals */
410 extern INSTALLUILEVEL gUILevel;
411 extern HWND gUIhwnd;
412 extern INSTALLUI_HANDLERA gUIHandlerA;
413 extern INSTALLUI_HANDLERW gUIHandlerW;
414 extern DWORD gUIFilter;
415 extern LPVOID gUIContext;
416 extern WCHAR gszLogFile[MAX_PATH];
417
418 inline static char *strdupWtoA( LPCWSTR str )
419 {
420     LPSTR ret = NULL;
421     if (str)
422     {
423         DWORD len = WideCharToMultiByte( CP_ACP, 0, str, -1, NULL, 0, NULL, NULL
424 );
425         if ((ret = HeapAlloc( GetProcessHeap(), 0, len )))
426             WideCharToMultiByte( CP_ACP, 0, str, -1, ret, len, NULL, NULL );
427     }
428     return ret;
429 }
430
431 inline static LPWSTR strdupAtoW( LPCSTR str )
432 {
433     LPWSTR ret = NULL;
434     if (str)
435     {
436         DWORD len = MultiByteToWideChar( CP_ACP, 0, str, -1, NULL, 0 );
437         if ((ret = HeapAlloc( GetProcessHeap(), 0, len * sizeof(WCHAR) )))
438             MultiByteToWideChar( CP_ACP, 0, str, -1, ret, len );
439     }
440     return ret;
441 }
442
443 inline static LPWSTR strdupW( LPCWSTR src )
444 {
445     LPWSTR dest;
446     if (!src) return NULL;
447     dest = HeapAlloc(GetProcessHeap(), 0, (lstrlenW(src)+1)*sizeof(WCHAR));
448     lstrcpyW(dest, src);
449     return dest;
450 }
451
452 #endif /* __WINE_MSI_PRIVATE__ */