Справочник функций

Ваш аккаунт

Войти через: 
Забыли пароль?
Регистрация
Информацию о новых материалах можно получать и без регистрации:

Почтовая рассылка

Подписчиков: -1
Последний выпуск: 19.06.2015

список задач

519
02 июня 2003 года
VaGon
134 / / 26.03.2003
господа программеры,
как программно узнать список запущенных процессов в WinNT/W2K и как узнать какие из них системные, то есть как из них выделить те которые находятся в списке задач в ТаскМанагере?
2.1K
05 июня 2003 года
maximaximax
83 / / 05.06.2003
Цитата:
Originally posted by VaGon
господа программеры,
как программно узнать список запущенных процессов в WinNT/W2K и как узнать какие из них системные, то есть как из них выделить те которые находятся в списке задач в ТаскМанагере?



Это делается по-разному в семействе Win95 и WinNT.

для 95 функциями CreateToolhelp32Snapshot, Process32First, Process32Next

для NT список процессов можно получить из Registry функцией RegQueryValueEx

ниже сорец от Emmanuel KARTMANN из которого можно понять идею

// NT Implementation: Uses Registry Performance Data
// Reset list/map
ProcessPIDNameMap.RemoveAll();

//This following was coded using the tlist example

bool bErrorOccured=false;
DWORD rc;
HKEY hKeyNames;
DWORD dwType;
DWORD dwSize;
LPBYTE buf = NULL;
TCHAR szSubKey[1024];
LANGID lid;
LPSTR p;
LPSTR p2;
PPERF_DATA_BLOCK pPerf;
PPERF_OBJECT_TYPE pObj;
PPERF_INSTANCE_DEFINITION pInst;
PPERF_COUNTER_BLOCK pCounter;
PPERF_COUNTER_DEFINITION pCounterDef;
DWORD i;
DWORD dwProcessIdTitle;
DWORD dwProcessIdCounter;
TCHAR szProcessName[MAX_PATH];
DWORD dwLimit = 256;
DWORD dwNumTasks;
lid = MAKELANGID(LANG_ENGLISH, SUBLANG_NEUTRAL);
_stprintf( szSubKey, _T("%s\\%03x"), REGKEY_PERF, lid );
rc = RegOpenKeyEx( HKEY_LOCAL_MACHINE,
szSubKey,
0,
KEY_READ,
&hKeyNames
);
if (rc != ERROR_SUCCESS)
{
bErrorOccured=true;
goto exit;

}

//
// get the buffer size for the counter names
//
rc = RegQueryValueEx(hKeyNames,
REGSUBKEY_COUNTERS,
NULL,
&dwType,
NULL,
&dwSize
);

if (rc != ERROR_SUCCESS)
{
bErrorOccured=true;
goto exit;
}

//
// allocate the counter names buffer
//
buf = (LPBYTE) malloc(dwSize);
if (buf == NULL)
{
bErrorOccured=true;
goto exit;
}
memset(buf, 0, dwSize);

//
// read the counter names from the registry
//
rc = RegQueryValueEx( hKeyNames,
REGSUBKEY_COUNTERS,
NULL,
&dwType,
buf,
&dwSize
);

if (rc != ERROR_SUCCESS)
{
bErrorOccured=true;
goto exit;
}

//
// now loop thru the counter names looking for the "Process" counters:
// the buffer contains multiple null terminated strings and then
// finally null terminated at the end. the strings are in pairs of
// counter number and counter name.
//

p =(LPSTR) buf;
while (*p)
{
if (p > (LPSTR)buf)
{
for( p2=p-2; _istdigit(*p2); p2--)
;
}
if (_tcsicmp(p, PROCESS_COUNTER) == 0)
{
// look backwards for the counter number
for(p2=p-2; _istdigit(*p2); p2--)
;
_tcscpy(szSubKey, p2+1);
} else {
if (stricmp(p, PROCESSID_COUNTER) == 0) {
//
// look backwards for the counter number
//
for( p2=p-2; isdigit(*p2); p2--)
;
dwProcessIdTitle = atol( p2+1 );
}
}
//
// next string
//
p += (_tcslen(p) + 1);
}


// free the counter names buffer
free(buf);


// allocate the initial buffer for the performance data

dwSize = INITIAL_SIZE;
buf = (LPBYTE)malloc( dwSize );
if (buf == NULL)
{
bErrorOccured=true;
goto exit;
}
memset(buf, 0, dwSize);
while (true)
{

rc = RegQueryValueEx( HKEY_PERFORMANCE_DATA,
szSubKey,
NULL,
&dwType,
buf,
&dwSize
);

pPerf = (PPERF_DATA_BLOCK) buf;

// check for success and valid perf data block signature

if ((rc == ERROR_SUCCESS) &&
(dwSize > 0) &&
(pPerf)->Signature[0] == (WCHAR)'P' &&
(pPerf)->Signature[1] == (WCHAR)'E' &&
(pPerf)->Signature[2] == (WCHAR)'R' &&
(pPerf)->Signature[3] == (WCHAR)'F' )
{
break;
}

// if buffer is not big enough, reallocate and try again

if (rc == ERROR_MORE_DATA)
{
dwSize += EXTEND_SIZE;
buf = (LPBYTE)realloc( buf, dwSize );
memset( buf, 0, dwSize );
}
else
{
bErrorOccured=true;
goto exit;
}
}

// set the perf_object_type pointer

pObj = (PPERF_OBJECT_TYPE) ((DWORD)pPerf + pPerf->HeaderLength);

//
// loop thru the performance counter definition records looking
// for the process id counter and then save its offset
//
pCounterDef = (PPERF_COUNTER_DEFINITION) ((DWORD)pObj + pObj->HeaderLength);
for (i=0; i<(DWORD)pObj->NumCounters; i++) {
if (pCounterDef->CounterNameTitleIndex == dwProcessIdTitle) {
dwProcessIdCounter = pCounterDef->CounterOffset;
break;
}
pCounterDef++;
}

dwNumTasks = min( dwLimit, (DWORD)pObj->NumInstances );
pInst = (PPERF_INSTANCE_DEFINITION) ((DWORD)pObj + pObj->DefinitionLength);

// loop thru the performance instance data extracting each process name

for (i=0; i<dwNumTasks; i++)
{
//
// pointer to the process name
//
p = (LPSTR) ((DWORD)pInst + pInst->NameOffset);

//
// convert it to ascii
//
rc = WideCharToMultiByte( CP_ACP,
0,
(LPCWSTR)p,
-1,
szProcessName,
sizeof(szProcessName),
NULL,
NULL
);

if (rc)
{
//m_strArray.Add(szProcessName);
TRACE1("%s\t", szProcessName);
}
// get the process id
pCounter = (PPERF_COUNTER_BLOCK) ((DWORD)pInst + pInst->ByteLength);
DWORD nProcessId = *((LPDWORD) ((DWORD)pCounter + dwProcessIdCounter));
TRACE1("%u\n", nProcessId);
// Do not add the _Total instance: it's NOT a process
if (strcmp("_Total", szProcessName) && nProcessId) {
CString szMapKey;
szMapKey.Format("%u", nProcessId);
ProcessPIDNameMap.SetAt(szMapKey, szProcessName);
}
// next process
pInst = (PPERF_INSTANCE_DEFINITION) ((DWORD)pCounter + pCounter->ByteLength);
}

exit:
if (buf)
{
free(buf);
}

RegCloseKey(hKeyNames);
RegCloseKey(HKEY_PERFORMANCE_DATA);
return !bErrorOccured;
Emmanuel KARTMANN

Реклама на сайте | Обмен ссылками | Ссылки | Экспорт (RSS) | Контакты
Добавить статью | Добавить исходник | Добавить хостинг-провайдера | Добавить сайт в каталог