VARMAP.CPP
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:5k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // varmap.cpp : implementation file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. #include "stdafx.h"
  13. #include "inproc.h"
  14. #include "enumvar.h"
  15. #include "varassoc.h"
  16. #include "varmap.h"
  17. #ifdef _DEBUG
  18. #undef THIS_FILE
  19. static char BASED_CODE THIS_FILE[] = __FILE__;
  20. #endif
  21. /////////////////////////////////////////////////////////////////////////////
  22. // CVariantMap
  23. IMPLEMENT_DYNCREATE(CVariantMap, CCmdTarget)
  24. CVariantMap::CVariantMap()
  25. {
  26. EnableAutomation();
  27. // To keep the application running as long as an OLE automation
  28. //  object is active, the constructor calls AfxOleLockApp.
  29. AfxOleLockApp();
  30. }
  31. CVariantMap::~CVariantMap()
  32. {
  33. // To terminate the application when all objects created with
  34. //  with OLE automation, the destructor calls AfxOleUnlockApp.
  35. AfxOleUnlockApp();
  36. }
  37. void CVariantMap::OnFinalRelease()
  38. {
  39. // When the last reference for an automation object is released
  40. //  OnFinalRelease is called.  This implementation deletes the
  41. //  object.  Add additional cleanup required for your object before
  42. //  deleting it from memory.
  43. delete this;
  44. }
  45. BEGIN_MESSAGE_MAP(CVariantMap, CCmdTarget)
  46. //{{AFX_MSG_MAP(CVariantMap)
  47. // NOTE - the ClassWizard will add and remove mapping macros here.
  48. //}}AFX_MSG_MAP
  49. END_MESSAGE_MAP()
  50. // {7ACE7860-9A1C-11cd-9A90-00DD01113F12}
  51. IMPLEMENT_OLECREATE(CVariantMap, "mfc.inproc.varmap",
  52. 0x7ace7860, 0x9a1c, 0x11cd, 0x9a, 0x90, 0x0, 0xdd, 0x1, 0x11, 0x3f, 0x12);
  53. BEGIN_DISPATCH_MAP(CVariantMap, CCmdTarget)
  54. //{{AFX_DISPATCH_MAP(CVariantMap)
  55. DISP_PROPERTY(CVariantMap, "str1", m_str1, VT_BSTR)
  56. DISP_PROPERTY(CVariantMap, "i1", m_i1, VT_I4)
  57. DISP_PROPERTY_EX(CVariantMap, "str2", GetStr2, SetStr2, VT_BSTR)
  58. DISP_PROPERTY_EX(CVariantMap, "i2", GetI2, SetI2, VT_I4)
  59. DISP_PROPERTY_EX(CVariantMap, "Count", GetCount, SetNotSupported, VT_I4)
  60. DISP_FUNCTION(CVariantMap, "SetAt", SetAt, VT_EMPTY, VTS_VARIANT VTS_VARIANT)
  61. DISP_FUNCTION(CVariantMap, "RemoveAll", RemoveAll, VT_EMPTY, VTS_NONE)
  62. DISP_FUNCTION(CVariantMap, "RemoveKey", RemoveKey, VT_EMPTY, VTS_VARIANT)
  63. DISP_FUNCTION(CVariantMap, "IsEmpty", IsEmpty, VT_BOOL, VTS_NONE)
  64. DISP_PROPERTY_PARAM(CVariantMap, "Item", GetItem, SetNotSupported, VT_VARIANT, VTS_VARIANT)
  65. //}}AFX_DISPATCH_MAP
  66. DISP_PROPERTY_EX_ID(CVariantMap, "_NewEnum", DISPID_NEWENUM, GetNewEnum, SetNotSupported, VT_UNKNOWN)
  67. DISP_DEFVALUE(CVariantMap, "Item")
  68. END_DISPATCH_MAP()
  69. // {747205C0-F9F0-11cd-8C3D-00AA004BB3B7}
  70. static const IID IID_IVariantMap = { 0x747205c0, 0xf9f0, 0x11cd,
  71. { 0x8c, 0x3d, 0x0, 0xaa, 0x0, 0x4b, 0xb3, 0xb7 } };
  72. // Note: we add support for IID_IVariantMap to support typesafe binding
  73. // from VBA.  This IID must match the GUID that is attached to the
  74. // dispinterface in the .ODL file.
  75. BEGIN_INTERFACE_MAP(CVariantMap, CCmdTarget)
  76. INTERFACE_PART(CVariantMap, IID_IVariantMap, Dispatch)
  77. END_INTERFACE_MAP()
  78. /////////////////////////////////////////////////////////////////////////////
  79. // CVariantMap message handlers
  80. LPUNKNOWN CVariantMap::GetNewEnum()
  81. {
  82. CEnumVariant* pEnum = new CEnumVariant;
  83. int nCount = m_map.GetCount();
  84. VARIANT* pContents = new VARIANT[nCount];
  85. int i = 0;
  86. TRY
  87. {
  88. POSITION pos = m_map.GetStartPosition();
  89. while (pos != NULL)
  90. {
  91. ASSERT(i < nCount);
  92. // get next value from the map and create a CVariantAssoc from it
  93. CVariantAssoc* pAssoc = new CVariantAssoc;
  94. m_map.GetNextAssoc(pos, pAssoc->m_varKey, pAssoc->m_varValue);
  95. // stuff it into a variant
  96. pContents[i].pdispVal = pAssoc->GetIDispatch(FALSE);
  97. pContents[i].vt = VT_DISPATCH;
  98. ++i;
  99. }
  100. }
  101. CATCH_ALL(e)
  102. {
  103. while (--i >= 0)
  104. VariantClear(&pContents[i]);
  105. THROW_LAST();
  106. }
  107. END_CATCH_ALL
  108. pEnum->SetContents(pContents, nCount);
  109. return pEnum->GetInterface(&IID_IUnknown);
  110. }
  111. void CVariantMap::SetAt(const VARIANT FAR& from, const VARIANT FAR& to)
  112. {
  113. m_map.SetAt(from, to);
  114. }
  115. VARIANT CVariantMap::GetItem(const VARIANT FAR& from)
  116. {
  117. COleVariant varResult;
  118. m_map.Lookup(from, varResult);
  119. return varResult.Detach();
  120. }
  121. void CVariantMap::RemoveAll()
  122. {
  123. m_map.RemoveAll();
  124. }
  125. void CVariantMap::RemoveKey(const VARIANT FAR& key)
  126. {
  127. m_map.RemoveKey(key);
  128. }
  129. long CVariantMap::GetCount()
  130. {
  131. return m_map.GetCount();
  132. }
  133. BOOL CVariantMap::IsEmpty()
  134. {
  135. return m_map.IsEmpty();
  136. }
  137. BSTR CVariantMap::GetStr2()
  138. {
  139. return m_str2.AllocSysString();
  140. }
  141. void CVariantMap::SetStr2(LPCTSTR lpszNewValue)
  142. {
  143. m_str2 = lpszNewValue;
  144. }
  145. long CVariantMap::GetI2()
  146. {
  147. return m_i2;
  148. }
  149. void CVariantMap::SetI2(long nNewValue)
  150. {
  151. m_i2 = nNewValue;
  152. }