Leaked source code of windows server 2003
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
// Copyright (c) 2000-2001 Microsoft Corporation, All Rights Reserved
// CJobObjIOActgProps.h
#pragma once
//*****************************************************************************
// BEGIN: Declaration of Win32_NamedJobObject class properties.
//*****************************************************************************
#define IDS_Win32_JobObjectIOAccountingInfo L"Win32_NamedJobObjectActgInfo"
#define PROP_ALL_REQUIRED 0xFFFFFFFF
#define PROP_NONE_REQUIRED 0x00000000
#define PROP_JOIOActgID 0x00000001
#define PROP_TotalUserTime 0x00000002
#define PROP_TotalKernelTime 0x00000004
#define PROP_ThisPeriodTotalUserTime 0x00000008
#define PROP_ThisPeriodTotalKernelTime 0x00000010
#define PROP_TotalPageFaultCount 0x00000020
#define PROP_TotalProcesses 0x00000040
#define PROP_ActiveProcesses 0x00000080
#define PROP_TotalTerminatedProcesses 0x00000100
#define PROP_ReadOperationCount 0x00000200
#define PROP_WriteOperationCount 0x00000400
#define PROP_OtherOperationCount 0x00000800
#define PROP_ReadTransferCount 0x00001000
#define PROP_WriteTransferCount 0x00002000
#define PROP_OtherTransferCount 0x00004000
#define PROP_PeakProcessMemoryUsed 0x00010000
#define PROP_PeakJobMemoryUsed 0x00020000
// The following enum is used to reference
// into the array that follows it. Hence,
// they must be kept in synch.
typedef enum tag_JOB_OBJ_IOACTG_PROPS { JOIOACTGPROP_ID = 0, JOIOACTGPROP_TotalUserTime, JOIOACTGPROP_TotalKernelTime, JOIOACTGPROP_ThisPeriodTotalUserTime, JOIOACTGPROP_ThisPeriodTotalKernelTime, JOIOACTGPROP_TotalPageFaultCount, JOIOACTGPROP_TotalProcesses, JOIOACTGPROP_ActiveProcesses, JOIOACTGPROP_TotalTerminatedProcesses, JOIOACTGPROP_ReadOperationCount, JOIOACTGPROP_WriteOperationCount, JOIOACTGPROP_OtherOperationCount, JOIOACTGPROP_ReadTransferCount, JOIOACTGPROP_WriteTransferCount, JOIOACTGPROP_OtherTransferCount, JOIOACTGPROP_PeakProcessMemoryUsed, JOIOACTGPROP_PeakJobMemoryUsed,
// used to keep track of how many props we have:
JOIOACTGPROP_JobObjIOActgPropertyCount
} JOB_OBJ_IOACTG_PROPS;
// WARNING!! MUST KEEP MEMBERS OF THE FOLLOWING ARRAY
// IN SYNCH WITH THE ENUMERATION DECLARED ABOVE!!!
extern LPCWSTR g_rgJobObjIOActgPropNames[]; //*****************************************************************************
// END: Declaration of Win32_NamedJobObject class properties.
//*****************************************************************************
class CJobObjIOActgProps : public CObjProps { public: CJobObjIOActgProps() { m_hJob = NULL; } CJobObjIOActgProps(CHString& chstrNamespace); CJobObjIOActgProps( HANDLE hJob, CHString& chstrNamespace);
virtual ~CJobObjIOActgProps();
HRESULT SetKeysFromPath( const BSTR ObjectPath, IWbemContext __RPC_FAR *pCtx);
HRESULT SetKeysDirect( std::vector<CVARIANT>& vecvKeys);
HRESULT GetWhichPropsReq( CFrameworkQuery& cfwq);
HRESULT SetNonKeyReqProps();
HRESULT LoadPropertyValues( IWbemClassObject* pIWCO);
void SetHandle(const HANDLE hJob); HANDLE& GetHandle();
private: HANDLE m_hJob;
// Member meant to only be called
// by base class.
static DWORD CheckProps( CFrameworkQuery& Query);
};
|