]> git.saurik.com Git - wxWidgets.git/blame - src/msw/ole/automtn.cpp
an assert added to check that we're not doing something stupid
[wxWidgets.git] / src / msw / ole / automtn.cpp
CommitLineData
d980b3e1
JS
1/////////////////////////////////////////////////////////////////////////////
2// Name: automtn.cpp
3// Purpose: OLE automation utilities
4// Author: Julian Smart
5// Modified by:
6// Created: 11/6/98
7// RCS-ID: $Id$
8// Copyright: (c) 1998, Julian Smart
9// Licence: wxWindows Licence
10/////////////////////////////////////////////////////////////////////////////
11
12#ifdef __GNUG__
13#pragma implementation "automtn.h"
14#endif
15
16// For compilers that support precompilation, includes "wx.h".
17#include "wx/wxprec.h"
18
19#if defined(__BORLANDC__)
20#pragma hdrstop
21#endif
22
23#include "wx/log.h"
d980b3e1 24
d980b3e1
JS
25#include <math.h>
26#include <time.h>
27
42e69d6b
VZ
28#include "wx/msw/ole/automtn.h"
29
30#include "wx/msw/private.h"
31
32#include <ole2ver.h>
33#include <oleauto.h>
17b74d79
JS
34
35// wrapper around BSTR type (by Vadim Zeitlin)
36
37class WXDLLEXPORT BasicString
38{
39public:
40 // ctors & dtor
41 BasicString(const char *sz);
42 ~BasicString();
43
44 // accessors
45 // just get the string
46 operator BSTR() const { return m_wzBuf; }
47 // retrieve a copy of our string - caller must SysFreeString() it later!
48 BSTR Get() const { return SysAllocString(m_wzBuf); }
49
50private:
51 // @@@ not implemented (but should be)
52 BasicString(const BasicString&);
53 BasicString& operator=(const BasicString&);
54
55 OLECHAR *m_wzBuf; // actual string
56};
57
58// Convert variants
59static bool ConvertVariantToOle(const wxVariant& variant, VARIANTARG& oleVariant) ;
60static bool ConvertOleToVariant(const VARIANTARG& oleVariant, wxVariant& variant) ;
61
d980b3e1
JS
62// Convert string to Unicode
63static BSTR ConvertStringToOle(const wxString& str);
64
65// Convert string from BSTR to wxString
66static wxString ConvertStringFromOle(BSTR bStr);
67
68// Verifies will fail if the needed buffer size is too large
69#define MAX_TIME_BUFFER_SIZE 128 // matches that in timecore.cpp
70#define MIN_DATE (-657434L) // about year 100
71#define MAX_DATE 2958465L // about year 9999
72
73// Half a second, expressed in days
74#define HALF_SECOND (1.0/172800.0)
75
76// One-based array of days in year at month start
77static int rgMonthDays[13] =
78 {0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365};
79
80static BOOL OleDateFromTm(WORD wYear, WORD wMonth, WORD wDay,
81 WORD wHour, WORD wMinute, WORD wSecond, DATE& dtDest);
82static BOOL TmFromOleDate(DATE dtSrc, struct tm& tmDest);
83static void TmConvertToStandardFormat(struct tm& tmSrc);
84static double DoubleFromDate(DATE dt);
85static DATE DateFromDouble(double dbl);
86
87static void ClearVariant(VARIANTARG *pvarg) ;
88static void ReleaseVariant(VARIANTARG *pvarg) ;
89// static void ShowException(LPOLESTR szMember, HRESULT hr, EXCEPINFO *pexcep, unsigned int uiArgErr);
90
91/*
92 * wxAutomationObject
93 */
94
95wxAutomationObject::wxAutomationObject(WXIDISPATCH* dispatchPtr)
96{
97 m_dispatchPtr = dispatchPtr;
98}
99
100wxAutomationObject::~wxAutomationObject()
101{
102 if (m_dispatchPtr)
103 {
104 ((IDispatch*)m_dispatchPtr)->Release();
105 m_dispatchPtr = NULL;
106 }
107}
108
109#define INVOKEARG(i) (args ? args[i] : *(ptrArgs[i]))
110
111// For Put/Get, no named arguments are allowed.
112bool wxAutomationObject::Invoke(const wxString& member, int action,
113 wxVariant& retValue, int noArgs, wxVariant args[], const wxVariant* ptrArgs[]) const
114{
115 if (!m_dispatchPtr)
116 return FALSE;
117
118 // nonConstMember is necessary because the wxString class doesn't have enough consts...
119 wxString nonConstMember(member);
120
121 int ch = nonConstMember.Find('.');
122 if (ch != -1)
123 {
124 // Use dot notation to get the next object
125 wxString member2(nonConstMember.Left((size_t) ch));
126 wxString rest(nonConstMember.Right(nonConstMember.Length() - ch - 1));
127 wxAutomationObject obj;
128 if (!GetObject(obj, member2))
129 return FALSE;
130 return obj.Invoke(rest, action, retValue, noArgs, args, ptrArgs);
131 }
132
133 VARIANTARG vReturn;
134 ClearVariant(& vReturn);
135
136 VARIANTARG* vReturnPtr = & vReturn;
137
138 // Find number of names args
139 int namedArgCount = 0;
140 int i;
141 for (i = 0; i < noArgs; i++)
142 if (!INVOKEARG(i).GetName().IsNull())
143 {
144 namedArgCount ++;
145 }
146
147 int namedArgStringCount = namedArgCount + 1;
148 BSTR* argNames = new BSTR[namedArgStringCount];
149 argNames[0] = ConvertStringToOle(member);
150
151 // Note that arguments are specified in reverse order
152 // (all totally logical; hey, we're dealing with OLE here.)
153
154 int j = 0;
155 for (i = 0; i < namedArgCount; i++)
156 {
157 if (!INVOKEARG(i).GetName().IsNull())
158 {
159 argNames[(namedArgCount-j)] = ConvertStringToOle(INVOKEARG(i).GetName());
160 j ++;
161 }
162 }
163
164 // + 1 for the member name, + 1 again in case we're a 'put'
165 DISPID* dispIds = new DISPID[namedArgCount + 2];
166
167 HRESULT hr;
168 DISPPARAMS dispparams;
169 unsigned int uiArgErr;
170 EXCEPINFO excep;
171
172 // Get the IDs for the member and its arguments. GetIDsOfNames expects the
173 // member name as the first name, followed by argument names (if any).
174 hr = ((IDispatch*)m_dispatchPtr)->GetIDsOfNames(IID_NULL, argNames,
175 1 + namedArgCount, LOCALE_SYSTEM_DEFAULT, dispIds);
176 if (FAILED(hr))
177 {
178// ShowException(szMember, hr, NULL, 0);
179 return FALSE;
180 }
181
182 // if doing a property put(ref), we need to adjust the first argument to have a
183 // named arg of DISPID_PROPERTYPUT.
184 if (action & (DISPATCH_PROPERTYPUT | DISPATCH_PROPERTYPUTREF))
185 {
186 namedArgCount = 1;
187 dispIds[1] = DISPID_PROPERTYPUT;
188 vReturnPtr = (VARIANTARG*) NULL;
189 }
190
191 // Convert the wxVariants to VARIANTARGs
192 VARIANTARG* oleArgs = new VARIANTARG[noArgs];
193 for (i = 0; i < noArgs; i++)
194 {
195 // Again, reverse args
7be1f0d9 196 if (!ConvertVariantToOle(INVOKEARG((noArgs-1) - i), oleArgs[i]))
d980b3e1
JS
197 return FALSE; // TODO: clean up memory at this point
198 }
199
200 dispparams.rgdispidNamedArgs = dispIds + 1;
201 dispparams.rgvarg = oleArgs;
202 dispparams.cArgs = noArgs;
203 dispparams.cNamedArgs = namedArgCount;
204
205 excep.pfnDeferredFillIn = NULL;
206
207 hr = ((IDispatch*)m_dispatchPtr)->Invoke(dispIds[0], IID_NULL, LOCALE_SYSTEM_DEFAULT,
208 action, &dispparams, vReturnPtr, &excep, &uiArgErr);
209
210 for (i = 0; i < namedArgStringCount; i++)
211 {
212 SysFreeString(argNames[i]);
213 }
214 delete[] argNames;
215 delete[] dispIds;
216
217 for (i = 0; i < noArgs; i++)
218 ReleaseVariant(& oleArgs[i]) ;
219 delete[] oleArgs;
220
221 if (FAILED(hr))
222 {
223 // display the exception information if appropriate:
224// ShowException((const char*) member, hr, &excep, uiArgErr);
225
226 // free exception structure information
227 SysFreeString(excep.bstrSource);
228 SysFreeString(excep.bstrDescription);
229 SysFreeString(excep.bstrHelpFile);
230
231 if (vReturnPtr)
232 ReleaseVariant(vReturnPtr);
233 return FALSE;
234 }
235 else
236 {
237 if (vReturnPtr)
238 {
239 // Convert result to wxVariant form
240 ConvertOleToVariant(vReturn, retValue);
241 // Mustn't release the dispatch pointer
242 if (vReturn.vt == VT_DISPATCH)
243 {
244 vReturn.pdispVal = (IDispatch*) NULL;
245 }
246 ReleaseVariant(& vReturn);
247 }
248 }
249 return TRUE;
250}
251
252// Invoke a member function
253wxVariant wxAutomationObject::CallMethod(const wxString& member, int noArgs, wxVariant args[])
254{
255 wxVariant retVariant;
256 if (!Invoke(member, DISPATCH_METHOD, retVariant, noArgs, args))
257 {
258 retVariant.MakeNull();
259 }
260 return retVariant;
261}
262
263wxVariant wxAutomationObject::CallMethod(const wxString& member,
264 const wxVariant& arg1, const wxVariant& arg2,
265 const wxVariant& arg3, const wxVariant& arg4,
266 const wxVariant& arg5, const wxVariant& arg6)
267{
268 const wxVariant** args = new const wxVariant*[6];
269 int i = 0;
270 if (!arg1.IsNull())
271 {
272 args[i] = & arg1;
273 i ++;
274 }
275 if (!arg2.IsNull())
276 {
277 args[i] = & arg2;
278 i ++;
279 }
280 if (!arg3.IsNull())
281 {
282 args[i] = & arg3;
283 i ++;
284 }
285 if (!arg4.IsNull())
286 {
287 args[i] = & arg4;
288 i ++;
289 }
290 if (!arg5.IsNull())
291 {
292 args[i] = & arg5;
293 i ++;
294 }
295 if (!arg6.IsNull())
296 {
297 args[i] = & arg6;
298 i ++;
299 }
300 wxVariant retVariant;
301 if (!Invoke(member, DISPATCH_METHOD, retVariant, i, NULL, args))
302 {
303 retVariant.MakeNull();
304 }
305 delete[] args;
306 return retVariant;
307}
308
309// Get/Set property
310wxVariant wxAutomationObject::GetProperty(const wxString& property, int noArgs, wxVariant args[]) const
311{
312 wxVariant retVariant;
313 if (!Invoke(property, DISPATCH_PROPERTYGET, retVariant, noArgs, args))
314 {
315 retVariant.MakeNull();
316 }
317 return retVariant;
318}
319
320wxVariant wxAutomationObject::GetProperty(const wxString& property,
321 const wxVariant& arg1, const wxVariant& arg2,
322 const wxVariant& arg3, const wxVariant& arg4,
323 const wxVariant& arg5, const wxVariant& arg6)
324{
325 const wxVariant** args = new const wxVariant*[6];
326 int i = 0;
327 if (!arg1.IsNull())
328 {
329 args[i] = & arg1;
330 i ++;
331 }
332 if (!arg2.IsNull())
333 {
334 args[i] = & arg2;
335 i ++;
336 }
337 if (!arg3.IsNull())
338 {
339 args[i] = & arg3;
340 i ++;
341 }
342 if (!arg4.IsNull())
343 {
344 args[i] = & arg4;
345 i ++;
346 }
347 if (!arg5.IsNull())
348 {
349 args[i] = & arg5;
350 i ++;
351 }
352 if (!arg6.IsNull())
353 {
354 args[i] = & arg6;
355 i ++;
356 }
357 wxVariant retVariant;
358 if (!Invoke(property, DISPATCH_PROPERTYGET, retVariant, i, NULL, args))
359 {
360 retVariant.MakeNull();
361 }
362 delete[] args;
363 return retVariant;
364}
365
366bool wxAutomationObject::PutProperty(const wxString& property, int noArgs, wxVariant args[])
367{
368 wxVariant retVariant;
369 if (!Invoke(property, DISPATCH_PROPERTYPUT, retVariant, noArgs, args))
370 {
371 return FALSE;
372 }
373 return TRUE;
374}
375
376bool wxAutomationObject::PutProperty(const wxString& property,
377 const wxVariant& arg1, const wxVariant& arg2,
378 const wxVariant& arg3, const wxVariant& arg4,
379 const wxVariant& arg5, const wxVariant& arg6)
380{
381 const wxVariant** args = new const wxVariant*[6];
382 int i = 0;
383 if (!arg1.IsNull())
384 {
385 args[i] = & arg1;
386 i ++;
387 }
388 if (!arg2.IsNull())
389 {
390 args[i] = & arg2;
391 i ++;
392 }
393 if (!arg3.IsNull())
394 {
395 args[i] = & arg3;
396 i ++;
397 }
398 if (!arg4.IsNull())
399 {
400 args[i] = & arg4;
401 i ++;
402 }
403 if (!arg5.IsNull())
404 {
405 args[i] = & arg5;
406 i ++;
407 }
408 if (!arg6.IsNull())
409 {
410 args[i] = & arg6;
411 i ++;
412 }
413 wxVariant retVariant;
414 bool ret = Invoke(property, DISPATCH_PROPERTYPUT, retVariant, i, NULL, args);
415 delete[] args;
416 return ret;
417}
418
419
420// Uses DISPATCH_PROPERTYGET
421// and returns a dispatch pointer. The calling code should call Release
422// on the pointer, though this could be implicit by constructing an wxAutomationObject
423// with it and letting the destructor call Release.
424WXIDISPATCH* wxAutomationObject::GetDispatchProperty(const wxString& property, int noArgs, wxVariant args[]) const
425{
426 wxVariant retVariant;
427 if (Invoke(property, DISPATCH_PROPERTYGET, retVariant, noArgs, args))
428 {
429 if (retVariant.GetType() == "void*")
430 {
431 return (WXIDISPATCH*) retVariant.GetVoidPtr();
432 }
433 else
434 {
435 return (WXIDISPATCH*) NULL;
436 }
437 }
438 else
439 return (WXIDISPATCH*) NULL;
440}
441
442// A way of initialising another wxAutomationObject with a dispatch object
443bool wxAutomationObject::GetObject(wxAutomationObject& obj, const wxString& property, int noArgs, wxVariant args[]) const
444{
445 WXIDISPATCH* dispatch = GetDispatchProperty(property, noArgs, args);
446 if (dispatch)
447 {
448 obj.SetDispatchPtr(dispatch);
449 return TRUE;
450 }
451 else
452 return FALSE;
453}
454
455// Get a dispatch pointer from the current object associated
456// with a class id
457bool wxAutomationObject::GetInstance(const wxString& classId) const
458{
459 if (m_dispatchPtr)
460 return FALSE;
461
462 CLSID clsId;
463 IUnknown * pUnk = NULL;
464
465 BasicString unicodeName((const char*) classId);
466
467 if (FAILED(CLSIDFromProgID((BSTR) unicodeName, &clsId)))
468 {
469 wxLogWarning("Cannot obtain CLSID from ProgID");
470 return FALSE;
471 }
472
473 if (FAILED(GetActiveObject(clsId, NULL, &pUnk)))
474 {
475 wxLogWarning("Cannot find an active object");
476 return FALSE;
477 }
478
479 if (pUnk->QueryInterface(IID_IDispatch, (LPVOID*) &m_dispatchPtr) != S_OK)
480 {
481 wxLogWarning("Cannot find IDispatch interface");
482 return FALSE;
483 }
484
485 return TRUE;
486}
487
488// Get a dispatch pointer from a new object associated
489// with the given class id
490bool wxAutomationObject::CreateInstance(const wxString& classId) const
491{
492 if (m_dispatchPtr)
493 return FALSE;
494
495 CLSID clsId;
496 IUnknown * pUnk = NULL;
497
498 BasicString unicodeName((const char*) classId);
499
500 if (FAILED(CLSIDFromProgID((BSTR) unicodeName, &clsId)))
501 {
502 wxLogWarning("Cannot obtain CLSID from ProgID");
503 return FALSE;
504 }
505
506 // start a new copy of Excel, grab the IDispatch interface
507 if (FAILED(CoCreateInstance(clsId, NULL, CLSCTX_LOCAL_SERVER, IID_IDispatch, (void**)&m_dispatchPtr)))
508 {
509 wxLogWarning("Cannot start an instance of this class.");
510 return FALSE;
511 }
512
513 return TRUE;
514}
515
516
17b74d79 517bool ConvertVariantToOle(const wxVariant& variant, VARIANTARG& oleVariant)
d980b3e1
JS
518{
519 ClearVariant(&oleVariant);
520 if (variant.IsNull())
521 {
522 oleVariant.vt = VT_NULL;
523 return TRUE;
524 }
525
526 wxString type(variant.GetType());
527
528 if (type == "long")
529 {
530 oleVariant.vt = VT_I4;
531 oleVariant.lVal = variant.GetLong() ;
532 }
533 else if (type == "double")
534 {
535 oleVariant.vt = VT_R8;
536 oleVariant.dblVal = variant.GetDouble();
537 }
538 else if (type == "bool")
539 {
540 oleVariant.vt = VT_BOOL;
7c5dc04f 541 // 'bool' required for VC++ 4 apparently
aeab10d0 542#if defined(__WATCOMC__) || (defined(__VISUALC__) && (__VISUALC__ <= 1000))
7be1f0d9
JS
543 oleVariant.bool = variant.GetBool();
544#else
d980b3e1 545 oleVariant.boolVal = variant.GetBool();
7be1f0d9 546#endif
d980b3e1
JS
547 }
548 else if (type == "string")
549 {
550 wxString str( variant.GetString() );
551 oleVariant.vt = VT_BSTR;
552 oleVariant.bstrVal = ConvertStringToOle(str);
553 }
554 else if (type == "date")
555 {
556 wxDate date( variant.GetDate() );
557 oleVariant.vt = VT_DATE;
558
559 if (!OleDateFromTm(date.GetYear(), date.GetMonth(), date.GetDay(),
560 0, 0, 0, oleVariant.date))
561 return FALSE;
562 }
563 else if (type == "time")
564 {
565 wxTime time( variant.GetTime() );
566 oleVariant.vt = VT_DATE;
567
568 if (!OleDateFromTm(time.GetYear(), time.GetMonth(), time.GetDay(),
569 time.GetHour(), time.GetMinute(), time.GetSecond(), oleVariant.date))
570 return FALSE;
571 }
572 else if (type == "void*")
573 {
574 oleVariant.vt = VT_DISPATCH;
575 oleVariant.pdispVal = (IDispatch*) variant.GetVoidPtr();
576 }
577 else if (type == "list" || type == "stringlist")
578 {
579 oleVariant.vt = VT_VARIANT | VT_ARRAY;
580
581 SAFEARRAY *psa;
582 SAFEARRAYBOUND saBound;
583 VARIANTARG *pvargBase;
584 VARIANTARG *pvarg;
585 int i, j;
586
587 int iCount = variant.GetCount();
588
589 saBound.lLbound = 0;
590 saBound.cElements = iCount;
591
592 psa = SafeArrayCreate(VT_VARIANT, 1, &saBound);
593 if (psa == NULL)
594 return FALSE;
595
596 SafeArrayAccessData(psa, (void**)&pvargBase);
597
598 pvarg = pvargBase;
599 for (i = 0; i < iCount; i++)
600 {
601 // copy each string in the list of strings
602 wxVariant eachVariant(variant[i]);
603 if (!ConvertVariantToOle(eachVariant, * pvarg))
604 {
605 // memory failure: back out and free strings alloc'ed up to
606 // now, and then the array itself.
607 pvarg = pvargBase;
608 for (j = 0; j < i; j++)
609 {
610 SysFreeString(pvarg->bstrVal);
611 pvarg++;
612 }
613 SafeArrayDestroy(psa);
614 return FALSE;
615 }
616 pvarg++;
617 }
618
619 SafeArrayUnaccessData(psa);
620
621 oleVariant.parray = psa;
622 }
623 else
624 {
625 oleVariant.vt = VT_NULL;
626 return FALSE;
627 }
628 return TRUE;
629}
630
631#ifndef VT_TYPEMASK
632#define VT_TYPEMASK 0xfff
633#endif
634
17b74d79 635bool ConvertOleToVariant(const VARIANTARG& oleVariant, wxVariant& variant)
d980b3e1
JS
636{
637 switch (oleVariant.vt & VT_TYPEMASK)
638 {
639 case VT_BSTR:
640 {
641 wxString str(ConvertStringFromOle(oleVariant.bstrVal));
642 variant = str;
643 break;
644 }
645 case VT_DATE:
646 {
647 struct tm tmTemp;
648 if (!TmFromOleDate(oleVariant.date, tmTemp))
649 return FALSE;
650
651 wxDate date(tmTemp.tm_yday, tmTemp.tm_mon, tmTemp.tm_year);
652 wxTime time(date, tmTemp.tm_hour, tmTemp.tm_min, tmTemp.tm_sec);
653
654 variant = time;
655 break;
656 }
657 case VT_I4:
658 {
659 variant = (long) oleVariant.lVal;
660 break;
661 }
662 case VT_I2:
663 {
664 variant = (long) oleVariant.iVal;
665 break;
666 }
667
668 case VT_BOOL:
669 {
aeab10d0 670#if defined(__WATCOMC__) || (defined(_MSC_VER) && (_MSC_VER <= 1000)) //GC
25889d3c
JS
671#ifndef HAVE_BOOL // Can't use bool operator if no native bool type
672 variant = (long) (oleVariant.bool != 0);
673#else
7be1f0d9 674 variant = (bool) (oleVariant.bool != 0);
25889d3c 675#endif
7be1f0d9 676#else
d980b3e1 677 variant = (bool) (oleVariant.boolVal != 0);
7be1f0d9 678#endif
d980b3e1
JS
679 break;
680 }
681 case VT_R8:
682 {
683 variant = oleVariant.dblVal;
684 break;
685 }
686 case VT_ARRAY:
687 {
688 variant.ClearList();
689
690 int cDims, cElements, i;
691 VARIANTARG* pvdata;
692
693 // Iterate the dimensions: number of elements is x*y*z
694 for (cDims = 0, cElements = 1;
695 cDims < oleVariant.parray->cDims; cDims ++)
696 cElements *= oleVariant.parray->rgsabound[cDims].cElements;
697
698 // Get a pointer to the data
699 HRESULT hr = SafeArrayAccessData(oleVariant.parray, (void HUGEP* FAR*) & pvdata);
700 if (hr != NOERROR)
701 return FALSE;
702 // Iterate the data.
703 for (i = 0; i < cElements; i++)
704 {
705 VARIANTARG& oleElement = pvdata[i];
706 wxVariant vElement;
707 if (!ConvertOleToVariant(oleElement, vElement))
708 return FALSE;
709
710 variant.Append(vElement);
711 }
712 SafeArrayUnaccessData(oleVariant.parray);
713 break;
714 }
715 case VT_DISPATCH:
716 {
717 variant = (void*) oleVariant.pdispVal;
718 break;
719 }
720 case VT_NULL:
721 {
722 variant.MakeNull();
723 break;
724 }
5dcf05ae
JS
725 case VT_EMPTY:
726 {
727 break; // Ignore Empty Variant, used only during destruction of objects
728 }
d980b3e1
JS
729 default:
730 {
731 wxLogError("wxAutomationObject::ConvertOleToVariant: Unknown variant value type");
732 return FALSE;
733 }
734 }
735 return TRUE;
736}
737
738static BSTR ConvertStringToOle(const wxString& str)
739{
740/*
741 unsigned int len = strlen((const char*) str);
742 unsigned short* s = new unsigned short[len*2+2];
743 unsigned int i;
744 memset(s, 0, len*2+2);
745 for (i=0; i < len; i++)
746 s[i*2] = str[i];
747*/
748 BasicString bstr((const char*) str);
749 return bstr.Get();
750}
751
752static wxString ConvertStringFromOle(BSTR bStr)
753{
754 int len = SysStringLen(bStr) + 1;
755 char *buf = new char[len];
756 int i = wcstombs( buf, bStr, len);
757
758 wxString str(buf);
759 delete[] buf;
760 return str;
761}
762
763// ----------------------------------------------------------------------------
764// BasicString
765// ----------------------------------------------------------------------------
766
767// ctor takes an ANSI string and transforms it to Unicode
768BasicString::BasicString(const char *sz)
769{
770 // get the size of required buffer
771 UINT lenAnsi = strlen(sz);
b2cce0c4
SC
772 #ifdef __MWERKS__
773 UINT lenWide = lenAnsi * 2 ;
774 #else
d980b3e1 775 UINT lenWide = mbstowcs(NULL, sz, lenAnsi);
b2cce0c4 776 #endif
d980b3e1
JS
777
778 if ( lenWide > 0 ) {
779 m_wzBuf = new OLECHAR[lenWide + 1];
780 mbstowcs(m_wzBuf, sz, lenAnsi);
781 m_wzBuf[lenWide] = L'\0';
782 }
783 else {
784 m_wzBuf = NULL;
785 }
786}
787
788// dtor frees memory
789BasicString::~BasicString()
790{
791 delete [] m_wzBuf;
792}
793
794/////////////////////////////////////////////////////////////////////////////
795// COleDateTime class HELPERS - implementation
796
797BOOL OleDateFromTm(WORD wYear, WORD wMonth, WORD wDay,
798 WORD wHour, WORD wMinute, WORD wSecond, DATE& dtDest)
799{
800 // Validate year and month (ignore day of week and milliseconds)
801 if (wYear > 9999 || wMonth < 1 || wMonth > 12)
802 return FALSE;
803
804 // Check for leap year and set the number of days in the month
805 BOOL bLeapYear = ((wYear & 3) == 0) &&
806 ((wYear % 100) != 0 || (wYear % 400) == 0);
807
808 int nDaysInMonth =
809 rgMonthDays[wMonth] - rgMonthDays[wMonth-1] +
810 ((bLeapYear && wDay == 29 && wMonth == 2) ? 1 : 0);
811
812 // Finish validating the date
813 if (wDay < 1 || wDay > nDaysInMonth ||
814 wHour > 23 || wMinute > 59 ||
815 wSecond > 59)
816 {
817 return FALSE;
818 }
819
820 // Cache the date in days and time in fractional days
821 long nDate;
822 double dblTime;
823
824 //It is a valid date; make Jan 1, 1AD be 1
825 nDate = wYear*365L + wYear/4 - wYear/100 + wYear/400 +
826 rgMonthDays[wMonth-1] + wDay;
827
828 // If leap year and it's before March, subtract 1:
829 if (wMonth <= 2 && bLeapYear)
830 --nDate;
831
832 // Offset so that 12/30/1899 is 0
833 nDate -= 693959L;
834
835 dblTime = (((long)wHour * 3600L) + // hrs in seconds
836 ((long)wMinute * 60L) + // mins in seconds
837 ((long)wSecond)) / 86400.;
838
839 dtDest = (double) nDate + ((nDate >= 0) ? dblTime : -dblTime);
840
841 return TRUE;
842}
843
844BOOL TmFromOleDate(DATE dtSrc, struct tm& tmDest)
845{
846 // The legal range does not actually span year 0 to 9999.
847 if (dtSrc > MAX_DATE || dtSrc < MIN_DATE) // about year 100 to about 9999
848 return FALSE;
849
850 long nDays; // Number of days since Dec. 30, 1899
851 long nDaysAbsolute; // Number of days since 1/1/0
852 long nSecsInDay; // Time in seconds since midnight
853 long nMinutesInDay; // Minutes in day
854
855 long n400Years; // Number of 400 year increments since 1/1/0
856 long n400Century; // Century within 400 year block (0,1,2 or 3)
857 long n4Years; // Number of 4 year increments since 1/1/0
858 long n4Day; // Day within 4 year block
859 // (0 is 1/1/yr1, 1460 is 12/31/yr4)
860 long n4Yr; // Year within 4 year block (0,1,2 or 3)
861 BOOL bLeap4 = TRUE; // TRUE if 4 year block includes leap year
862
863 double dblDate = dtSrc; // tempory serial date
864
865 // If a valid date, then this conversion should not overflow
866 nDays = (long)dblDate;
867
868 // Round to the second
869 dblDate += ((dtSrc > 0.0) ? HALF_SECOND : -HALF_SECOND);
870
871 nDaysAbsolute = (long)dblDate + 693959L; // Add days from 1/1/0 to 12/30/1899
872
873 dblDate = fabs(dblDate);
874 nSecsInDay = (long)((dblDate - floor(dblDate)) * 86400.);
875
876 // Calculate the day of week (sun=1, mon=2...)
877 // -1 because 1/1/0 is Sat. +1 because we want 1-based
878 tmDest.tm_wday = (int)((nDaysAbsolute - 1) % 7L) + 1;
879
880 // Leap years every 4 yrs except centuries not multiples of 400.
881 n400Years = (long)(nDaysAbsolute / 146097L);
882
883 // Set nDaysAbsolute to day within 400-year block
884 nDaysAbsolute %= 146097L;
885
886 // -1 because first century has extra day
887 n400Century = (long)((nDaysAbsolute - 1) / 36524L);
888
889 // Non-leap century
890 if (n400Century != 0)
891 {
892 // Set nDaysAbsolute to day within century
893 nDaysAbsolute = (nDaysAbsolute - 1) % 36524L;
894
895 // +1 because 1st 4 year increment has 1460 days
896 n4Years = (long)((nDaysAbsolute + 1) / 1461L);
897
898 if (n4Years != 0)
899 n4Day = (long)((nDaysAbsolute + 1) % 1461L);
900 else
901 {
902 bLeap4 = FALSE;
903 n4Day = (long)nDaysAbsolute;
904 }
905 }
906 else
907 {
908 // Leap century - not special case!
909 n4Years = (long)(nDaysAbsolute / 1461L);
910 n4Day = (long)(nDaysAbsolute % 1461L);
911 }
912
913 if (bLeap4)
914 {
915 // -1 because first year has 366 days
916 n4Yr = (n4Day - 1) / 365;
917
918 if (n4Yr != 0)
919 n4Day = (n4Day - 1) % 365;
920 }
921 else
922 {
923 n4Yr = n4Day / 365;
924 n4Day %= 365;
925 }
926
927 // n4Day is now 0-based day of year. Save 1-based day of year, year number
928 tmDest.tm_yday = (int)n4Day + 1;
929 tmDest.tm_year = n400Years * 400 + n400Century * 100 + n4Years * 4 + n4Yr;
930
931 // Handle leap year: before, on, and after Feb. 29.
932 if (n4Yr == 0 && bLeap4)
933 {
934 // Leap Year
935 if (n4Day == 59)
936 {
937 /* Feb. 29 */
938 tmDest.tm_mon = 2;
939 tmDest.tm_mday = 29;
940 goto DoTime;
941 }
942
943 // Pretend it's not a leap year for month/day comp.
944 if (n4Day >= 60)
945 --n4Day;
946 }
947
948 // Make n4DaY a 1-based day of non-leap year and compute
949 // month/day for everything but Feb. 29.
950 ++n4Day;
951
952 // Month number always >= n/32, so save some loop time */
953 for (tmDest.tm_mon = (n4Day >> 5) + 1;
954 n4Day > rgMonthDays[tmDest.tm_mon]; tmDest.tm_mon++);
955
956 tmDest.tm_mday = (int)(n4Day - rgMonthDays[tmDest.tm_mon-1]);
957
958DoTime:
959 if (nSecsInDay == 0)
960 tmDest.tm_hour = tmDest.tm_min = tmDest.tm_sec = 0;
961 else
962 {
963 tmDest.tm_sec = (int)nSecsInDay % 60L;
964 nMinutesInDay = nSecsInDay / 60L;
965 tmDest.tm_min = (int)nMinutesInDay % 60;
966 tmDest.tm_hour = (int)nMinutesInDay / 60;
967 }
968
969 return TRUE;
970}
971
972void TmConvertToStandardFormat(struct tm& tmSrc)
973{
974 // Convert afx internal tm to format expected by runtimes (_tcsftime, etc)
975 tmSrc.tm_year -= 1900; // year is based on 1900
976 tmSrc.tm_mon -= 1; // month of year is 0-based
977 tmSrc.tm_wday -= 1; // day of week is 0-based
978 tmSrc.tm_yday -= 1; // day of year is 0-based
979}
980
981double DoubleFromDate(DATE dt)
982{
983 // No problem if positive
984 if (dt >= 0)
985 return dt;
986
987 // If negative, must convert since negative dates not continuous
988 // (examples: -1.25 to -.75, -1.50 to -.50, -1.75 to -.25)
989 double temp = ceil(dt);
990 return temp - (dt - temp);
991}
992
993DATE DateFromDouble(double dbl)
994{
995 // No problem if positive
996 if (dbl >= 0)
997 return dbl;
998
999 // If negative, must convert since negative dates not continuous
1000 // (examples: -.75 to -1.25, -.50 to -1.50, -.25 to -1.75)
1001 double temp = floor(dbl); // dbl is now whole part
1002 return temp + (temp - dbl);
1003}
1004
1005/*
1006 * ClearVariant
1007 *
1008 * Zeros a variant structure without regard to current contents
1009 */
1010static void ClearVariant(VARIANTARG *pvarg)
1011{
1012 pvarg->vt = VT_EMPTY;
1013 pvarg->wReserved1 = 0;
1014 pvarg->wReserved2 = 0;
1015 pvarg->wReserved3 = 0;
1016 pvarg->lVal = 0;
1017}
1018
1019/*
1020 * ReleaseVariant
1021 *
1022 * Clears a particular variant structure and releases any external objects
1023 * or memory contained in the variant. Supports the data types listed above.
1024 */
1025static void ReleaseVariant(VARIANTARG *pvarg)
1026{
1027 VARTYPE vt;
1028 VARIANTARG _huge *pvargArray;
1029 long lLBound, lUBound, l;
1030
1031 vt = pvarg->vt & 0xfff; // mask off flags
1032
1033 // check if an array. If so, free its contents, then the array itself.
1034 if (V_ISARRAY(pvarg))
1035 {
1036 // variant arrays are all this routine currently knows about. Since a
1037 // variant can contain anything (even other arrays), call ourselves
1038 // recursively.
1039 if (vt == VT_VARIANT)
1040 {
1041 SafeArrayGetLBound(pvarg->parray, 1, &lLBound);
1042 SafeArrayGetUBound(pvarg->parray, 1, &lUBound);
1043
1044 if (lUBound > lLBound)
1045 {
1046 lUBound -= lLBound;
1047
1048 SafeArrayAccessData(pvarg->parray, (void**)&pvargArray);
1049
1050 for (l = 0; l < lUBound; l++)
1051 {
1052 ReleaseVariant(pvargArray);
1053 pvargArray++;
1054 }
1055
1056 SafeArrayUnaccessData(pvarg->parray);
1057 }
1058 }
1059 else
1060 {
1061 wxLogWarning("ReleaseVariant: Array contains non-variant type");
1062 }
1063
1064 // Free the array itself.
1065 SafeArrayDestroy(pvarg->parray);
1066 }
1067 else
1068 {
1069 switch (vt)
1070 {
1071 case VT_DISPATCH:
1072 if (pvarg->pdispVal)
1073 pvarg->pdispVal->Release();
1074 break;
1075
1076 case VT_BSTR:
1077 SysFreeString(pvarg->bstrVal);
1078 break;
1079
1080 case VT_I2:
1081 case VT_BOOL:
1082 case VT_R8:
1083 case VT_ERROR: // to avoid erroring on an error return from Excel
1084 // no work for these types
1085 break;
1086
1087 default:
1088 wxLogWarning("ReleaseVariant: Unknown type");
1089 break;
1090 }
1091 }
1092
1093 ClearVariant(pvarg);
1094}
1095
1096#if 0
1097
1098void ShowException(LPOLESTR szMember, HRESULT hr, EXCEPINFO *pexcep, unsigned int uiArgErr)
1099{
1100 TCHAR szBuf[512];
1101
1102 switch (GetScode(hr))
1103 {
1104 case DISP_E_UNKNOWNNAME:
1105 wsprintf(szBuf, L"%s: Unknown name or named argument.", szMember);
1106 break;
1107
1108 case DISP_E_BADPARAMCOUNT:
1109 wsprintf(szBuf, L"%s: Incorrect number of arguments.", szMember);
1110 break;
1111
1112 case DISP_E_EXCEPTION:
1113 wsprintf(szBuf, L"%s: Error %d: ", szMember, pexcep->wCode);
1114 if (pexcep->bstrDescription != NULL)
1115 lstrcat(szBuf, pexcep->bstrDescription);
1116 else
1117 lstrcat(szBuf, L"<<No Description>>");
1118 break;
1119
1120 case DISP_E_MEMBERNOTFOUND:
1121 wsprintf(szBuf, L"%s: method or property not found.", szMember);
1122 break;
1123
1124 case DISP_E_OVERFLOW:
1125 wsprintf(szBuf, L"%s: Overflow while coercing argument values.", szMember);
1126 break;
1127
1128 case DISP_E_NONAMEDARGS:
1129 wsprintf(szBuf, L"%s: Object implementation does not support named arguments.",
1130 szMember);
1131 break;
1132
1133 case DISP_E_UNKNOWNLCID:
1134 wsprintf(szBuf, L"%s: The locale ID is unknown.", szMember);
1135 break;
1136
1137 case DISP_E_PARAMNOTOPTIONAL:
1138 wsprintf(szBuf, L"%s: Missing a required parameter.", szMember);
1139 break;
1140
1141 case DISP_E_PARAMNOTFOUND:
1142 wsprintf(szBuf, L"%s: Argument not found, argument %d.", szMember, uiArgErr);
1143 break;
1144
1145 case DISP_E_TYPEMISMATCH:
1146 wsprintf(szBuf, L"%s: Type mismatch, argument %d.", szMember, uiArgErr);
1147 break;
1148
1149 default:
1150 wsprintf(szBuf, L"%s: Unknown error occured.", szMember);
1151 break;
1152 }
1153
1154 wxLogWarning(szBuf);
1155}
1156
1157#endif
1158