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