2 * Copyright 2009 Hans Leidekker for CodeWeavers
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.
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.
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
19 #include "wine/list.h"
20 #include "wine/unicode.h"
22 IClientSecurity client_security;
23 struct list *table_list;
25 #define SIZEOF(array) (sizeof(array)/sizeof((array)[0]))
27 #define COL_TYPE_MASK 0x0000ffff
28 #define COL_FLAG_DYNAMIC 0x00010000
29 #define COL_FLAG_KEY 0x00020000
30 #define COL_FLAG_METHOD 0x00040000
32 typedef HRESULT (class_method)(IWbemClassObject *, IWbemClassObject **);
38 VARTYPE vartype; /* 0 for default mapping */
41 #define TABLE_FLAG_DYNAMIC 0x00000001
47 const struct column *columns;
50 void (*fill)(struct table *);
59 const struct property *next;
100 struct complex_expr expr;
101 const struct property *propval;
109 const struct property *proplist;
111 const struct expr *cond;
123 void addref_query( struct query * ) DECLSPEC_HIDDEN;
124 void release_query( struct query *query ) DECLSPEC_HIDDEN;
125 HRESULT exec_query( const WCHAR *, IEnumWbemClassObject ** ) DECLSPEC_HIDDEN;
126 HRESULT parse_query( const WCHAR *, struct view **, struct list * ) DECLSPEC_HIDDEN;
127 HRESULT create_view( const struct property *, const WCHAR *, const struct expr *,
128 struct view ** ) DECLSPEC_HIDDEN;
129 void destroy_view( struct view * ) DECLSPEC_HIDDEN;
130 void init_table_list( void ) DECLSPEC_HIDDEN;
131 struct table *get_table( const WCHAR * ) DECLSPEC_HIDDEN;
132 struct table *create_table( const WCHAR *, UINT, const struct column *, UINT,
133 BYTE *, void (*)(struct table *)) DECLSPEC_HIDDEN;
134 BOOL add_table( struct table * ) DECLSPEC_HIDDEN;
135 void free_columns( struct column *, UINT ) DECLSPEC_HIDDEN;
136 void free_table( struct table * ) DECLSPEC_HIDDEN;
137 HRESULT get_column_index( const struct table *, const WCHAR *, UINT * ) DECLSPEC_HIDDEN;
138 HRESULT get_value( const struct table *, UINT, UINT, LONGLONG * ) DECLSPEC_HIDDEN;
139 BSTR get_value_bstr( const struct table *, UINT, UINT ) DECLSPEC_HIDDEN;
140 HRESULT get_propval( const struct view *, UINT, const WCHAR *, VARIANT *,
141 CIMTYPE *, LONG * ) DECLSPEC_HIDDEN;
142 HRESULT get_properties( const struct view *, SAFEARRAY ** ) DECLSPEC_HIDDEN;
144 HRESULT WbemLocator_create(IUnknown *, LPVOID *) DECLSPEC_HIDDEN;
145 HRESULT WbemServices_create(IUnknown *, const WCHAR *, LPVOID *) DECLSPEC_HIDDEN;
146 HRESULT WbemClassObject_create(IUnknown *, IEnumWbemClassObject *, UINT, LPVOID *) DECLSPEC_HIDDEN;
147 HRESULT EnumWbemClassObject_create(IUnknown *, struct query *, LPVOID *) DECLSPEC_HIDDEN;
149 static void *heap_alloc( size_t len ) __WINE_ALLOC_SIZE(1);
150 static inline void *heap_alloc( size_t len )
152 return HeapAlloc( GetProcessHeap(), 0, len );
155 static void *heap_realloc( void *mem, size_t len ) __WINE_ALLOC_SIZE(2);
156 static inline void *heap_realloc( void *mem, size_t len )
158 return HeapReAlloc( GetProcessHeap(), 0, mem, len );
161 static inline BOOL heap_free( void *mem )
163 return HeapFree( GetProcessHeap(), 0, mem );
166 static inline WCHAR *heap_strdupW( const WCHAR *src )
169 if (!src) return NULL;
170 if ((dst = heap_alloc( (strlenW( src ) + 1) * sizeof(WCHAR) ))) strcpyW( dst, src );