dplayx: Code to forward player creation
[wine/gsoc_dplay.git] / dlls / msi / where.c
blobfc804a4d68feddd83f9eaf569ff2b657d3a686fd
1 /*
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
21 #include <stdarg.h>
23 #include "windef.h"
24 #include "winbase.h"
25 #include "winerror.h"
26 #include "wine/debug.h"
27 #include "msi.h"
28 #include "msiquery.h"
29 #include "objbase.h"
30 #include "objidl.h"
31 #include "msipriv.h"
32 #include "winnls.h"
34 #include "query.h"
36 WINE_DEFAULT_DEBUG_CHANNEL(msidb);
38 #define MSI_HASH_TABLE_SIZE 37
40 typedef struct tagMSIHASHENTRY
42 struct tagMSIHASHENTRY *next;
43 UINT value;
44 UINT row;
45 } MSIHASHENTRY;
47 /* below is the query interface to a table */
49 typedef struct tagMSIWHEREVIEW
51 MSIVIEW view;
52 MSIDATABASE *db;
53 MSIVIEW *table;
54 UINT row_count;
55 MSIHASHENTRY **reorder;
56 struct expr *cond;
57 UINT rec_index;
58 } MSIWHEREVIEW;
60 static void free_hash_table(MSIHASHENTRY **table)
62 MSIHASHENTRY *new, *old;
63 int i;
65 if (!table)
66 return;
68 for (i = 0; i < MSI_HASH_TABLE_SIZE; i++)
70 new = table[i];
72 while (new)
74 old = new;
75 new = old->next;
76 msi_free(old);
79 table[i] = NULL;
82 msi_free(table);
85 static UINT find_entry_in_hash(MSIHASHENTRY **table, UINT row, UINT *val)
87 MSIHASHENTRY *entry;
89 if (!table)
90 return ERROR_SUCCESS;
92 if (!(entry = table[row % MSI_HASH_TABLE_SIZE]))
94 WARN("Row not found in hash table!\n");
95 return ERROR_FUNCTION_FAILED;
98 while (entry && entry->row != row)
99 entry = entry->next;
101 if (entry) *val = entry->value;
102 return ERROR_SUCCESS;
105 static UINT add_entry_to_hash(MSIHASHENTRY **table, UINT row, UINT val)
107 MSIHASHENTRY *new = msi_alloc(sizeof(MSIHASHENTRY));
108 MSIHASHENTRY *prev;
110 if (!new)
111 return ERROR_OUTOFMEMORY;
113 new->next = NULL;
114 new->value = val;
115 new->row = row;
117 prev = table[row % MSI_HASH_TABLE_SIZE];
118 if (prev)
119 new->next = prev;
121 table[row % MSI_HASH_TABLE_SIZE] = new;
123 return ERROR_SUCCESS;
126 static UINT WHERE_fetch_int( struct tagMSIVIEW *view, UINT row, UINT col, UINT *val )
128 MSIWHEREVIEW *wv = (MSIWHEREVIEW*)view;
129 UINT r;
131 TRACE("%p %d %d %p\n", wv, row, col, val );
133 if( !wv->table )
134 return ERROR_FUNCTION_FAILED;
136 if( row > wv->row_count )
137 return ERROR_NO_MORE_ITEMS;
139 r = find_entry_in_hash(wv->reorder, row, &row);
140 if (r != ERROR_SUCCESS)
141 return r;
143 return wv->table->ops->fetch_int( wv->table, row, col, val );
146 static UINT WHERE_fetch_stream( struct tagMSIVIEW *view, UINT row, UINT col, IStream **stm )
148 MSIWHEREVIEW *wv = (MSIWHEREVIEW*)view;
149 UINT r;
151 TRACE("%p %d %d %p\n", wv, row, col, stm );
153 if( !wv->table )
154 return ERROR_FUNCTION_FAILED;
156 if( row > wv->row_count )
157 return ERROR_NO_MORE_ITEMS;
159 r = find_entry_in_hash(wv->reorder, row, &row);
160 if (r != ERROR_SUCCESS)
161 return r;
163 return wv->table->ops->fetch_stream( wv->table, row, col, stm );
166 static UINT WHERE_get_row( struct tagMSIVIEW *view, UINT row, MSIRECORD **rec )
168 MSIWHEREVIEW *wv = (MSIWHEREVIEW *)view;
169 UINT r;
171 TRACE("%p %d %p\n", wv, row, rec );
173 if (!wv->table)
174 return ERROR_FUNCTION_FAILED;
176 if (row > wv->row_count)
177 return ERROR_NO_MORE_ITEMS;
179 r = find_entry_in_hash(wv->reorder, row, &row);
180 if (r != ERROR_SUCCESS)
181 return r;
183 return wv->table->ops->get_row(wv->table, row, rec);
186 static UINT WHERE_set_row( struct tagMSIVIEW *view, UINT row, MSIRECORD *rec, UINT mask )
188 MSIWHEREVIEW *wv = (MSIWHEREVIEW*)view;
189 UINT r;
191 TRACE("%p %d %p %08x\n", wv, row, rec, mask );
193 if( !wv->table )
194 return ERROR_FUNCTION_FAILED;
196 if( row > wv->row_count )
197 return ERROR_NO_MORE_ITEMS;
199 r = find_entry_in_hash(wv->reorder, row, &row);
200 if (r != ERROR_SUCCESS)
201 return r;
203 return wv->table->ops->set_row( wv->table, row, rec, mask );
206 static UINT WHERE_delete_row(struct tagMSIVIEW *view, UINT row)
208 MSIWHEREVIEW *wv = (MSIWHEREVIEW *)view;
209 UINT r;
211 TRACE("(%p %d)\n", view, row);
213 if ( !wv->table )
214 return ERROR_FUNCTION_FAILED;
216 if ( row > wv->row_count )
217 return ERROR_NO_MORE_ITEMS;
219 r = find_entry_in_hash( wv->reorder, row, &row );
220 if ( r != ERROR_SUCCESS )
221 return r;
223 return wv->table->ops->delete_row( wv->table, row );
226 static INT INT_evaluate_binary( INT lval, UINT op, INT rval )
228 switch( op )
230 case OP_EQ:
231 return ( lval == rval );
232 case OP_AND:
233 return ( lval && rval );
234 case OP_OR:
235 return ( lval || rval );
236 case OP_GT:
237 return ( lval > rval );
238 case OP_LT:
239 return ( lval < rval );
240 case OP_LE:
241 return ( lval <= rval );
242 case OP_GE:
243 return ( lval >= rval );
244 case OP_NE:
245 return ( lval != rval );
246 default:
247 ERR("Unknown operator %d\n", op );
249 return 0;
252 static INT INT_evaluate_unary( INT lval, UINT op )
254 switch( op )
256 case OP_ISNULL:
257 return ( !lval );
258 case OP_NOTNULL:
259 return ( lval );
260 default:
261 ERR("Unknown operator %d\n", op );
263 return 0;
266 static const WCHAR *STRING_evaluate( MSIWHEREVIEW *wv, UINT row,
267 const struct expr *expr,
268 const MSIRECORD *record )
270 UINT val = 0, r;
272 switch( expr->type )
274 case EXPR_COL_NUMBER_STRING:
275 r = wv->table->ops->fetch_int( wv->table, row, expr->u.col_number, &val );
276 if( r != ERROR_SUCCESS )
277 return NULL;
278 return msi_string_lookup_id( wv->db->strings, val );
280 case EXPR_SVAL:
281 return expr->u.sval;
283 case EXPR_WILDCARD:
284 return MSI_RecordGetString( record, ++wv->rec_index );
286 default:
287 ERR("Invalid expression type\n");
288 break;
290 return NULL;
293 static UINT STRCMP_Evaluate( MSIWHEREVIEW *wv, UINT row, const struct expr *cond,
294 INT *val, const MSIRECORD *record )
296 int sr;
297 const WCHAR *l_str, *r_str;
299 l_str = STRING_evaluate( wv, row, cond->u.expr.left, record );
300 r_str = STRING_evaluate( wv, row, cond->u.expr.right, record );
301 if( l_str == r_str ||
302 ((!l_str || !*l_str) && (!r_str || !*r_str)) )
303 sr = 0;
304 else if( l_str && ! r_str )
305 sr = 1;
306 else if( r_str && ! l_str )
307 sr = -1;
308 else
309 sr = lstrcmpW( l_str, r_str );
311 *val = ( cond->u.expr.op == OP_EQ && ( sr == 0 ) ) ||
312 ( cond->u.expr.op == OP_NE && ( sr != 0 ) ) ||
313 ( cond->u.expr.op == OP_LT && ( sr < 0 ) ) ||
314 ( cond->u.expr.op == OP_GT && ( sr > 0 ) );
316 return ERROR_SUCCESS;
319 static UINT WHERE_evaluate( MSIWHEREVIEW *wv, UINT row,
320 struct expr *cond, INT *val, MSIRECORD *record )
322 UINT r, tval;
323 INT lval, rval;
325 if( !cond )
326 return ERROR_SUCCESS;
328 switch( cond->type )
330 case EXPR_COL_NUMBER:
331 r = wv->table->ops->fetch_int( wv->table, row, cond->u.col_number, &tval );
332 *val = tval - 0x8000;
333 return ERROR_SUCCESS;
335 case EXPR_COL_NUMBER32:
336 r = wv->table->ops->fetch_int( wv->table, row, cond->u.col_number, &tval );
337 *val = tval - 0x80000000;
338 return r;
340 case EXPR_UVAL:
341 *val = cond->u.uval;
342 return ERROR_SUCCESS;
344 case EXPR_COMPLEX:
345 r = WHERE_evaluate( wv, row, cond->u.expr.left, &lval, record );
346 if( r != ERROR_SUCCESS )
347 return r;
348 r = WHERE_evaluate( wv, row, cond->u.expr.right, &rval, record );
349 if( r != ERROR_SUCCESS )
350 return r;
351 *val = INT_evaluate_binary( lval, cond->u.expr.op, rval );
352 return ERROR_SUCCESS;
354 case EXPR_UNARY:
355 r = wv->table->ops->fetch_int( wv->table, row, cond->u.expr.left->u.col_number, &tval );
356 if( r != ERROR_SUCCESS )
357 return r;
358 *val = INT_evaluate_unary( tval, cond->u.expr.op );
359 return ERROR_SUCCESS;
361 case EXPR_STRCMP:
362 return STRCMP_Evaluate( wv, row, cond, val, record );
364 case EXPR_WILDCARD:
365 *val = MSI_RecordGetInteger( record, ++wv->rec_index );
366 return ERROR_SUCCESS;
368 default:
369 ERR("Invalid expression type\n");
370 break;
373 return ERROR_SUCCESS;
376 static UINT WHERE_execute( struct tagMSIVIEW *view, MSIRECORD *record )
378 MSIWHEREVIEW *wv = (MSIWHEREVIEW*)view;
379 UINT count = 0, r, i;
380 INT val;
381 MSIVIEW *table = wv->table;
383 TRACE("%p %p\n", wv, record);
385 if( !table )
386 return ERROR_FUNCTION_FAILED;
388 r = table->ops->execute( table, record );
389 if( r != ERROR_SUCCESS )
390 return r;
392 r = table->ops->get_dimensions( table, &count, NULL );
393 if( r != ERROR_SUCCESS )
394 return r;
396 free_hash_table(wv->reorder);
397 wv->reorder = msi_alloc_zero(MSI_HASH_TABLE_SIZE * sizeof(MSIHASHENTRY *));
398 if( !wv->reorder )
399 return ERROR_OUTOFMEMORY;
401 wv->row_count = 0;
402 if (wv->cond->type == EXPR_STRCMP)
404 MSIITERHANDLE handle = NULL;
405 UINT row, value, col;
406 struct expr *col_cond = wv->cond->u.expr.left;
407 struct expr *val_cond = wv->cond->u.expr.right;
409 /* swap conditionals */
410 if (col_cond->type != EXPR_COL_NUMBER_STRING)
412 val_cond = wv->cond->u.expr.left;
413 col_cond = wv->cond->u.expr.right;
416 if ((col_cond->type == EXPR_COL_NUMBER_STRING) && (val_cond->type == EXPR_SVAL))
418 col = col_cond->u.col_number;
419 /* special case for "" - translate it into nil */
420 if (!val_cond->u.sval[0])
421 value = 0;
422 else
424 r = msi_string2idW(wv->db->strings, val_cond->u.sval, &value);
425 if (r != ERROR_SUCCESS)
427 TRACE("no id for %s, assuming it doesn't exist in the table\n", debugstr_w(wv->cond->u.expr.right->u.sval));
428 return ERROR_SUCCESS;
434 r = table->ops->find_matching_rows(table, col, value, &row, &handle);
435 if (r == ERROR_SUCCESS)
436 add_entry_to_hash(wv->reorder, wv->row_count++, row);
437 } while (r == ERROR_SUCCESS);
439 if (r == ERROR_NO_MORE_ITEMS)
440 return ERROR_SUCCESS;
441 else
442 return r;
444 /* else fallback to slow case */
447 for( i=0; i<count; i++ )
449 val = 0;
450 wv->rec_index = 0;
451 r = WHERE_evaluate( wv, i, wv->cond, &val, record );
452 if( r != ERROR_SUCCESS )
453 return r;
454 if( val )
455 add_entry_to_hash( wv->reorder, wv->row_count++, i );
458 return ERROR_SUCCESS;
461 static UINT WHERE_close( struct tagMSIVIEW *view )
463 MSIWHEREVIEW *wv = (MSIWHEREVIEW*)view;
465 TRACE("%p\n", wv );
467 if( !wv->table )
468 return ERROR_FUNCTION_FAILED;
470 return wv->table->ops->close( wv->table );
473 static UINT WHERE_get_dimensions( struct tagMSIVIEW *view, UINT *rows, UINT *cols )
475 MSIWHEREVIEW *wv = (MSIWHEREVIEW*)view;
477 TRACE("%p %p %p\n", wv, rows, cols );
479 if( !wv->table )
480 return ERROR_FUNCTION_FAILED;
482 if( rows )
484 if( !wv->reorder )
485 return ERROR_FUNCTION_FAILED;
486 *rows = wv->row_count;
489 return wv->table->ops->get_dimensions( wv->table, NULL, cols );
492 static UINT WHERE_get_column_info( struct tagMSIVIEW *view,
493 UINT n, LPWSTR *name, UINT *type, BOOL *temporary )
495 MSIWHEREVIEW *wv = (MSIWHEREVIEW*)view;
497 TRACE("%p %d %p %p %p\n", wv, n, name, type, temporary );
499 if( !wv->table )
500 return ERROR_FUNCTION_FAILED;
502 return wv->table->ops->get_column_info( wv->table, n, name,
503 type, temporary );
506 static UINT WHERE_modify( struct tagMSIVIEW *view, MSIMODIFY eModifyMode,
507 MSIRECORD *rec, UINT row )
509 MSIWHEREVIEW *wv = (MSIWHEREVIEW*)view;
511 TRACE("%p %d %p\n", wv, eModifyMode, rec);
513 find_entry_in_hash(wv->reorder, row - 1, &row);
514 row++;
516 return wv->table->ops->modify( wv->table, eModifyMode, rec, row );
519 static UINT WHERE_delete( struct tagMSIVIEW *view )
521 MSIWHEREVIEW *wv = (MSIWHEREVIEW*)view;
523 TRACE("%p\n", wv );
525 if( wv->table )
526 wv->table->ops->delete( wv->table );
527 wv->table = 0;
529 free_hash_table(wv->reorder);
530 wv->reorder = NULL;
531 wv->row_count = 0;
533 msiobj_release( &wv->db->hdr );
534 msi_free( wv );
536 return ERROR_SUCCESS;
539 static UINT WHERE_find_matching_rows( struct tagMSIVIEW *view, UINT col,
540 UINT val, UINT *row, MSIITERHANDLE *handle )
542 MSIWHEREVIEW *wv = (MSIWHEREVIEW*)view;
543 UINT r;
545 TRACE("%p, %d, %u, %p\n", view, col, val, *handle);
547 if( !wv->table )
548 return ERROR_FUNCTION_FAILED;
550 r = wv->table->ops->find_matching_rows( wv->table, col, val, row, handle );
551 if (r != ERROR_SUCCESS)
552 return r;
554 if( *row > wv->row_count )
555 return ERROR_NO_MORE_ITEMS;
557 return find_entry_in_hash(wv->reorder, *row, row);
560 static UINT WHERE_sort(struct tagMSIVIEW *view, column_info *columns)
562 MSIWHEREVIEW *wv = (MSIWHEREVIEW *)view;
564 TRACE("%p %p\n", view, columns);
566 return wv->table->ops->sort(wv->table, columns);
569 static const MSIVIEWOPS where_ops =
571 WHERE_fetch_int,
572 WHERE_fetch_stream,
573 WHERE_get_row,
574 WHERE_set_row,
575 NULL,
576 WHERE_delete_row,
577 WHERE_execute,
578 WHERE_close,
579 WHERE_get_dimensions,
580 WHERE_get_column_info,
581 WHERE_modify,
582 WHERE_delete,
583 WHERE_find_matching_rows,
584 NULL,
585 NULL,
586 NULL,
587 NULL,
588 WHERE_sort,
589 NULL,
592 static UINT WHERE_VerifyCondition( MSIDATABASE *db, MSIVIEW *table, struct expr *cond,
593 UINT *valid )
595 UINT r, val = 0;
597 switch( cond->type )
599 case EXPR_COLUMN:
600 r = VIEW_find_column( table, cond->u.column, &val );
601 if( r == ERROR_SUCCESS )
603 UINT type = 0;
604 r = table->ops->get_column_info( table, val, NULL, &type, NULL );
605 if( r == ERROR_SUCCESS )
607 if (type&MSITYPE_STRING)
608 cond->type = EXPR_COL_NUMBER_STRING;
609 else if ((type&0xff) == 4)
610 cond->type = EXPR_COL_NUMBER32;
611 else
612 cond->type = EXPR_COL_NUMBER;
613 cond->u.col_number = val;
614 *valid = 1;
616 else
617 *valid = 0;
619 else
621 *valid = 0;
622 WARN("Couldn't find column %s\n", debugstr_w( cond->u.column ) );
624 break;
625 case EXPR_COMPLEX:
626 r = WHERE_VerifyCondition( db, table, cond->u.expr.left, valid );
627 if( r != ERROR_SUCCESS )
628 return r;
629 if( !*valid )
630 return ERROR_SUCCESS;
631 r = WHERE_VerifyCondition( db, table, cond->u.expr.right, valid );
632 if( r != ERROR_SUCCESS )
633 return r;
635 /* check the type of the comparison */
636 if( ( cond->u.expr.left->type == EXPR_SVAL ) ||
637 ( cond->u.expr.left->type == EXPR_COL_NUMBER_STRING ) ||
638 ( cond->u.expr.right->type == EXPR_SVAL ) ||
639 ( cond->u.expr.right->type == EXPR_COL_NUMBER_STRING ) )
641 switch( cond->u.expr.op )
643 case OP_EQ:
644 case OP_GT:
645 case OP_LT:
646 case OP_NE:
647 break;
648 default:
649 *valid = FALSE;
650 return ERROR_INVALID_PARAMETER;
653 /* FIXME: check we're comparing a string to a column */
655 cond->type = EXPR_STRCMP;
658 break;
659 case EXPR_UNARY:
660 if ( cond->u.expr.left->type != EXPR_COLUMN )
662 *valid = FALSE;
663 return ERROR_INVALID_PARAMETER;
665 r = WHERE_VerifyCondition( db, table, cond->u.expr.left, valid );
666 if( r != ERROR_SUCCESS )
667 return r;
668 break;
669 case EXPR_IVAL:
670 *valid = 1;
671 cond->type = EXPR_UVAL;
672 cond->u.uval = cond->u.ival;
673 break;
674 case EXPR_WILDCARD:
675 *valid = 1;
676 break;
677 case EXPR_SVAL:
678 *valid = 1;
679 break;
680 default:
681 ERR("Invalid expression type\n");
682 *valid = 0;
683 break;
686 return ERROR_SUCCESS;
689 UINT WHERE_CreateView( MSIDATABASE *db, MSIVIEW **view, MSIVIEW *table,
690 struct expr *cond )
692 MSIWHEREVIEW *wv = NULL;
693 UINT count = 0, r, valid = 0;
695 TRACE("%p\n", table );
697 r = table->ops->get_dimensions( table, NULL, &count );
698 if( r != ERROR_SUCCESS )
700 ERR("can't get table dimensions\n");
701 return r;
704 if( cond )
706 r = WHERE_VerifyCondition( db, table, cond, &valid );
707 if( r != ERROR_SUCCESS )
708 return r;
709 if( !valid )
710 return ERROR_FUNCTION_FAILED;
713 wv = msi_alloc_zero( sizeof *wv );
714 if( !wv )
715 return ERROR_FUNCTION_FAILED;
717 /* fill the structure */
718 wv->view.ops = &where_ops;
719 msiobj_addref( &db->hdr );
720 wv->db = db;
721 wv->table = table;
722 wv->row_count = 0;
723 wv->reorder = NULL;
724 wv->cond = cond;
725 wv->rec_index = 0;
726 *view = (MSIVIEW*) wv;
728 return ERROR_SUCCESS;