Add functions to add the User UpgradeCodes.
[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     DWORD 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 tagMSIFEATURE *features;
190     UINT loaded_features;
191     struct tagMSIFOLDER  *folders;
192     UINT loaded_folders;
193     struct tagMSICOMPONENT *components;
194     UINT loaded_components;
195     struct tagMSIFILE *files;
196     UINT loaded_files;
197     LPWSTR ActionFormat;
198     LPWSTR LastAction;
199
200     struct tagMSICLASS *classes;
201     UINT loaded_classes;
202     struct tagMSIEXTENSION *extensions;
203     UINT loaded_extensions;
204     struct tagMSIPROGID *progids;
205     UINT loaded_progids;
206     struct tagMSIVERB *verbs;
207     UINT loaded_verbs;
208     struct tagMSIMIME *mimes;
209     UINT loaded_mimes;
210     struct tagMSIAPPID *appids;
211     UINT loaded_appids;
212     
213     struct tagMSISCRIPT *script;
214
215     struct tagMSIRUNNINGACTION *RunningAction;
216     UINT RunningActionCount;
217
218     LPWSTR PackagePath;
219
220     UINT CurrentInstallState;
221     msi_dialog *dialog;
222     LPWSTR next_dialog;
223     
224     struct list subscriptions;
225 } MSIPACKAGE;
226
227 typedef struct tagMSIPREVIEW
228 {
229     MSIOBJECTHDR hdr;
230     MSIPACKAGE *package;
231     msi_dialog *dialog;
232 } MSIPREVIEW;
233
234 #define MSIHANDLETYPE_ANY 0
235 #define MSIHANDLETYPE_DATABASE 1
236 #define MSIHANDLETYPE_SUMMARYINFO 2
237 #define MSIHANDLETYPE_VIEW 3
238 #define MSIHANDLETYPE_RECORD 4
239 #define MSIHANDLETYPE_PACKAGE 5
240 #define MSIHANDLETYPE_PREVIEW 6
241
242 #define MSI_MAJORVERSION 2
243 #define MSI_MINORVERSION 0
244 #define MSI_BUILDNUMBER 2600
245
246 #define GUID_SIZE 39
247
248 #define MSIHANDLE_MAGIC 0x4d434923
249 #define MSIMAXHANDLES 0xf0
250
251 #define MSISUMINFO_OFFSET 0x30LL
252
253 DEFINE_GUID(CLSID_IMsiServer,   0x000C101C,0x0000,0x0000,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x46);
254 DEFINE_GUID(CLSID_IMsiServerX1, 0x000C103E,0x0000,0x0000,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x46);
255 DEFINE_GUID(CLSID_IMsiServerX2, 0x000C1090,0x0000,0x0000,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x46);
256 DEFINE_GUID(CLSID_IMsiServerX3, 0x000C1094,0x0000,0x0000,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x46);
257
258 DEFINE_GUID(CLSID_IMsiServerMessage, 0x000C101D,0x0000,0x0000,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x46);
259
260
261 /* handle functions */
262 extern void *msihandle2msiinfo(MSIHANDLE handle, UINT type);
263 extern MSIHANDLE alloc_msihandle( MSIOBJECTHDR * );
264 extern void *alloc_msiobject(UINT type, UINT size, msihandledestructor destroy );
265 extern void msiobj_addref(MSIOBJECTHDR *);
266 extern int msiobj_release(MSIOBJECTHDR *);
267 extern void msiobj_lock(MSIOBJECTHDR *);
268 extern void msiobj_unlock(MSIOBJECTHDR *);
269 extern MSIHANDLE msiobj_findhandle( MSIOBJECTHDR *hdr );
270
271 /* add this table to the list of cached tables in the database */
272 extern void add_table(MSIDATABASE *db, MSITABLE *table);
273 extern void remove_table( MSIDATABASE *db, MSITABLE *table );
274 extern void free_table( MSIDATABASE *db, MSITABLE *table );
275 extern void free_cached_tables( MSIDATABASE *db );
276 extern UINT find_cached_table(MSIDATABASE *db, LPCWSTR name, MSITABLE **table);
277 extern UINT get_table(MSIDATABASE *db, LPCWSTR name, MSITABLE **table);
278 extern UINT load_string_table( MSIDATABASE *db );
279 extern UINT MSI_CommitTables( MSIDATABASE *db );
280 extern HRESULT init_string_table( IStorage *stg );
281
282
283 /* string table functions */
284 extern BOOL msi_addstring( string_table *st, int string_no, const CHAR *data, int len, UINT refcount );
285 extern BOOL msi_addstringW( string_table *st, int string_no, const WCHAR *data, int len, UINT refcount );
286 extern UINT msi_id2stringW( string_table *st, UINT string_no, LPWSTR buffer, UINT *sz );
287 extern UINT msi_id2stringA( string_table *st, UINT string_no, LPSTR buffer, UINT *sz );
288
289 extern LPWSTR MSI_makestring( MSIDATABASE *db, UINT stringid);
290 extern UINT msi_string2idW( string_table *st, LPCWSTR buffer, UINT *id );
291 extern UINT msi_string2idA( string_table *st, LPCSTR str, UINT *id );
292 extern string_table *msi_init_stringtable( int entries, UINT codepage );
293 extern VOID msi_destroy_stringtable( string_table *st );
294 extern UINT msi_string_count( string_table *st );
295 extern UINT msi_id_refcount( string_table *st, UINT i );
296 extern UINT msi_string_totalsize( string_table *st, UINT *last );
297 extern UINT msi_strcmp( string_table *st, UINT lval, UINT rval, UINT *res );
298 extern const WCHAR *msi_string_lookup_id( string_table *st, UINT id );
299 extern UINT msi_string_get_codepage( string_table *st );
300
301
302 extern UINT VIEW_find_column( MSIVIEW *view, LPCWSTR name, UINT *n );
303
304 extern BOOL TABLE_Exists( MSIDATABASE *db, LPWSTR name );
305
306 extern UINT read_raw_stream_data( MSIDATABASE*, LPCWSTR stname,
307                               USHORT **pdata, UINT *psz );
308
309 /* action internals */
310 extern UINT ACTION_DoTopLevelINSTALL( MSIPACKAGE *, LPCWSTR, LPCWSTR );
311 extern void ACTION_free_package_structures( MSIPACKAGE* );
312 extern UINT ACTION_DialogBox( MSIPACKAGE*, LPCWSTR);
313
314 /* record internals */
315 extern UINT MSI_RecordSetIStream( MSIRECORD *, unsigned int, IStream *);
316 extern UINT MSI_RecordGetIStream( MSIRECORD *, unsigned int, IStream **);
317 extern const WCHAR *MSI_RecordGetString( MSIRECORD *, unsigned int );
318 extern MSIRECORD *MSI_CreateRecord( unsigned int );
319 extern UINT MSI_RecordSetInteger( MSIRECORD *, unsigned int, int );
320 extern UINT MSI_RecordSetStringW( MSIRECORD *, unsigned int, LPCWSTR );
321 extern UINT MSI_RecordSetStringA( MSIRECORD *, unsigned int, LPCSTR );
322 extern BOOL MSI_RecordIsNull( MSIRECORD *, unsigned int );
323 extern UINT MSI_RecordGetStringW( MSIRECORD * , unsigned int, LPWSTR, DWORD *);
324 extern UINT MSI_RecordGetStringA( MSIRECORD *, unsigned int, LPSTR, DWORD *);
325 extern int MSI_RecordGetInteger( MSIRECORD *, unsigned int );
326 extern UINT MSI_RecordReadStream( MSIRECORD *, unsigned int, char *, DWORD *);
327 extern unsigned int MSI_RecordGetFieldCount( MSIRECORD *rec );
328 extern UINT MSI_RecordSetStreamW( MSIRECORD *, unsigned int, LPCWSTR );
329 extern UINT MSI_RecordSetStreamA( MSIRECORD *, unsigned int, LPCSTR );
330 extern UINT MSI_RecordDataSize( MSIRECORD *, unsigned int );
331
332 /* stream internals */
333 extern UINT get_raw_stream( MSIHANDLE hdb, LPCWSTR stname, IStream **stm );
334 extern UINT db_get_raw_stream( MSIDATABASE *db, LPCWSTR stname, IStream **stm );
335 extern void enum_stream_names( IStorage *stg );
336
337 /* database internals */
338 extern UINT MSI_OpenDatabaseW( LPCWSTR, LPCWSTR, MSIDATABASE ** );
339 extern UINT MSI_DatabaseOpenViewW(MSIDATABASE *, LPCWSTR, MSIQUERY ** );
340 extern UINT MSI_OpenQuery( MSIDATABASE *, MSIQUERY **, LPCWSTR, ... );
341 typedef UINT (*record_func)( MSIRECORD *, LPVOID );
342 extern UINT MSI_IterateRecords( MSIQUERY *, DWORD *, record_func, LPVOID );
343 extern MSIRECORD *MSI_QueryGetRecord( MSIDATABASE *db, LPCWSTR query, ... );
344 extern UINT MSI_DatabaseImport( MSIDATABASE *, LPCWSTR, LPCWSTR );
345 extern UINT MSI_DatabaseExport( MSIDATABASE *, LPCWSTR, LPCWSTR, LPCWSTR );
346 extern UINT MSI_DatabaseGetPrimaryKeys( MSIDATABASE *, LPCWSTR, MSIRECORD ** );
347
348 /* view internals */
349 extern UINT MSI_ViewExecute( MSIQUERY*, MSIRECORD * );
350 extern UINT MSI_ViewFetch( MSIQUERY*, MSIRECORD ** );
351 extern UINT MSI_ViewClose( MSIQUERY* );
352
353 /* package internals */
354 extern MSIPACKAGE *MSI_CreatePackage( MSIDATABASE * );
355 extern UINT MSI_OpenPackageW( LPCWSTR szPackage, MSIPACKAGE ** );
356 extern UINT MSI_SetTargetPathW( MSIPACKAGE *, LPCWSTR, LPCWSTR );
357 extern UINT MSI_SetPropertyW( MSIPACKAGE *, LPCWSTR, LPCWSTR );
358 extern INT MSI_ProcessMessage( MSIPACKAGE *, INSTALLMESSAGE, MSIRECORD * );
359 extern UINT MSI_GetPropertyW( MSIPACKAGE *, LPCWSTR, LPWSTR, DWORD * );
360 extern UINT MSI_GetPropertyA(MSIPACKAGE *, LPCSTR, LPSTR, DWORD* );
361 extern MSICONDITION MSI_EvaluateConditionW( MSIPACKAGE *, LPCWSTR );
362 extern UINT MSI_SetPropertyW( MSIPACKAGE *, LPCWSTR, LPCWSTR );
363 extern UINT MSI_GetComponentStateW( MSIPACKAGE *, LPWSTR, INSTALLSTATE *, INSTALLSTATE * );
364 extern UINT MSI_GetFeatureStateW( MSIPACKAGE *, LPWSTR, INSTALLSTATE *, INSTALLSTATE * );
365 extern UINT WINAPI MSI_SetFeatureStateW(MSIPACKAGE*, LPCWSTR, INSTALLSTATE );
366
367 /* for deformating */
368 extern UINT MSI_FormatRecordW(MSIPACKAGE* package, MSIRECORD* record, 
369                               LPWSTR buffer, DWORD *size);
370     
371 /* registry data encoding/decoding functions */
372 extern BOOL unsquash_guid(LPCWSTR in, LPWSTR out);
373 extern BOOL squash_guid(LPCWSTR in, LPWSTR out);
374 extern BOOL encode_base85_guid(GUID *,LPWSTR);
375 extern BOOL decode_base85_guid(LPCWSTR,GUID*);
376 extern UINT MSIREG_OpenUninstallKey(LPCWSTR szProduct, HKEY* key, BOOL create);
377 extern UINT MSIREG_OpenUserProductsKey(LPCWSTR szProduct, HKEY* key, BOOL create);
378 extern UINT MSIREG_OpenFeatures(HKEY* key);
379 extern UINT MSIREG_OpenFeaturesKey(LPCWSTR szProduct, HKEY* key, BOOL create);
380 extern UINT MSIREG_OpenComponents(HKEY* key);
381 extern UINT MSIREG_OpenUserComponentsKey(LPCWSTR szComponent, HKEY* key, BOOL create);
382 extern UINT MSIREG_OpenComponentsKey(LPCWSTR szComponent, HKEY* key, BOOL create);
383 extern UINT MSIREG_OpenProductsKey(LPCWSTR szProduct, HKEY* key, BOOL create);
384 extern UINT MSIREG_OpenUserFeaturesKey(LPCWSTR szProduct, HKEY* key, BOOL create);
385 extern UINT MSIREG_OpenUserComponentsKey(LPCWSTR szComponent, HKEY* key, BOOL create);
386 extern UINT MSIREG_OpenUpgradeCodesKey(LPCWSTR szProduct, HKEY* key, BOOL create);
387 extern UINT MSIREG_OpenUserUpgradeCodesKey(LPCWSTR szProduct, HKEY* key, BOOL create);
388
389 /* msi dialog interface */
390 typedef VOID (*msi_dialog_event_handler)( MSIPACKAGE*, LPCWSTR, LPCWSTR, msi_dialog* );
391 extern msi_dialog *msi_dialog_create( MSIPACKAGE*, LPCWSTR, msi_dialog_event_handler );
392 extern UINT msi_dialog_run_message_loop( msi_dialog* );
393 extern void msi_dialog_end_dialog( msi_dialog* );
394 extern void msi_dialog_check_messages( HANDLE );
395 extern void msi_dialog_do_preview( msi_dialog* );
396 extern void msi_dialog_destroy( msi_dialog* );
397 extern BOOL msi_dialog_register_class( void );
398 extern void msi_dialog_unregister_class( void );
399 extern void msi_dialog_handle_event( msi_dialog*, LPCWSTR, LPCWSTR, MSIRECORD * );
400
401 /* UI globals */
402 extern INSTALLUILEVEL gUILevel;
403 extern HWND gUIhwnd;
404 extern INSTALLUI_HANDLERA gUIHandlerA;
405 extern INSTALLUI_HANDLERW gUIHandlerW;
406 extern DWORD gUIFilter;
407 extern LPVOID gUIContext;
408 extern WCHAR gszLogFile[MAX_PATH];
409
410 inline static char *strdupWtoA( LPCWSTR str )
411 {
412     LPSTR ret = NULL;
413     if (str)
414     {
415         DWORD len = WideCharToMultiByte( CP_ACP, 0, str, -1, NULL, 0, NULL, NULL
416 );
417         if ((ret = HeapAlloc( GetProcessHeap(), 0, len )))
418             WideCharToMultiByte( CP_ACP, 0, str, -1, ret, len, NULL, NULL );
419     }
420     return ret;
421 }
422
423 inline static LPWSTR strdupAtoW( LPCSTR str )
424 {
425     LPWSTR ret = NULL;
426     if (str)
427     {
428         DWORD len = MultiByteToWideChar( CP_ACP, 0, str, -1, NULL, 0 );
429         if ((ret = HeapAlloc( GetProcessHeap(), 0, len * sizeof(WCHAR) )))
430             MultiByteToWideChar( CP_ACP, 0, str, -1, ret, len );
431     }
432     return ret;
433 }
434
435 inline static LPWSTR strdupW( LPCWSTR src )
436 {
437     LPWSTR dest;
438     if (!src) return NULL;
439     dest = HeapAlloc(GetProcessHeap(), 0, (lstrlenW(src)+1)*sizeof(WCHAR));
440     lstrcpyW(dest, src);
441     return dest;
442 }
443
444 #endif /* __WINE_MSI_PRIVATE__ */