msi: Free the join view if we fail to create the table view.
[wine/testsucceed.git] / dlls / msi / join.c
blob134c5698cd23caa189fbbf81ab97de1e451a2204
1 /*
2 * Implementation of the Microsoft Installer (msi.dll)
4 * Copyright 2006 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
21 #include <stdarg.h>
23 #include "windef.h"
24 #include "winbase.h"
25 #include "winerror.h"
26 #include "msi.h"
27 #include "msiquery.h"
28 #include "objbase.h"
29 #include "objidl.h"
30 #include "msipriv.h"
31 #include "query.h"
33 #include "wine/debug.h"
34 #include "wine/unicode.h"
36 WINE_DEFAULT_DEBUG_CHANNEL(msidb);
38 typedef struct tagJOINTABLE
40 struct list entry;
41 MSIVIEW *view;
42 UINT columns;
43 UINT rows;
44 UINT next_rows;
45 } JOINTABLE;
47 typedef struct tagMSIJOINVIEW
49 MSIVIEW view;
50 MSIDATABASE *db;
51 struct list tables;
52 UINT columns;
53 UINT rows;
54 } MSIJOINVIEW;
56 static UINT JOIN_fetch_int( struct tagMSIVIEW *view, UINT row, UINT col, UINT *val )
58 MSIJOINVIEW *jv = (MSIJOINVIEW*)view;
59 JOINTABLE *table;
60 UINT cols = 0;
61 UINT prev_rows = 1;
63 TRACE("%d, %d\n", row, col);
65 if (col == 0 || col > jv->columns)
66 return ERROR_FUNCTION_FAILED;
68 if (row >= jv->rows)
69 return ERROR_FUNCTION_FAILED;
71 LIST_FOR_EACH_ENTRY(table, &jv->tables, JOINTABLE, entry)
73 if (col <= cols + table->columns)
75 row = (row % (jv->rows / table->next_rows)) / prev_rows;
76 col -= cols;
77 break;
80 prev_rows *= table->rows;
81 cols += table->columns;
84 return table->view->ops->fetch_int( table->view, row, col, val );
87 static UINT JOIN_fetch_stream( struct tagMSIVIEW *view, UINT row, UINT col, IStream **stm)
89 MSIJOINVIEW *jv = (MSIJOINVIEW*)view;
90 JOINTABLE *table;
91 UINT cols = 0;
92 UINT prev_rows = 1;
94 TRACE("%p %d %d %p\n", jv, row, col, stm );
96 if (col == 0 || col > jv->columns)
97 return ERROR_FUNCTION_FAILED;
99 if (row >= jv->rows)
100 return ERROR_FUNCTION_FAILED;
102 LIST_FOR_EACH_ENTRY(table, &jv->tables, JOINTABLE, entry)
104 if (col <= cols + table->columns)
106 row = (row % (jv->rows / table->next_rows)) / prev_rows;
107 col -= cols;
108 break;
111 prev_rows *= table->rows;
112 cols += table->columns;
115 return table->view->ops->fetch_stream( table->view, row, col, stm );
118 static UINT JOIN_get_row( struct tagMSIVIEW *view, UINT row, MSIRECORD **rec )
120 FIXME("(%p, %d, %p): stub!\n", view, row, rec);
121 return ERROR_FUNCTION_FAILED;
124 static UINT JOIN_execute( struct tagMSIVIEW *view, MSIRECORD *record )
126 MSIJOINVIEW *jv = (MSIJOINVIEW*)view;
127 JOINTABLE *table;
128 UINT r, rows;
130 TRACE("%p %p\n", jv, record);
132 LIST_FOR_EACH_ENTRY(table, &jv->tables, JOINTABLE, entry)
134 table->view->ops->execute(table->view, NULL);
136 r = table->view->ops->get_dimensions(table->view, &table->rows, NULL);
137 if (r != ERROR_SUCCESS)
139 ERR("failed to get table dimensions\n");
140 return r;
143 /* each table must have at least one row */
144 if (table->rows == 0)
146 jv->rows = 0;
147 return ERROR_SUCCESS;
150 if (jv->rows == 0)
151 jv->rows = table->rows;
152 else
153 jv->rows *= table->rows;
156 rows = jv->rows;
157 LIST_FOR_EACH_ENTRY(table, &jv->tables, JOINTABLE, entry)
159 rows /= table->rows;
160 table->next_rows = rows;
163 return ERROR_SUCCESS;
166 static UINT JOIN_close( struct tagMSIVIEW *view )
168 MSIJOINVIEW *jv = (MSIJOINVIEW*)view;
169 JOINTABLE *table;
171 TRACE("%p\n", jv );
173 LIST_FOR_EACH_ENTRY(table, &jv->tables, JOINTABLE, entry)
175 table->view->ops->close(table->view);
178 return ERROR_SUCCESS;
181 static UINT JOIN_get_dimensions( struct tagMSIVIEW *view, UINT *rows, UINT *cols )
183 MSIJOINVIEW *jv = (MSIJOINVIEW*)view;
185 TRACE("%p %p %p\n", jv, rows, cols );
187 if (cols)
188 *cols = jv->columns;
190 if (rows)
191 *rows = jv->rows;
193 return ERROR_SUCCESS;
196 static UINT JOIN_get_column_info( struct tagMSIVIEW *view,
197 UINT n, LPWSTR *name, UINT *type, BOOL *temporary,
198 LPWSTR *table_name )
200 MSIJOINVIEW *jv = (MSIJOINVIEW*)view;
201 JOINTABLE *table;
202 UINT cols = 0;
204 TRACE("%p %d %p %p %p %p\n", jv, n, name, type, temporary, table_name );
206 if (n == 0 || n > jv->columns)
207 return ERROR_FUNCTION_FAILED;
209 LIST_FOR_EACH_ENTRY(table, &jv->tables, JOINTABLE, entry)
211 if (n <= cols + table->columns)
212 return table->view->ops->get_column_info(table->view, n - cols,
213 name, type, temporary,
214 table_name);
216 cols += table->columns;
219 return ERROR_FUNCTION_FAILED;
222 static UINT JOIN_modify( struct tagMSIVIEW *view, MSIMODIFY eModifyMode,
223 MSIRECORD *rec, UINT row )
225 TRACE("%p %d %p\n", view, eModifyMode, rec);
226 return ERROR_FUNCTION_FAILED;
229 static UINT JOIN_delete( struct tagMSIVIEW *view )
231 MSIJOINVIEW *jv = (MSIJOINVIEW*)view;
232 struct list *item, *cursor;
234 TRACE("%p\n", jv );
236 LIST_FOR_EACH_SAFE(item, cursor, &jv->tables)
238 JOINTABLE* table = LIST_ENTRY(item, JOINTABLE, entry);
240 list_remove(&table->entry);
241 table->view->ops->delete(table->view);
242 table->view = NULL;
243 msi_free(table);
246 msi_free(jv);
248 return ERROR_SUCCESS;
251 static UINT JOIN_find_matching_rows( struct tagMSIVIEW *view, UINT col,
252 UINT val, UINT *row, MSIITERHANDLE *handle )
254 MSIJOINVIEW *jv = (MSIJOINVIEW*)view;
255 UINT i, row_value;
257 TRACE("%p, %d, %u, %p\n", view, col, val, *handle);
259 if (col == 0 || col > jv->columns)
260 return ERROR_INVALID_PARAMETER;
262 for (i = (UINT)*handle; i < jv->rows; i++)
264 if (view->ops->fetch_int( view, i, col, &row_value ) != ERROR_SUCCESS)
265 continue;
267 if (row_value == val)
269 *row = i;
270 (*(UINT *)handle) = i + 1;
271 return ERROR_SUCCESS;
275 return ERROR_NO_MORE_ITEMS;
278 static UINT JOIN_sort(struct tagMSIVIEW *view, column_info *columns)
280 MSIJOINVIEW *jv = (MSIJOINVIEW *)view;
281 JOINTABLE *table;
282 UINT r;
284 TRACE("%p %p\n", view, columns);
286 LIST_FOR_EACH_ENTRY(table, &jv->tables, JOINTABLE, entry)
288 r = table->view->ops->sort(table->view, columns);
289 if (r != ERROR_SUCCESS)
290 return r;
293 return ERROR_SUCCESS;
296 static const MSIVIEWOPS join_ops =
298 JOIN_fetch_int,
299 JOIN_fetch_stream,
300 JOIN_get_row,
301 NULL,
302 NULL,
303 NULL,
304 JOIN_execute,
305 JOIN_close,
306 JOIN_get_dimensions,
307 JOIN_get_column_info,
308 JOIN_modify,
309 JOIN_delete,
310 JOIN_find_matching_rows,
311 NULL,
312 NULL,
313 NULL,
314 NULL,
315 JOIN_sort,
316 NULL,
319 UINT JOIN_CreateView( MSIDATABASE *db, MSIVIEW **view, LPWSTR tables )
321 MSIJOINVIEW *jv = NULL;
322 UINT r = ERROR_SUCCESS;
323 JOINTABLE *table;
324 LPWSTR ptr;
326 TRACE("%p (%s)\n", jv, debugstr_w(tables) );
328 jv = msi_alloc_zero( sizeof *jv );
329 if( !jv )
330 return ERROR_FUNCTION_FAILED;
332 /* fill the structure */
333 jv->view.ops = &join_ops;
334 jv->db = db;
335 jv->columns = 0;
336 jv->rows = 0;
338 list_init(&jv->tables);
340 while (*tables)
342 if ((ptr = strchrW(tables, ' ')))
343 *ptr = '\0';
345 table = msi_alloc(sizeof(JOINTABLE));
346 if (!table)
348 r = ERROR_OUTOFMEMORY;
349 goto end;
352 r = TABLE_CreateView( db, tables, &table->view );
353 if( r != ERROR_SUCCESS )
355 WARN("can't create table: %s\n", debugstr_w(tables));
356 msi_free(table);
357 r = ERROR_BAD_QUERY_SYNTAX;
358 goto end;
361 r = table->view->ops->get_dimensions( table->view, NULL,
362 &table->columns );
363 if( r != ERROR_SUCCESS )
365 ERR("can't get table dimensions\n");
366 goto end;
369 jv->columns += table->columns;
371 list_add_head( &jv->tables, &table->entry );
373 if (!ptr)
374 break;
376 tables = ptr + 1;
379 *view = &jv->view;
380 return ERROR_SUCCESS;
382 end:
383 jv->view.ops->delete( &jv->view );
385 return r;