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
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2004-03-20 20:18:46 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
|
|
|
|
#include "windef.h"
|
|
|
|
#include "winbase.h"
|
|
|
|
#include "winerror.h"
|
|
|
|
#include "wine/debug.h"
|
2010-10-19 11:27:44 +02:00
|
|
|
#include "wine/unicode.h"
|
2004-03-20 20:18:46 +01:00
|
|
|
#include "msi.h"
|
|
|
|
#include "msiquery.h"
|
|
|
|
#include "objbase.h"
|
|
|
|
#include "objidl.h"
|
|
|
|
#include "msipriv.h"
|
|
|
|
#include "winnls.h"
|
|
|
|
|
|
|
|
#include "query.h"
|
|
|
|
|
2005-11-02 15:24:21 +01:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(msidb);
|
2004-03-20 20:18:46 +01:00
|
|
|
|
|
|
|
|
|
|
|
/* below is the query interface to a table */
|
|
|
|
|
|
|
|
typedef struct tagMSIINSERTVIEW
|
|
|
|
{
|
|
|
|
MSIVIEW view;
|
2009-03-02 06:41:22 +01:00
|
|
|
MSIVIEW *table;
|
2004-03-20 20:18:46 +01:00
|
|
|
MSIDATABASE *db;
|
|
|
|
BOOL bIsTemp;
|
2004-06-30 20:18:27 +02:00
|
|
|
MSIVIEW *sv;
|
2005-05-30 13:32:18 +02:00
|
|
|
column_info *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
|
|
|
/*
|
2006-10-26 07:08:38 +02:00
|
|
|
* msi_query_merge_record
|
2005-01-20 21:39:15 +01:00
|
|
|
*
|
|
|
|
* Merge a value_list and a record to create a second record.
|
|
|
|
* Replace wildcard entries in the valuelist with values from the record
|
|
|
|
*/
|
2007-06-05 19:53:43 +02:00
|
|
|
MSIRECORD *msi_query_merge_record( UINT fields, const column_info *vl, MSIRECORD *rec )
|
2005-01-20 21:39:15 +01:00
|
|
|
{
|
|
|
|
MSIRECORD *merged;
|
|
|
|
DWORD wildcard_count = 1, i;
|
|
|
|
|
|
|
|
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:
|
2006-10-05 06:41:22 +02:00
|
|
|
TRACE("field %d -> %s\n", i, debugstr_w(vl->val->u.sval));
|
2005-01-20 21:39:15 +01:00
|
|
|
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;
|
2006-08-31 10:05:45 +02:00
|
|
|
MSI_RecordCopyField( rec, wildcard_count, merged, i );
|
2005-01-20 21:39:15 +01:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2009-03-02 06:41:22 +01:00
|
|
|
/* checks to see if the column order specified in the INSERT query
|
|
|
|
* matches the column order of the table
|
|
|
|
*/
|
|
|
|
static BOOL msi_columns_in_order(MSIINSERTVIEW *iv, UINT col_count)
|
|
|
|
{
|
2011-07-27 10:53:10 +02:00
|
|
|
LPCWSTR a, b;
|
2009-03-02 06:41:22 +01:00
|
|
|
UINT i;
|
|
|
|
|
|
|
|
for (i = 1; i <= col_count; i++)
|
|
|
|
{
|
2009-10-18 18:41:41 +02:00
|
|
|
iv->sv->ops->get_column_info(iv->sv, i, &a, NULL, NULL, NULL);
|
|
|
|
iv->table->ops->get_column_info(iv->table, i, &b, NULL, NULL, NULL);
|
2009-03-02 06:41:22 +01:00
|
|
|
|
2011-07-27 10:53:10 +02:00
|
|
|
if (strcmpW( a, b )) return FALSE;
|
2009-03-02 06:41:22 +01:00
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* rearranges the data in the record to be inserted based on column order,
|
|
|
|
* and pads the record for any missing columns in the INSERT query
|
|
|
|
*/
|
|
|
|
static UINT msi_arrange_record(MSIINSERTVIEW *iv, MSIRECORD **values)
|
|
|
|
{
|
|
|
|
MSIRECORD *padded;
|
|
|
|
UINT col_count, val_count;
|
|
|
|
UINT r, i, colidx;
|
2011-07-27 10:53:10 +02:00
|
|
|
LPCWSTR a, b;
|
2009-03-02 06:41:22 +01:00
|
|
|
|
|
|
|
r = iv->table->ops->get_dimensions(iv->table, NULL, &col_count);
|
|
|
|
if (r != ERROR_SUCCESS)
|
|
|
|
return r;
|
|
|
|
|
|
|
|
val_count = MSI_RecordGetFieldCount(*values);
|
|
|
|
|
|
|
|
/* check to see if the columns are arranged already
|
|
|
|
* to avoid unnecessary copying
|
|
|
|
*/
|
|
|
|
if (col_count == val_count && msi_columns_in_order(iv, col_count))
|
|
|
|
return ERROR_SUCCESS;
|
|
|
|
|
|
|
|
padded = MSI_CreateRecord(col_count);
|
|
|
|
if (!padded)
|
|
|
|
return ERROR_OUTOFMEMORY;
|
|
|
|
|
|
|
|
for (colidx = 1; colidx <= val_count; colidx++)
|
|
|
|
{
|
2009-10-18 18:41:41 +02:00
|
|
|
r = iv->sv->ops->get_column_info(iv->sv, colidx, &a, NULL, NULL, NULL);
|
2009-03-02 06:41:22 +01:00
|
|
|
if (r != ERROR_SUCCESS)
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
for (i = 1; i <= col_count; i++)
|
|
|
|
{
|
2009-10-18 18:41:41 +02:00
|
|
|
r = iv->table->ops->get_column_info(iv->table, i, &b, NULL,
|
|
|
|
NULL, NULL);
|
2009-03-02 06:41:22 +01:00
|
|
|
if (r != ERROR_SUCCESS)
|
|
|
|
goto err;
|
|
|
|
|
2011-07-27 10:53:10 +02:00
|
|
|
if (!strcmpW( a, b ))
|
2009-03-02 06:41:22 +01:00
|
|
|
{
|
|
|
|
MSI_RecordCopyField(*values, colidx, padded, i);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
msiobj_release(&(*values)->hdr);
|
|
|
|
*values = padded;
|
|
|
|
return ERROR_SUCCESS;
|
|
|
|
|
|
|
|
err:
|
|
|
|
msiobj_release(&padded->hdr);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
static BOOL row_has_null_primary_keys(MSIINSERTVIEW *iv, MSIRECORD *row)
|
|
|
|
{
|
|
|
|
UINT r, i, col_count, type;
|
|
|
|
|
|
|
|
r = iv->table->ops->get_dimensions( iv->table, NULL, &col_count );
|
|
|
|
if (r != ERROR_SUCCESS)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
for (i = 1; i <= col_count; i++)
|
|
|
|
{
|
2009-10-18 18:41:41 +02:00
|
|
|
r = iv->table->ops->get_column_info(iv->table, i, NULL, &type,
|
|
|
|
NULL, NULL);
|
2009-03-02 06:41:22 +01:00
|
|
|
if (r != ERROR_SUCCESS)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (!(type & MSITYPE_KEY))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (MSI_RecordIsNull(row, i))
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
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;
|
2009-03-02 06:41:22 +01:00
|
|
|
UINT r, row = -1, col_count = 0;
|
2004-06-30 20:18:27 +02:00
|
|
|
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 );
|
2009-03-02 06:41:22 +01:00
|
|
|
TRACE("sv execute returned %x\n", r);
|
2004-03-20 20:18:46 +01:00
|
|
|
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.
|
|
|
|
*/
|
2006-10-26 07:08:38 +02:00
|
|
|
values = msi_query_merge_record( col_count, iv->vals, record );
|
2005-01-20 21:39:15 +01:00
|
|
|
if( !values )
|
2004-03-20 20:18:46 +01:00
|
|
|
goto err;
|
|
|
|
|
2009-03-02 06:41:22 +01:00
|
|
|
r = msi_arrange_record( iv, &values );
|
|
|
|
if( r != ERROR_SUCCESS )
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
/* rows with NULL primary keys are inserted at the beginning of the table */
|
|
|
|
if( row_has_null_primary_keys( iv, values ) )
|
|
|
|
row = 0;
|
|
|
|
|
|
|
|
r = iv->table->ops->insert_row( iv->table, values, row, iv->bIsTemp );
|
2004-03-20 20:18:46 +01:00
|
|
|
|
|
|
|
err:
|
2005-01-20 21:39:15 +01:00
|
|
|
if( values )
|
|
|
|
msiobj_release( &values->hdr );
|
|
|
|
|
2005-08-24 13:10:23 +02:00
|
|
|
return r;
|
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
|
|
|
}
|
|
|
|
|
2011-07-27 10:53:10 +02:00
|
|
|
static UINT INSERT_get_column_info( struct tagMSIVIEW *view, UINT n, LPCWSTR *name,
|
|
|
|
UINT *type, BOOL *temporary, LPCWSTR *table_name )
|
2004-03-20 20:18:46 +01:00
|
|
|
{
|
|
|
|
MSIINSERTVIEW *iv = (MSIINSERTVIEW*)view;
|
2004-06-30 20:18:27 +02:00
|
|
|
MSIVIEW *sv;
|
2004-03-20 20:18:46 +01:00
|
|
|
|
2009-10-18 18:41:41 +02:00
|
|
|
TRACE("%p %d %p %p %p %p\n", iv, n, name, type, temporary, table_name );
|
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;
|
|
|
|
|
2009-10-18 18:41:41 +02:00
|
|
|
return sv->ops->get_column_info( sv, n, name, type, temporary, table_name );
|
2004-03-20 20:18:46 +01:00
|
|
|
}
|
|
|
|
|
2007-07-27 02:40:38 +02:00
|
|
|
static UINT INSERT_modify( struct tagMSIVIEW *view, MSIMODIFY eModifyMode, MSIRECORD *rec, UINT row)
|
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-07-10 00:25:34 +02:00
|
|
|
msiobj_release( &iv->db->hdr );
|
2005-09-20 13:57:19 +02:00
|
|
|
msi_free( iv );
|
2004-03-20 20:18:46 +01:00
|
|
|
|
|
|
|
return ERROR_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2006-03-18 17:12:15 +01:00
|
|
|
static UINT INSERT_find_matching_rows( struct tagMSIVIEW *view, UINT col,
|
|
|
|
UINT val, UINT *row, MSIITERHANDLE *handle )
|
|
|
|
{
|
|
|
|
TRACE("%p, %d, %u, %p\n", view, col, val, *handle);
|
|
|
|
|
|
|
|
return ERROR_FUNCTION_FAILED;
|
|
|
|
}
|
|
|
|
|
2004-03-20 20:18:46 +01:00
|
|
|
|
2006-06-10 12:02:39 +02:00
|
|
|
static const MSIVIEWOPS insert_ops =
|
2004-03-20 20:18:46 +01:00
|
|
|
{
|
|
|
|
INSERT_fetch_int,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
2004-07-06 20:56:12 +02:00
|
|
|
NULL,
|
2007-06-18 22:49:31 +02:00
|
|
|
NULL,
|
2007-07-27 02:40:38 +02:00
|
|
|
NULL,
|
2004-03-20 20:18:46 +01:00
|
|
|
INSERT_execute,
|
|
|
|
INSERT_close,
|
|
|
|
INSERT_get_dimensions,
|
|
|
|
INSERT_get_column_info,
|
|
|
|
INSERT_modify,
|
2006-03-18 17:12:15 +01:00
|
|
|
INSERT_delete,
|
2007-07-19 03:21:00 +02:00
|
|
|
INSERT_find_matching_rows,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
2007-07-20 23:01:13 +02:00
|
|
|
NULL,
|
2007-07-21 03:41:16 +02:00
|
|
|
NULL,
|
2007-12-18 02:35:31 +01:00
|
|
|
NULL,
|
2008-10-02 22:56:54 +02:00
|
|
|
NULL,
|
2004-03-20 20:18:46 +01:00
|
|
|
};
|
|
|
|
|
2007-06-05 19:53:43 +02:00
|
|
|
static UINT count_column_info( const column_info *ci )
|
2006-08-31 10:22:24 +02:00
|
|
|
{
|
|
|
|
UINT n = 0;
|
|
|
|
for ( ; ci; ci = ci->next )
|
|
|
|
n++;
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
2007-06-05 19:53:43 +02:00
|
|
|
UINT INSERT_CreateView( MSIDATABASE *db, MSIVIEW **view, LPCWSTR table,
|
2005-05-30 13:32:18 +02:00
|
|
|
column_info *columns, column_info *values, BOOL temp )
|
2004-03-20 20:18:46 +01:00
|
|
|
{
|
|
|
|
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 );
|
|
|
|
|
2006-08-31 10:22:24 +02:00
|
|
|
/* there should be one value for each column */
|
|
|
|
if ( count_column_info( columns ) != count_column_info(values) )
|
|
|
|
return ERROR_BAD_QUERY_SYNTAX;
|
|
|
|
|
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;
|
|
|
|
}
|
2006-08-31 10:22:24 +02:00
|
|
|
|
2005-09-20 13:57:19 +02:00
|
|
|
iv = msi_alloc_zero( sizeof *iv );
|
2004-03-20 20:18:46 +01:00
|
|
|
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 );
|
2009-03-02 06:41:22 +01:00
|
|
|
iv->table = tv;
|
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;
|
|
|
|
}
|