d3d10: Add support for parsing sample masks to parse_fx10_object().
[wine] / dlls / wbemprox / table.c
1 /*
2  * Copyright 2012 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 #define COBJMACROS
20
21 #include "config.h"
22 #include <stdarg.h>
23
24 #include "windef.h"
25 #include "winbase.h"
26 #include "wbemcli.h"
27
28 #include "wine/debug.h"
29 #include "wbemprox_private.h"
30
31 WINE_DEFAULT_DEBUG_CHANNEL(wbemprox);
32
33 HRESULT get_column_index( const struct table *table, const WCHAR *name, UINT *column )
34 {
35     UINT i;
36     for (i = 0; i < table->num_cols; i++)
37     {
38         if (!strcmpiW( table->columns[i].name, name ))
39         {
40             *column = i;
41             return S_OK;
42         }
43     }
44     return WBEM_E_INVALID_QUERY;
45 }
46
47 static UINT get_column_size( const struct table *table, UINT column )
48 {
49     if (table->columns[column].type & CIM_FLAG_ARRAY) return sizeof(void *);
50
51     switch (table->columns[column].type & COL_TYPE_MASK)
52     {
53     case CIM_SINT16:
54     case CIM_UINT16:
55         return sizeof(INT16);
56     case CIM_SINT32:
57     case CIM_UINT32:
58         return sizeof(INT32);
59     case CIM_SINT64:
60     case CIM_UINT64:
61         return sizeof(INT64);
62     case CIM_DATETIME:
63     case CIM_STRING:
64         return sizeof(WCHAR *);
65     default:
66         ERR("unknown column type %u\n", table->columns[column].type & COL_TYPE_MASK);
67         break;
68     }
69     return sizeof(INT32);
70 }
71
72 static UINT get_column_offset( const struct table *table, UINT column )
73 {
74     UINT i, offset = 0;
75     for (i = 0; i < column; i++) offset += get_column_size( table, i );
76     return offset;
77 }
78
79 static UINT get_row_size( const struct table *table )
80 {
81     return get_column_offset( table, table->num_cols - 1 ) + get_column_size( table, table->num_cols - 1 );
82 }
83
84 HRESULT get_value( const struct table *table, UINT row, UINT column, LONGLONG *val )
85 {
86     UINT col_offset, row_size;
87     const BYTE *ptr;
88
89     col_offset = get_column_offset( table, column );
90     row_size = get_row_size( table );
91     ptr = table->data + row * row_size + col_offset;
92
93     if (table->columns[column].type & CIM_FLAG_ARRAY)
94     {
95         *val = (LONGLONG)(INT_PTR)*(const void **)ptr;
96         return S_OK;
97     }
98     switch (table->columns[column].type & COL_TYPE_MASK)
99     {
100     case CIM_DATETIME:
101     case CIM_STRING:
102         *val = (LONGLONG)(INT_PTR)*(const WCHAR **)ptr;
103         break;
104     case CIM_SINT16:
105         *val = *(const INT16 *)ptr;
106         break;
107     case CIM_UINT16:
108         *val = *(const UINT16 *)ptr;
109         break;
110     case CIM_SINT32:
111         *val = *(const INT32 *)ptr;
112         break;
113     case CIM_UINT32:
114         *val = *(const UINT32 *)ptr;
115         break;
116     case CIM_SINT64:
117         *val = *(const INT64 *)ptr;
118         break;
119     case CIM_UINT64:
120         *val = *(const UINT64 *)ptr;
121         break;
122     default:
123         ERR("invalid column type %u\n", table->columns[column].type & COL_TYPE_MASK);
124         *val = 0;
125         break;
126     }
127     return S_OK;
128 }
129
130 BSTR get_value_bstr( const struct table *table, UINT row, UINT column )
131 {
132     static const WCHAR fmt_signedW[] = {'%','d',0};
133     static const WCHAR fmt_unsignedW[] = {'%','u',0};
134     static const WCHAR fmt_signed64W[] = {'%','I','6','4','d',0};
135     static const WCHAR fmt_unsigned64W[] = {'%','I','6','4','u',0};
136     static const WCHAR fmt_strW[] = {'\"','%','s','\"',0};
137     LONGLONG val;
138     BSTR ret;
139     WCHAR number[22];
140     UINT len;
141
142     if (table->columns[column].type & CIM_FLAG_ARRAY)
143     {
144         FIXME("array to string conversion not handled\n");
145         return NULL;
146     }
147     if (get_value( table, row, column, &val ) != S_OK) return NULL;
148
149     switch (table->columns[column].type & COL_TYPE_MASK)
150     {
151     case CIM_DATETIME:
152     case CIM_STRING:
153         len = strlenW( (const WCHAR *)(INT_PTR)val ) + 2;
154         if (!(ret = SysAllocStringLen( NULL, len ))) return NULL;
155         sprintfW( ret, fmt_strW, (const WCHAR *)(INT_PTR)val );
156         return ret;
157
158     case CIM_SINT16:
159     case CIM_SINT32:
160         sprintfW( number, fmt_signedW, val );
161         return SysAllocString( number );
162
163     case CIM_UINT16:
164     case CIM_UINT32:
165         sprintfW( number, fmt_unsignedW, val );
166         return SysAllocString( number );
167
168     case CIM_SINT64:
169         wsprintfW( number, fmt_signed64W, val );
170         return SysAllocString( number );
171
172     case CIM_UINT64:
173         wsprintfW( number, fmt_unsigned64W, val );
174         return SysAllocString( number );
175
176     default:
177         FIXME("unhandled column type %u\n", table->columns[column].type & COL_TYPE_MASK);
178         break;
179     }
180     return NULL;
181 }
182
183 static void clear_table( struct table *table )
184 {
185     UINT i, j, type;
186     LONGLONG val;
187
188     if (!table->data) return;
189
190     for (i = 0; i < table->num_rows; i++)
191     {
192         for (j = 0; j < table->num_cols; j++)
193         {
194             if (!(table->columns[j].type & COL_FLAG_DYNAMIC)) continue;
195
196             type = table->columns[j].type & COL_TYPE_MASK;
197             if (type == CIM_STRING || type == CIM_DATETIME || (type & CIM_FLAG_ARRAY))
198             {
199                 if (get_value( table, i, j, &val ) == S_OK) heap_free( (void *)(INT_PTR)val );
200             }
201         }
202     }
203     table->num_rows = 0;
204     if (table->fill)
205     {
206         heap_free( table->data );
207         table->data = NULL;
208     }
209 }
210
211 void free_columns( struct column *columns, UINT num_cols )
212 {
213     UINT i;
214
215     for (i = 0; i < num_cols; i++)
216     {
217         heap_free( (WCHAR *)columns[i].name );
218     }
219     heap_free( columns );
220 }
221
222 void free_table( struct table *table )
223 {
224     if (!table) return;
225
226     clear_table( table );
227     if (table->flags & TABLE_FLAG_DYNAMIC)
228     {
229         heap_free( (WCHAR *)table->name );
230         free_columns( (struct column *)table->columns, table->num_cols );
231         heap_free( table );
232     }
233 }
234
235 struct table *get_table( const WCHAR *name )
236 {
237     struct table *table;
238
239     LIST_FOR_EACH_ENTRY( table, table_list, struct table, entry )
240     {
241         if (!strcmpiW( table->name, name ))
242         {
243             if (table->fill && !table->data) table->fill( table );
244             return table;
245         }
246     }
247     return NULL;
248 }
249
250 struct table *create_table( const WCHAR *name, UINT num_cols, const struct column *columns,
251                             UINT num_rows, BYTE *data, void (*fill)(struct table *) )
252 {
253     struct table *table;
254
255     if (!(table = heap_alloc( sizeof(*table) ))) return NULL;
256     table->name     = name;
257     table->num_cols = num_cols;
258     table->columns  = columns;
259     table->num_rows = num_rows;
260     table->data     = data;
261     table->fill     = fill;
262     table->flags    = TABLE_FLAG_DYNAMIC;
263     return table;
264 }
265
266 BOOL add_table( struct table *table )
267 {
268     struct table *iter;
269
270     LIST_FOR_EACH_ENTRY( iter, table_list, struct table, entry )
271     {
272         if (!strcmpiW( iter->name, table->name ))
273         {
274             TRACE("table %s already exists\n", debugstr_w(table->name));
275             return FALSE;
276         }
277     }
278     list_add_tail( table_list, &table->entry );
279     return TRUE;
280 }