2 * Implementation of the Microsoft Installer (msi.dll)
4 * Copyright 2008 James Hawkins
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
36 #include "wine/debug.h"
38 WINE_DEFAULT_DEBUG_CHANNEL(msidb
);
40 #define NUM_STORAGES_COLS 2
41 #define MAX_STORAGES_NAME_LEN 62
43 typedef struct tabSTORAGE
49 typedef struct tagMSISTORAGESVIEW
59 static BOOL
storages_set_table_size(MSISTORAGESVIEW
*sv
, UINT size
)
61 if (size
>= sv
->max_storages
)
63 sv
->max_storages
*= 2;
64 sv
->storages
= msi_realloc(sv
->storages
, sv
->max_storages
* sizeof(STORAGE
*));
72 static STORAGE
*create_storage(MSISTORAGESVIEW
*sv
, LPCWSTR name
, IStorage
*stg
)
76 storage
= msi_alloc(sizeof(STORAGE
));
80 storage
->str_index
= msi_addstringW(sv
->db
->strings
, name
, -1, 1, StringNonPersistent
);
81 storage
->storage
= stg
;
84 IStorage_AddRef(storage
->storage
);
89 static UINT
STORAGES_fetch_int(struct tagMSIVIEW
*view
, UINT row
, UINT col
, UINT
*val
)
91 MSISTORAGESVIEW
*sv
= (MSISTORAGESVIEW
*)view
;
93 TRACE("(%p, %d, %d, %p)\n", view
, row
, col
, val
);
96 return ERROR_INVALID_PARAMETER
;
98 if (row
>= sv
->num_rows
)
99 return ERROR_NO_MORE_ITEMS
;
101 *val
= sv
->storages
[row
]->str_index
;
103 return ERROR_SUCCESS
;
106 static UINT
STORAGES_fetch_stream(struct tagMSIVIEW
*view
, UINT row
, UINT col
, IStream
**stm
)
108 MSISTORAGESVIEW
*sv
= (MSISTORAGESVIEW
*)view
;
110 TRACE("(%p, %d, %d, %p)\n", view
, row
, col
, stm
);
112 if (row
>= sv
->num_rows
)
113 return ERROR_FUNCTION_FAILED
;
115 return ERROR_INVALID_DATA
;
118 static UINT
STORAGES_get_row( struct tagMSIVIEW
*view
, UINT row
, MSIRECORD
**rec
)
120 MSISTORAGESVIEW
*sv
= (MSISTORAGESVIEW
*)view
;
122 FIXME("%p %d %p\n", sv
, row
, rec
);
124 return ERROR_CALL_NOT_IMPLEMENTED
;
127 static HRESULT
stream_to_storage(IStream
*stm
, IStorage
**stg
)
129 ILockBytes
*lockbytes
= NULL
;
134 ULARGE_INTEGER offset
;
136 hr
= IStream_Stat(stm
, &stat
, STATFLAG_NONAME
);
140 if (stat
.cbSize
.QuadPart
>> 32)
142 ERR("Storage is too large\n");
146 size
= stat
.cbSize
.QuadPart
;
147 data
= msi_alloc(size
);
149 return E_OUTOFMEMORY
;
151 hr
= IStream_Read(stm
, data
, size
, &read
);
152 if (FAILED(hr
) || read
!= size
)
155 hr
= CreateILockBytesOnHGlobal(NULL
, TRUE
, &lockbytes
);
159 ZeroMemory(&offset
, sizeof(ULARGE_INTEGER
));
160 hr
= ILockBytes_WriteAt(lockbytes
, offset
, data
, size
, &read
);
161 if (FAILED(hr
) || read
!= size
)
164 hr
= StgOpenStorageOnILockBytes(lockbytes
, NULL
,
165 STGM_READWRITE
| STGM_SHARE_DENY_NONE
,
172 if (lockbytes
) ILockBytes_Release(lockbytes
);
176 static UINT
STORAGES_set_row(struct tagMSIVIEW
*view
, UINT row
, MSIRECORD
*rec
, UINT mask
)
178 MSISTORAGESVIEW
*sv
= (MSISTORAGESVIEW
*)view
;
179 IStorage
*stg
, *substg
= NULL
;
183 UINT r
= ERROR_FUNCTION_FAILED
;
185 TRACE("(%p, %p)\n", view
, rec
);
187 if (row
> sv
->num_rows
)
188 return ERROR_FUNCTION_FAILED
;
190 r
= MSI_RecordGetIStream(rec
, 2, &stm
);
191 if (r
!= ERROR_SUCCESS
)
194 r
= stream_to_storage(stm
, &stg
);
195 if (r
!= ERROR_SUCCESS
)
197 IStream_Release(stm
);
201 name
= strdupW(MSI_RecordGetString(rec
, 1));
204 r
= ERROR_OUTOFMEMORY
;
208 hr
= IStorage_CreateStorage(sv
->db
->storage
, name
,
209 STGM_WRITE
| STGM_SHARE_EXCLUSIVE
,
213 r
= ERROR_FUNCTION_FAILED
;
217 hr
= IStorage_CopyTo(stg
, 0, NULL
, NULL
, substg
);
220 r
= ERROR_FUNCTION_FAILED
;
224 sv
->storages
[row
] = create_storage(sv
, name
, stg
);
225 if (!sv
->storages
[row
])
226 r
= ERROR_FUNCTION_FAILED
;
231 if (substg
) IStorage_Release(substg
);
232 IStorage_Release(stg
);
233 IStream_Release(stm
);
238 static UINT
STORAGES_insert_row(struct tagMSIVIEW
*view
, MSIRECORD
*rec
, UINT row
, BOOL temporary
)
240 MSISTORAGESVIEW
*sv
= (MSISTORAGESVIEW
*)view
;
242 if (!storages_set_table_size(sv
, ++sv
->num_rows
))
243 return ERROR_FUNCTION_FAILED
;
246 row
= sv
->num_rows
- 1;
248 /* FIXME have to readjust rows */
250 return STORAGES_set_row(view
, row
, rec
, 0);
253 static UINT
STORAGES_delete_row(struct tagMSIVIEW
*view
, UINT row
)
255 FIXME("(%p %d): stub!\n", view
, row
);
256 return ERROR_SUCCESS
;
259 static UINT
STORAGES_execute(struct tagMSIVIEW
*view
, MSIRECORD
*record
)
261 TRACE("(%p, %p)\n", view
, record
);
262 return ERROR_SUCCESS
;
265 static UINT
STORAGES_close(struct tagMSIVIEW
*view
)
267 TRACE("(%p)\n", view
);
268 return ERROR_SUCCESS
;
271 static UINT
STORAGES_get_dimensions(struct tagMSIVIEW
*view
, UINT
*rows
, UINT
*cols
)
273 MSISTORAGESVIEW
*sv
= (MSISTORAGESVIEW
*)view
;
275 TRACE("(%p, %p, %p)\n", view
, rows
, cols
);
277 if (cols
) *cols
= NUM_STORAGES_COLS
;
278 if (rows
) *rows
= sv
->num_rows
;
280 return ERROR_SUCCESS
;
283 static UINT
STORAGES_get_column_info( struct tagMSIVIEW
*view
, UINT n
, LPCWSTR
*name
,
284 UINT
*type
, BOOL
*temporary
, LPCWSTR
*table_name
)
286 TRACE("(%p, %d, %p, %p, %p, %p)\n", view
, n
, name
, type
, temporary
,
289 if (n
== 0 || n
> NUM_STORAGES_COLS
)
290 return ERROR_INVALID_PARAMETER
;
295 if (name
) *name
= szName
;
296 if (type
) *type
= MSITYPE_STRING
| MSITYPE_VALID
| MAX_STORAGES_NAME_LEN
;
300 if (name
) *name
= szData
;
301 if (type
) *type
= MSITYPE_STRING
| MSITYPE_VALID
| MSITYPE_NULLABLE
;
304 if (table_name
) *table_name
= szStorages
;
305 if (temporary
) *temporary
= FALSE
;
306 return ERROR_SUCCESS
;
309 static UINT
storages_find_row(MSISTORAGESVIEW
*sv
, MSIRECORD
*rec
, UINT
*row
)
314 str
= MSI_RecordGetString(rec
, 1);
315 r
= msi_string2id(sv
->db
->strings
, str
, -1, &id
);
316 if (r
!= ERROR_SUCCESS
)
319 for (i
= 0; i
< sv
->num_rows
; i
++)
321 STORAGES_fetch_int(&sv
->view
, i
, 1, &data
);
326 return ERROR_SUCCESS
;
330 return ERROR_FUNCTION_FAILED
;
333 static UINT
storages_modify_update(struct tagMSIVIEW
*view
, MSIRECORD
*rec
)
335 MSISTORAGESVIEW
*sv
= (MSISTORAGESVIEW
*)view
;
338 r
= storages_find_row(sv
, rec
, &row
);
339 if (r
!= ERROR_SUCCESS
)
340 return ERROR_FUNCTION_FAILED
;
342 return STORAGES_set_row(view
, row
, rec
, 0);
345 static UINT
storages_modify_assign(struct tagMSIVIEW
*view
, MSIRECORD
*rec
)
347 MSISTORAGESVIEW
*sv
= (MSISTORAGESVIEW
*)view
;
350 r
= storages_find_row(sv
, rec
, &row
);
351 if (r
== ERROR_SUCCESS
)
352 return storages_modify_update(view
, rec
);
354 return STORAGES_insert_row(view
, rec
, -1, FALSE
);
357 static UINT
STORAGES_modify(struct tagMSIVIEW
*view
, MSIMODIFY eModifyMode
, MSIRECORD
*rec
, UINT row
)
361 TRACE("%p %d %p\n", view
, eModifyMode
, rec
);
365 case MSIMODIFY_ASSIGN
:
366 r
= storages_modify_assign(view
, rec
);
369 case MSIMODIFY_INSERT
:
370 r
= STORAGES_insert_row(view
, rec
, -1, FALSE
);
373 case MSIMODIFY_UPDATE
:
374 r
= storages_modify_update(view
, rec
);
377 case MSIMODIFY_VALIDATE_NEW
:
378 case MSIMODIFY_INSERT_TEMPORARY
:
379 case MSIMODIFY_REFRESH
:
380 case MSIMODIFY_REPLACE
:
381 case MSIMODIFY_MERGE
:
382 case MSIMODIFY_DELETE
:
383 case MSIMODIFY_VALIDATE
:
384 case MSIMODIFY_VALIDATE_FIELD
:
385 case MSIMODIFY_VALIDATE_DELETE
:
386 FIXME("%p %d %p - mode not implemented\n", view
, eModifyMode
, rec
);
387 r
= ERROR_CALL_NOT_IMPLEMENTED
;
391 r
= ERROR_INVALID_DATA
;
397 static UINT
STORAGES_delete(struct tagMSIVIEW
*view
)
399 MSISTORAGESVIEW
*sv
= (MSISTORAGESVIEW
*)view
;
402 TRACE("(%p)\n", view
);
404 for (i
= 0; i
< sv
->num_rows
; i
++)
406 if (sv
->storages
[i
]->storage
)
407 IStorage_Release(sv
->storages
[i
]->storage
);
408 msi_free(sv
->storages
[i
]);
411 msi_free(sv
->storages
);
415 return ERROR_SUCCESS
;
418 static UINT
STORAGES_find_matching_rows(struct tagMSIVIEW
*view
, UINT col
,
419 UINT val
, UINT
*row
, MSIITERHANDLE
*handle
)
421 MSISTORAGESVIEW
*sv
= (MSISTORAGESVIEW
*)view
;
422 UINT index
= PtrToUlong(*handle
);
424 TRACE("(%d, %d): %d\n", *row
, col
, val
);
426 if (col
== 0 || col
> NUM_STORAGES_COLS
)
427 return ERROR_INVALID_PARAMETER
;
429 while (index
< sv
->num_rows
)
431 if (sv
->storages
[index
]->str_index
== val
)
440 *handle
= UlongToPtr(++index
);
441 if (index
>= sv
->num_rows
)
442 return ERROR_NO_MORE_ITEMS
;
444 return ERROR_SUCCESS
;
447 static const MSIVIEWOPS storages_ops
=
450 STORAGES_fetch_stream
,
457 STORAGES_get_dimensions
,
458 STORAGES_get_column_info
,
461 STORAGES_find_matching_rows
,
470 static INT
add_storages_to_table(MSISTORAGESVIEW
*sv
)
472 STORAGE
*storage
= NULL
;
473 IEnumSTATSTG
*stgenum
= NULL
;
476 UINT count
= 0, size
;
478 hr
= IStorage_EnumElements(sv
->db
->storage
, 0, NULL
, 0, &stgenum
);
482 sv
->max_storages
= 1;
483 sv
->storages
= msi_alloc(sizeof(STORAGE
*));
490 hr
= IEnumSTATSTG_Next(stgenum
, 1, &stat
, &size
);
491 if (FAILED(hr
) || !size
)
494 if (stat
.type
!= STGTY_STORAGE
)
496 CoTaskMemFree(stat
.pwcsName
);
500 TRACE("enumerated storage %s\n", debugstr_w(stat
.pwcsName
));
502 storage
= create_storage(sv
, stat
.pwcsName
, NULL
);
506 CoTaskMemFree(stat
.pwcsName
);
510 IStorage_OpenStorage(sv
->db
->storage
, stat
.pwcsName
, NULL
,
511 STGM_READ
| STGM_SHARE_EXCLUSIVE
, NULL
, 0,
513 CoTaskMemFree(stat
.pwcsName
);
515 if (!storages_set_table_size(sv
, ++count
))
521 sv
->storages
[count
- 1] = storage
;
524 IEnumSTATSTG_Release(stgenum
);
528 UINT
STORAGES_CreateView(MSIDATABASE
*db
, MSIVIEW
**view
)
533 TRACE("(%p, %p)\n", db
, view
);
535 sv
= msi_alloc_zero( sizeof(MSISTORAGESVIEW
) );
537 return ERROR_FUNCTION_FAILED
;
539 sv
->view
.ops
= &storages_ops
;
542 rows
= add_storages_to_table(sv
);
546 return ERROR_FUNCTION_FAILED
;
550 *view
= (MSIVIEW
*)sv
;
552 return ERROR_SUCCESS
;