mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-31 04:13:37 +00:00
Ivan Leo Puoti <[email protected]> - Fix some wrong prototypes. Thomas Weidenmueller <[email protected]> - Passing NULL as the last two parameters to ReadFile is illegal and actually causes a crash on windows. The attached patch fixes this. Aric Stewart <[email protected]> - Force files to install if the REINSTALL property is set. Mike McCormack <[email protected]> - Some installers don't call the CreateFolders action before the InstallFiles action as MSDN specifies, but it still seems to work, so make sure that we create component directories in the InstallFiles action anyway. - Create component folders in the CreateFolders action. - If an action fails, print out its name as well as the error code. Use %d for error codes so it's easy to match them up to something in winerror.h. - Rename load_dynamic_stringW to msi_dup_record_field to better describe what it does, and replace a few instances with MSI_RecordGetString to avoid allocating memory. - Tidy up the RegisterProduct action a little. - Create a stub function to apply a single table transform and call it where we need to apply transforms. - Enumerate the substorage transforms for any patches that are passed on the command line with PATCH=. Need to implement table_apply_transform() before this will do anything interesting. - Simplify register_progid() and remove a fixed length buffer. - Make enter and escape trigger the default and cancel buttons in dialogs. - Switch back to using IPicture to load images. LoadImage did the resizing for us, but doesn't handle jpeg files and requires us writing a temp file, whereas IPicture handles jpeg files and can load directly from a stream. - Remove unused package parameter of register_progid_base(). - Remove an incorrect comment and check for 0 being an invalid file handle. - Add missing semicolons that caused compile trouble on FreeBSD. - Extract file directly to their target location, bypassing the need to use temporary files and move files. - Put the UI update code for cabinet file into a separate function. - Translate INVALID_HANDLE_VALUE to zero for cabinet handles. - Fix a memory leak in the cabinet extracting code. - Fix passing of NULL pointers to MsiDecomposeDescriptor and add a test. - Fix parameter handling in MsiSetTargetPath, and add a test for it. - Deleted two buggy functions that incorrectly and inefficiently check whether a row already exists in a table, and replaced them with a call to an existing working function that does the same thing correctly. - Fix and test MsiGetProperty and MsiSetProperty. - Add a stub implementation of msi.MsiSetMode. - NULL and empty strings are the same in conditions. - Add a bunch of tests for MsiEvaluateCondition and make them pass. - Fix error handling in MsiEvaluateCondition. - Create the +msidb debug channel for msi database code. - Implement transforms. This still includes some debugging code which can be enabled by setting debug_transform to 1 in the relevant places. - Define NONAMELESSUNION and NONAMELESSSTRUCT for older compilers. - Remove some redundant null pointer checks. - Make sure to unregister all the classes that were registered when msi is unloaded, so we can register again cleanly. - Fix a memory leak. - Implement the RemoveFiles action. - Add a read-only implementation of the SelectionTree control. - Make sure we only CoUninitialize after successfully initializing. Fix the address of the returned IShellLinkDataList interface. - Use an enumeration for file states. - Handle MaskEdit masks containing dashes and other constant characters. - Stub implementation for MsiAdvertiseScriptA/W. - Add a stub for the AllocateRegistrySpace action. - Explicitly check for MSICONDITION_TRUE being returned from MsiEvaluateCondition. - Stub implementation for MsiGetFileHashA/W. - Define MSIDBOPEN_ constants using LPCWSTR when compiling Wine. - Improve MsiUseFeatureEx and MsiGetFeatureState a little, add some simple test cases. - Use msi_get_property_int() in a few more places. - Implement MsiGetFeatureUsageA and MsiUseFeature(Ex)A using their W versions. - Use "static const" rather than "const static" as gcc -W complains about the former. - Add an implementation for MsiGetShortcutTargetA/W. - Don't change the UI level during ExecuteAction. - Return an error in MsiGetComponentPathW if passed a null component. - Remove the unused 1st parameter of ACTION_VerifyComponentForAction. - Fix MsiGetPropertyA/W spec declarations. - Create an internal handle-free api for reading MSI database summary information. svn path=/trunk/; revision=19307
289 lines
6.7 KiB
C
289 lines
6.7 KiB
C
/*
|
|
* Implementation of the Microsoft Installer (msi.dll)
|
|
*
|
|
* Copyright 2002-2004 Mike McCormack for CodeWeavers
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*/
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include "windef.h"
|
|
#include "winbase.h"
|
|
#include "winerror.h"
|
|
#include "wine/debug.h"
|
|
#include "msi.h"
|
|
#include "msiquery.h"
|
|
#include "objbase.h"
|
|
#include "objidl.h"
|
|
#include "msipriv.h"
|
|
#include "winnls.h"
|
|
|
|
#include "query.h"
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(msidb);
|
|
|
|
|
|
/* below is the query interface to a table */
|
|
|
|
typedef struct tagMSISELECTVIEW
|
|
{
|
|
MSIVIEW view;
|
|
MSIDATABASE *db;
|
|
MSIVIEW *table;
|
|
UINT num_cols;
|
|
UINT max_cols;
|
|
UINT cols[1];
|
|
} MSISELECTVIEW;
|
|
|
|
static UINT SELECT_fetch_int( struct tagMSIVIEW *view, UINT row, UINT col, UINT *val )
|
|
{
|
|
MSISELECTVIEW *sv = (MSISELECTVIEW*)view;
|
|
|
|
TRACE("%p %d %d %p\n", sv, row, col, val );
|
|
|
|
if( !sv->table )
|
|
return ERROR_FUNCTION_FAILED;
|
|
|
|
if( (col==0) || (col>sv->num_cols) )
|
|
return ERROR_FUNCTION_FAILED;
|
|
|
|
col = sv->cols[ col - 1 ];
|
|
|
|
return sv->table->ops->fetch_int( sv->table, row, col, val );
|
|
}
|
|
|
|
static UINT SELECT_fetch_stream( struct tagMSIVIEW *view, UINT row, UINT col, IStream **stm)
|
|
{
|
|
MSISELECTVIEW *sv = (MSISELECTVIEW*)view;
|
|
|
|
TRACE("%p %d %d %p\n", sv, row, col, stm );
|
|
|
|
if( !sv->table )
|
|
return ERROR_FUNCTION_FAILED;
|
|
|
|
if( (col==0) || (col>sv->num_cols) )
|
|
return ERROR_FUNCTION_FAILED;
|
|
|
|
col = sv->cols[ col - 1 ];
|
|
|
|
return sv->table->ops->fetch_stream( sv->table, row, col, stm );
|
|
}
|
|
|
|
static UINT SELECT_set_int( struct tagMSIVIEW *view, UINT row, UINT col, UINT val )
|
|
{
|
|
MSISELECTVIEW *sv = (MSISELECTVIEW*)view;
|
|
|
|
TRACE("%p %d %d %04x\n", sv, row, col, val );
|
|
|
|
if( !sv->table )
|
|
return ERROR_FUNCTION_FAILED;
|
|
|
|
if( (col==0) || (col>sv->num_cols) )
|
|
return ERROR_FUNCTION_FAILED;
|
|
|
|
col = sv->cols[ col - 1 ];
|
|
|
|
return sv->table->ops->set_int( sv->table, row, col, val );
|
|
}
|
|
|
|
static UINT SELECT_insert_row( struct tagMSIVIEW *view, MSIRECORD *record )
|
|
{
|
|
MSISELECTVIEW *sv = (MSISELECTVIEW*)view;
|
|
|
|
TRACE("%p %p\n", sv, record );
|
|
|
|
if( !sv->table )
|
|
return ERROR_FUNCTION_FAILED;
|
|
|
|
return sv->table->ops->insert_row( sv->table, record );
|
|
}
|
|
|
|
static UINT SELECT_execute( struct tagMSIVIEW *view, MSIRECORD *record )
|
|
{
|
|
MSISELECTVIEW *sv = (MSISELECTVIEW*)view;
|
|
|
|
TRACE("%p %p\n", sv, record);
|
|
|
|
if( !sv->table )
|
|
return ERROR_FUNCTION_FAILED;
|
|
|
|
return sv->table->ops->execute( sv->table, record );
|
|
}
|
|
|
|
static UINT SELECT_close( struct tagMSIVIEW *view )
|
|
{
|
|
MSISELECTVIEW *sv = (MSISELECTVIEW*)view;
|
|
|
|
TRACE("%p\n", sv );
|
|
|
|
if( !sv->table )
|
|
return ERROR_FUNCTION_FAILED;
|
|
|
|
return sv->table->ops->close( sv->table );
|
|
}
|
|
|
|
static UINT SELECT_get_dimensions( struct tagMSIVIEW *view, UINT *rows, UINT *cols )
|
|
{
|
|
MSISELECTVIEW *sv = (MSISELECTVIEW*)view;
|
|
|
|
TRACE("%p %p %p\n", sv, rows, cols );
|
|
|
|
if( !sv->table )
|
|
return ERROR_FUNCTION_FAILED;
|
|
|
|
if( cols )
|
|
*cols = sv->num_cols;
|
|
|
|
return sv->table->ops->get_dimensions( sv->table, rows, NULL );
|
|
}
|
|
|
|
static UINT SELECT_get_column_info( struct tagMSIVIEW *view,
|
|
UINT n, LPWSTR *name, UINT *type )
|
|
{
|
|
MSISELECTVIEW *sv = (MSISELECTVIEW*)view;
|
|
|
|
TRACE("%p %d %p %p\n", sv, n, name, type );
|
|
|
|
if( !sv->table )
|
|
return ERROR_FUNCTION_FAILED;
|
|
|
|
if( (n==0) || (n>sv->num_cols) )
|
|
return ERROR_FUNCTION_FAILED;
|
|
|
|
n = sv->cols[ n - 1 ];
|
|
|
|
return sv->table->ops->get_column_info( sv->table, n, name, type );
|
|
}
|
|
|
|
static UINT SELECT_modify( struct tagMSIVIEW *view, MSIMODIFY eModifyMode,
|
|
MSIRECORD *rec )
|
|
{
|
|
MSISELECTVIEW *sv = (MSISELECTVIEW*)view;
|
|
|
|
TRACE("%p %d %p\n", sv, eModifyMode, rec );
|
|
|
|
if( !sv->table )
|
|
return ERROR_FUNCTION_FAILED;
|
|
|
|
return sv->table->ops->modify( sv->table, eModifyMode, rec );
|
|
}
|
|
|
|
static UINT SELECT_delete( struct tagMSIVIEW *view )
|
|
{
|
|
MSISELECTVIEW *sv = (MSISELECTVIEW*)view;
|
|
|
|
TRACE("%p\n", sv );
|
|
|
|
if( sv->table )
|
|
sv->table->ops->delete( sv->table );
|
|
sv->table = NULL;
|
|
|
|
msi_free( sv );
|
|
|
|
return ERROR_SUCCESS;
|
|
}
|
|
|
|
|
|
MSIVIEWOPS select_ops =
|
|
{
|
|
SELECT_fetch_int,
|
|
SELECT_fetch_stream,
|
|
SELECT_set_int,
|
|
SELECT_insert_row,
|
|
SELECT_execute,
|
|
SELECT_close,
|
|
SELECT_get_dimensions,
|
|
SELECT_get_column_info,
|
|
SELECT_modify,
|
|
SELECT_delete
|
|
};
|
|
|
|
static UINT SELECT_AddColumn( MSISELECTVIEW *sv, LPCWSTR name )
|
|
{
|
|
UINT r, n=0;
|
|
MSIVIEW *table;
|
|
|
|
TRACE("%p adding %s\n", sv, debugstr_w( name ) );
|
|
|
|
if( sv->view.ops != &select_ops )
|
|
return ERROR_FUNCTION_FAILED;
|
|
|
|
table = sv->table;
|
|
if( !table )
|
|
return ERROR_FUNCTION_FAILED;
|
|
if( !table->ops->get_dimensions )
|
|
return ERROR_FUNCTION_FAILED;
|
|
if( !table->ops->get_column_info )
|
|
return ERROR_FUNCTION_FAILED;
|
|
|
|
if( sv->num_cols >= sv->max_cols )
|
|
return ERROR_FUNCTION_FAILED;
|
|
|
|
r = VIEW_find_column( table, name, &n );
|
|
if( r != ERROR_SUCCESS )
|
|
return r;
|
|
|
|
sv->cols[sv->num_cols] = n;
|
|
TRACE("Translating column %s from %d -> %d\n",
|
|
debugstr_w( name ), sv->num_cols, n);
|
|
|
|
sv->num_cols++;
|
|
|
|
return ERROR_SUCCESS;
|
|
}
|
|
|
|
UINT SELECT_CreateView( MSIDATABASE *db, MSIVIEW **view, MSIVIEW *table,
|
|
column_info *columns )
|
|
{
|
|
MSISELECTVIEW *sv = NULL;
|
|
UINT count = 0, r;
|
|
|
|
TRACE("%p\n", sv );
|
|
|
|
r = table->ops->get_dimensions( table, NULL, &count );
|
|
if( r != ERROR_SUCCESS )
|
|
{
|
|
ERR("can't get table dimensions\n");
|
|
return r;
|
|
}
|
|
|
|
sv = msi_alloc_zero( sizeof *sv + count*sizeof (UINT) );
|
|
if( !sv )
|
|
return ERROR_FUNCTION_FAILED;
|
|
|
|
/* fill the structure */
|
|
sv->view.ops = &select_ops;
|
|
sv->db = db;
|
|
sv->table = table;
|
|
sv->num_cols = 0;
|
|
sv->max_cols = count;
|
|
|
|
while( columns )
|
|
{
|
|
r = SELECT_AddColumn( sv, columns->column );
|
|
if( r )
|
|
break;
|
|
columns = columns->next;
|
|
}
|
|
|
|
if( r == ERROR_SUCCESS )
|
|
*view = &sv->view;
|
|
else
|
|
msi_free( sv );
|
|
|
|
return r;
|
|
}
|