// ExtensionInfoAction.cpp: implementation of the CExtensionInfoAction class. // // Copyright (c) 1997-2001 Microsoft Corporation, All Rights Reserved // ////////////////////////////////////////////////////////////////////// #include "precomp.h" #include "ExtensionInfoAction.h" #include "ExtendString.h" #include "ExtendQuery.h" ////////////////////////////////////////////////////////////////////// // Construction/Destruction ////////////////////////////////////////////////////////////////////// CExtensionInfoAction::CExtensionInfoAction(CRequestObject *pObj, IWbemServices *pNamespace, IWbemContext *pCtx):CGenericClass(pObj, pNamespace, pCtx) { } CExtensionInfoAction::~CExtensionInfoAction() { } HRESULT CExtensionInfoAction::CreateObject(IWbemObjectSink *pHandler, ACTIONTYPE atAction) { HRESULT hr = WBEM_S_NO_ERROR; MSIHANDLE hView = NULL; MSIHANDLE hVView = NULL; MSIHANDLE hSView = NULL; MSIHANDLE hMView = NULL; MSIHANDLE hRecord = NULL; MSIHANDLE hVRecord= NULL; MSIHANDLE hSRecord= NULL; MSIHANDLE hMRecord= NULL; int i = -1; WCHAR wcBuf[BUFF_SIZE]; WCHAR wcExtension[BUFF_SIZE]; WCHAR wcProductCode[39]; DWORD dwBufSize; bool bMatch = false; UINT uiStatus; bool bGotID = false; WCHAR wcAction[BUFF_SIZE]; WCHAR wcTestCode[39]; //These will change from class to class bool bActionID; SetSinglePropertyPath(L"ActionID"); //improve getobject performance by optimizing the query if(atAction != ACTIONTYPE_ENUM) { // we are doing GetObject so we need to be reinitialized hr = WBEM_E_NOT_FOUND; BSTR bstrCompare; int iPos = -1; bstrCompare = SysAllocString ( L"ActionID" ); if ( bstrCompare ) { if(FindIn(m_pRequest->m_Property, bstrCompare, &iPos)) { if ( ::SysStringLen ( m_pRequest->m_Value[iPos] ) < BUFF_SIZE ) { //Get the action we're looking for wcscpy(wcBuf, m_pRequest->m_Value[iPos]); // safe operation if wcslen ( wcBuf ) > 38 if ( wcslen ( wcBuf ) > 38 ) { wcscpy(wcTestCode, &(wcBuf[(wcslen(wcBuf) - 38)])); } else { // we are not good to go, they have sent us longer string SysFreeString ( bstrCompare ); throw hr; } // safe because lenght has been tested already in condition RemoveFinalGUID(m_pRequest->m_Value[iPos], wcAction); bGotID = true; } else { // we are not good to go, they have sent us longer string SysFreeString ( bstrCompare ); throw hr; } } SysFreeString ( bstrCompare ); } else { throw CHeap_Exception(CHeap_Exception::E_ALLOCATION_ERROR); } } Query wcQuery; wcQuery.Append ( 1, L"select distinct `Extension`, `Component_`, `ProgId_` from Extension" ); //optimize for GetObject if ( bGotID ) { wcQuery.Append ( 3, L" where `Extension`=\'", wcAction, L"\'" ); } QueryExt wcQuery1 ( L"select distinct `Verb`, `Command`, `Argument` from Verb where `Extension_`=\'" ); QueryExt wcQuery2 ( L"select `ShellNew`, `ShellNewValue` from Extension where `Extension`=\'" ); QueryExt wcQuery3 ( L"select `MIME_` from Extension where `Extension`=\'" ); while(!bMatch && m_pRequest->Package(++i) && (hr != WBEM_E_CALL_CANCELLED)) { // safe operation: // Package ( i ) returns NULL ( tested above ) or valid WCHAR [39] wcscpy(wcProductCode, m_pRequest->Package(i)); if((atAction == ACTIONTYPE_ENUM) || (bGotID && (_wcsicmp(wcTestCode, wcProductCode) == 0))){ //Open our database try { if ( GetView ( &hView, wcProductCode, wcQuery, L"Extension", TRUE, FALSE ) ) { uiStatus = g_fpMsiViewFetch(hView, &hRecord); while(!bMatch && (uiStatus != ERROR_NO_MORE_ITEMS) && (hr != WBEM_E_CALL_CANCELLED)){ CheckMSI(uiStatus); if(FAILED(hr = SpawnAnInstance(&m_pObj))) throw hr; //---------------------------------------------------- dwBufSize = BUFF_SIZE; CheckMSI(g_fpMsiRecordGetStringW(hRecord, 1, wcExtension, &dwBufSize)); PutProperty(m_pObj, pExtension, wcExtension); // make query on fly wcQuery1.Append ( 2, wcExtension, L"\'" ); PutKeyProperty ( m_pObj, pActionID, wcExtension, &bActionID, m_pRequest, 1, wcProductCode ); //==================================================== dwBufSize = BUFF_SIZE; CheckMSI(g_fpMsiRecordGetStringW(hRecord, 2, wcBuf, &dwBufSize)); if ( ValidateComponentName ( msidata.GetDatabase (), wcProductCode, wcBuf ) ) { dwBufSize = BUFF_SIZE; CheckMSI(g_fpMsiRecordGetStringW(hRecord, 3, wcBuf, &dwBufSize)); PutProperty(m_pObj, pProgID, wcBuf); PutProperty(m_pObj, pName, wcBuf); PutProperty(m_pObj, pCaption, wcBuf); PutProperty(m_pObj, pDescription, wcBuf); CheckMSI(g_fpMsiDatabaseOpenViewW(msidata.GetDatabase (), wcQuery1, &hVView)); CheckMSI(g_fpMsiViewExecute(hVView, 0)); try{ uiStatus = g_fpMsiViewFetch(hVView, &hVRecord); if(uiStatus != ERROR_NO_MORE_ITEMS){ CheckMSI(uiStatus); dwBufSize = BUFF_SIZE; CheckMSI(g_fpMsiRecordGetStringW(hVRecord, 1, wcBuf, &dwBufSize)); PutProperty(m_pObj, pVerb, wcBuf); dwBufSize = BUFF_SIZE; CheckMSI(g_fpMsiRecordGetStringW(hVRecord, 2, wcBuf, &dwBufSize)); PutProperty(m_pObj, pCommand, wcBuf); dwBufSize = BUFF_SIZE; CheckMSI(g_fpMsiRecordGetStringW(hVRecord, 3, wcBuf, &dwBufSize)); PutProperty(m_pObj, pArgument, wcBuf); } // make query on fly wcQuery2.Append ( 2, wcExtension, L"\'" ); if((uiStatus = g_fpMsiDatabaseOpenViewW(msidata.GetDatabase (), wcQuery2, &hSView)) != ERROR_BAD_QUERY_SYNTAX){ CheckMSI(uiStatus); CheckMSI(g_fpMsiViewExecute(hSView, 0)); try{ uiStatus = g_fpMsiViewFetch(hSView, &hSRecord); if(uiStatus != ERROR_NO_MORE_ITEMS){ CheckMSI(uiStatus); dwBufSize = BUFF_SIZE; CheckMSI(g_fpMsiRecordGetStringW(hSRecord, 1, wcBuf, &dwBufSize)); PutProperty(m_pObj, pShellNew, wcBuf); dwBufSize = BUFF_SIZE; CheckMSI(g_fpMsiRecordGetStringW(hSRecord, 2, wcBuf, &dwBufSize)); PutProperty(m_pObj, pShellNewValue, wcBuf); } }catch(...){ g_fpMsiViewClose(hSView); g_fpMsiCloseHandle(hSView); g_fpMsiCloseHandle(hSRecord); throw; } g_fpMsiViewClose(hSView); g_fpMsiCloseHandle(hSView); g_fpMsiCloseHandle(hSRecord); } else { // make query on fly wcQuery3.Append ( 2, wcExtension, L"\'" ); if((uiStatus = g_fpMsiDatabaseOpenViewW(msidata.GetDatabase (), wcQuery3, &hMView)) != ERROR_BAD_QUERY_SYNTAX){ CheckMSI(uiStatus); CheckMSI(g_fpMsiViewExecute(hMView, 0)); try{ uiStatus = g_fpMsiViewFetch(hMView, &hMRecord); if(uiStatus != ERROR_NO_MORE_ITEMS){ CheckMSI(uiStatus); dwBufSize = BUFF_SIZE; CheckMSI(g_fpMsiRecordGetStringW(hMRecord, 1, wcBuf, &dwBufSize)); PutProperty(m_pObj, pMIME, wcBuf); } }catch(...){ g_fpMsiViewClose(hMView); g_fpMsiCloseHandle(hMView); g_fpMsiCloseHandle(hMRecord); throw; } g_fpMsiViewClose(hMView); g_fpMsiCloseHandle(hMView); g_fpMsiCloseHandle(hMRecord); } } }catch(...){ g_fpMsiViewClose(hVView); g_fpMsiCloseHandle(hVView); g_fpMsiCloseHandle(hVRecord); throw; } g_fpMsiViewClose(hVView); g_fpMsiCloseHandle(hVView); g_fpMsiCloseHandle(hVRecord); //---------------------------------------------------- if(bActionID) bMatch = true; if((atAction != ACTIONTYPE_GET) || bMatch){ hr = pHandler->Indicate(1, &m_pObj); } } m_pObj->Release(); m_pObj = NULL; g_fpMsiCloseHandle(hRecord); uiStatus = g_fpMsiViewFetch(hView, &hRecord); } } } catch(...) { g_fpMsiCloseHandle(hRecord); g_fpMsiViewClose(hView); g_fpMsiCloseHandle(hView); msidata.CloseDatabase (); if(m_pObj) { m_pObj->Release(); m_pObj = NULL; } throw; } g_fpMsiCloseHandle(hRecord); g_fpMsiViewClose(hView); g_fpMsiCloseHandle(hView); msidata.CloseDatabase (); } } return hr; }