2 * Implementation of the Microsoft Installer (msi.dll)
4 * Copyright 2002 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"
27 #include "wine/unicode.h"
37 WINE_DEFAULT_DEBUG_CHANNEL(msidb);
39 #define MSI_HASH_TABLE_SIZE 37
41 typedef struct tagMSIHASHENTRY
43 struct tagMSIHASHENTRY *next;
48 /* below is the query interface to a table */
50 typedef struct tagMSIWHEREVIEW
56 MSIHASHENTRY **reorder;
61 static void free_hash_table(MSIHASHENTRY **table)
63 MSIHASHENTRY *new, *old;
69 for (i = 0; i < MSI_HASH_TABLE_SIZE; i++)
86 static UINT find_entry_in_hash(MSIHASHENTRY **table, UINT row, UINT *val)
93 if (!(entry = table[row % MSI_HASH_TABLE_SIZE]))
95 WARN("Row not found in hash table!\n");
96 return ERROR_FUNCTION_FAILED;
99 while (entry && entry->row != row)
102 if (entry) *val = entry->value;
103 return ERROR_SUCCESS;
106 static UINT add_entry_to_hash(MSIHASHENTRY **table, UINT row, UINT val)
108 MSIHASHENTRY *new = msi_alloc(sizeof(MSIHASHENTRY));
112 return ERROR_OUTOFMEMORY;
118 prev = table[row % MSI_HASH_TABLE_SIZE];
122 table[row % MSI_HASH_TABLE_SIZE] = new;
124 return ERROR_SUCCESS;
127 static UINT WHERE_fetch_int( struct tagMSIVIEW *view, UINT row, UINT col, UINT *val )
129 MSIWHEREVIEW *wv = (MSIWHEREVIEW*)view;
132 TRACE("%p %d %d %p\n", wv, row, col, val );
135 return ERROR_FUNCTION_FAILED;
137 if( row > wv->row_count )
138 return ERROR_NO_MORE_ITEMS;
140 r = find_entry_in_hash(wv->reorder, row, &row);
141 if (r != ERROR_SUCCESS)
144 return wv->table->ops->fetch_int( wv->table, row, col, val );
147 static UINT WHERE_fetch_stream( struct tagMSIVIEW *view, UINT row, UINT col, IStream **stm )
149 MSIWHEREVIEW *wv = (MSIWHEREVIEW*)view;
152 TRACE("%p %d %d %p\n", wv, row, col, stm );
155 return ERROR_FUNCTION_FAILED;
157 if( row > wv->row_count )
158 return ERROR_NO_MORE_ITEMS;
160 r = find_entry_in_hash(wv->reorder, row, &row);
161 if (r != ERROR_SUCCESS)
164 return wv->table->ops->fetch_stream( wv->table, row, col, stm );
167 static UINT WHERE_get_row( struct tagMSIVIEW *view, UINT row, MSIRECORD **rec )
169 MSIWHEREVIEW *wv = (MSIWHEREVIEW *)view;
172 TRACE("%p %d %p\n", wv, row, rec );
175 return ERROR_FUNCTION_FAILED;
177 if (row > wv->row_count)
178 return ERROR_NO_MORE_ITEMS;
180 r = find_entry_in_hash(wv->reorder, row, &row);
181 if (r != ERROR_SUCCESS)
184 return wv->table->ops->get_row(wv->table, row, rec);
187 static UINT WHERE_set_row( struct tagMSIVIEW *view, UINT row, MSIRECORD *rec, UINT mask )
189 MSIWHEREVIEW *wv = (MSIWHEREVIEW*)view;
192 TRACE("%p %d %p %08x\n", wv, row, rec, mask );
195 return ERROR_FUNCTION_FAILED;
197 if( row > wv->row_count )
198 return ERROR_NO_MORE_ITEMS;
200 r = find_entry_in_hash(wv->reorder, row, &row);
201 if (r != ERROR_SUCCESS)
204 return wv->table->ops->set_row( wv->table, row, rec, mask );
207 static UINT WHERE_delete_row(struct tagMSIVIEW *view, UINT row)
209 MSIWHEREVIEW *wv = (MSIWHEREVIEW *)view;
212 TRACE("(%p %d)\n", view, row);
215 return ERROR_FUNCTION_FAILED;
217 if ( row > wv->row_count )
218 return ERROR_NO_MORE_ITEMS;
220 r = find_entry_in_hash( wv->reorder, row, &row );
221 if ( r != ERROR_SUCCESS )
224 return wv->table->ops->delete_row( wv->table, row );
227 static INT INT_evaluate_binary( INT lval, UINT op, INT rval )
232 return ( lval == rval );
234 return ( lval && rval );
236 return ( lval || rval );
238 return ( lval > rval );
240 return ( lval < rval );
242 return ( lval <= rval );
244 return ( lval >= rval );
246 return ( lval != rval );
248 ERR("Unknown operator %d\n", op );
253 static INT INT_evaluate_unary( INT lval, UINT op )
262 ERR("Unknown operator %d\n", op );
267 static const WCHAR *STRING_evaluate( MSIWHEREVIEW *wv, UINT row,
268 const struct expr *expr,
269 const MSIRECORD *record )
275 case EXPR_COL_NUMBER_STRING:
276 r = wv->table->ops->fetch_int( wv->table, row, expr->u.col_number, &val );
277 if( r != ERROR_SUCCESS )
279 return msi_string_lookup_id( wv->db->strings, val );
285 return MSI_RecordGetString( record, ++wv->rec_index );
288 ERR("Invalid expression type\n");
294 static UINT STRCMP_Evaluate( MSIWHEREVIEW *wv, UINT row, const struct expr *cond,
295 INT *val, const MSIRECORD *record )
298 const WCHAR *l_str, *r_str;
300 l_str = STRING_evaluate( wv, row, cond->u.expr.left, record );
301 r_str = STRING_evaluate( wv, row, cond->u.expr.right, record );
302 if( l_str == r_str ||
303 ((!l_str || !*l_str) && (!r_str || !*r_str)) )
305 else if( l_str && ! r_str )
307 else if( r_str && ! l_str )
310 sr = strcmpW( l_str, r_str );
312 *val = ( cond->u.expr.op == OP_EQ && ( sr == 0 ) ) ||
313 ( cond->u.expr.op == OP_NE && ( sr != 0 ) );
315 return ERROR_SUCCESS;
318 static UINT WHERE_evaluate( MSIWHEREVIEW *wv, UINT row,
319 struct expr *cond, INT *val, MSIRECORD *record )
325 return ERROR_SUCCESS;
329 case EXPR_COL_NUMBER:
330 r = wv->table->ops->fetch_int( wv->table, row, cond->u.col_number, &tval );
331 *val = tval - 0x8000;
332 return ERROR_SUCCESS;
334 case EXPR_COL_NUMBER32:
335 r = wv->table->ops->fetch_int( wv->table, row, cond->u.col_number, &tval );
336 *val = tval - 0x80000000;
341 return ERROR_SUCCESS;
344 r = WHERE_evaluate( wv, row, cond->u.expr.left, &lval, record );
345 if( r != ERROR_SUCCESS )
347 r = WHERE_evaluate( wv, row, cond->u.expr.right, &rval, record );
348 if( r != ERROR_SUCCESS )
350 *val = INT_evaluate_binary( lval, cond->u.expr.op, rval );
351 return ERROR_SUCCESS;
354 r = wv->table->ops->fetch_int( wv->table, row, cond->u.expr.left->u.col_number, &tval );
355 if( r != ERROR_SUCCESS )
357 *val = INT_evaluate_unary( tval, cond->u.expr.op );
358 return ERROR_SUCCESS;
361 return STRCMP_Evaluate( wv, row, cond, val, record );
364 *val = MSI_RecordGetInteger( record, ++wv->rec_index );
365 return ERROR_SUCCESS;
368 ERR("Invalid expression type\n");
372 return ERROR_SUCCESS;
375 static UINT WHERE_execute( struct tagMSIVIEW *view, MSIRECORD *record )
377 MSIWHEREVIEW *wv = (MSIWHEREVIEW*)view;
378 UINT count = 0, r, i;
380 MSIVIEW *table = wv->table;
382 TRACE("%p %p\n", wv, record);
385 return ERROR_FUNCTION_FAILED;
387 r = table->ops->execute( table, record );
388 if( r != ERROR_SUCCESS )
391 r = table->ops->get_dimensions( table, &count, NULL );
392 if( r != ERROR_SUCCESS )
395 free_hash_table(wv->reorder);
396 wv->reorder = msi_alloc_zero(MSI_HASH_TABLE_SIZE * sizeof(MSIHASHENTRY *));
398 return ERROR_OUTOFMEMORY;
402 if (0) /* disable optimization, there's no guarantee that strings are in the string table */
404 if (wv->cond->type == EXPR_STRCMP)
406 MSIITERHANDLE handle = NULL;
407 UINT row, value, col;
408 struct expr *col_cond = wv->cond->u.expr.left;
409 struct expr *val_cond = wv->cond->u.expr.right;
411 /* swap conditionals */
412 if (col_cond->type != EXPR_COL_NUMBER_STRING)
414 val_cond = wv->cond->u.expr.left;
415 col_cond = wv->cond->u.expr.right;
418 if ((col_cond->type == EXPR_COL_NUMBER_STRING) && (val_cond->type == EXPR_SVAL))
420 col = col_cond->u.col_number;
421 /* special case for "" - translate it into nil */
422 if (!val_cond->u.sval[0])
426 r = msi_string2idW(wv->db->strings, val_cond->u.sval, &value);
427 if (r != ERROR_SUCCESS)
429 TRACE("no id for %s, assuming it doesn't exist in the table\n", debugstr_w(wv->cond->u.expr.right->u.sval));
430 return ERROR_SUCCESS;
436 r = table->ops->find_matching_rows(table, col, value, &row, &handle);
437 if (r == ERROR_SUCCESS)
438 add_entry_to_hash(wv->reorder, wv->row_count++, row);
439 } while (r == ERROR_SUCCESS);
441 if (r == ERROR_NO_MORE_ITEMS)
442 return ERROR_SUCCESS;
446 /* else fallback to slow case */
450 for( i=0; i<count; i++ )
454 r = WHERE_evaluate( wv, i, wv->cond, &val, record );
455 if( r != ERROR_SUCCESS )
458 add_entry_to_hash( wv->reorder, wv->row_count++, i );
461 return ERROR_SUCCESS;
464 static UINT WHERE_close( struct tagMSIVIEW *view )
466 MSIWHEREVIEW *wv = (MSIWHEREVIEW*)view;
471 return ERROR_FUNCTION_FAILED;
473 return wv->table->ops->close( wv->table );
476 static UINT WHERE_get_dimensions( struct tagMSIVIEW *view, UINT *rows, UINT *cols )
478 MSIWHEREVIEW *wv = (MSIWHEREVIEW*)view;
480 TRACE("%p %p %p\n", wv, rows, cols );
483 return ERROR_FUNCTION_FAILED;
488 return ERROR_FUNCTION_FAILED;
489 *rows = wv->row_count;
492 return wv->table->ops->get_dimensions( wv->table, NULL, cols );
495 static UINT WHERE_get_column_info( struct tagMSIVIEW *view,
496 UINT n, LPWSTR *name, UINT *type, BOOL *temporary,
499 MSIWHEREVIEW *wv = (MSIWHEREVIEW*)view;
501 TRACE("%p %d %p %p %p %p\n", wv, n, name, type, temporary, table_name );
504 return ERROR_FUNCTION_FAILED;
506 return wv->table->ops->get_column_info( wv->table, n, name,
507 type, temporary, table_name );
510 static UINT WHERE_modify( struct tagMSIVIEW *view, MSIMODIFY eModifyMode,
511 MSIRECORD *rec, UINT row )
513 MSIWHEREVIEW *wv = (MSIWHEREVIEW*)view;
515 TRACE("%p %d %p\n", wv, eModifyMode, rec);
517 find_entry_in_hash(wv->reorder, row - 1, &row);
520 return wv->table->ops->modify( wv->table, eModifyMode, rec, row );
523 static UINT WHERE_delete( struct tagMSIVIEW *view )
525 MSIWHEREVIEW *wv = (MSIWHEREVIEW*)view;
530 wv->table->ops->delete( wv->table );
533 free_hash_table(wv->reorder);
537 msiobj_release( &wv->db->hdr );
540 return ERROR_SUCCESS;
543 static UINT WHERE_find_matching_rows( struct tagMSIVIEW *view, UINT col,
544 UINT val, UINT *row, MSIITERHANDLE *handle )
546 MSIWHEREVIEW *wv = (MSIWHEREVIEW*)view;
549 TRACE("%p, %d, %u, %p\n", view, col, val, *handle);
552 return ERROR_FUNCTION_FAILED;
554 r = wv->table->ops->find_matching_rows( wv->table, col, val, row, handle );
555 if (r != ERROR_SUCCESS)
558 if( *row > wv->row_count )
559 return ERROR_NO_MORE_ITEMS;
561 return find_entry_in_hash(wv->reorder, *row, row);
564 static UINT WHERE_sort(struct tagMSIVIEW *view, column_info *columns)
566 MSIWHEREVIEW *wv = (MSIWHEREVIEW *)view;
568 TRACE("%p %p\n", view, columns);
570 return wv->table->ops->sort(wv->table, columns);
573 static const MSIVIEWOPS where_ops =
583 WHERE_get_dimensions,
584 WHERE_get_column_info,
587 WHERE_find_matching_rows,
596 static UINT WHERE_VerifyCondition( MSIDATABASE *db, MSIVIEW *table, struct expr *cond,
604 r = VIEW_find_column( table, cond->u.column.column,
605 cond->u.column.table, &val );
606 if( r == ERROR_SUCCESS )
609 r = table->ops->get_column_info( table, val, NULL, &type,
611 if( r == ERROR_SUCCESS )
613 if (type&MSITYPE_STRING)
614 cond->type = EXPR_COL_NUMBER_STRING;
615 else if ((type&0xff) == 4)
616 cond->type = EXPR_COL_NUMBER32;
618 cond->type = EXPR_COL_NUMBER;
619 cond->u.col_number = val;
628 WARN("Couldn't find column %s.%s\n", debugstr_w( cond->u.column.table ), debugstr_w( cond->u.column.column ) );
632 r = WHERE_VerifyCondition( db, table, cond->u.expr.left, valid );
633 if( r != ERROR_SUCCESS )
636 return ERROR_SUCCESS;
637 r = WHERE_VerifyCondition( db, table, cond->u.expr.right, valid );
638 if( r != ERROR_SUCCESS )
641 /* check the type of the comparison */
642 if( ( cond->u.expr.left->type == EXPR_SVAL ) ||
643 ( cond->u.expr.left->type == EXPR_COL_NUMBER_STRING ) ||
644 ( cond->u.expr.right->type == EXPR_SVAL ) ||
645 ( cond->u.expr.right->type == EXPR_COL_NUMBER_STRING ) )
647 switch( cond->u.expr.op )
654 return ERROR_INVALID_PARAMETER;
657 /* FIXME: check we're comparing a string to a column */
659 cond->type = EXPR_STRCMP;
664 if ( cond->u.expr.left->type != EXPR_COLUMN )
667 return ERROR_INVALID_PARAMETER;
669 r = WHERE_VerifyCondition( db, table, cond->u.expr.left, valid );
670 if( r != ERROR_SUCCESS )
675 cond->type = EXPR_UVAL;
676 cond->u.uval = cond->u.ival;
685 ERR("Invalid expression type\n");
690 return ERROR_SUCCESS;
693 UINT WHERE_CreateView( MSIDATABASE *db, MSIVIEW **view, MSIVIEW *table,
696 MSIWHEREVIEW *wv = NULL;
697 UINT count = 0, r, valid = 0;
699 TRACE("%p\n", table );
701 r = table->ops->get_dimensions( table, NULL, &count );
702 if( r != ERROR_SUCCESS )
704 ERR("can't get table dimensions\n");
710 r = WHERE_VerifyCondition( db, table, cond, &valid );
711 if( r != ERROR_SUCCESS )
714 return ERROR_FUNCTION_FAILED;
717 wv = msi_alloc_zero( sizeof *wv );
719 return ERROR_FUNCTION_FAILED;
721 /* fill the structure */
722 wv->view.ops = &where_ops;
723 msiobj_addref( &db->hdr );
730 *view = (MSIVIEW*) wv;
732 return ERROR_SUCCESS;