Introduces wxBSTR, an RAII wrapper for MSW BSTR type. wxBSTR also supersedes wxBasicString.
This commit is contained in:
@@ -21,7 +21,7 @@
|
|||||||
// wx includes
|
// wx includes
|
||||||
//---------------------------------------------------------------------------
|
//---------------------------------------------------------------------------
|
||||||
|
|
||||||
#include "wx/msw/ole/oleutils.h" // wxBasicString &c
|
#include "wx/msw/ole/oleutils.h"
|
||||||
#include "wx/msw/ole/uuid.h"
|
#include "wx/msw/ole/uuid.h"
|
||||||
#include "wx/window.h"
|
#include "wx/window.h"
|
||||||
#include "wx/variant.h"
|
#include "wx/variant.h"
|
||||||
|
@@ -61,29 +61,6 @@ inline void wxOleUninitialize()
|
|||||||
::OleUninitialize();
|
::OleUninitialize();
|
||||||
}
|
}
|
||||||
|
|
||||||
// wrapper around BSTR type (by Vadim Zeitlin)
|
|
||||||
|
|
||||||
class WXDLLIMPEXP_CORE wxBasicString
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
// ctors & dtor
|
|
||||||
wxBasicString(const wxString& str);
|
|
||||||
wxBasicString(const wxBasicString& bstr);
|
|
||||||
~wxBasicString();
|
|
||||||
|
|
||||||
wxBasicString& operator=(const wxBasicString& bstr);
|
|
||||||
|
|
||||||
// accessors
|
|
||||||
// just get the string
|
|
||||||
operator BSTR() const { return m_bstrBuf; }
|
|
||||||
// retrieve a copy of our string - caller must SysFreeString() it later!
|
|
||||||
BSTR Get() const { return SysAllocString(m_bstrBuf); }
|
|
||||||
|
|
||||||
private:
|
|
||||||
// actual string
|
|
||||||
BSTR m_bstrBuf;
|
|
||||||
};
|
|
||||||
|
|
||||||
#if wxUSE_VARIANT
|
#if wxUSE_VARIANT
|
||||||
// Convert variants
|
// Convert variants
|
||||||
class WXDLLIMPEXP_FWD_BASE wxVariant;
|
class WXDLLIMPEXP_FWD_BASE wxVariant;
|
||||||
@@ -195,6 +172,55 @@ WXDLLIMPEXP_CORE BSTR wxConvertStringToOle(const wxString& str);
|
|||||||
// Convert string from BSTR to wxString
|
// Convert string from BSTR to wxString
|
||||||
WXDLLIMPEXP_CORE wxString wxConvertStringFromOle(BSTR bStr);
|
WXDLLIMPEXP_CORE wxString wxConvertStringFromOle(BSTR bStr);
|
||||||
|
|
||||||
|
// A thin RAII wrapper for BSTR, which can create BSTR
|
||||||
|
// from wxString as well as return the owned BSTR as wxString.
|
||||||
|
// Unlike _b_str_t, wxBSTR is NOT reference counted.
|
||||||
|
class WXDLLIMPEXP_CORE wxBSTR
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
wxBSTR() : m_bstr(NULL) {}
|
||||||
|
|
||||||
|
// If copy is true then a copy of bstr is created,
|
||||||
|
// if not then ownership of bstr is taken.
|
||||||
|
wxBSTR(BSTR bstr, bool copy);
|
||||||
|
|
||||||
|
// Creates BSTR from wxString
|
||||||
|
wxBSTR(const wxString& str) : m_bstr(::SysAllocString(str.wc_str(*wxConvCurrent))) {}
|
||||||
|
|
||||||
|
// Creates a copy of BSTR owned by wxbstr
|
||||||
|
wxBSTR(const wxBSTR& wxbstr) : m_bstr(wxbstr.GetCopy()) {}
|
||||||
|
|
||||||
|
// Frees the owned BSTR
|
||||||
|
~wxBSTR() { Free(); }
|
||||||
|
|
||||||
|
// Creates a copy of wxbstr
|
||||||
|
wxBSTR& operator=(const wxBSTR& wxbstr);
|
||||||
|
|
||||||
|
// Takes ownership of bstr
|
||||||
|
void Attach(BSTR bstr);
|
||||||
|
|
||||||
|
// Returns the owned BSTR and gives up its ownership
|
||||||
|
BSTR Detach();
|
||||||
|
|
||||||
|
// Frees the owned BSTR
|
||||||
|
void Free();
|
||||||
|
|
||||||
|
// Returnes the owned BSTR while keeping its ownership
|
||||||
|
BSTR GetBSTR() const { return m_bstr; }
|
||||||
|
operator BSTR() const { return GetBSTR(); }
|
||||||
|
|
||||||
|
// Returns the address of owned BSTR
|
||||||
|
BSTR* GetAddress() { return &m_bstr; }
|
||||||
|
|
||||||
|
// Return a copy of owned BSTR
|
||||||
|
BSTR GetCopy() const { return ::SysAllocString(m_bstr); }
|
||||||
|
|
||||||
|
// Returns the owned BSTR convert to wxString
|
||||||
|
wxString GetwxString() const { return wxConvertStringFromOle(m_bstr); }
|
||||||
|
private:
|
||||||
|
BSTR m_bstr;
|
||||||
|
};
|
||||||
|
|
||||||
#else // !wxUSE_OLE
|
#else // !wxUSE_OLE
|
||||||
|
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
|
@@ -1127,7 +1127,7 @@ bool wxAMMediaBackend::Load(const wxURI& location, const wxURI& proxy)
|
|||||||
if(pPlay)
|
if(pPlay)
|
||||||
{
|
{
|
||||||
pPlay->put_UseHTTPProxy(VARIANT_TRUE);
|
pPlay->put_UseHTTPProxy(VARIANT_TRUE);
|
||||||
pPlay->put_HTTPProxyHost(wxBasicString(proxy.GetServer()).Get());
|
pPlay->put_HTTPProxyHost(wxBSTR(proxy.GetServer()).Detach());
|
||||||
pPlay->put_HTTPProxyPort(wxAtoi(proxy.GetPort()));
|
pPlay->put_HTTPProxyPort(wxAtoi(proxy.GetPort()));
|
||||||
pPlay->Release();
|
pPlay->Release();
|
||||||
}
|
}
|
||||||
@@ -1150,9 +1150,9 @@ bool wxAMMediaBackend::DoLoad(const wxString& location)
|
|||||||
// the docs say its async and put_FileName is not -
|
// the docs say its async and put_FileName is not -
|
||||||
// but in practice they both seem to be async anyway
|
// but in practice they both seem to be async anyway
|
||||||
if(GetMP())
|
if(GetMP())
|
||||||
hr = GetMP()->Open( wxBasicString(location).Get() );
|
hr = GetMP()->Open( wxBSTR(location).Detach() );
|
||||||
else
|
else
|
||||||
hr = GetAM()->put_FileName( wxBasicString(location).Get() );
|
hr = GetAM()->put_FileName( wxBSTR(location).Detach() );
|
||||||
|
|
||||||
if(FAILED(hr))
|
if(FAILED(hr))
|
||||||
{
|
{
|
||||||
|
@@ -905,21 +905,21 @@ bool wxWMP10MediaBackend::Load(const wxURI& location,
|
|||||||
{
|
{
|
||||||
long lOldSetting;
|
long lOldSetting;
|
||||||
if( pWMPNetwork->getProxySettings(
|
if( pWMPNetwork->getProxySettings(
|
||||||
wxBasicString(location.GetScheme()).Get(), &lOldSetting
|
wxBSTR(location.GetScheme()).Detach(), &lOldSetting
|
||||||
) == 0 &&
|
) == 0 &&
|
||||||
|
|
||||||
pWMPNetwork->setProxySettings(
|
pWMPNetwork->setProxySettings(
|
||||||
wxBasicString(location.GetScheme()).Get(), // protocol
|
wxBSTR(location.GetScheme()).Detach(), // protocol
|
||||||
2) == 0) // 2 == manually specify
|
2) == 0) // 2 == manually specify
|
||||||
{
|
{
|
||||||
BSTR bsOldName = NULL;
|
BSTR bsOldName = NULL;
|
||||||
long lOldPort = 0;
|
long lOldPort = 0;
|
||||||
|
|
||||||
pWMPNetwork->getProxyName(
|
pWMPNetwork->getProxyName(
|
||||||
wxBasicString(location.GetScheme()).Get(),
|
wxBSTR(location.GetScheme()).Detach(),
|
||||||
&bsOldName);
|
&bsOldName);
|
||||||
pWMPNetwork->getProxyPort(
|
pWMPNetwork->getProxyPort(
|
||||||
wxBasicString(location.GetScheme()).Get(),
|
wxBSTR(location.GetScheme()).Detach(),
|
||||||
&lOldPort);
|
&lOldPort);
|
||||||
|
|
||||||
long lPort;
|
long lPort;
|
||||||
@@ -936,11 +936,11 @@ bool wxWMP10MediaBackend::Load(const wxURI& location,
|
|||||||
}
|
}
|
||||||
|
|
||||||
if( pWMPNetwork->setProxyName(
|
if( pWMPNetwork->setProxyName(
|
||||||
wxBasicString(location.GetScheme()).Get(), // proto
|
wxBSTR(location.GetScheme()).Detach(), // proto
|
||||||
wxBasicString(server).Get() ) == 0 &&
|
wxBSTR(server).Detach() ) == 0 &&
|
||||||
|
|
||||||
pWMPNetwork->setProxyPort(
|
pWMPNetwork->setProxyPort(
|
||||||
wxBasicString(location.GetScheme()).Get(), // proto
|
wxBSTR(location.GetScheme()).Detach(), // proto
|
||||||
lPort
|
lPort
|
||||||
) == 0
|
) == 0
|
||||||
)
|
)
|
||||||
@@ -948,16 +948,16 @@ bool wxWMP10MediaBackend::Load(const wxURI& location,
|
|||||||
bOK = DoLoad(location.BuildURI());
|
bOK = DoLoad(location.BuildURI());
|
||||||
|
|
||||||
pWMPNetwork->setProxySettings(
|
pWMPNetwork->setProxySettings(
|
||||||
wxBasicString(location.GetScheme()).Get(), // protocol
|
wxBSTR(location.GetScheme()).Detach(), // protocol
|
||||||
lOldSetting);
|
lOldSetting);
|
||||||
if(bsOldName)
|
if(bsOldName)
|
||||||
pWMPNetwork->setProxyName(
|
pWMPNetwork->setProxyName(
|
||||||
wxBasicString(location.GetScheme()).Get(), // protocol
|
wxBSTR(location.GetScheme()).Detach(), // protocol
|
||||||
bsOldName);
|
bsOldName);
|
||||||
|
|
||||||
if(lOldPort)
|
if(lOldPort)
|
||||||
pWMPNetwork->setProxyPort(
|
pWMPNetwork->setProxyPort(
|
||||||
wxBasicString(location.GetScheme()).Get(), // protocol
|
wxBSTR(location.GetScheme()).Detach(), // protocol
|
||||||
lOldPort);
|
lOldPort);
|
||||||
|
|
||||||
pWMPNetwork->Release();
|
pWMPNetwork->Release();
|
||||||
@@ -997,7 +997,7 @@ bool wxWMP10MediaBackend::DoLoad(const wxString& location)
|
|||||||
{
|
{
|
||||||
IWMPMedia* pWMPMedia;
|
IWMPMedia* pWMPMedia;
|
||||||
|
|
||||||
if( (hr = pWMPCore3->newMedia(wxBasicString(location).Get(),
|
if( (hr = pWMPCore3->newMedia(wxBSTR(location).Detach(),
|
||||||
&pWMPMedia)) == 0)
|
&pWMPMedia)) == 0)
|
||||||
{
|
{
|
||||||
// this (get_duration) will actually FAIL, but it will work.
|
// this (get_duration) will actually FAIL, but it will work.
|
||||||
@@ -1012,7 +1012,7 @@ bool wxWMP10MediaBackend::DoLoad(const wxString& location)
|
|||||||
#endif
|
#endif
|
||||||
{
|
{
|
||||||
// just load it the "normal" way
|
// just load it the "normal" way
|
||||||
hr = m_pWMPPlayer->put_URL( wxBasicString(location).Get() );
|
hr = m_pWMPPlayer->put_URL( wxBSTR(location).Detach() );
|
||||||
}
|
}
|
||||||
|
|
||||||
if(FAILED(hr))
|
if(FAILED(hr))
|
||||||
@@ -1061,12 +1061,12 @@ bool wxWMP10MediaBackend::ShowPlayerControls(wxMediaCtrlPlayerControls flags)
|
|||||||
if(!flags)
|
if(!flags)
|
||||||
{
|
{
|
||||||
m_pWMPPlayer->put_enabled(VARIANT_FALSE);
|
m_pWMPPlayer->put_enabled(VARIANT_FALSE);
|
||||||
m_pWMPPlayer->put_uiMode(wxBasicString(wxT("none")).Get());
|
m_pWMPPlayer->put_uiMode(wxBSTR(wxT("none")).Detach());
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
// TODO: use "custom"? (note that CE only supports none/full)
|
// TODO: use "custom"? (note that CE only supports none/full)
|
||||||
m_pWMPPlayer->put_uiMode(wxBasicString(wxT("full")).Get());
|
m_pWMPPlayer->put_uiMode(wxBSTR(wxT("full")).Detach());
|
||||||
m_pWMPPlayer->put_enabled(VARIANT_TRUE);
|
m_pWMPPlayer->put_enabled(VARIANT_TRUE);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1358,7 +1358,7 @@ wxLongLong wxWMP10MediaBackend::GetDownloadTotal()
|
|||||||
if(m_pWMPPlayer->get_currentMedia(&pWMPMedia) == 0)
|
if(m_pWMPPlayer->get_currentMedia(&pWMPMedia) == 0)
|
||||||
{
|
{
|
||||||
BSTR bsOut;
|
BSTR bsOut;
|
||||||
pWMPMedia->getItemInfo(wxBasicString(wxT("FileSize")).Get(),
|
pWMPMedia->getItemInfo(wxBSTR(wxT("FileSize")).Detach(),
|
||||||
&bsOut);
|
&bsOut);
|
||||||
|
|
||||||
wxString sFileSize = wxConvertStringFromOle(bsOut);
|
wxString sFileSize = wxConvertStringFromOle(bsOut);
|
||||||
|
@@ -937,9 +937,8 @@ STDMETHODIMP wxIAccessible::get_accDefaultAction ( VARIANT varID, BSTR* pszDefau
|
|||||||
return S_FALSE;
|
return S_FALSE;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
wxBasicString basicString(defaultAction);
|
* pszDefaultAction = wxBSTR(defaultAction).Detach();
|
||||||
* pszDefaultAction = basicString.Get();
|
|
||||||
return S_OK;
|
return S_OK;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -998,9 +997,8 @@ STDMETHODIMP wxIAccessible::get_accDescription ( VARIANT varID, BSTR* pszDescrip
|
|||||||
return S_FALSE;
|
return S_FALSE;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
wxBasicString basicString(description);
|
* pszDescription = wxBSTR(description).Detach();
|
||||||
* pszDescription = basicString.Get();
|
|
||||||
return S_OK;
|
return S_OK;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1059,9 +1057,8 @@ STDMETHODIMP wxIAccessible::get_accHelp ( VARIANT varID, BSTR* pszHelp)
|
|||||||
return S_FALSE;
|
return S_FALSE;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
wxBasicString basicString(helpString);
|
* pszHelp = wxBSTR(helpString).Detach();
|
||||||
* pszHelp = basicString.Get();
|
|
||||||
return S_OK;
|
return S_OK;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1171,8 +1168,7 @@ STDMETHODIMP wxIAccessible::get_accKeyboardShortcut ( VARIANT varID, BSTR* pszKe
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
wxBasicString basicString(keyboardShortcut);
|
* pszKeyboardShortcut = wxBSTR(keyboardShortcut).Detach();
|
||||||
* pszKeyboardShortcut = basicString.Get();
|
|
||||||
return S_OK;
|
return S_OK;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1234,9 +1230,8 @@ STDMETHODIMP wxIAccessible::get_accName ( VARIANT varID, BSTR* pszName)
|
|||||||
return S_FALSE;
|
return S_FALSE;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
wxBasicString basicString(name);
|
*pszName = wxBSTR(name).Detach();
|
||||||
*pszName = basicString.Get();
|
|
||||||
}
|
}
|
||||||
return S_OK;
|
return S_OK;
|
||||||
}
|
}
|
||||||
@@ -1416,8 +1411,7 @@ STDMETHODIMP wxIAccessible::get_accValue ( VARIANT varID, BSTR* pszValue)
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
wxBasicString basicString(strValue);
|
* pszValue = wxBSTR(strValue).Detach();
|
||||||
* pszValue = basicString.Get();
|
|
||||||
return S_OK;
|
return S_OK;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -130,7 +130,7 @@ bool wxAutomationObject::Invoke(const wxString& member, int action,
|
|||||||
}
|
}
|
||||||
|
|
||||||
int namedArgStringCount = namedArgCount + 1;
|
int namedArgStringCount = namedArgCount + 1;
|
||||||
wxVector<wxBasicString> argNames(namedArgStringCount, wxString());
|
wxVector<wxBSTR> argNames(namedArgStringCount, wxString());
|
||||||
argNames[0] = member;
|
argNames[0] = member;
|
||||||
|
|
||||||
// Note that arguments are specified in reverse order
|
// Note that arguments are specified in reverse order
|
||||||
@@ -156,7 +156,7 @@ bool wxAutomationObject::Invoke(const wxString& member, int action,
|
|||||||
// Get the IDs for the member and its arguments. GetIDsOfNames expects the
|
// Get the IDs for the member and its arguments. GetIDsOfNames expects the
|
||||||
// member name as the first name, followed by argument names (if any).
|
// member name as the first name, followed by argument names (if any).
|
||||||
hr = ((IDispatch*)m_dispatchPtr)->GetIDsOfNames(IID_NULL,
|
hr = ((IDispatch*)m_dispatchPtr)->GetIDsOfNames(IID_NULL,
|
||||||
// We rely on the fact that wxBasicString is
|
// We rely on the fact that wxBSTR is
|
||||||
// just BSTR with some methods here.
|
// just BSTR with some methods here.
|
||||||
reinterpret_cast<BSTR *>(&argNames[0]),
|
reinterpret_cast<BSTR *>(&argNames[0]),
|
||||||
1 + namedArgCount, m_lcid, &dispIds[0]);
|
1 + namedArgCount, m_lcid, &dispIds[0]);
|
||||||
@@ -499,7 +499,7 @@ namespace
|
|||||||
|
|
||||||
HRESULT wxCLSIDFromProgID(const wxString& progId, CLSID& clsId)
|
HRESULT wxCLSIDFromProgID(const wxString& progId, CLSID& clsId)
|
||||||
{
|
{
|
||||||
HRESULT hr = CLSIDFromProgID(wxBasicString(progId), &clsId);
|
HRESULT hr = CLSIDFromProgID(wxBSTR(progId), &clsId);
|
||||||
if ( FAILED(hr) )
|
if ( FAILED(hr) )
|
||||||
{
|
{
|
||||||
wxLogSysError(hr, _("Failed to find CLSID of \"%s\""), progId);
|
wxLogSysError(hr, _("Failed to find CLSID of \"%s\""), progId);
|
||||||
|
@@ -38,7 +38,7 @@
|
|||||||
|
|
||||||
WXDLLEXPORT BSTR wxConvertStringToOle(const wxString& str)
|
WXDLLEXPORT BSTR wxConvertStringToOle(const wxString& str)
|
||||||
{
|
{
|
||||||
return wxBasicString(str).Get();
|
return wxBSTR(str).Detach();
|
||||||
}
|
}
|
||||||
|
|
||||||
WXDLLEXPORT wxString wxConvertStringFromOle(BSTR bStr)
|
WXDLLEXPORT wxString wxConvertStringFromOle(BSTR bStr)
|
||||||
@@ -68,28 +68,48 @@ WXDLLEXPORT wxString wxConvertStringFromOle(BSTR bStr)
|
|||||||
}
|
}
|
||||||
|
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
// wxBasicString
|
// wxBSTR
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
|
|
||||||
wxBasicString::wxBasicString(const wxString& str)
|
wxBSTR::wxBSTR(BSTR bstr, bool copy)
|
||||||
{
|
{
|
||||||
m_bstrBuf = SysAllocString(str.wc_str(*wxConvCurrent));
|
if ( copy )
|
||||||
}
|
m_bstr = ::SysAllocString(bstr);
|
||||||
|
else
|
||||||
wxBasicString::wxBasicString(const wxBasicString& src)
|
m_bstr = bstr;
|
||||||
{
|
}
|
||||||
m_bstrBuf = src.Get();
|
|
||||||
}
|
wxBSTR& wxBSTR::operator=(const wxBSTR& wxbstr)
|
||||||
|
{
|
||||||
wxBasicString& wxBasicString::operator=(const wxBasicString& src)
|
if ( wxbstr != *this )
|
||||||
{
|
{
|
||||||
SysReAllocString(&m_bstrBuf, src);
|
Free();
|
||||||
return *this;
|
m_bstr = wxbstr.GetCopy();
|
||||||
}
|
}
|
||||||
|
|
||||||
wxBasicString::~wxBasicString()
|
return *this;
|
||||||
{
|
}
|
||||||
SysFreeString(m_bstrBuf);
|
|
||||||
|
void wxBSTR::Attach(BSTR bstr)
|
||||||
|
{
|
||||||
|
wxCHECK_RET(m_bstr != bstr, wxS("Attaching already attached BSTR!"));
|
||||||
|
|
||||||
|
Free();
|
||||||
|
m_bstr = bstr;
|
||||||
|
}
|
||||||
|
|
||||||
|
BSTR wxBSTR::Detach()
|
||||||
|
{
|
||||||
|
BSTR bstr = m_bstr;
|
||||||
|
|
||||||
|
m_bstr = NULL;
|
||||||
|
return bstr;
|
||||||
|
}
|
||||||
|
|
||||||
|
void wxBSTR::Free()
|
||||||
|
{
|
||||||
|
::SysFreeString(m_bstr);
|
||||||
|
m_bstr = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user