]>
git.saurik.com Git - wxWidgets.git/blob - src/msw/ole/oleutils.cpp
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/msw/ole/oleutils.cpp
3 // Purpose: implementation of OLE helper functions
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
23 #if defined(__BORLANDC__)
35 #include "wx/msw/private.h"
47 #include "wx/msw/ole/uuid.h"
50 #include "wx/msw/ole/oleutils.h"
52 #if defined(__VISUALC__) && (__VISUALC__ > 1000)
56 // ============================================================================
58 // ============================================================================
60 // return true if the iid is in the array
61 bool IsIidFromList(REFIID riid
, const IID
*aIids
[], size_t nCount
)
63 for ( size_t i
= 0; i
< nCount
; i
++ ) {
64 if ( riid
== *aIids
[i
] )
71 WXDLLEXPORT BSTR
wxConvertStringToOle(const wxString
& str
)
73 return wxBasicString(str
).Get();
76 WXDLLEXPORT wxString
wxConvertStringFromOle(BSTR bStr
)
78 // NULL BSTR is equivalent to an empty string (this is the convention used
79 // by VB and hence we must follow it)
83 const int len
= SysStringLen(bStr
);
86 wxString
str(bStr
, len
);
89 if ( !::WideCharToMultiByte(CP_ACP
, 0 /* no flags */,
90 bStr
, len
/* not necessary NUL-terminated */,
91 wxStringBuffer(str
, len
+ 1), len
+ 1,
92 NULL
, NULL
/* no default char */) )
101 // ----------------------------------------------------------------------------
103 // ----------------------------------------------------------------------------
105 wxBasicString::wxBasicString(const wxString
& str
)
107 m_bstrBuf
= SysAllocString(str
.wc_str(*wxConvCurrent
));
110 wxBasicString::wxBasicString(const wxBasicString
& src
)
112 m_bstrBuf
= src
.Get();
115 wxBasicString
& wxBasicString::operator=(const wxBasicString
& src
)
117 SysReAllocString(&m_bstrBuf
, src
);
121 wxBasicString::~wxBasicString()
123 SysFreeString(m_bstrBuf
);
128 // ----------------------------------------------------------------------------
130 // ----------------------------------------------------------------------------
132 #if defined(__WXDEBUG__) && ( ( defined(__VISUALC__) && (__VISUALC__ > 1000) ) || defined(__MWERKS__) )
133 static wxString
GetIidName(REFIID riid
)
135 // an association between symbolic name and numeric value of an IID
138 const wxChar
*szName
;
141 // construct the table containing all known interfaces
142 #define ADD_KNOWN_IID(name) { &IID_I##name, _T(#name) }
144 static const KNOWN_IID aKnownIids
[] = {
145 ADD_KNOWN_IID(AdviseSink
),
146 ADD_KNOWN_IID(AdviseSink2
),
147 ADD_KNOWN_IID(BindCtx
),
148 ADD_KNOWN_IID(ClassFactory
),
149 #if ( !defined( __VISUALC__) || (__VISUALC__!=1010) ) && !defined(__MWERKS__)
150 ADD_KNOWN_IID(ContinueCallback
),
151 ADD_KNOWN_IID(EnumOleDocumentViews
),
152 ADD_KNOWN_IID(OleCommandTarget
),
153 ADD_KNOWN_IID(OleDocument
),
154 ADD_KNOWN_IID(OleDocumentSite
),
155 ADD_KNOWN_IID(OleDocumentView
),
156 ADD_KNOWN_IID(Print
),
158 ADD_KNOWN_IID(DataAdviseHolder
),
159 ADD_KNOWN_IID(DataObject
),
160 ADD_KNOWN_IID(Debug
),
161 ADD_KNOWN_IID(DebugStream
),
162 ADD_KNOWN_IID(DfReserved1
),
163 ADD_KNOWN_IID(DfReserved2
),
164 ADD_KNOWN_IID(DfReserved3
),
165 ADD_KNOWN_IID(Dispatch
),
166 ADD_KNOWN_IID(DropSource
),
167 ADD_KNOWN_IID(DropTarget
),
168 ADD_KNOWN_IID(EnumCallback
),
169 ADD_KNOWN_IID(EnumFORMATETC
),
170 ADD_KNOWN_IID(EnumGeneric
),
171 ADD_KNOWN_IID(EnumHolder
),
172 ADD_KNOWN_IID(EnumMoniker
),
173 ADD_KNOWN_IID(EnumOLEVERB
),
174 ADD_KNOWN_IID(EnumSTATDATA
),
175 ADD_KNOWN_IID(EnumSTATSTG
),
176 ADD_KNOWN_IID(EnumString
),
177 ADD_KNOWN_IID(EnumUnknown
),
178 ADD_KNOWN_IID(EnumVARIANT
),
179 ADD_KNOWN_IID(ExternalConnection
),
180 ADD_KNOWN_IID(InternalMoniker
),
181 ADD_KNOWN_IID(LockBytes
),
182 ADD_KNOWN_IID(Malloc
),
183 ADD_KNOWN_IID(Marshal
),
184 ADD_KNOWN_IID(MessageFilter
),
185 ADD_KNOWN_IID(Moniker
),
186 ADD_KNOWN_IID(OleAdviseHolder
),
187 ADD_KNOWN_IID(OleCache
),
188 ADD_KNOWN_IID(OleCache2
),
189 ADD_KNOWN_IID(OleCacheControl
),
190 ADD_KNOWN_IID(OleClientSite
),
191 ADD_KNOWN_IID(OleContainer
),
192 ADD_KNOWN_IID(OleInPlaceActiveObject
),
193 ADD_KNOWN_IID(OleInPlaceFrame
),
194 ADD_KNOWN_IID(OleInPlaceObject
),
195 ADD_KNOWN_IID(OleInPlaceSite
),
196 ADD_KNOWN_IID(OleInPlaceUIWindow
),
197 ADD_KNOWN_IID(OleItemContainer
),
198 ADD_KNOWN_IID(OleLink
),
199 ADD_KNOWN_IID(OleManager
),
200 ADD_KNOWN_IID(OleObject
),
201 ADD_KNOWN_IID(OlePresObj
),
202 ADD_KNOWN_IID(OleWindow
),
203 ADD_KNOWN_IID(PSFactory
),
204 ADD_KNOWN_IID(ParseDisplayName
),
205 ADD_KNOWN_IID(Persist
),
206 ADD_KNOWN_IID(PersistFile
),
207 ADD_KNOWN_IID(PersistStorage
),
208 ADD_KNOWN_IID(PersistStream
),
209 ADD_KNOWN_IID(ProxyManager
),
210 ADD_KNOWN_IID(RootStorage
),
211 ADD_KNOWN_IID(RpcChannel
),
212 ADD_KNOWN_IID(RpcProxy
),
213 ADD_KNOWN_IID(RpcStub
),
214 ADD_KNOWN_IID(RunnableObject
),
215 ADD_KNOWN_IID(RunningObjectTable
),
216 ADD_KNOWN_IID(StdMarshalInfo
),
217 ADD_KNOWN_IID(Storage
),
218 ADD_KNOWN_IID(Stream
),
219 ADD_KNOWN_IID(StubManager
),
220 ADD_KNOWN_IID(Unknown
),
221 ADD_KNOWN_IID(ViewObject
),
222 ADD_KNOWN_IID(ViewObject2
),
225 // don't clobber preprocessor name space
228 // try to find the interface in the table
229 for ( size_t ui
= 0; ui
< WXSIZEOF(aKnownIids
); ui
++ ) {
230 if ( riid
== *aKnownIids
[ui
].pIid
) {
231 return aKnownIids
[ui
].szName
;
236 // unknown IID, just transform to string
238 return wxString((const wxChar
*)uuid
);
240 return wxEmptyString
;
244 void wxLogQueryInterface(const wxChar
*szInterface
, REFIID riid
)
246 wxLogTrace(wxTRACE_OleCalls
, wxT("%s::QueryInterface (iid = %s)"),
247 szInterface
, GetIidName(riid
).c_str());
250 void wxLogAddRef(const wxChar
*szInterface
, ULONG cRef
)
252 wxLogTrace(wxTRACE_OleCalls
, wxT("After %s::AddRef: m_cRef = %d"), szInterface
, cRef
+ 1);
255 void wxLogRelease(const wxChar
*szInterface
, ULONG cRef
)
257 wxLogTrace(wxTRACE_OleCalls
, wxT("After %s::Release: m_cRef = %d"), szInterface
, cRef
- 1);
260 #elif defined(__WXDEBUG__) && defined(__VISUALC__) && (__VISUALC__ <= 1000)
263 void wxLogQueryInterface(const char *szInterface
, REFIID riid
)
265 wxLogTrace("%s::QueryInterface", szInterface
);
268 void wxLogAddRef(const char *szInterface
, ULONG cRef
)
270 wxLogTrace("After %s::AddRef: m_cRef = %d", szInterface
, cRef
+ 1);
273 void wxLogRelease(const char *szInterface
, ULONG cRef
)
275 wxLogTrace("After %s::Release: m_cRef = %d", szInterface
, cRef
- 1);
278 #endif // __WXDEBUG__
281 // wxUSE_DRAG_AND_DROP