2004-03-16 20:18:22 +01:00
|
|
|
/*
|
|
|
|
* Implementation of the Microsoft Installer (msi.dll)
|
|
|
|
*
|
2004-03-19 02:16:36 +01:00
|
|
|
* Copyright 2002-2004 Mike McCormack for CodeWeavers
|
2004-03-16 20:18:22 +01:00
|
|
|
*
|
|
|
|
* 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-16 20:18:22 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#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"
|
|
|
|
|
2005-11-02 15:24:21 +01:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(msidb);
|
2004-03-16 20:18:22 +01:00
|
|
|
|
|
|
|
|
|
|
|
/* below is the query interface to a table */
|
|
|
|
|
|
|
|
typedef struct tagMSICREATEVIEW
|
|
|
|
{
|
|
|
|
MSIVIEW view;
|
|
|
|
MSIDATABASE *db;
|
|
|
|
LPWSTR name;
|
|
|
|
BOOL bIsTemp;
|
2005-05-29 22:17:16 +02:00
|
|
|
column_info *col_info;
|
2004-03-16 20:18:22 +01:00
|
|
|
} MSICREATEVIEW;
|
|
|
|
|
|
|
|
static UINT CREATE_fetch_int( struct tagMSIVIEW *view, UINT row, UINT col, UINT *val )
|
|
|
|
{
|
|
|
|
MSICREATEVIEW *cv = (MSICREATEVIEW*)view;
|
|
|
|
|
|
|
|
TRACE("%p %d %d %p\n", cv, row, col, val );
|
|
|
|
|
|
|
|
return ERROR_FUNCTION_FAILED;
|
|
|
|
}
|
|
|
|
|
2004-07-10 00:25:34 +02:00
|
|
|
static UINT CREATE_execute( struct tagMSIVIEW *view, MSIRECORD *record )
|
2004-03-16 20:18:22 +01:00
|
|
|
{
|
|
|
|
MSICREATEVIEW *cv = (MSICREATEVIEW*)view;
|
2005-05-29 22:17:16 +02:00
|
|
|
column_info *col;
|
2005-08-24 13:10:23 +02:00
|
|
|
UINT r, nField;
|
2004-04-19 22:12:14 +02:00
|
|
|
static const WCHAR szTables[] = { '_','T','a','b','l','e','s',0 };
|
|
|
|
static const WCHAR szColumns[] = { '_','C','o','l','u','m','n','s',0 };
|
2004-03-19 02:16:36 +01:00
|
|
|
MSIVIEW *tv = NULL;
|
2005-09-21 11:43:29 +02:00
|
|
|
MSIRECORD *rec = NULL;
|
2004-03-16 20:18:22 +01:00
|
|
|
|
2004-03-19 02:16:36 +01:00
|
|
|
TRACE("%p Table %s (%s)\n", cv, debugstr_w(cv->name),
|
2004-03-16 20:18:22 +01:00
|
|
|
cv->bIsTemp?"temporary":"permanent");
|
|
|
|
|
2004-03-19 02:16:36 +01:00
|
|
|
/* only add tables that don't exist already */
|
|
|
|
if( TABLE_Exists(cv->db, cv->name ) )
|
|
|
|
return ERROR_BAD_QUERY_SYNTAX;
|
|
|
|
|
|
|
|
r = TABLE_CreateView( cv->db, szTables, &tv );
|
|
|
|
TRACE("CreateView returned %x\n", r);
|
|
|
|
if( r )
|
|
|
|
return r;
|
|
|
|
|
|
|
|
r = tv->ops->execute( tv, 0 );
|
|
|
|
TRACE("tv execute returned %x\n", r);
|
|
|
|
if( r )
|
2005-08-24 13:10:23 +02:00
|
|
|
goto err;
|
2004-03-19 02:16:36 +01:00
|
|
|
|
2005-08-24 13:10:23 +02:00
|
|
|
rec = MSI_CreateRecord( 1 );
|
|
|
|
if( !rec )
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
r = MSI_RecordSetStringW( rec, 1, cv->name );
|
2004-03-19 02:16:36 +01:00
|
|
|
if( r )
|
|
|
|
goto err;
|
|
|
|
|
2005-08-24 13:10:23 +02:00
|
|
|
r = tv->ops->insert_row( tv, rec );
|
|
|
|
TRACE("insert_row returned %x\n", r);
|
2004-03-19 02:16:36 +01:00
|
|
|
if( r )
|
|
|
|
goto err;
|
2005-08-24 13:10:23 +02:00
|
|
|
|
2004-03-19 02:16:36 +01:00
|
|
|
tv->ops->delete( tv );
|
|
|
|
tv = NULL;
|
|
|
|
|
2005-08-24 13:10:23 +02:00
|
|
|
msiobj_release( &rec->hdr );
|
|
|
|
|
2004-03-19 02:16:36 +01:00
|
|
|
/* add each column to the _Columns table */
|
|
|
|
r = TABLE_CreateView( cv->db, szColumns, &tv );
|
|
|
|
if( r )
|
|
|
|
return r;
|
|
|
|
|
|
|
|
r = tv->ops->execute( tv, 0 );
|
|
|
|
TRACE("tv execute returned %x\n", r);
|
|
|
|
if( r )
|
2005-08-24 13:10:23 +02:00
|
|
|
goto err;
|
|
|
|
|
|
|
|
rec = MSI_CreateRecord( 4 );
|
|
|
|
if( !rec )
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
r = MSI_RecordSetStringW( rec, 1, cv->name );
|
|
|
|
if( r )
|
|
|
|
goto err;
|
2004-03-19 02:16:36 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* need to set the table, column number, col name and type
|
|
|
|
* for each column we enter in the table
|
|
|
|
*/
|
|
|
|
nField = 1;
|
|
|
|
for( col = cv->col_info; col; col = col->next )
|
2004-03-16 20:18:22 +01:00
|
|
|
{
|
2005-08-24 13:10:23 +02:00
|
|
|
r = MSI_RecordSetInteger( rec, 2, nField );
|
2004-03-19 20:14:12 +01:00
|
|
|
if( r )
|
|
|
|
goto err;
|
|
|
|
|
2005-08-24 13:10:23 +02:00
|
|
|
r = MSI_RecordSetStringW( rec, 3, col->column );
|
2004-03-19 02:16:36 +01:00
|
|
|
if( r )
|
2005-08-24 13:10:23 +02:00
|
|
|
goto err;
|
2004-03-19 02:16:36 +01:00
|
|
|
|
2005-08-24 13:10:23 +02:00
|
|
|
r = MSI_RecordSetInteger( rec, 4, col->type );
|
2004-03-19 02:16:36 +01:00
|
|
|
if( r )
|
2005-08-24 13:10:23 +02:00
|
|
|
goto err;
|
2004-03-19 02:16:36 +01:00
|
|
|
|
2005-08-24 13:10:23 +02:00
|
|
|
r = tv->ops->insert_row( tv, rec );
|
2004-03-19 02:16:36 +01:00
|
|
|
if( r )
|
2005-08-24 13:10:23 +02:00
|
|
|
goto err;
|
2004-06-30 20:24:21 +02:00
|
|
|
|
|
|
|
nField++;
|
2004-03-16 20:18:22 +01:00
|
|
|
}
|
2004-03-19 02:16:36 +01:00
|
|
|
if( !col )
|
|
|
|
r = ERROR_SUCCESS;
|
|
|
|
|
|
|
|
err:
|
2005-09-21 11:43:29 +02:00
|
|
|
if (rec)
|
|
|
|
msiobj_release( &rec->hdr );
|
2004-03-19 02:16:36 +01:00
|
|
|
/* FIXME: remove values from the string table on error */
|
|
|
|
if( tv )
|
|
|
|
tv->ops->delete( tv );
|
|
|
|
return r;
|
2004-03-16 20:18:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static UINT CREATE_close( struct tagMSIVIEW *view )
|
|
|
|
{
|
|
|
|
MSICREATEVIEW *cv = (MSICREATEVIEW*)view;
|
|
|
|
|
2004-03-19 02:16:36 +01:00
|
|
|
TRACE("%p\n", cv);
|
2004-03-16 20:18:22 +01:00
|
|
|
|
|
|
|
return ERROR_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
static UINT CREATE_get_dimensions( struct tagMSIVIEW *view, UINT *rows, UINT *cols )
|
|
|
|
{
|
|
|
|
MSICREATEVIEW *cv = (MSICREATEVIEW*)view;
|
|
|
|
|
|
|
|
TRACE("%p %p %p\n", cv, rows, cols );
|
|
|
|
|
|
|
|
return ERROR_FUNCTION_FAILED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static UINT CREATE_get_column_info( struct tagMSIVIEW *view,
|
|
|
|
UINT n, LPWSTR *name, UINT *type )
|
|
|
|
{
|
|
|
|
MSICREATEVIEW *cv = (MSICREATEVIEW*)view;
|
|
|
|
|
|
|
|
TRACE("%p %d %p %p\n", cv, n, name, type );
|
|
|
|
|
|
|
|
return ERROR_FUNCTION_FAILED;
|
|
|
|
}
|
|
|
|
|
2005-02-08 14:44:25 +01:00
|
|
|
static UINT CREATE_modify( struct tagMSIVIEW *view, MSIMODIFY eModifyMode,
|
|
|
|
MSIRECORD *rec)
|
2004-03-16 20:18:22 +01:00
|
|
|
{
|
|
|
|
MSICREATEVIEW *cv = (MSICREATEVIEW*)view;
|
|
|
|
|
2005-02-08 14:44:25 +01:00
|
|
|
TRACE("%p %d %p\n", cv, eModifyMode, rec );
|
2004-03-16 20:18:22 +01:00
|
|
|
|
|
|
|
return ERROR_FUNCTION_FAILED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static UINT CREATE_delete( struct tagMSIVIEW *view )
|
|
|
|
{
|
|
|
|
MSICREATEVIEW *cv = (MSICREATEVIEW*)view;
|
|
|
|
|
|
|
|
TRACE("%p\n", cv );
|
|
|
|
|
2004-08-25 19:31:39 +02:00
|
|
|
msiobj_release( &cv->db->hdr );
|
2005-09-20 13:57:19 +02:00
|
|
|
msi_free( cv );
|
2004-03-16 20:18:22 +01:00
|
|
|
|
|
|
|
return ERROR_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
MSIVIEWOPS create_ops =
|
|
|
|
{
|
|
|
|
CREATE_fetch_int,
|
2004-03-19 02:16:36 +01:00
|
|
|
NULL,
|
|
|
|
NULL,
|
2004-07-06 20:56:12 +02:00
|
|
|
NULL,
|
2004-03-16 20:18:22 +01:00
|
|
|
CREATE_execute,
|
|
|
|
CREATE_close,
|
|
|
|
CREATE_get_dimensions,
|
|
|
|
CREATE_get_column_info,
|
|
|
|
CREATE_modify,
|
|
|
|
CREATE_delete
|
|
|
|
};
|
|
|
|
|
|
|
|
UINT CREATE_CreateView( MSIDATABASE *db, MSIVIEW **view, LPWSTR table,
|
2005-05-29 22:17:16 +02:00
|
|
|
column_info *col_info, BOOL temp )
|
2004-03-16 20:18:22 +01:00
|
|
|
{
|
|
|
|
MSICREATEVIEW *cv = NULL;
|
|
|
|
|
|
|
|
TRACE("%p\n", cv );
|
|
|
|
|
2005-09-20 13:57:19 +02:00
|
|
|
cv = msi_alloc_zero( sizeof *cv );
|
2004-03-16 20:18:22 +01:00
|
|
|
if( !cv )
|
|
|
|
return ERROR_FUNCTION_FAILED;
|
|
|
|
|
|
|
|
/* fill the structure */
|
|
|
|
cv->view.ops = &create_ops;
|
2004-07-10 00:25:34 +02:00
|
|
|
msiobj_addref( &db->hdr );
|
2004-03-16 20:18:22 +01:00
|
|
|
cv->db = db;
|
2005-05-23 14:08:17 +02:00
|
|
|
cv->name = table;
|
2004-03-16 20:18:22 +01:00
|
|
|
cv->col_info = col_info;
|
|
|
|
cv->bIsTemp = temp;
|
|
|
|
*view = (MSIVIEW*) cv;
|
|
|
|
|
|
|
|
return ERROR_SUCCESS;
|
|
|
|
}
|