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.

237 lines
6.3 KiB

  1. // DuplicateFile.cpp: implementation of the CDuplicateFile class.
  2. //
  3. // Copyright (c) 1997-2001 Microsoft Corporation, All Rights Reserved
  4. //
  5. //////////////////////////////////////////////////////////////////////
  6. #include "precomp.h"
  7. #include "DuplicateFile.h"
  8. #include "ExtendString.h"
  9. #include "ExtendQuery.h"
  10. //////////////////////////////////////////////////////////////////////
  11. // Construction/Destruction
  12. //////////////////////////////////////////////////////////////////////
  13. CDuplicateFile::CDuplicateFile(CRequestObject *pObj, IWbemServices *pNamespace,
  14. IWbemContext *pCtx):CGenericClass(pObj, pNamespace, pCtx)
  15. {
  16. }
  17. CDuplicateFile::~CDuplicateFile()
  18. {
  19. }
  20. HRESULT CDuplicateFile::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 `FileKey`, `Component_`, `File_`, `DestName` from DuplicateFile" );
  84. //optimize for GetObject
  85. if ( bGotID )
  86. {
  87. wcQuery.Append ( 3, L" where `FileKey`=\'", wcAction, L"\'" );
  88. }
  89. LPWSTR Buffer = NULL;
  90. LPWSTR dynBuffer = NULL;
  91. DWORD dwDynBuffer = 0L;
  92. while(!bMatch && m_pRequest->Package(++i) && (hr != WBEM_E_CALL_CANCELLED))
  93. {
  94. // safe operation:
  95. // Package ( i ) returns NULL ( tested above ) or valid WCHAR [39]
  96. wcscpy(wcProductCode, m_pRequest->Package(i));
  97. if((atAction == ACTIONTYPE_ENUM) || (bGotID && (_wcsicmp(wcTestCode, wcProductCode) == 0))){
  98. //Open our database
  99. try
  100. {
  101. if ( GetView ( &hView, wcProductCode, wcQuery, L"DuplicateFile", TRUE, FALSE ) )
  102. {
  103. uiStatus = g_fpMsiViewFetch(hView, &hRecord);
  104. while(!bMatch && (uiStatus != ERROR_NO_MORE_ITEMS) && (hr != WBEM_E_CALL_CANCELLED)){
  105. CheckMSI(uiStatus);
  106. if(FAILED(hr = SpawnAnInstance(&m_pObj))) throw hr;
  107. //----------------------------------------------------
  108. dwBufSize = BUFF_SIZE;
  109. GetBufferToPut ( hRecord, 1, dwBufSize, wcBuf, dwDynBuffer, dynBuffer, Buffer );
  110. PutProperty(m_pObj, pFileKey, Buffer);
  111. PutProperty(m_pObj, pCaption, Buffer);
  112. PutProperty(m_pObj, pDescription, Buffer);
  113. PutKeyProperty ( m_pObj, pActionID, Buffer, &bActionID, m_pRequest, 1, wcProductCode );
  114. if ( dynBuffer && dynBuffer [ 0 ] != 0 )
  115. {
  116. dynBuffer [ 0 ] = 0;
  117. }
  118. //====================================================
  119. dwBufSize = BUFF_SIZE;
  120. GetBufferToPut ( hRecord, 2, dwBufSize, wcBuf, dwDynBuffer, dynBuffer, Buffer );
  121. if ( ValidateComponentName ( msidata.GetDatabase (), wcProductCode, Buffer ) )
  122. {
  123. if ( dynBuffer && dynBuffer [ 0 ] != 0 )
  124. {
  125. dynBuffer [ 0 ] = 0;
  126. }
  127. dwBufSize = BUFF_SIZE;
  128. PutPropertySpecial ( hRecord, 3, dwBufSize, wcBuf, dwDynBuffer, dynBuffer, pSource, FALSE );
  129. dwBufSize = BUFF_SIZE;
  130. PutPropertySpecial ( hRecord, 4, dwBufSize, wcBuf, dwDynBuffer, dynBuffer, pDestination, FALSE );
  131. //----------------------------------------------------
  132. if(bActionID) bMatch = true;
  133. if((atAction != ACTIONTYPE_GET) || bMatch){
  134. hr = pHandler->Indicate(1, &m_pObj);
  135. }
  136. }
  137. else
  138. {
  139. if ( dynBuffer && dynBuffer [ 0 ] != 0 )
  140. {
  141. dynBuffer [ 0 ] = 0;
  142. }
  143. }
  144. m_pObj->Release();
  145. m_pObj = NULL;
  146. g_fpMsiCloseHandle(hRecord);
  147. uiStatus = g_fpMsiViewFetch(hView, &hRecord);
  148. }
  149. }
  150. }
  151. catch(...)
  152. {
  153. if ( dynBuffer )
  154. {
  155. delete [] dynBuffer;
  156. dynBuffer = NULL;
  157. }
  158. g_fpMsiCloseHandle(hRecord);
  159. g_fpMsiViewClose(hView);
  160. g_fpMsiCloseHandle(hView);
  161. msidata.CloseDatabase ();
  162. if(m_pObj)
  163. {
  164. m_pObj->Release();
  165. m_pObj = NULL;
  166. }
  167. throw;
  168. }
  169. g_fpMsiCloseHandle(hRecord);
  170. g_fpMsiViewClose(hView);
  171. g_fpMsiCloseHandle(hView);
  172. msidata.CloseDatabase ();
  173. }
  174. }
  175. if ( dynBuffer )
  176. {
  177. delete [] dynBuffer;
  178. dynBuffer = NULL;
  179. }
  180. return hr;
  181. }