2 * Implementation of the Microsoft Installer (msi.dll)
4 * Copyright 2004 Mike McCormack for CodeWeavers
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
26 #include "wine/debug.h"
36 WINE_DEFAULT_DEBUG_CHANNEL(msidb
);
39 /* below is the query interface to a table */
49 static UINT
UPDATE_fetch_int( struct tagMSIVIEW
*view
, UINT row
, UINT col
, UINT
*val
)
51 struct update_view
*uv
= (struct update_view
*)view
;
53 TRACE("%p %d %d %p\n", uv
, row
, col
, val
);
55 return ERROR_FUNCTION_FAILED
;
58 static UINT
UPDATE_execute( struct tagMSIVIEW
*view
, MSIRECORD
*record
)
60 struct update_view
*uv
= (struct update_view
*)view
;
61 UINT i
, r
, col_count
= 0, row_count
= 0;
62 MSIRECORD
*values
= NULL
;
63 MSIRECORD
*where
= NULL
;
65 UINT cols_count
, where_count
;
66 column_info
*col
= uv
->vals
;
68 TRACE("%p %p\n", uv
, record
);
70 /* extract the where markers from the record */
73 r
= MSI_RecordGetFieldCount(record
);
75 for (i
= 0; col
; col
= col
->next
)
83 where
= MSI_CreateRecord(where_count
);
86 for (i
= 1; i
<= where_count
; i
++)
87 MSI_RecordCopyField(record
, cols_count
+ i
, where
, i
);
94 r
= ERROR_FUNCTION_FAILED
;
98 r
= wv
->ops
->execute( wv
, where
);
99 TRACE("tv execute returned %x\n", r
);
103 r
= wv
->ops
->get_dimensions( wv
, &row_count
, &col_count
);
107 values
= msi_query_merge_record( col_count
, uv
->vals
, record
);
110 r
= ERROR_FUNCTION_FAILED
;
114 for ( i
=0; i
<row_count
; i
++ )
116 r
= msi_select_update( wv
, values
, i
);
117 if (r
!= ERROR_SUCCESS
)
122 if ( where
) msiobj_release( &where
->hdr
);
123 if ( values
) msiobj_release( &values
->hdr
);
129 static UINT
UPDATE_close( struct tagMSIVIEW
*view
)
131 struct update_view
*uv
= (struct update_view
*)view
;
138 return ERROR_FUNCTION_FAILED
;
140 return wv
->ops
->close( wv
);
143 static UINT
UPDATE_get_dimensions( struct tagMSIVIEW
*view
, UINT
*rows
, UINT
*cols
)
145 struct update_view
*uv
= (struct update_view
*)view
;
148 TRACE("%p %p %p\n", uv
, rows
, cols
);
152 return ERROR_FUNCTION_FAILED
;
154 return wv
->ops
->get_dimensions( wv
, rows
, cols
);
157 static UINT
UPDATE_get_column_info( struct tagMSIVIEW
*view
, UINT n
, LPCWSTR
*name
,
158 UINT
*type
, BOOL
*temporary
, LPCWSTR
*table_name
)
160 struct update_view
*uv
= (struct update_view
*)view
;
163 TRACE("%p %d %p %p %p %p\n", uv
, n
, name
, type
, temporary
, table_name
);
167 return ERROR_FUNCTION_FAILED
;
169 return wv
->ops
->get_column_info( wv
, n
, name
, type
, temporary
, table_name
);
172 static UINT
UPDATE_modify( struct tagMSIVIEW
*view
, MSIMODIFY eModifyMode
,
173 MSIRECORD
*rec
, UINT row
)
175 struct update_view
*uv
= (struct update_view
*)view
;
177 TRACE("%p %d %p\n", uv
, eModifyMode
, rec
);
179 return ERROR_FUNCTION_FAILED
;
182 static UINT
UPDATE_delete( struct tagMSIVIEW
*view
)
184 struct update_view
*uv
= (struct update_view
*)view
;
191 wv
->ops
->delete( wv
);
192 msiobj_release( &uv
->db
->hdr
);
195 return ERROR_SUCCESS
;
198 static const MSIVIEWOPS update_ops
=
210 UPDATE_get_dimensions
,
211 UPDATE_get_column_info
,
220 UINT
UPDATE_CreateView( MSIDATABASE
*db
, MSIVIEW
**view
, LPWSTR table
,
221 column_info
*columns
, struct expr
*expr
)
223 struct update_view
*uv
= NULL
;
225 MSIVIEW
*sv
= NULL
, *wv
= NULL
;
230 r
= WHERE_CreateView( db
, &wv
, table
, expr
);
232 r
= TABLE_CreateView( db
, table
, &wv
);
234 if( r
!= ERROR_SUCCESS
)
237 /* then select the columns we want */
238 r
= SELECT_CreateView( db
, &sv
, wv
, columns
);
239 if( r
!= ERROR_SUCCESS
)
241 wv
->ops
->delete( wv
);
245 uv
= calloc( 1, sizeof *uv
);
248 wv
->ops
->delete( wv
);
249 return ERROR_FUNCTION_FAILED
;
252 /* fill the structure */
253 uv
->view
.ops
= &update_ops
;
254 msiobj_addref( &db
->hdr
);
258 *view
= (MSIVIEW
*) uv
;
260 return ERROR_SUCCESS
;