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.

219 lines
5.6 KiB

  1. // BindImage.cpp: implementation of the CBindImage class.
  2. //
  3. // Copyright (c) 1997-2001 Microsoft Corporation, All Rights Reserved
  4. //
  5. //////////////////////////////////////////////////////////////////////
  6. #include "precomp.h"
  7. #include "BindImage.h"
  8. #include "ExtendString.h"
  9. #include "ExtendQuery.h"
  10. //////////////////////////////////////////////////////////////////////
  11. // Construction/Destruction
  12. //////////////////////////////////////////////////////////////////////
  13. CBindImage::CBindImage(CRequestObject *pObj, IWbemServices *pNamespace,
  14. IWbemContext *pCtx):CGenericClass(pObj, pNamespace, pCtx)
  15. {
  16. }
  17. CBindImage::~CBindImage()
  18. {
  19. }
  20. HRESULT CBindImage::CreateObject(IWbemObjectSink *pHandler, ACTIONTYPE atAction)
  21. {
  22. HRESULT hr = WBEM_S_NO_ERROR;
  23. MSIHANDLE hView = NULL;
  24. MSIHANDLE hRecord = NULL;
  25. int i = -1;
  26. WCHAR wcBuf[BUFF_SIZE];
  27. WCHAR wcProductCode[39];
  28. DWORD dwBufSize;
  29. bool bMatch = false;
  30. UINT uiStatus;
  31. bool bGotID = false;
  32. WCHAR wcAction[BUFF_SIZE];
  33. WCHAR wcTestCode[39];
  34. //These will change from class to class
  35. bool bActionID;
  36. SetSinglePropertyPath(L"ActionID");
  37. //improve getobject performance by optimizing the query
  38. if(atAction != ACTIONTYPE_ENUM)
  39. {
  40. // we are doing GetObject so we need to be reinitialized
  41. hr = WBEM_E_NOT_FOUND;
  42. BSTR bstrCompare;
  43. int iPos = -1;
  44. bstrCompare = SysAllocString ( L"ActionID" );
  45. if ( bstrCompare )
  46. {
  47. if(FindIn(m_pRequest->m_Property, bstrCompare, &iPos))
  48. {
  49. if ( ::SysStringLen ( m_pRequest->m_Value[iPos] ) < BUFF_SIZE )
  50. {
  51. //Get the action we're looking for
  52. wcscpy(wcBuf, m_pRequest->m_Value[iPos]);
  53. // safe operation if wcslen ( wcBuf ) > 38
  54. if ( wcslen ( wcBuf ) > 38 )
  55. {
  56. wcscpy(wcTestCode, &(wcBuf[(wcslen(wcBuf) - 38)]));
  57. }
  58. else
  59. {
  60. // we are not good to go, they have sent us longer string
  61. SysFreeString ( bstrCompare );
  62. throw hr;
  63. }
  64. // safe because lenght has been tested already in condition
  65. RemoveFinalGUID(m_pRequest->m_Value[iPos], wcAction);
  66. bGotID = true;
  67. }
  68. else
  69. {
  70. // we are not good to go, they have sent us longer string
  71. SysFreeString ( bstrCompare );
  72. throw hr;
  73. }
  74. }
  75. SysFreeString ( bstrCompare );
  76. }
  77. else
  78. {
  79. throw CHeap_Exception(CHeap_Exception::E_ALLOCATION_ERROR);
  80. }
  81. }
  82. Query wcQuery;
  83. wcQuery.Append ( 1, L"select distinct `File_`, `Path` from BindImage" );
  84. if ( bGotID )
  85. {
  86. wcQuery.Append ( 3, L" where `File_`=\'", wcAction, L"\'" );
  87. }
  88. LPWSTR Buffer = NULL;
  89. LPWSTR dynBuffer = NULL;
  90. DWORD dwDynBuffer = 0L;
  91. while(!bMatch && m_pRequest->Package(++i) && (hr != WBEM_E_CALL_CANCELLED))
  92. {
  93. // safe operation:
  94. // Package ( i ) returns NULL ( tested above ) or valid WCHAR [39]
  95. wcscpy(wcProductCode, m_pRequest->Package(i));
  96. if((atAction == ACTIONTYPE_ENUM) || (bGotID && (_wcsicmp(wcTestCode, wcProductCode) == 0))){
  97. //Open our database
  98. try
  99. {
  100. if ( GetView ( &hView, wcProductCode, wcQuery, L"BindImage", TRUE, FALSE ) )
  101. {
  102. uiStatus = g_fpMsiViewFetch(hView, &hRecord);
  103. while(!bMatch && (uiStatus != ERROR_NO_MORE_ITEMS) && (hr != WBEM_E_CALL_CANCELLED)){
  104. CheckMSI(uiStatus);
  105. if(FAILED(hr = SpawnAnInstance(&m_pObj))) throw hr;
  106. //----------------------------------------------------
  107. dwBufSize = BUFF_SIZE;
  108. GetBufferToPut ( hRecord, 1, dwBufSize, wcBuf, dwDynBuffer, dynBuffer, Buffer );
  109. PutProperty(m_pObj, pFile, Buffer);
  110. PutProperty(m_pObj, pName, Buffer);
  111. PutProperty(m_pObj, pCaption, Buffer);
  112. PutProperty(m_pObj, pDescription, Buffer);
  113. CStringExt prop ( wcslen ( Buffer ) + wcslen ( wcProductCode ) + 1 );
  114. prop.Append ( 2, Buffer, wcProductCode );
  115. if ( dynBuffer && dynBuffer [ 0 ] != 0 )
  116. {
  117. dynBuffer [ 0 ] = 0;
  118. }
  119. PutKeyProperty(m_pObj, pActionID, prop, &bActionID, m_pRequest);
  120. //====================================================
  121. dwBufSize = BUFF_SIZE;
  122. PutPropertySpecial ( hRecord, 2, dwBufSize, wcBuf, dwDynBuffer, dynBuffer, pPath );
  123. //----------------------------------------------------
  124. if(bActionID) bMatch = true;
  125. if((atAction != ACTIONTYPE_GET) || bMatch){
  126. hr = pHandler->Indicate(1, &m_pObj);
  127. }
  128. m_pObj->Release();
  129. m_pObj = NULL;
  130. g_fpMsiCloseHandle(hRecord);
  131. uiStatus = g_fpMsiViewFetch(hView, &hRecord);
  132. }
  133. }
  134. }
  135. catch(...)
  136. {
  137. if ( dynBuffer )
  138. {
  139. delete [] dynBuffer;
  140. dynBuffer = NULL;
  141. }
  142. g_fpMsiCloseHandle(hRecord);
  143. g_fpMsiViewClose(hView);
  144. g_fpMsiCloseHandle(hView);
  145. msidata.CloseDatabase ();
  146. if(m_pObj)
  147. {
  148. m_pObj->Release();
  149. m_pObj = NULL;
  150. }
  151. throw;
  152. }
  153. g_fpMsiCloseHandle(hRecord);
  154. g_fpMsiViewClose(hView);
  155. g_fpMsiCloseHandle(hView);
  156. msidata.CloseDatabase ();
  157. }
  158. }
  159. if ( dynBuffer )
  160. {
  161. delete [] dynBuffer;
  162. dynBuffer = NULL;
  163. }
  164. return hr;
  165. }