]>
Commit | Line | Data |
---|---|---|
bbf1f0e5 | 1 | /////////////////////////////////////////////////////////////////////////////// |
521bf4ff | 2 | // Name: src/msw/ole/oleutils.cpp |
bbf1f0e5 KB |
3 | // Purpose: implementation of OLE helper functions |
4 | // Author: Vadim Zeitlin | |
3f4a0c5b | 5 | // Modified by: |
bbf1f0e5 KB |
6 | // Created: 19.02.98 |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr> | |
65571936 | 9 | // Licence: wxWindows licence |
bbf1f0e5 KB |
10 | /////////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | // ============================================================================ | |
13 | // Declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
bbf1f0e5 | 20 | // For compilers that support precompilation, includes "wx.h". |
bbf1f0e5 KB |
21 | #include "wx/wxprec.h" |
22 | ||
23 | #if defined(__BORLANDC__) | |
e4db172a | 24 | #pragma hdrstop |
bbf1f0e5 KB |
25 | #endif |
26 | ||
21709999 JS |
27 | #if wxUSE_OLE |
28 | ||
e4db172a WS |
29 | #ifndef WX_PRECOMP |
30 | #include "wx/log.h" | |
31 | #endif | |
32 | ||
ae090fdb JS |
33 | #ifndef __CYGWIN10__ |
34 | ||
4676948b JS |
35 | #include "wx/msw/private.h" |
36 | ||
37 | #ifdef __WXWINCE__ | |
38 | #include <winreg.h> | |
39 | #include <ole2.h> | |
40 | ||
41 | #define GUID_DEFINED | |
42 | #define UUID_DEFINED | |
43 | #endif | |
bbf1f0e5 KB |
44 | |
45 | // OLE | |
4676948b | 46 | #ifndef __WXWINCE__ |
3096bd2f | 47 | #include "wx/msw/ole/uuid.h" |
4676948b JS |
48 | #endif |
49 | ||
3096bd2f | 50 | #include "wx/msw/ole/oleutils.h" |
bbf1f0e5 | 51 | |
3f4a0c5b VZ |
52 | #if defined(__VISUALC__) && (__VISUALC__ > 1000) |
53 | #include <docobj.h> | |
bbf1f0e5 KB |
54 | #endif |
55 | ||
56 | // ============================================================================ | |
57 | // Implementation | |
58 | // ============================================================================ | |
59 | ||
0a0e6a5b | 60 | // return true if the iid is in the array |
bbf1f0e5 KB |
61 | bool IsIidFromList(REFIID riid, const IID *aIids[], size_t nCount) |
62 | { | |
63 | for ( size_t i = 0; i < nCount; i++ ) { | |
64 | if ( riid == *aIids[i] ) | |
0a0e6a5b | 65 | return true; |
bbf1f0e5 KB |
66 | } |
67 | ||
0a0e6a5b | 68 | return false; |
bbf1f0e5 KB |
69 | } |
70 | ||
e2898549 | 71 | WXDLLEXPORT BSTR wxConvertStringToOle(const wxString& str) |
94113cc5 | 72 | { |
c45ead7b | 73 | return wxBasicString(str).Get(); |
94113cc5 JS |
74 | } |
75 | ||
e2898549 | 76 | WXDLLEXPORT wxString wxConvertStringFromOle(BSTR bStr) |
94113cc5 | 77 | { |
795b0f14 VZ |
78 | // NULL BSTR is equivalent to an empty string (this is the convention used |
79 | // by VB and hence we must follow it) | |
80 | if ( !bStr ) | |
81 | return wxString(); | |
82 | ||
59af032a VZ |
83 | const int len = SysStringLen(bStr); |
84 | ||
94113cc5 | 85 | #if wxUSE_UNICODE |
59af032a | 86 | wxString str(bStr, len); |
94113cc5 | 87 | #else |
bba85010 | 88 | wxString str; |
9968f7b4 | 89 | if (len) |
bba85010 | 90 | { |
9968f7b4 VZ |
91 | wxStringBufferLength buf(str, len); // asserts if len == 0 |
92 | buf.SetLength(WideCharToMultiByte(CP_ACP, 0 /* no flags */, | |
93 | bStr, len /* not necessarily NUL-terminated */, | |
94 | buf, len, | |
95 | NULL, NULL /* no default char */)); | |
bba85010 | 96 | } |
94113cc5 | 97 | #endif |
59af032a | 98 | |
94113cc5 JS |
99 | return str; |
100 | } | |
101 | ||
102 | // ---------------------------------------------------------------------------- | |
103 | // wxBasicString | |
104 | // ---------------------------------------------------------------------------- | |
105 | ||
a518e508 | 106 | wxBasicString::wxBasicString(const wxString& str) |
94113cc5 | 107 | { |
a518e508 | 108 | m_bstrBuf = SysAllocString(str.wc_str(*wxConvCurrent)); |
94113cc5 JS |
109 | } |
110 | ||
a518e508 | 111 | wxBasicString::wxBasicString(const wxBasicString& src) |
94113cc5 | 112 | { |
a518e508 | 113 | m_bstrBuf = src.Get(); |
94113cc5 JS |
114 | } |
115 | ||
a518e508 | 116 | wxBasicString& wxBasicString::operator=(const wxBasicString& src) |
94113cc5 | 117 | { |
a518e508 VZ |
118 | SysReAllocString(&m_bstrBuf, src); |
119 | return *this; | |
94113cc5 JS |
120 | } |
121 | ||
94113cc5 JS |
122 | wxBasicString::~wxBasicString() |
123 | { | |
a518e508 | 124 | SysFreeString(m_bstrBuf); |
94113cc5 JS |
125 | } |
126 | ||
8c18da2e | 127 | #if wxUSE_DATAOBJ |
c740f496 | 128 | |
bbf1f0e5 KB |
129 | // ---------------------------------------------------------------------------- |
130 | // Debug support | |
131 | // ---------------------------------------------------------------------------- | |
132 | ||
ba14d986 | 133 | #if defined(__WXDEBUG__) && ( ( defined(__VISUALC__) && (__VISUALC__ > 1000) ) || defined(__MWERKS__) ) |
f6bcfd97 | 134 | static wxString GetIidName(REFIID riid) |
bbf1f0e5 KB |
135 | { |
136 | // an association between symbolic name and numeric value of an IID | |
137 | struct KNOWN_IID { | |
138 | const IID *pIid; | |
f6bcfd97 | 139 | const wxChar *szName; |
bbf1f0e5 KB |
140 | }; |
141 | ||
142 | // construct the table containing all known interfaces | |
f6bcfd97 | 143 | #define ADD_KNOWN_IID(name) { &IID_I##name, _T(#name) } |
bbf1f0e5 KB |
144 | |
145 | static const KNOWN_IID aKnownIids[] = { | |
146 | ADD_KNOWN_IID(AdviseSink), | |
147 | ADD_KNOWN_IID(AdviseSink2), | |
148 | ADD_KNOWN_IID(BindCtx), | |
149 | ADD_KNOWN_IID(ClassFactory), | |
ba14d986 | 150 | #if ( !defined( __VISUALC__) || (__VISUALC__!=1010) ) && !defined(__MWERKS__) |
bbf1f0e5 KB |
151 | ADD_KNOWN_IID(ContinueCallback), |
152 | ADD_KNOWN_IID(EnumOleDocumentViews), | |
153 | ADD_KNOWN_IID(OleCommandTarget), | |
154 | ADD_KNOWN_IID(OleDocument), | |
155 | ADD_KNOWN_IID(OleDocumentSite), | |
156 | ADD_KNOWN_IID(OleDocumentView), | |
157 | ADD_KNOWN_IID(Print), | |
27a9bd48 | 158 | #endif |
bbf1f0e5 KB |
159 | ADD_KNOWN_IID(DataAdviseHolder), |
160 | ADD_KNOWN_IID(DataObject), | |
161 | ADD_KNOWN_IID(Debug), | |
162 | ADD_KNOWN_IID(DebugStream), | |
163 | ADD_KNOWN_IID(DfReserved1), | |
164 | ADD_KNOWN_IID(DfReserved2), | |
165 | ADD_KNOWN_IID(DfReserved3), | |
166 | ADD_KNOWN_IID(Dispatch), | |
167 | ADD_KNOWN_IID(DropSource), | |
168 | ADD_KNOWN_IID(DropTarget), | |
169 | ADD_KNOWN_IID(EnumCallback), | |
170 | ADD_KNOWN_IID(EnumFORMATETC), | |
171 | ADD_KNOWN_IID(EnumGeneric), | |
172 | ADD_KNOWN_IID(EnumHolder), | |
173 | ADD_KNOWN_IID(EnumMoniker), | |
174 | ADD_KNOWN_IID(EnumOLEVERB), | |
175 | ADD_KNOWN_IID(EnumSTATDATA), | |
176 | ADD_KNOWN_IID(EnumSTATSTG), | |
177 | ADD_KNOWN_IID(EnumString), | |
178 | ADD_KNOWN_IID(EnumUnknown), | |
179 | ADD_KNOWN_IID(EnumVARIANT), | |
180 | ADD_KNOWN_IID(ExternalConnection), | |
181 | ADD_KNOWN_IID(InternalMoniker), | |
182 | ADD_KNOWN_IID(LockBytes), | |
183 | ADD_KNOWN_IID(Malloc), | |
184 | ADD_KNOWN_IID(Marshal), | |
185 | ADD_KNOWN_IID(MessageFilter), | |
186 | ADD_KNOWN_IID(Moniker), | |
187 | ADD_KNOWN_IID(OleAdviseHolder), | |
188 | ADD_KNOWN_IID(OleCache), | |
189 | ADD_KNOWN_IID(OleCache2), | |
190 | ADD_KNOWN_IID(OleCacheControl), | |
191 | ADD_KNOWN_IID(OleClientSite), | |
192 | ADD_KNOWN_IID(OleContainer), | |
193 | ADD_KNOWN_IID(OleInPlaceActiveObject), | |
194 | ADD_KNOWN_IID(OleInPlaceFrame), | |
195 | ADD_KNOWN_IID(OleInPlaceObject), | |
196 | ADD_KNOWN_IID(OleInPlaceSite), | |
197 | ADD_KNOWN_IID(OleInPlaceUIWindow), | |
198 | ADD_KNOWN_IID(OleItemContainer), | |
199 | ADD_KNOWN_IID(OleLink), | |
200 | ADD_KNOWN_IID(OleManager), | |
201 | ADD_KNOWN_IID(OleObject), | |
202 | ADD_KNOWN_IID(OlePresObj), | |
203 | ADD_KNOWN_IID(OleWindow), | |
204 | ADD_KNOWN_IID(PSFactory), | |
205 | ADD_KNOWN_IID(ParseDisplayName), | |
206 | ADD_KNOWN_IID(Persist), | |
207 | ADD_KNOWN_IID(PersistFile), | |
208 | ADD_KNOWN_IID(PersistStorage), | |
209 | ADD_KNOWN_IID(PersistStream), | |
210 | ADD_KNOWN_IID(ProxyManager), | |
211 | ADD_KNOWN_IID(RootStorage), | |
212 | ADD_KNOWN_IID(RpcChannel), | |
213 | ADD_KNOWN_IID(RpcProxy), | |
214 | ADD_KNOWN_IID(RpcStub), | |
215 | ADD_KNOWN_IID(RunnableObject), | |
216 | ADD_KNOWN_IID(RunningObjectTable), | |
217 | ADD_KNOWN_IID(StdMarshalInfo), | |
218 | ADD_KNOWN_IID(Storage), | |
219 | ADD_KNOWN_IID(Stream), | |
220 | ADD_KNOWN_IID(StubManager), | |
221 | ADD_KNOWN_IID(Unknown), | |
222 | ADD_KNOWN_IID(ViewObject), | |
223 | ADD_KNOWN_IID(ViewObject2), | |
224 | }; | |
225 | ||
226 | // don't clobber preprocessor name space | |
227 | #undef ADD_KNOWN_IID | |
228 | ||
229 | // try to find the interface in the table | |
c86f1403 | 230 | for ( size_t ui = 0; ui < WXSIZEOF(aKnownIids); ui++ ) { |
bbf1f0e5 KB |
231 | if ( riid == *aKnownIids[ui].pIid ) { |
232 | return aKnownIids[ui].szName; | |
233 | } | |
234 | } | |
235 | ||
4676948b | 236 | #ifndef __WXWINCE__ |
bbf1f0e5 | 237 | // unknown IID, just transform to string |
f6bcfd97 BP |
238 | Uuid uuid(riid); |
239 | return wxString((const wxChar *)uuid); | |
4676948b JS |
240 | #else |
241 | return wxEmptyString; | |
242 | #endif | |
bbf1f0e5 KB |
243 | } |
244 | ||
f6bcfd97 | 245 | void wxLogQueryInterface(const wxChar *szInterface, REFIID riid) |
bbf1f0e5 | 246 | { |
ba14d986 | 247 | wxLogTrace(wxTRACE_OleCalls, wxT("%s::QueryInterface (iid = %s)"), |
f6bcfd97 | 248 | szInterface, GetIidName(riid).c_str()); |
bbf1f0e5 KB |
249 | } |
250 | ||
f6bcfd97 | 251 | void wxLogAddRef(const wxChar *szInterface, ULONG cRef) |
bbf1f0e5 | 252 | { |
ba14d986 | 253 | wxLogTrace(wxTRACE_OleCalls, wxT("After %s::AddRef: m_cRef = %d"), szInterface, cRef + 1); |
bbf1f0e5 KB |
254 | } |
255 | ||
f6bcfd97 | 256 | void wxLogRelease(const wxChar *szInterface, ULONG cRef) |
bbf1f0e5 | 257 | { |
ba14d986 | 258 | wxLogTrace(wxTRACE_OleCalls, wxT("After %s::Release: m_cRef = %d"), szInterface, cRef - 1); |
bbf1f0e5 KB |
259 | } |
260 | ||
aeab10d0 JS |
261 | #elif defined(__WXDEBUG__) && defined(__VISUALC__) && (__VISUALC__ <= 1000) |
262 | ||
263 | // For VC++ 4 | |
264 | void wxLogQueryInterface(const char *szInterface, REFIID riid) | |
265 | { | |
266 | wxLogTrace("%s::QueryInterface", szInterface); | |
267 | } | |
268 | ||
269 | void wxLogAddRef(const char *szInterface, ULONG cRef) | |
270 | { | |
271 | wxLogTrace("After %s::AddRef: m_cRef = %d", szInterface, cRef + 1); | |
272 | } | |
273 | ||
274 | void wxLogRelease(const char *szInterface, ULONG cRef) | |
275 | { | |
276 | wxLogTrace("After %s::Release: m_cRef = %d", szInterface, cRef - 1); | |
277 | } | |
278 | ||
81099467 | 279 | #endif // __WXDEBUG__ |
bbf1f0e5 KB |
280 | |
281 | #endif | |
47d67540 | 282 | // wxUSE_DRAG_AND_DROP |
ae090fdb JS |
283 | |
284 | #endif | |
285 | // __CYGWIN10__ | |
286 | ||
21709999 JS |
287 | #endif |
288 | // wxUSE_OLE |