2004-03-20 20:18:46 +01:00
|
|
|
/*
|
|
|
|
* Implementation of the Microsoft Installer (msi.dll)
|
|
|
|
*
|
|
|
|
* Copyright 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(msi);
|
|
|
|
|
|
|
|
|
|
|
|
/* below is the query interface to a table */
|
|
|
|
|
|
|
|
typedef struct tagMSIINSERTVIEW
|
|
|
|
{
|
|
|
|
MSIVIEW view;
|
|
|
|
MSIDATABASE *db;
|
|
|
|
BOOL bIsTemp;
|
2004-06-30 20:18:27 +02:00
|
|
|
MSIVIEW *sv;
|
2005-01-20 21:39:15 +01:00
|
|
|
value_list *vals;
|
2004-03-20 20:18:46 +01:00
|
|
|
} MSIINSERTVIEW;
|
|
|
|
|
|
|
|
static UINT INSERT_fetch_int( struct tagMSIVIEW *view, UINT row, UINT col, UINT *val )
|
|
|
|
{
|
|
|
|
MSIINSERTVIEW *iv = (MSIINSERTVIEW*)view;
|
|
|
|
|
|
|
|
TRACE("%p %d %d %p\n", iv, row, col, val );
|
|
|
|
|
|
|
|
return ERROR_FUNCTION_FAILED;
|
|
|
|
}
|
|
|
|
|
2005-01-20 21:39:15 +01:00
|
|
|
/*
|
|
|
|
* INSERT_merge_record
|
|
|
|
*
|
|
|
|
* Merge a value_list and a record to create a second record.
|
|
|
|
* Replace wildcard entries in the valuelist with values from the record
|
|
|
|
*/
|
|
|
|
static MSIRECORD *INSERT_merge_record( UINT fields, value_list *vl, MSIRECORD *rec )
|
|
|
|
{
|
|
|
|
MSIRECORD *merged;
|
|
|
|
DWORD wildcard_count = 1, i;
|
|
|
|
const WCHAR *str;
|
|
|
|
|
|
|
|
merged = MSI_CreateRecord( fields );
|
|
|
|
for( i=1; i <= fields; i++ )
|
|
|
|
{
|
|
|
|
if( !vl )
|
|
|
|
{
|
|
|
|
TRACE("Not enough elements in the list to insert\n");
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
switch( vl->val->type )
|
|
|
|
{
|
|
|
|
case EXPR_SVAL:
|
|
|
|
TRACE("field %ld -> %s\n", i, debugstr_w(vl->val->u.sval));
|
|
|
|
MSI_RecordSetStringW( merged, i, vl->val->u.sval );
|
|
|
|
break;
|
|
|
|
case EXPR_IVAL:
|
|
|
|
MSI_RecordSetInteger( merged, i, vl->val->u.ival );
|
|
|
|
break;
|
|
|
|
case EXPR_WILDCARD:
|
|
|
|
if( !rec )
|
|
|
|
goto err;
|
|
|
|
if( MSI_RecordIsNull( rec, wildcard_count ) )
|
|
|
|
goto err;
|
|
|
|
str = MSI_RecordGetString( rec, wildcard_count );
|
|
|
|
MSI_RecordSetStringW( merged, i, str );
|
|
|
|
wildcard_count++;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ERR("Unknown expression type %d\n", vl->val->type);
|
|
|
|
}
|
|
|
|
vl = vl->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
return merged;
|
|
|
|
err:
|
|
|
|
msiobj_release( &merged->hdr );
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2004-07-10 00:25:34 +02:00
|
|
|
static UINT INSERT_execute( struct tagMSIVIEW *view, MSIRECORD *record )
|
2004-03-20 20:18:46 +01:00
|
|
|
{
|
|
|
|
MSIINSERTVIEW *iv = (MSIINSERTVIEW*)view;
|
2004-06-30 20:18:27 +02:00
|
|
|
UINT n, type, val, r, row, col_count = 0;
|
|
|
|
MSIVIEW *sv;
|
2005-01-20 21:39:15 +01:00
|
|
|
MSIRECORD *values = NULL;
|
2004-03-20 20:18:46 +01:00
|
|
|
|
2004-07-10 00:25:34 +02:00
|
|
|
TRACE("%p %p\n", iv, record );
|
2004-03-20 20:18:46 +01:00
|
|
|
|
2004-06-30 20:18:27 +02:00
|
|
|
sv = iv->sv;
|
|
|
|
if( !sv )
|
|
|
|
return ERROR_FUNCTION_FAILED;
|
|
|
|
|
|
|
|
r = sv->ops->execute( sv, 0 );
|
2004-03-20 20:18:46 +01:00
|
|
|
TRACE("tv execute returned %x\n", r);
|
|
|
|
if( r )
|
|
|
|
return r;
|
|
|
|
|
2004-06-30 20:18:27 +02:00
|
|
|
r = sv->ops->get_dimensions( sv, NULL, &col_count );
|
2004-03-20 20:18:46 +01:00
|
|
|
if( r )
|
|
|
|
goto err;
|
|
|
|
|
2005-01-20 21:39:15 +01:00
|
|
|
/*
|
|
|
|
* Merge the wildcard values into the list of values provided
|
|
|
|
* in the query, and create a record containing both.
|
|
|
|
*/
|
|
|
|
values = INSERT_merge_record( col_count, iv->vals, record );
|
|
|
|
if( !values )
|
2004-03-20 20:18:46 +01:00
|
|
|
goto err;
|
|
|
|
|
2004-06-30 20:18:27 +02:00
|
|
|
row = -1;
|
|
|
|
r = sv->ops->insert_row( sv, &row );
|
|
|
|
TRACE("insert_row returned %x\n", r);
|
2004-03-20 20:18:46 +01:00
|
|
|
if( r )
|
2004-06-30 20:18:27 +02:00
|
|
|
goto err;
|
2004-03-20 20:18:46 +01:00
|
|
|
|
2004-06-30 20:18:27 +02:00
|
|
|
for( n = 1; n <= col_count; n++ )
|
2004-03-20 20:18:46 +01:00
|
|
|
{
|
2004-06-30 20:18:27 +02:00
|
|
|
r = sv->ops->get_column_info( sv, n, NULL, &type );
|
2004-03-20 20:18:46 +01:00
|
|
|
if( r )
|
|
|
|
break;
|
|
|
|
|
2004-06-30 20:18:27 +02:00
|
|
|
if( type & MSITYPE_STRING )
|
|
|
|
{
|
2005-01-20 21:39:15 +01:00
|
|
|
const WCHAR *str = MSI_RecordGetString( values, n );
|
2004-06-30 20:18:27 +02:00
|
|
|
val = msi_addstringW( iv->db->strings, 0, str, -1, 1 );
|
|
|
|
}
|
|
|
|
else
|
2004-06-30 21:46:15 +02:00
|
|
|
{
|
2005-01-20 21:39:15 +01:00
|
|
|
val = MSI_RecordGetInteger( values, n );
|
2004-06-30 21:46:15 +02:00
|
|
|
val |= 0x8000;
|
|
|
|
}
|
2004-06-30 20:23:52 +02:00
|
|
|
r = sv->ops->set_int( sv, row, n, val );
|
2004-03-20 20:18:46 +01:00
|
|
|
if( r )
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
err:
|
2005-01-20 21:39:15 +01:00
|
|
|
if( values )
|
|
|
|
msiobj_release( &values->hdr );
|
|
|
|
|
2004-06-30 20:18:27 +02:00
|
|
|
return ERROR_SUCCESS;
|
2004-03-20 20:18:46 +01:00
|
|
|
}
|
|
|
|
|
2004-06-30 20:18:27 +02:00
|
|
|
|
2004-03-20 20:18:46 +01:00
|
|
|
static UINT INSERT_close( struct tagMSIVIEW *view )
|
|
|
|
{
|
|
|
|
MSIINSERTVIEW *iv = (MSIINSERTVIEW*)view;
|
2004-06-30 20:18:27 +02:00
|
|
|
MSIVIEW *sv;
|
2004-03-20 20:18:46 +01:00
|
|
|
|
|
|
|
TRACE("%p\n", iv);
|
|
|
|
|
2004-06-30 20:18:27 +02:00
|
|
|
sv = iv->sv;
|
|
|
|
if( !sv )
|
|
|
|
return ERROR_FUNCTION_FAILED;
|
|
|
|
|
|
|
|
return sv->ops->close( sv );
|
2004-03-20 20:18:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static UINT INSERT_get_dimensions( struct tagMSIVIEW *view, UINT *rows, UINT *cols )
|
|
|
|
{
|
|
|
|
MSIINSERTVIEW *iv = (MSIINSERTVIEW*)view;
|
2004-06-30 20:18:27 +02:00
|
|
|
MSIVIEW *sv;
|
2004-03-20 20:18:46 +01:00
|
|
|
|
|
|
|
TRACE("%p %p %p\n", iv, rows, cols );
|
|
|
|
|
2004-06-30 20:18:27 +02:00
|
|
|
sv = iv->sv;
|
|
|
|
if( !sv )
|
|
|
|
return ERROR_FUNCTION_FAILED;
|
|
|
|
|
|
|
|
return sv->ops->get_dimensions( sv, rows, cols );
|
2004-03-20 20:18:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static UINT INSERT_get_column_info( struct tagMSIVIEW *view,
|
|
|
|
UINT n, LPWSTR *name, UINT *type )
|
|
|
|
{
|
|
|
|
MSIINSERTVIEW *iv = (MSIINSERTVIEW*)view;
|
2004-06-30 20:18:27 +02:00
|
|
|
MSIVIEW *sv;
|
2004-03-20 20:18:46 +01:00
|
|
|
|
|
|
|
TRACE("%p %d %p %p\n", iv, n, name, type );
|
|
|
|
|
2004-06-30 20:18:27 +02:00
|
|
|
sv = iv->sv;
|
|
|
|
if( !sv )
|
|
|
|
return ERROR_FUNCTION_FAILED;
|
|
|
|
|
|
|
|
return sv->ops->get_column_info( sv, n, name, type );
|
2004-03-20 20:18:46 +01:00
|
|
|
}
|
|
|
|
|
2005-02-08 14:44:25 +01:00
|
|
|
static UINT INSERT_modify( struct tagMSIVIEW *view, MSIMODIFY eModifyMode, MSIRECORD *rec)
|
2004-03-20 20:18:46 +01:00
|
|
|
{
|
|
|
|
MSIINSERTVIEW *iv = (MSIINSERTVIEW*)view;
|
|
|
|
|
2005-02-08 14:44:25 +01:00
|
|
|
TRACE("%p %d %p\n", iv, eModifyMode, rec );
|
2004-03-20 20:18:46 +01:00
|
|
|
|
|
|
|
return ERROR_FUNCTION_FAILED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static UINT INSERT_delete( struct tagMSIVIEW *view )
|
|
|
|
{
|
|
|
|
MSIINSERTVIEW *iv = (MSIINSERTVIEW*)view;
|
2004-06-30 20:18:27 +02:00
|
|
|
MSIVIEW *sv;
|
2004-03-20 20:18:46 +01:00
|
|
|
|
|
|
|
TRACE("%p\n", iv );
|
|
|
|
|
2004-06-30 20:18:27 +02:00
|
|
|
sv = iv->sv;
|
|
|
|
if( sv )
|
|
|
|
sv->ops->delete( sv );
|
2004-03-20 20:18:46 +01:00
|
|
|
delete_value_list( iv->vals );
|
2004-07-10 00:25:34 +02:00
|
|
|
msiobj_release( &iv->db->hdr );
|
2004-08-25 19:31:39 +02:00
|
|
|
HeapFree( GetProcessHeap(), 0, iv );
|
2004-03-20 20:18:46 +01:00
|
|
|
|
|
|
|
return ERROR_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
MSIVIEWOPS insert_ops =
|
|
|
|
{
|
|
|
|
INSERT_fetch_int,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
2004-07-06 20:56:12 +02:00
|
|
|
NULL,
|
2004-03-20 20:18:46 +01:00
|
|
|
INSERT_execute,
|
|
|
|
INSERT_close,
|
|
|
|
INSERT_get_dimensions,
|
|
|
|
INSERT_get_column_info,
|
|
|
|
INSERT_modify,
|
|
|
|
INSERT_delete
|
|
|
|
};
|
|
|
|
|
|
|
|
UINT INSERT_CreateView( MSIDATABASE *db, MSIVIEW **view, LPWSTR table,
|
|
|
|
string_list *columns, value_list *values, BOOL temp )
|
|
|
|
{
|
|
|
|
MSIINSERTVIEW *iv = NULL;
|
2004-06-30 20:18:27 +02:00
|
|
|
UINT r;
|
|
|
|
MSIVIEW *tv = NULL, *sv = NULL;
|
2004-03-20 20:18:46 +01:00
|
|
|
|
|
|
|
TRACE("%p\n", iv );
|
|
|
|
|
2004-06-30 20:18:27 +02:00
|
|
|
r = TABLE_CreateView( db, table, &tv );
|
|
|
|
if( r != ERROR_SUCCESS )
|
|
|
|
return r;
|
|
|
|
|
|
|
|
r = SELECT_CreateView( db, &sv, tv, columns );
|
|
|
|
if( r != ERROR_SUCCESS )
|
|
|
|
{
|
|
|
|
if( tv )
|
|
|
|
tv->ops->delete( tv );
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2004-03-20 20:18:46 +01:00
|
|
|
iv = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof *iv );
|
|
|
|
if( !iv )
|
|
|
|
return ERROR_FUNCTION_FAILED;
|
2004-06-30 20:18:27 +02:00
|
|
|
|
2004-03-20 20:18:46 +01:00
|
|
|
/* fill the structure */
|
|
|
|
iv->view.ops = &insert_ops;
|
2004-07-10 00:25:34 +02:00
|
|
|
msiobj_addref( &db->hdr );
|
2004-03-20 20:18:46 +01:00
|
|
|
iv->db = db;
|
|
|
|
iv->vals = values;
|
|
|
|
iv->bIsTemp = temp;
|
2004-06-30 20:18:27 +02:00
|
|
|
iv->sv = sv;
|
2004-03-20 20:18:46 +01:00
|
|
|
*view = (MSIVIEW*) iv;
|
|
|
|
|
|
|
|
return ERROR_SUCCESS;
|
|
|
|
}
|