/******************************************************************** Copyright (c) 1999 Microsoft Corporation Module Name: PCH_ResourceDMA.CPP Abstract: WBEM provider class implementation for PCH_ResourceDMA class Revision History: Ghim-Sim Chua (gschua) 04/27/99 - Created ********************************************************************/ #include "pchealth.h" #include "PCH_ResourceDMA.h" //#include "confgmgr.h" ///////////////////////////////////////////////////////////////////////////// // tracing stuff #ifdef THIS_FILE #undef THIS_FILE #endif static char __szTraceSourceFile[] = __FILE__; #define THIS_FILE __szTraceSourceFile #define TRACE_ID DCID_RESOURCEDMA CPCH_ResourceDMA MyPCH_ResourceDMASet (PROVIDER_NAME_PCH_RESOURCEDMA, PCH_NAMESPACE) ; // Property names //=============== const static WCHAR* pCategory = L"Category" ; const static WCHAR* pTimeStamp = L"TimeStamp" ; const static WCHAR* pChange = L"Change" ; const static WCHAR* pChannel = L"Channel" ; const static WCHAR* pMask = L"Mask" ; const static WCHAR* pName = L"Name" ; /***************************************************************************** * * FUNCTION : CPCH_ResourceDMA::EnumerateInstances * * DESCRIPTION : Returns all the instances of this class. * * INPUTS : A pointer to the MethodContext for communication with WinMgmt. * A long that contains the flags described in * IWbemServices::CreateInstanceEnumAsync. Note that the following * flags are handled by (and filtered out by) WinMgmt: * WBEM_FLAG_DEEP * WBEM_FLAG_SHALLOW * WBEM_FLAG_RETURN_IMMEDIATELY * WBEM_FLAG_FORWARD_ONLY * WBEM_FLAG_BIDIRECTIONAL * * RETURNS : WBEM_S_NO_ERROR if successful * * COMMENTS : TO DO: All instances on the machine should be returned here. * If there are no instances, return WBEM_S_NO_ERROR. * It is not an error to have no instances. * *****************************************************************************/ HRESULT CPCH_ResourceDMA::EnumerateInstances( MethodContext* pMethodContext, long lFlags ) { TraceFunctEnter("CPCH_ResourceDMA::EnumerateInstances"); HRESULT hRes = WBEM_S_NO_ERROR; REFPTRCOLLECTION_POSITION posList; // Instances CComPtr pWin32AllocatedResourceEnumInst; // Objects IWbemClassObjectPtr pWin32AllocatedResourceObj; // Variants CComVariant varAntecedent; CComVariant varDependent; CComVariant varPNPEntity; CComVariant varDMANumber; // Query Strings CComBSTR bstrWin32AllocatedResourceQuery = L"Select Antecedent, Dependent FROM win32_Allocatedresource"; // Return Values; ULONG ulWin32AllocatedResourceRetVal = 0; // Integers int i; int nDMALen; int nIter; // Pattern Strings LPCSTR strDMAPattern = "Win32_DMAChannel.DMAChannel="; LPCSTR strPNPEntityPattern = "Win32_PnPEntity.DeviceID="; // Chars LPSTR strSource; LPSTR pDest; BOOL fValidInt; CComBSTR bstrPropertyAntecedent=L"Antecedent"; CComBSTR bstrPropertyDependent=L"Dependent"; // Enumerate the instances of Win32_PNPAllocatedResource hRes = ExecWQLQuery(&pWin32AllocatedResourceEnumInst, bstrWin32AllocatedResourceQuery); if (FAILED(hRes)) { // Cannot get any properties. goto END; } // Query Succeeded while(WBEM_S_NO_ERROR == pWin32AllocatedResourceEnumInst->Next(WBEM_INFINITE, 1, &pWin32AllocatedResourceObj, &ulWin32AllocatedResourceRetVal)) { ///////////////////////////////////////////////////////////////////////////////////////////////////////////// // DMA Value // ///////////////////////////////////////////////////////////////////////////////////////////////////////////// // Get the Antecedent Value hRes = pWin32AllocatedResourceObj->Get(bstrPropertyAntecedent, 0, &varAntecedent, NULL, NULL); if (FAILED(hRes)) { // Could not get the antecedent ErrorTrace(TRACE_ID, "GetVariant on Win32_AllocatedResource:Antecedent Field failed."); } else { // Got the Antecedent. Search its value to see if it is a IRQ Resource. // varAntecedent set to antecedent. Copy this to bstrResult varAntecedent.ChangeType(VT_BSTR, NULL); { USES_CONVERSION; strSource = OLE2A(varAntecedent.bstrVal); } // Check if it is DMA Resource by comparing with the known pattern of DMA Resource. pDest = strstr(strSource,strDMAPattern); if(pDest != NULL) { // This is DMA Resource instance // Can get the DMA ChannelNumber // Advance the pointer to the end of the pattern so the pointer is // positioned at DMA Channel Number pDest += lstrlen(strDMAPattern); // First verify that the given string is a valid integer. nDMALen = lstrlen(pDest); fValidInt = TRUE; for(nIter = 0; nIter SetVariant(pChannel, varDMANumber); if (FAILED(hRes)) { ErrorTrace(TRACE_ID, "SetVariant on PCH_ResourceDMA.Channel Failed!"); // Proceed Anyway } // Copy the following properties from win32_AllocatedResource class Instance // TO PCH_ResourceDMA class Instance. ///////////////////////////////////////////////////////////////////////////////////////////////////////////// // Name // ///////////////////////////////////////////////////////////////////////////////////////////////////////////// // CopyProperty(pWin32AllocatedResourceObj, L"Dependent", pPCHResourceDMAInstance, pName); // Get the Dependent Value hRes = pWin32AllocatedResourceObj->Get(bstrPropertyDependent, 0, &varDependent, NULL, NULL); if (FAILED(hRes)) { // Could not get the Dependent ErrorTrace(TRACE_ID, "GetVariant on Win32_AllocatedResource:Dependent Field failed."); } else { // Got the Dependent. Search its value to point to PNPEntity. // varDependent set to Dependent. Copy this to bstrResult varDependent.ChangeType(VT_BSTR, NULL); { USES_CONVERSION; strSource = OLE2A(varDependent.bstrVal); } // Search for Win32_PNPEntity Pattern. pDest = strstr(strSource,strPNPEntityPattern); if(pDest) { // Advance the pointer to point to the PNPEntity Name pDest += lstrlen(strPNPEntityPattern); // Copy the PNPEntity Name..... varPNPEntity = pDest; // Set the Name hRes = pPCHResourceDMAInstance->SetVariant(pName, varPNPEntity); if (FAILED(hRes)) { ErrorTrace(TRACE_ID, "SetVariant on win32_AllocatedResource.IRQ Number Failed!"); // Proceed Anyway } } } // All the properties in pPCHResourceDMAInstance are set hRes = pPCHResourceDMAInstance->Commit(); if (FAILED(hRes)) { // Cannot commit the Instance ErrorTrace(TRACE_ID, "Commit on Instance failed."); } // end of if FAILED(hRes) } } // end of if pDest != NULL else { // This is not DMA Resource } // end of else pDest != NULL } // end of else got the antecedent } //end of Allocated Resource Instances. END: TraceFunctLeave(); return hRes ; }