user32: Don't reset focus if current dialog is a child.
[wine.git] / dlls / pdh / pdh_main.c
blobbc3674a28a07c9616bfc8288877c8b6803d7411a
1 /*
2 * Performance Data Helper (pdh.dll)
4 * Copyright 2007 Andrey Turkin
5 * Copyright 2007 Hans Leidekker
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 #include <stdarg.h>
23 #include <math.h>
25 #define NONAMELESSUNION
27 #include "windef.h"
28 #include "winbase.h"
30 #include "pdh.h"
31 #include "pdhmsg.h"
32 #include "winperf.h"
34 #include "wine/debug.h"
35 #include "wine/heap.h"
36 #include "wine/list.h"
37 #include "wine/unicode.h"
39 WINE_DEFAULT_DEBUG_CHANNEL(pdh);
41 static CRITICAL_SECTION pdh_handle_cs;
42 static CRITICAL_SECTION_DEBUG pdh_handle_cs_debug =
44 0, 0, &pdh_handle_cs,
45 { &pdh_handle_cs_debug.ProcessLocksList,
46 &pdh_handle_cs_debug.ProcessLocksList },
47 0, 0, { (DWORD_PTR)(__FILE__ ": pdh_handle_cs") }
49 static CRITICAL_SECTION pdh_handle_cs = { &pdh_handle_cs_debug, -1, 0, 0, 0, 0 };
51 static inline WCHAR *pdh_strdup( const WCHAR *src )
53 WCHAR *dst;
55 if (!src) return NULL;
56 if ((dst = heap_alloc( (strlenW( src ) + 1) * sizeof(WCHAR) ))) strcpyW( dst, src );
57 return dst;
60 static inline WCHAR *pdh_strdup_aw( const char *src )
62 int len;
63 WCHAR *dst;
65 if (!src) return NULL;
66 len = MultiByteToWideChar( CP_ACP, 0, src, -1, NULL, 0 );
67 if ((dst = heap_alloc( len * sizeof(WCHAR) ))) MultiByteToWideChar( CP_ACP, 0, src, -1, dst, len );
68 return dst;
71 BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
73 TRACE("(0x%p, %d, %p)\n",hinstDLL,fdwReason,lpvReserved);
74 switch (fdwReason)
76 case DLL_WINE_PREATTACH:
77 return FALSE; /* prefer native version */
78 case DLL_PROCESS_ATTACH:
79 DisableThreadLibraryCalls(hinstDLL);
80 break;
81 case DLL_PROCESS_DETACH:
82 if (lpvReserved) break;
83 DeleteCriticalSection(&pdh_handle_cs);
84 break;
87 return TRUE;
90 union value
92 LONG longvalue;
93 double doublevalue;
94 LONGLONG largevalue;
97 struct counter
99 DWORD magic; /* signature */
100 struct list entry; /* list entry */
101 WCHAR *path; /* identifier */
102 DWORD type; /* counter type */
103 DWORD status; /* update status */
104 LONG scale; /* scale factor */
105 LONG defaultscale; /* default scale factor */
106 DWORD_PTR user; /* user data */
107 DWORD_PTR queryuser; /* query user data */
108 LONGLONG base; /* samples per second */
109 FILETIME stamp; /* time stamp */
110 void (CALLBACK *collect)( struct counter * ); /* collect callback */
111 union value one; /* first value */
112 union value two; /* second value */
115 #define PDH_MAGIC_COUNTER 0x50444831 /* 'PDH1' */
117 static struct counter *create_counter( void )
119 struct counter *counter;
121 if ((counter = heap_alloc_zero( sizeof(struct counter) )))
123 counter->magic = PDH_MAGIC_COUNTER;
124 return counter;
126 return NULL;
129 static void destroy_counter( struct counter *counter )
131 counter->magic = 0;
132 heap_free( counter->path );
133 heap_free( counter );
136 #define PDH_MAGIC_QUERY 0x50444830 /* 'PDH0' */
138 struct query
140 DWORD magic; /* signature */
141 DWORD_PTR user; /* user data */
142 HANDLE thread; /* collect thread */
143 DWORD interval; /* collect interval */
144 HANDLE wait; /* wait event */
145 HANDLE stop; /* stop event */
146 struct list counters; /* counter list */
149 static struct query *create_query( void )
151 struct query *query;
153 if ((query = heap_alloc_zero( sizeof(struct query) )))
155 query->magic = PDH_MAGIC_QUERY;
156 list_init( &query->counters );
157 return query;
159 return NULL;
162 static void destroy_query( struct query *query )
164 query->magic = 0;
165 heap_free( query );
168 struct source
170 DWORD index; /* name index */
171 const WCHAR *path; /* identifier */
172 void (CALLBACK *collect)( struct counter * ); /* collect callback */
173 DWORD type; /* counter type */
174 LONG scale; /* default scale factor */
175 LONGLONG base; /* samples per second */
178 static const WCHAR path_processor_time[] =
179 {'\\','P','r','o','c','e','s','s','o','r','(','_','T','o','t','a','l',')',
180 '\\','%',' ','P','r','o','c','e','s','s','o','r',' ','T','i','m','e',0};
181 static const WCHAR path_uptime[] =
182 {'\\','S','y','s','t','e','m', '\\', 'S','y','s','t','e','m',' ','U','p',' ','T','i','m','e',0};
184 static void CALLBACK collect_processor_time( struct counter *counter )
186 counter->two.largevalue = 500000; /* FIXME */
187 counter->status = PDH_CSTATUS_VALID_DATA;
190 static void CALLBACK collect_uptime( struct counter *counter )
192 counter->two.largevalue = GetTickCount64();
193 counter->status = PDH_CSTATUS_VALID_DATA;
196 #define TYPE_PROCESSOR_TIME \
197 (PERF_SIZE_LARGE | PERF_TYPE_COUNTER | PERF_COUNTER_RATE | PERF_TIMER_100NS | PERF_DELTA_COUNTER | \
198 PERF_INVERSE_COUNTER | PERF_DISPLAY_PERCENT)
200 #define TYPE_UPTIME \
201 (PERF_SIZE_LARGE | PERF_TYPE_COUNTER | PERF_COUNTER_ELAPSED | PERF_OBJECT_TIMER | PERF_DISPLAY_SECONDS)
203 /* counter source registry */
204 static const struct source counter_sources[] =
206 { 6, path_processor_time, collect_processor_time, TYPE_PROCESSOR_TIME, -5, 10000000 },
207 { 674, path_uptime, collect_uptime, TYPE_UPTIME, -3, 1000 }
210 static BOOL is_local_machine( const WCHAR *name, DWORD len )
212 WCHAR buf[MAX_COMPUTERNAME_LENGTH + 1];
213 DWORD buflen = ARRAY_SIZE(buf);
215 if (!GetComputerNameW( buf, &buflen )) return FALSE;
216 return len == buflen && !memicmpW( name, buf, buflen );
219 static BOOL pdh_match_path( LPCWSTR fullpath, LPCWSTR path )
221 const WCHAR *p;
223 if (path[0] == '\\' && path[1] == '\\' && (p = strchrW( path + 2, '\\' )) &&
224 is_local_machine( path + 2, p - path - 2 ))
226 path += p - path;
228 if (strchrW( path, '\\' )) p = fullpath;
229 else p = strrchrW( fullpath, '\\' ) + 1;
230 return !strcmpW( p, path );
233 /***********************************************************************
234 * PdhAddCounterA (PDH.@)
236 PDH_STATUS WINAPI PdhAddCounterA( PDH_HQUERY query, LPCSTR path,
237 DWORD_PTR userdata, PDH_HCOUNTER *counter )
239 PDH_STATUS ret;
240 WCHAR *pathW;
242 TRACE("%p %s %lx %p\n", query, debugstr_a(path), userdata, counter);
244 if (!path) return PDH_INVALID_ARGUMENT;
246 if (!(pathW = pdh_strdup_aw( path )))
247 return PDH_MEMORY_ALLOCATION_FAILURE;
249 ret = PdhAddCounterW( query, pathW, userdata, counter );
251 heap_free( pathW );
252 return ret;
255 /***********************************************************************
256 * PdhAddCounterW (PDH.@)
258 PDH_STATUS WINAPI PdhAddCounterW( PDH_HQUERY hquery, LPCWSTR path,
259 DWORD_PTR userdata, PDH_HCOUNTER *hcounter )
261 struct query *query = hquery;
262 struct counter *counter;
263 unsigned int i;
265 TRACE("%p %s %lx %p\n", hquery, debugstr_w(path), userdata, hcounter);
267 if (!path || !hcounter) return PDH_INVALID_ARGUMENT;
269 EnterCriticalSection( &pdh_handle_cs );
270 if (!query || query->magic != PDH_MAGIC_QUERY)
272 LeaveCriticalSection( &pdh_handle_cs );
273 return PDH_INVALID_HANDLE;
276 *hcounter = NULL;
277 for (i = 0; i < ARRAY_SIZE(counter_sources); i++)
279 if (pdh_match_path( counter_sources[i].path, path ))
281 if ((counter = create_counter()))
283 counter->path = pdh_strdup( counter_sources[i].path );
284 counter->collect = counter_sources[i].collect;
285 counter->type = counter_sources[i].type;
286 counter->defaultscale = counter_sources[i].scale;
287 counter->base = counter_sources[i].base;
288 counter->queryuser = query->user;
289 counter->user = userdata;
291 list_add_tail( &query->counters, &counter->entry );
292 *hcounter = counter;
294 LeaveCriticalSection( &pdh_handle_cs );
295 return ERROR_SUCCESS;
297 LeaveCriticalSection( &pdh_handle_cs );
298 return PDH_MEMORY_ALLOCATION_FAILURE;
301 LeaveCriticalSection( &pdh_handle_cs );
302 return PDH_CSTATUS_NO_COUNTER;
305 /***********************************************************************
306 * PdhAddEnglishCounterA (PDH.@)
308 PDH_STATUS WINAPI PdhAddEnglishCounterA( PDH_HQUERY query, LPCSTR path,
309 DWORD_PTR userdata, PDH_HCOUNTER *counter )
311 TRACE("%p %s %lx %p\n", query, debugstr_a(path), userdata, counter);
313 if (!query) return PDH_INVALID_ARGUMENT;
314 return PdhAddCounterA( query, path, userdata, counter );
317 /***********************************************************************
318 * PdhAddEnglishCounterW (PDH.@)
320 PDH_STATUS WINAPI PdhAddEnglishCounterW( PDH_HQUERY query, LPCWSTR path,
321 DWORD_PTR userdata, PDH_HCOUNTER *counter )
323 TRACE("%p %s %lx %p\n", query, debugstr_w(path), userdata, counter);
325 if (!query) return PDH_INVALID_ARGUMENT;
326 return PdhAddCounterW( query, path, userdata, counter );
329 /* caller must hold counter lock */
330 static PDH_STATUS format_value( struct counter *counter, DWORD format, union value *raw1,
331 union value *raw2, PDH_FMT_COUNTERVALUE *value )
333 LONG factor;
335 factor = counter->scale ? counter->scale : counter->defaultscale;
336 if (format & PDH_FMT_LONG)
338 if (format & PDH_FMT_1000) value->u.longValue = raw2->longvalue * 1000;
339 else value->u.longValue = raw2->longvalue * pow( 10, factor );
341 else if (format & PDH_FMT_LARGE)
343 if (format & PDH_FMT_1000) value->u.largeValue = raw2->largevalue * 1000;
344 else value->u.largeValue = raw2->largevalue * pow( 10, factor );
346 else if (format & PDH_FMT_DOUBLE)
348 if (format & PDH_FMT_1000) value->u.doubleValue = raw2->doublevalue * 1000;
349 else value->u.doubleValue = raw2->doublevalue * pow( 10, factor );
351 else
353 WARN("unknown format %x\n", format);
354 return PDH_INVALID_ARGUMENT;
356 return ERROR_SUCCESS;
359 /***********************************************************************
360 * PdhCalculateCounterFromRawValue (PDH.@)
362 PDH_STATUS WINAPI PdhCalculateCounterFromRawValue( PDH_HCOUNTER handle, DWORD format,
363 PPDH_RAW_COUNTER raw1, PPDH_RAW_COUNTER raw2,
364 PPDH_FMT_COUNTERVALUE value )
366 PDH_STATUS ret;
367 struct counter *counter = handle;
369 TRACE("%p 0x%08x %p %p %p\n", handle, format, raw1, raw2, value);
371 if (!value) return PDH_INVALID_ARGUMENT;
373 EnterCriticalSection( &pdh_handle_cs );
374 if (!counter || counter->magic != PDH_MAGIC_COUNTER)
376 LeaveCriticalSection( &pdh_handle_cs );
377 return PDH_INVALID_HANDLE;
380 ret = format_value( counter, format, (union value *)&raw1->SecondValue,
381 (union value *)&raw2->SecondValue, value );
383 LeaveCriticalSection( &pdh_handle_cs );
384 return ret;
388 /***********************************************************************
389 * PdhCloseQuery (PDH.@)
391 PDH_STATUS WINAPI PdhCloseQuery( PDH_HQUERY handle )
393 struct query *query = handle;
394 struct list *item, *next;
396 TRACE("%p\n", handle);
398 EnterCriticalSection( &pdh_handle_cs );
399 if (!query || query->magic != PDH_MAGIC_QUERY)
401 LeaveCriticalSection( &pdh_handle_cs );
402 return PDH_INVALID_HANDLE;
405 if (query->thread)
407 HANDLE thread = query->thread;
408 SetEvent( query->stop );
409 LeaveCriticalSection( &pdh_handle_cs );
411 WaitForSingleObject( thread, INFINITE );
413 EnterCriticalSection( &pdh_handle_cs );
414 if (query->magic != PDH_MAGIC_QUERY)
416 LeaveCriticalSection( &pdh_handle_cs );
417 return ERROR_SUCCESS;
419 CloseHandle( query->stop );
420 CloseHandle( query->thread );
421 query->thread = NULL;
424 LIST_FOR_EACH_SAFE( item, next, &query->counters )
426 struct counter *counter = LIST_ENTRY( item, struct counter, entry );
428 list_remove( &counter->entry );
429 destroy_counter( counter );
432 destroy_query( query );
434 LeaveCriticalSection( &pdh_handle_cs );
435 return ERROR_SUCCESS;
438 /* caller must hold query lock */
439 static void collect_query_data( struct query *query )
441 struct list *item;
443 LIST_FOR_EACH( item, &query->counters )
445 SYSTEMTIME time;
446 struct counter *counter = LIST_ENTRY( item, struct counter, entry );
448 counter->collect( counter );
450 GetLocalTime( &time );
451 SystemTimeToFileTime( &time, &counter->stamp );
455 /***********************************************************************
456 * PdhCollectQueryData (PDH.@)
458 PDH_STATUS WINAPI PdhCollectQueryData( PDH_HQUERY handle )
460 struct query *query = handle;
462 TRACE("%p\n", handle);
464 EnterCriticalSection( &pdh_handle_cs );
465 if (!query || query->magic != PDH_MAGIC_QUERY)
467 LeaveCriticalSection( &pdh_handle_cs );
468 return PDH_INVALID_HANDLE;
471 if (list_empty( &query->counters ))
473 LeaveCriticalSection( &pdh_handle_cs );
474 return PDH_NO_DATA;
477 collect_query_data( query );
479 LeaveCriticalSection( &pdh_handle_cs );
480 return ERROR_SUCCESS;
483 static DWORD CALLBACK collect_query_thread( void *arg )
485 struct query *query = arg;
486 DWORD interval = query->interval;
487 HANDLE stop = query->stop;
489 for (;;)
491 if (WaitForSingleObject( stop, interval ) != WAIT_TIMEOUT) ExitThread( 0 );
493 EnterCriticalSection( &pdh_handle_cs );
494 if (query->magic != PDH_MAGIC_QUERY)
496 LeaveCriticalSection( &pdh_handle_cs );
497 ExitThread( PDH_INVALID_HANDLE );
500 collect_query_data( query );
502 if (!SetEvent( query->wait ))
504 LeaveCriticalSection( &pdh_handle_cs );
505 ExitThread( 0 );
507 LeaveCriticalSection( &pdh_handle_cs );
511 /***********************************************************************
512 * PdhCollectQueryDataEx (PDH.@)
514 PDH_STATUS WINAPI PdhCollectQueryDataEx( PDH_HQUERY handle, DWORD interval, HANDLE event )
516 PDH_STATUS ret;
517 struct query *query = handle;
519 TRACE("%p %d %p\n", handle, interval, event);
521 EnterCriticalSection( &pdh_handle_cs );
522 if (!query || query->magic != PDH_MAGIC_QUERY)
524 LeaveCriticalSection( &pdh_handle_cs );
525 return PDH_INVALID_HANDLE;
527 if (list_empty( &query->counters ))
529 LeaveCriticalSection( &pdh_handle_cs );
530 return PDH_NO_DATA;
532 if (query->thread)
534 HANDLE thread = query->thread;
535 SetEvent( query->stop );
536 LeaveCriticalSection( &pdh_handle_cs );
538 WaitForSingleObject( thread, INFINITE );
540 EnterCriticalSection( &pdh_handle_cs );
541 if (query->magic != PDH_MAGIC_QUERY)
543 LeaveCriticalSection( &pdh_handle_cs );
544 return PDH_INVALID_HANDLE;
546 CloseHandle( query->thread );
547 query->thread = NULL;
549 else if (!(query->stop = CreateEventW( NULL, FALSE, FALSE, NULL )))
551 ret = GetLastError();
552 LeaveCriticalSection( &pdh_handle_cs );
553 return ret;
555 query->wait = event;
556 query->interval = interval * 1000;
557 if (!(query->thread = CreateThread( NULL, 0, collect_query_thread, query, 0, NULL )))
559 ret = GetLastError();
560 CloseHandle( query->stop );
562 LeaveCriticalSection( &pdh_handle_cs );
563 return ret;
566 LeaveCriticalSection( &pdh_handle_cs );
567 return ERROR_SUCCESS;
570 /***********************************************************************
571 * PdhCollectQueryDataWithTime (PDH.@)
573 PDH_STATUS WINAPI PdhCollectQueryDataWithTime( PDH_HQUERY handle, LONGLONG *timestamp )
575 struct query *query = handle;
576 struct counter *counter;
577 struct list *item;
579 TRACE("%p %p\n", handle, timestamp);
581 if (!timestamp) return PDH_INVALID_ARGUMENT;
583 EnterCriticalSection( &pdh_handle_cs );
584 if (!query || query->magic != PDH_MAGIC_QUERY)
586 LeaveCriticalSection( &pdh_handle_cs );
587 return PDH_INVALID_HANDLE;
589 if (list_empty( &query->counters ))
591 LeaveCriticalSection( &pdh_handle_cs );
592 return PDH_NO_DATA;
595 collect_query_data( query );
597 item = list_head( &query->counters );
598 counter = LIST_ENTRY( item, struct counter, entry );
600 *timestamp = ((LONGLONG)counter->stamp.dwHighDateTime << 32) | counter->stamp.dwLowDateTime;
602 LeaveCriticalSection( &pdh_handle_cs );
603 return ERROR_SUCCESS;
606 /***********************************************************************
607 * PdhExpandWildCardPathA (PDH.@)
609 PDH_STATUS WINAPI PdhExpandWildCardPathA( LPCSTR szDataSource, LPCSTR szWildCardPath, LPSTR mszExpandedPathList, LPDWORD pcchPathListLength, DWORD dwFlags )
611 FIXME("%s, %s, %p, %p, 0x%x: stub\n", debugstr_a(szDataSource), debugstr_a(szWildCardPath), mszExpandedPathList, pcchPathListLength, dwFlags);
612 return PDH_NOT_IMPLEMENTED;
615 /***********************************************************************
616 * PdhExpandWildCardPathW (PDH.@)
618 PDH_STATUS WINAPI PdhExpandWildCardPathW( LPCWSTR szDataSource, LPCWSTR szWildCardPath, LPWSTR mszExpandedPathList, LPDWORD pcchPathListLength, DWORD dwFlags )
620 FIXME("%s, %s, %p, %p, 0x%x: stub\n", debugstr_w(szDataSource), debugstr_w(szWildCardPath), mszExpandedPathList, pcchPathListLength, dwFlags);
621 return PDH_NOT_IMPLEMENTED;
624 /***********************************************************************
625 * PdhExpandCounterPathA (PDH.@)
627 PDH_STATUS WINAPI PdhExpandCounterPathA( LPCSTR szWildCardPath, LPSTR mszExpandedPathList, LPDWORD pcchPathListLength )
629 FIXME("%s, %p, %p: stub\n", debugstr_a(szWildCardPath), mszExpandedPathList, pcchPathListLength);
630 return PdhExpandWildCardPathA(NULL, szWildCardPath, mszExpandedPathList, pcchPathListLength, 0);
633 /***********************************************************************
634 * PdhExpandCounterPathW (PDH.@)
636 PDH_STATUS WINAPI PdhExpandCounterPathW( LPCWSTR szWildCardPath, LPWSTR mszExpandedPathList, LPDWORD pcchPathListLength )
638 FIXME("%s, %p, %p: stub\n", debugstr_w(szWildCardPath), mszExpandedPathList, pcchPathListLength);
639 return PdhExpandWildCardPathW(NULL, szWildCardPath, mszExpandedPathList, pcchPathListLength, 0);
642 /***********************************************************************
643 * PdhGetCounterInfoA (PDH.@)
645 PDH_STATUS WINAPI PdhGetCounterInfoA( PDH_HCOUNTER handle, BOOLEAN text, LPDWORD size, PPDH_COUNTER_INFO_A info )
647 struct counter *counter = handle;
649 TRACE("%p %d %p %p\n", handle, text, size, info);
651 EnterCriticalSection( &pdh_handle_cs );
652 if (!counter || counter->magic != PDH_MAGIC_COUNTER)
654 LeaveCriticalSection( &pdh_handle_cs );
655 return PDH_INVALID_HANDLE;
657 if (!size)
659 LeaveCriticalSection( &pdh_handle_cs );
660 return PDH_INVALID_ARGUMENT;
662 if (*size < sizeof(PDH_COUNTER_INFO_A))
664 *size = sizeof(PDH_COUNTER_INFO_A);
665 LeaveCriticalSection( &pdh_handle_cs );
666 return PDH_MORE_DATA;
669 memset( info, 0, sizeof(PDH_COUNTER_INFO_A) );
671 info->dwType = counter->type;
672 info->CStatus = counter->status;
673 info->lScale = counter->scale;
674 info->lDefaultScale = counter->defaultscale;
675 info->dwUserData = counter->user;
676 info->dwQueryUserData = counter->queryuser;
678 *size = sizeof(PDH_COUNTER_INFO_A);
680 LeaveCriticalSection( &pdh_handle_cs );
681 return ERROR_SUCCESS;
684 /***********************************************************************
685 * PdhGetCounterInfoW (PDH.@)
687 PDH_STATUS WINAPI PdhGetCounterInfoW( PDH_HCOUNTER handle, BOOLEAN text, LPDWORD size, PPDH_COUNTER_INFO_W info )
689 struct counter *counter = handle;
691 TRACE("%p %d %p %p\n", handle, text, size, info);
693 EnterCriticalSection( &pdh_handle_cs );
694 if (!counter || counter->magic != PDH_MAGIC_COUNTER)
696 LeaveCriticalSection( &pdh_handle_cs );
697 return PDH_INVALID_HANDLE;
699 if (!size)
701 LeaveCriticalSection( &pdh_handle_cs );
702 return PDH_INVALID_ARGUMENT;
704 if (*size < sizeof(PDH_COUNTER_INFO_W))
706 *size = sizeof(PDH_COUNTER_INFO_W);
707 LeaveCriticalSection( &pdh_handle_cs );
708 return PDH_MORE_DATA;
711 memset( info, 0, sizeof(PDH_COUNTER_INFO_W) );
713 info->dwType = counter->type;
714 info->CStatus = counter->status;
715 info->lScale = counter->scale;
716 info->lDefaultScale = counter->defaultscale;
717 info->dwUserData = counter->user;
718 info->dwQueryUserData = counter->queryuser;
720 *size = sizeof(PDH_COUNTER_INFO_W);
722 LeaveCriticalSection( &pdh_handle_cs );
723 return ERROR_SUCCESS;
726 /***********************************************************************
727 * PdhGetCounterTimeBase (PDH.@)
729 PDH_STATUS WINAPI PdhGetCounterTimeBase( PDH_HCOUNTER handle, LONGLONG *base )
731 struct counter *counter = handle;
733 TRACE("%p %p\n", handle, base);
735 if (!base) return PDH_INVALID_ARGUMENT;
737 EnterCriticalSection( &pdh_handle_cs );
738 if (!counter || counter->magic != PDH_MAGIC_COUNTER)
740 LeaveCriticalSection( &pdh_handle_cs );
741 return PDH_INVALID_HANDLE;
744 *base = counter->base;
746 LeaveCriticalSection( &pdh_handle_cs );
747 return ERROR_SUCCESS;
750 /***********************************************************************
751 * PdhGetDllVersion (PDH.@)
753 PDH_STATUS WINAPI PdhGetDllVersion( LPDWORD version )
755 if (!version)
756 return PDH_INVALID_ARGUMENT;
758 *version = PDH_VERSION;
760 return ERROR_SUCCESS;
763 /***********************************************************************
764 * PdhGetFormattedCounterValue (PDH.@)
766 PDH_STATUS WINAPI PdhGetFormattedCounterValue( PDH_HCOUNTER handle, DWORD format,
767 LPDWORD type, PPDH_FMT_COUNTERVALUE value )
769 PDH_STATUS ret;
770 struct counter *counter = handle;
772 TRACE("%p %x %p %p\n", handle, format, type, value);
774 if (!value) return PDH_INVALID_ARGUMENT;
776 EnterCriticalSection( &pdh_handle_cs );
777 if (!counter || counter->magic != PDH_MAGIC_COUNTER)
779 LeaveCriticalSection( &pdh_handle_cs );
780 return PDH_INVALID_HANDLE;
782 if (counter->status)
784 LeaveCriticalSection( &pdh_handle_cs );
785 return PDH_INVALID_DATA;
787 if (!(ret = format_value( counter, format, &counter->one, &counter->two, value )))
789 value->CStatus = ERROR_SUCCESS;
790 if (type) *type = counter->type;
793 LeaveCriticalSection( &pdh_handle_cs );
794 return ret;
797 /***********************************************************************
798 * PdhGetRawCounterValue (PDH.@)
800 PDH_STATUS WINAPI PdhGetRawCounterValue( PDH_HCOUNTER handle, LPDWORD type,
801 PPDH_RAW_COUNTER value )
803 struct counter *counter = handle;
805 TRACE("%p %p %p\n", handle, type, value);
807 if (!value) return PDH_INVALID_ARGUMENT;
809 EnterCriticalSection( &pdh_handle_cs );
810 if (!counter || counter->magic != PDH_MAGIC_COUNTER)
812 LeaveCriticalSection( &pdh_handle_cs );
813 return PDH_INVALID_HANDLE;
816 value->CStatus = counter->status;
817 value->TimeStamp.dwLowDateTime = counter->stamp.dwLowDateTime;
818 value->TimeStamp.dwHighDateTime = counter->stamp.dwHighDateTime;
819 value->FirstValue = counter->one.largevalue;
820 value->SecondValue = counter->two.largevalue;
821 value->MultiCount = 1; /* FIXME */
823 if (type) *type = counter->type;
825 LeaveCriticalSection( &pdh_handle_cs );
826 return ERROR_SUCCESS;
829 /***********************************************************************
830 * PdhLookupPerfIndexByNameA (PDH.@)
832 PDH_STATUS WINAPI PdhLookupPerfIndexByNameA( LPCSTR machine, LPCSTR name, LPDWORD index )
834 PDH_STATUS ret;
835 WCHAR *machineW = NULL;
836 WCHAR *nameW;
838 TRACE("%s %s %p\n", debugstr_a(machine), debugstr_a(name), index);
840 if (!name) return PDH_INVALID_ARGUMENT;
842 if (machine && !(machineW = pdh_strdup_aw( machine ))) return PDH_MEMORY_ALLOCATION_FAILURE;
844 if (!(nameW = pdh_strdup_aw( name )))
845 return PDH_MEMORY_ALLOCATION_FAILURE;
847 ret = PdhLookupPerfIndexByNameW( machineW, nameW, index );
849 heap_free( nameW );
850 heap_free( machineW );
851 return ret;
854 /***********************************************************************
855 * PdhLookupPerfIndexByNameW (PDH.@)
857 PDH_STATUS WINAPI PdhLookupPerfIndexByNameW( LPCWSTR machine, LPCWSTR name, LPDWORD index )
859 unsigned int i;
861 TRACE("%s %s %p\n", debugstr_w(machine), debugstr_w(name), index);
863 if (!name || !index) return PDH_INVALID_ARGUMENT;
865 if (machine)
867 FIXME("remote machine not supported\n");
868 return PDH_CSTATUS_NO_MACHINE;
870 for (i = 0; i < ARRAY_SIZE(counter_sources); i++)
872 if (pdh_match_path( counter_sources[i].path, name ))
874 *index = counter_sources[i].index;
875 return ERROR_SUCCESS;
878 return PDH_STRING_NOT_FOUND;
881 /***********************************************************************
882 * PdhLookupPerfNameByIndexA (PDH.@)
884 PDH_STATUS WINAPI PdhLookupPerfNameByIndexA( LPCSTR machine, DWORD index, LPSTR buffer, LPDWORD size )
886 PDH_STATUS ret;
887 WCHAR *machineW = NULL;
888 WCHAR bufferW[PDH_MAX_COUNTER_NAME];
889 DWORD sizeW = ARRAY_SIZE(bufferW);
891 TRACE("%s %d %p %p\n", debugstr_a(machine), index, buffer, size);
893 if (!buffer || !size) return PDH_INVALID_ARGUMENT;
895 if (machine && !(machineW = pdh_strdup_aw( machine ))) return PDH_MEMORY_ALLOCATION_FAILURE;
897 if (!(ret = PdhLookupPerfNameByIndexW( machineW, index, bufferW, &sizeW )))
899 int required = WideCharToMultiByte( CP_ACP, 0, bufferW, -1, NULL, 0, NULL, NULL );
901 if (size && *size < required) ret = PDH_MORE_DATA;
902 else WideCharToMultiByte( CP_ACP, 0, bufferW, -1, buffer, required, NULL, NULL );
903 if (size) *size = required;
905 heap_free( machineW );
906 return ret;
909 /***********************************************************************
910 * PdhLookupPerfNameByIndexW (PDH.@)
912 PDH_STATUS WINAPI PdhLookupPerfNameByIndexW( LPCWSTR machine, DWORD index, LPWSTR buffer, LPDWORD size )
914 PDH_STATUS ret;
915 unsigned int i;
917 TRACE("%s %d %p %p\n", debugstr_w(machine), index, buffer, size);
919 if (machine)
921 FIXME("remote machine not supported\n");
922 return PDH_CSTATUS_NO_MACHINE;
925 if (!buffer || !size) return PDH_INVALID_ARGUMENT;
926 if (!index) return ERROR_SUCCESS;
928 for (i = 0; i < ARRAY_SIZE(counter_sources); i++)
930 if (counter_sources[i].index == index)
932 WCHAR *p = strrchrW( counter_sources[i].path, '\\' ) + 1;
933 unsigned int required = strlenW( p ) + 1;
935 if (*size < required) ret = PDH_MORE_DATA;
936 else
938 strcpyW( buffer, p );
939 ret = ERROR_SUCCESS;
941 *size = required;
942 return ret;
945 return PDH_INVALID_ARGUMENT;
948 /***********************************************************************
949 * PdhOpenQueryA (PDH.@)
951 PDH_STATUS WINAPI PdhOpenQueryA( LPCSTR source, DWORD_PTR userdata, PDH_HQUERY *query )
953 PDH_STATUS ret;
954 WCHAR *sourceW = NULL;
956 TRACE("%s %lx %p\n", debugstr_a(source), userdata, query);
958 if (source && !(sourceW = pdh_strdup_aw( source ))) return PDH_MEMORY_ALLOCATION_FAILURE;
960 ret = PdhOpenQueryW( sourceW, userdata, query );
961 heap_free( sourceW );
963 return ret;
966 /***********************************************************************
967 * PdhOpenQueryW (PDH.@)
969 PDH_STATUS WINAPI PdhOpenQueryW( LPCWSTR source, DWORD_PTR userdata, PDH_HQUERY *handle )
971 struct query *query;
973 TRACE("%s %lx %p\n", debugstr_w(source), userdata, handle);
975 if (!handle) return PDH_INVALID_ARGUMENT;
977 if (source)
979 FIXME("log file data source not supported\n");
980 return PDH_INVALID_ARGUMENT;
982 if ((query = create_query()))
984 query->user = userdata;
985 *handle = query;
987 return ERROR_SUCCESS;
989 return PDH_MEMORY_ALLOCATION_FAILURE;
992 /***********************************************************************
993 * PdhRemoveCounter (PDH.@)
995 PDH_STATUS WINAPI PdhRemoveCounter( PDH_HCOUNTER handle )
997 struct counter *counter = handle;
999 TRACE("%p\n", handle);
1001 EnterCriticalSection( &pdh_handle_cs );
1002 if (!counter || counter->magic != PDH_MAGIC_COUNTER)
1004 LeaveCriticalSection( &pdh_handle_cs );
1005 return PDH_INVALID_HANDLE;
1008 list_remove( &counter->entry );
1009 destroy_counter( counter );
1011 LeaveCriticalSection( &pdh_handle_cs );
1012 return ERROR_SUCCESS;
1015 /***********************************************************************
1016 * PdhSetCounterScaleFactor (PDH.@)
1018 PDH_STATUS WINAPI PdhSetCounterScaleFactor( PDH_HCOUNTER handle, LONG factor )
1020 struct counter *counter = handle;
1022 TRACE("%p\n", handle);
1024 EnterCriticalSection( &pdh_handle_cs );
1025 if (!counter || counter->magic != PDH_MAGIC_COUNTER)
1027 LeaveCriticalSection( &pdh_handle_cs );
1028 return PDH_INVALID_HANDLE;
1030 if (factor < PDH_MIN_SCALE || factor > PDH_MAX_SCALE)
1032 LeaveCriticalSection( &pdh_handle_cs );
1033 return PDH_INVALID_ARGUMENT;
1036 counter->scale = factor;
1038 LeaveCriticalSection( &pdh_handle_cs );
1039 return ERROR_SUCCESS;
1042 /***********************************************************************
1043 * PdhValidatePathA (PDH.@)
1045 PDH_STATUS WINAPI PdhValidatePathA( LPCSTR path )
1047 PDH_STATUS ret;
1048 WCHAR *pathW;
1050 TRACE("%s\n", debugstr_a(path));
1052 if (!path) return PDH_INVALID_ARGUMENT;
1053 if (!(pathW = pdh_strdup_aw( path ))) return PDH_MEMORY_ALLOCATION_FAILURE;
1055 ret = PdhValidatePathW( pathW );
1057 heap_free( pathW );
1058 return ret;
1061 static PDH_STATUS validate_path( LPCWSTR path )
1063 if (!path || !*path) return PDH_INVALID_ARGUMENT;
1064 if (*path++ != '\\' || !strchrW( path, '\\' )) return PDH_CSTATUS_BAD_COUNTERNAME;
1065 return ERROR_SUCCESS;
1068 /***********************************************************************
1069 * PdhValidatePathW (PDH.@)
1071 PDH_STATUS WINAPI PdhValidatePathW( LPCWSTR path )
1073 PDH_STATUS ret;
1074 unsigned int i;
1076 TRACE("%s\n", debugstr_w(path));
1078 if ((ret = validate_path( path ))) return ret;
1080 for (i = 0; i < ARRAY_SIZE(counter_sources); i++)
1081 if (pdh_match_path( counter_sources[i].path, path )) return ERROR_SUCCESS;
1083 return PDH_CSTATUS_NO_COUNTER;
1086 /***********************************************************************
1087 * PdhVbAddCounter (PDH.@)
1089 PDH_STATUS WINAPI PdhVbAddCounter( PDH_HQUERY query, LPCSTR path, PDH_HCOUNTER *counter )
1091 FIXME("%p, %s, %p: stub!\n", query, debugstr_a(path), counter);
1093 if (!path) return PDH_INVALID_ARGUMENT;
1095 return PDH_NOT_IMPLEMENTED;
1098 /***********************************************************************
1099 * PdhValidatePathExA (PDH.@)
1101 PDH_STATUS WINAPI PdhValidatePathExA( PDH_HLOG source, LPCSTR path )
1103 TRACE("%p %s\n", source, debugstr_a(path));
1105 if (source)
1107 FIXME("log file data source not supported\n");
1108 return ERROR_SUCCESS;
1110 return PdhValidatePathA( path );
1113 /***********************************************************************
1114 * PdhValidatePathExW (PDH.@)
1116 PDH_STATUS WINAPI PdhValidatePathExW( PDH_HLOG source, LPCWSTR path )
1118 TRACE("%p %s\n", source, debugstr_w(path));
1120 if (source)
1122 FIXME("log file data source not supported\n");
1123 return ERROR_SUCCESS;
1125 return PdhValidatePathW( path );
1128 /***********************************************************************
1129 * PdhMakeCounterPathA (PDH.@)
1131 PDH_STATUS WINAPI PdhMakeCounterPathA( PDH_COUNTER_PATH_ELEMENTS_A *e, LPSTR buffer,
1132 LPDWORD buflen, DWORD flags )
1134 PDH_STATUS ret = PDH_MEMORY_ALLOCATION_FAILURE;
1135 PDH_COUNTER_PATH_ELEMENTS_W eW;
1136 WCHAR *bufferW;
1137 DWORD buflenW;
1139 TRACE("%p %p %p 0x%08x\n", e, buffer, buflen, flags);
1141 if (!e || !buflen) return PDH_INVALID_ARGUMENT;
1143 memset( &eW, 0, sizeof(eW) );
1144 if (e->szMachineName && !(eW.szMachineName = pdh_strdup_aw( e->szMachineName ))) goto done;
1145 if (e->szObjectName && !(eW.szObjectName = pdh_strdup_aw( e->szObjectName ))) goto done;
1146 if (e->szInstanceName && !(eW.szInstanceName = pdh_strdup_aw( e->szInstanceName ))) goto done;
1147 if (e->szParentInstance && !(eW.szParentInstance = pdh_strdup_aw( e->szParentInstance ))) goto done;
1148 if (e->szCounterName && !(eW.szCounterName = pdh_strdup_aw( e->szCounterName ))) goto done;
1149 eW.dwInstanceIndex = e->dwInstanceIndex;
1151 buflenW = 0;
1152 ret = PdhMakeCounterPathW( &eW, NULL, &buflenW, flags );
1153 if (ret == PDH_MORE_DATA)
1155 if ((bufferW = heap_alloc( buflenW * sizeof(WCHAR) )))
1157 if (!(ret = PdhMakeCounterPathW( &eW, bufferW, &buflenW, flags )))
1159 int len = WideCharToMultiByte(CP_ACP, 0, bufferW, -1, NULL, 0, NULL, NULL);
1160 if (*buflen >= len) WideCharToMultiByte(CP_ACP, 0, bufferW, -1, buffer, *buflen, NULL, NULL);
1161 else ret = PDH_MORE_DATA;
1162 *buflen = len;
1164 heap_free( bufferW );
1166 else
1167 ret = PDH_MEMORY_ALLOCATION_FAILURE;
1170 done:
1171 heap_free( eW.szMachineName );
1172 heap_free( eW.szObjectName );
1173 heap_free( eW.szInstanceName );
1174 heap_free( eW.szParentInstance );
1175 heap_free( eW.szCounterName );
1176 return ret;
1179 /***********************************************************************
1180 * PdhMakeCounterPathW (PDH.@)
1182 PDH_STATUS WINAPI PdhMakeCounterPathW( PDH_COUNTER_PATH_ELEMENTS_W *e, LPWSTR buffer,
1183 LPDWORD buflen, DWORD flags )
1185 static const WCHAR bslash[] = {'\\',0};
1186 static const WCHAR fslash[] = {'/',0};
1187 static const WCHAR lparen[] = {'(',0};
1188 static const WCHAR rparen[] = {')',0};
1189 static const WCHAR fmt[] = {'#','%','u',0};
1191 WCHAR path[PDH_MAX_COUNTER_NAME], instance[12];
1192 PDH_STATUS ret = ERROR_SUCCESS;
1193 DWORD len;
1195 TRACE("%p %p %p 0x%08x\n", e, buffer, buflen, flags);
1197 if (flags) FIXME("unimplemented flags 0x%08x\n", flags);
1199 if (!e || !e->szCounterName || !e->szObjectName || !buflen)
1200 return PDH_INVALID_ARGUMENT;
1202 path[0] = 0;
1203 if (e->szMachineName)
1205 strcatW(path, bslash);
1206 strcatW(path, bslash);
1207 strcatW(path, e->szMachineName);
1209 strcatW(path, bslash);
1210 strcatW(path, e->szObjectName);
1211 if (e->szInstanceName)
1213 strcatW(path, lparen);
1214 if (e->szParentInstance)
1216 strcatW(path, e->szParentInstance);
1217 strcatW(path, fslash);
1219 strcatW(path, e->szInstanceName);
1220 sprintfW(instance, fmt, e->dwInstanceIndex);
1221 strcatW(path, instance);
1222 strcatW(path, rparen);
1224 strcatW(path, bslash);
1225 strcatW(path, e->szCounterName);
1227 len = strlenW(path) + 1;
1228 if (*buflen >= len) strcpyW(buffer, path);
1229 else ret = PDH_MORE_DATA;
1230 *buflen = len;
1231 return ret;
1234 /***********************************************************************
1235 * PdhEnumObjectItemsA (PDH.@)
1237 PDH_STATUS WINAPI PdhEnumObjectItemsA(LPCSTR szDataSource, LPCSTR szMachineName, LPCSTR szObjectName,
1238 LPSTR mszCounterList, LPDWORD pcchCounterListLength, LPSTR mszInstanceList,
1239 LPDWORD pcchInstanceListLength, DWORD dwDetailLevel, DWORD dwFlags)
1241 FIXME("%s, %s, %s, %p, %p, %p, %p, %d, 0x%x: stub\n", debugstr_a(szDataSource), debugstr_a(szMachineName),
1242 debugstr_a(szObjectName), mszCounterList, pcchCounterListLength, mszInstanceList,
1243 pcchInstanceListLength, dwDetailLevel, dwFlags);
1245 return PDH_NOT_IMPLEMENTED;
1248 /***********************************************************************
1249 * PdhEnumObjectItemsW (PDH.@)
1251 PDH_STATUS WINAPI PdhEnumObjectItemsW(LPCWSTR szDataSource, LPCWSTR szMachineName, LPCWSTR szObjectName,
1252 LPWSTR mszCounterList, LPDWORD pcchCounterListLength, LPWSTR mszInstanceList,
1253 LPDWORD pcchInstanceListLength, DWORD dwDetailLevel, DWORD dwFlags)
1255 FIXME("%s, %s, %s, %p, %p, %p, %p, %d, 0x%x: stub\n", debugstr_w(szDataSource), debugstr_w(szMachineName),
1256 debugstr_w(szObjectName), mszCounterList, pcchCounterListLength, mszInstanceList,
1257 pcchInstanceListLength, dwDetailLevel, dwFlags);
1259 return PDH_NOT_IMPLEMENTED;
1262 /***********************************************************************
1263 * PdhSetDefaultRealTimeDataSource (PDH.@)
1265 PDH_STATUS WINAPI PdhSetDefaultRealTimeDataSource( DWORD source )
1267 FIXME("%u\n", source);
1268 return ERROR_SUCCESS;
1271 /***********************************************************************
1272 * PdhGetLogFileTypeA (PDH.@)
1274 PDH_STATUS WINAPI PdhGetLogFileTypeA(const char *log, DWORD *type)
1276 FIXME("%s, %p: stub\n", debugstr_a(log), type);
1277 return PDH_NOT_IMPLEMENTED;
1280 /***********************************************************************
1281 * PdhGetLogFileTypeW (PDH.@)
1283 PDH_STATUS WINAPI PdhGetLogFileTypeW(const WCHAR *log, DWORD *type)
1285 FIXME("%s, %p: stub\n", debugstr_w(log), type);
1286 return PDH_NOT_IMPLEMENTED;
1289 /***********************************************************************
1290 * PdhBindInputDataSourceA (PDH.@)
1292 PDH_STATUS WINAPI PdhBindInputDataSourceA(PDH_HLOG *source, const char *filenamelist)
1294 FIXME("%p %s: stub\n", source, debugstr_a(filenamelist));
1295 return PDH_NOT_IMPLEMENTED;
1298 /***********************************************************************
1299 * PdhBindInputDataSourceW (PDH.@)
1301 PDH_STATUS WINAPI PdhBindInputDataSourceW(PDH_HLOG *source, const WCHAR *filenamelist)
1303 FIXME("%p %s: stub\n", source, debugstr_w(filenamelist));
1304 return PDH_NOT_IMPLEMENTED;