wbemprox: Store the result index in the class enumerator instead of the view.
[wine] / dlls / wbemprox / wbemprox_private.h
1 /*
2  * Copyright 2009 Hans Leidekker for CodeWeavers
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
17  */
18
19 #include "wine/list.h"
20 #include "wine/unicode.h"
21
22 #define SIZEOF(array) (sizeof(array)/sizeof((array)[0]))
23
24 #define COL_TYPE_MASK    0x0000ffff
25 #define COL_FLAG_DYNAMIC 0x00010000
26 #define COL_FLAG_KEY     0x00020000
27
28 struct column
29 {
30     const WCHAR *name;
31     UINT type;
32 };
33
34 struct table
35 {
36     const WCHAR *name;
37     UINT num_cols;
38     const struct column *columns;
39     UINT num_rows;
40     BYTE *data;
41     void (*fill)(struct table *);
42 };
43
44 struct property
45 {
46     const WCHAR *name;
47     const WCHAR *class;
48     const struct property *next;
49 };
50
51 enum operator
52 {
53     OP_EQ      = 1,
54     OP_AND     = 2,
55     OP_OR      = 3,
56     OP_GT      = 4,
57     OP_LT      = 5,
58     OP_LE      = 6,
59     OP_GE      = 7,
60     OP_NE      = 8,
61     OP_ISNULL  = 9,
62     OP_NOTNULL = 10,
63     OP_LIKE    = 11
64 };
65
66 struct expr;
67 struct complex_expr
68 {
69     enum operator op;
70     struct expr *left;
71     struct expr *right;
72 };
73
74 enum expr_type
75 {
76     EXPR_COMPLEX = 1,
77     EXPR_UNARY   = 2,
78     EXPR_PROPVAL = 3,
79     EXPR_SVAL    = 4,
80     EXPR_IVAL    = 5,
81     EXPR_BVAL    = 6
82 };
83
84 struct expr
85 {
86     enum expr_type type;
87     union
88     {
89         struct complex_expr expr;
90         const struct property *propval;
91         const WCHAR *sval;
92         int ival;
93     } u;
94 };
95
96 struct view
97 {
98     const struct property *proplist;
99     struct table *table;
100     const struct expr *cond;
101     UINT *result;
102     UINT  count;
103 };
104
105 struct query
106 {
107     struct view *view;
108     struct list mem;
109 };
110
111 void free_query( struct query * ) DECLSPEC_HIDDEN;
112 HRESULT exec_query( const WCHAR *, IEnumWbemClassObject ** ) DECLSPEC_HIDDEN;
113 HRESULT parse_query( const WCHAR *, struct view **, struct list * ) DECLSPEC_HIDDEN;
114 HRESULT create_view( const struct property *, const WCHAR *, const struct expr *,
115                      struct view ** ) DECLSPEC_HIDDEN;
116 void destroy_view( struct view * ) DECLSPEC_HIDDEN;
117 struct table *get_table( const WCHAR * ) DECLSPEC_HIDDEN;
118 HRESULT get_propval( const struct view *, UINT, const WCHAR *, VARIANT *,
119                      CIMTYPE * ) DECLSPEC_HIDDEN;
120 HRESULT get_properties( const struct view *, SAFEARRAY ** ) DECLSPEC_HIDDEN;
121
122 HRESULT WbemLocator_create(IUnknown *, LPVOID *) DECLSPEC_HIDDEN;
123 HRESULT WbemServices_create(IUnknown *, const WCHAR *, LPVOID *) DECLSPEC_HIDDEN;
124 HRESULT WbemClassObject_create(IUnknown *, IEnumWbemClassObject *, UINT, LPVOID *) DECLSPEC_HIDDEN;
125 HRESULT EnumWbemClassObject_create(IUnknown *, struct query *, LPVOID *) DECLSPEC_HIDDEN;
126
127 static void *heap_alloc( size_t len ) __WINE_ALLOC_SIZE(1);
128 static inline void *heap_alloc( size_t len )
129 {
130     return HeapAlloc( GetProcessHeap(), 0, len );
131 }
132
133 static void *heap_realloc( void *mem, size_t len ) __WINE_ALLOC_SIZE(2);
134 static inline void *heap_realloc( void *mem, size_t len )
135 {
136     return HeapReAlloc( GetProcessHeap(), 0, mem, len );
137 }
138
139 static inline BOOL heap_free( void *mem )
140 {
141     return HeapFree( GetProcessHeap(), 0, mem );
142 }
143
144 static inline WCHAR *heap_strdupW( const WCHAR *src )
145 {
146     WCHAR *dst;
147     if (!src) return NULL;
148     if ((dst = heap_alloc( (strlenW( src ) + 1) * sizeof(WCHAR) ))) strcpyW( dst, src );
149     return dst;
150 }