2014-12-04 13:50:21 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/*
|
|
|
|
* This file is part of the LibreOffice project.
|
|
|
|
*
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*
|
|
|
|
* This file incorporates work covered by the following license notice:
|
|
|
|
*
|
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed
|
|
|
|
* with this work for additional information regarding copyright
|
|
|
|
* ownership. The ASF licenses this file to you under the Apache
|
|
|
|
* License, Version 2.0 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy of
|
|
|
|
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
|
|
|
*/
|
|
|
|
|
2015-01-06 10:29:11 +02:00
|
|
|
#ifndef INCLUDED_VCL_PTR_HXX
|
|
|
|
#define INCLUDED_VCL_PTR_HXX
|
2014-12-04 13:50:21 +02:00
|
|
|
|
|
|
|
#include <rtl/ref.hxx>
|
2015-03-09 14:29:30 +02:00
|
|
|
#include <cstddef>
|
2015-03-30 17:49:20 +01:00
|
|
|
#include <utility>
|
2015-04-17 13:14:20 +02:00
|
|
|
#include <type_traits>
|
2014-12-04 13:50:21 +02:00
|
|
|
|
2015-01-05 14:01:17 +02:00
|
|
|
/// @cond INTERNAL
|
|
|
|
namespace vcl { namespace detail {
|
|
|
|
|
|
|
|
// A mechanism to enable up-casts, used by the VclReference conversion constructor,
|
|
|
|
// heavily borrowed from boost::is_base_and_derived
|
|
|
|
// (which manages to avoid compilation problems with ambiguous bases and cites
|
|
|
|
// comp.lang.c++.moderated mail <http://groups.google.com/groups?
|
|
|
|
// selm=df893da6.0301280859.522081f7%40posting.google.com> "SuperSubclass
|
|
|
|
// (is_base_and_derived) complete implementation!" by Rani Sharoni and cites
|
|
|
|
// Aleksey Gurtovoy for the workaround for MSVC), to avoid including Boost
|
|
|
|
// headers in URE headers (could ultimately be based on C++11 std::is_base_of):
|
|
|
|
|
|
|
|
template< typename T1, typename T2 > struct UpCast {
|
|
|
|
private:
|
|
|
|
template< bool, typename U1, typename > struct C
|
|
|
|
{ typedef U1 t; };
|
|
|
|
|
|
|
|
template< typename U1, typename U2 > struct C< false, U1, U2 >
|
|
|
|
{ typedef U2 t; };
|
|
|
|
|
|
|
|
struct S { char c[2]; };
|
|
|
|
|
|
|
|
#if defined _MSC_VER
|
|
|
|
static char f(T2 *, long);
|
|
|
|
static S f(T1 * const &, int);
|
|
|
|
#else
|
|
|
|
template< typename U > static char f(T2 *, U);
|
|
|
|
static S f(T1 *, int);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
struct H {
|
|
|
|
H(); // avoid C2514 "class has no constructors" from MSVC 2008
|
|
|
|
#if defined _MSC_VER
|
|
|
|
operator T1 * const & () const;
|
|
|
|
#else
|
|
|
|
operator T1 * () const;
|
|
|
|
#endif
|
|
|
|
operator T2 * ();
|
|
|
|
};
|
|
|
|
|
|
|
|
public:
|
|
|
|
typedef typename C< sizeof (f(H(), 0)) == 1, void *, void >::t t;
|
|
|
|
};
|
|
|
|
|
|
|
|
}; }; // namespace detail, namespace vcl
|
|
|
|
|
2015-03-09 14:29:30 +02:00
|
|
|
namespace vcl { class Window; }
|
|
|
|
|
2014-12-04 13:50:21 +02:00
|
|
|
/**
|
|
|
|
* A thin wrapper around rtl::Reference to implement the acquire and dispose semantics we want for references to vcl::Window subclasses.
|
2015-02-27 16:29:46 +00:00
|
|
|
*
|
|
|
|
* For more details on the design please see vcl/README.lifecycle
|
|
|
|
*
|
2014-12-04 13:50:21 +02:00
|
|
|
* @param reference_type must be a subclass of vcl::Window
|
|
|
|
*/
|
|
|
|
template <class reference_type>
|
2015-01-06 10:29:11 +02:00
|
|
|
class VclPtr
|
2014-12-04 13:50:21 +02:00
|
|
|
{
|
|
|
|
::rtl::Reference<reference_type> m_rInnerRef;
|
|
|
|
|
|
|
|
public:
|
|
|
|
/** Constructor...
|
|
|
|
*/
|
2015-01-06 10:29:11 +02:00
|
|
|
inline VclPtr()
|
2014-12-04 13:50:21 +02:00
|
|
|
: m_rInnerRef()
|
|
|
|
{}
|
|
|
|
|
|
|
|
/** Constructor...
|
|
|
|
*/
|
2015-03-09 14:29:30 +02:00
|
|
|
inline VclPtr (reference_type * pBody)
|
2014-12-04 13:50:21 +02:00
|
|
|
: m_rInnerRef(pBody)
|
|
|
|
{}
|
|
|
|
|
2015-03-30 22:38:15 +01:00
|
|
|
/** Constructor... that doesn't take a ref.
|
|
|
|
*/
|
|
|
|
inline VclPtr (reference_type * pBody, __sal_NoAcquire)
|
|
|
|
: m_rInnerRef(pBody, SAL_NO_ACQUIRE)
|
|
|
|
{}
|
|
|
|
|
2014-12-04 13:50:21 +02:00
|
|
|
/** Copy constructor...
|
|
|
|
*/
|
2015-01-06 10:29:11 +02:00
|
|
|
inline VclPtr (const VclPtr<reference_type> & handle)
|
2014-12-31 14:05:46 +00:00
|
|
|
: m_rInnerRef (handle.m_rInnerRef)
|
2014-12-04 13:50:21 +02:00
|
|
|
{}
|
|
|
|
|
2015-01-05 14:01:17 +02:00
|
|
|
/** Up-casting conversion constructor: Copies interface reference.
|
|
|
|
|
|
|
|
Does not work for up-casts to ambiguous bases. For the special case of
|
|
|
|
up-casting to Reference< XInterface >, see the corresponding conversion
|
|
|
|
operator.
|
|
|
|
|
|
|
|
@param rRef another reference
|
|
|
|
*/
|
|
|
|
template< class derived_type >
|
2015-01-06 10:29:11 +02:00
|
|
|
inline VclPtr(
|
|
|
|
const VclPtr< derived_type > & rRef,
|
2015-01-05 14:01:17 +02:00
|
|
|
typename ::vcl::detail::UpCast< reference_type, derived_type >::t = 0 )
|
2015-01-05 14:29:59 +02:00
|
|
|
: m_rInnerRef( static_cast<reference_type*>(rRef) )
|
2015-01-05 14:01:17 +02:00
|
|
|
{
|
|
|
|
}
|
2014-12-04 13:50:21 +02:00
|
|
|
|
2015-04-13 21:19:21 +01:00
|
|
|
/**
|
|
|
|
* A construction helper for VclPtr. Since VclPtr types are created
|
|
|
|
* with a reference-count of one - to help fit into the existing
|
|
|
|
* code-flow; this helps us to construct them easily.
|
|
|
|
*
|
|
|
|
* For more details on the design please see vcl/README.lifecycle
|
|
|
|
*
|
|
|
|
* @param reference_type must be a subclass of vcl::Window
|
|
|
|
*/
|
|
|
|
template<typename... Arg> static VclPtr< reference_type > Create(Arg &&... arg)
|
|
|
|
{
|
|
|
|
return VclPtr< reference_type >( new reference_type(std::forward<Arg>(arg)...), SAL_NO_ACQUIRE );
|
|
|
|
}
|
|
|
|
|
2015-01-05 14:29:59 +02:00
|
|
|
/** Probably most common used: handle->someBodyOp().
|
|
|
|
*/
|
2015-04-29 08:23:52 +02:00
|
|
|
inline reference_type * operator->() const
|
2015-01-05 14:29:59 +02:00
|
|
|
{
|
|
|
|
return m_rInnerRef.get();
|
|
|
|
}
|
|
|
|
|
2014-12-04 13:50:21 +02:00
|
|
|
/** Get the body. Can be used instead of operator->().
|
|
|
|
I.e. handle->someBodyOp() and handle.get()->someBodyOp()
|
|
|
|
are the same.
|
2015-01-05 14:29:59 +02:00
|
|
|
*/
|
2015-04-29 08:23:52 +02:00
|
|
|
inline reference_type * get() const
|
2014-12-04 13:50:21 +02:00
|
|
|
{
|
|
|
|
return m_rInnerRef.get();
|
|
|
|
}
|
|
|
|
|
2015-04-29 08:23:52 +02:00
|
|
|
inline void set(reference_type *pBody)
|
2015-01-07 10:42:07 +02:00
|
|
|
{
|
|
|
|
m_rInnerRef.set(pBody);
|
|
|
|
}
|
|
|
|
|
2015-04-29 08:23:52 +02:00
|
|
|
inline void reset(reference_type *pBody)
|
2015-02-27 16:29:46 +00:00
|
|
|
{
|
|
|
|
m_rInnerRef.set(pBody);
|
|
|
|
}
|
|
|
|
|
2015-04-17 13:14:20 +02:00
|
|
|
/** Up-casting conversion constructor: Copies interface reference.
|
|
|
|
|
|
|
|
Does not work for up-casts to ambiguous bases. For the special case of
|
|
|
|
up-casting to Reference< XInterface >, see the corresponding conversion
|
|
|
|
operator.
|
|
|
|
|
|
|
|
@param rRef another reference
|
|
|
|
*/
|
|
|
|
template< class derived_type, class = typename std::enable_if< ::vcl::detail::UpCast< reference_type, derived_type >::t >::type >
|
2015-04-29 08:23:52 +02:00
|
|
|
inline VclPtr<reference_type>& operator= (derived_type * pBody)
|
2015-02-12 15:29:18 +02:00
|
|
|
{
|
|
|
|
m_rInnerRef.set(pBody);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2015-04-29 08:23:52 +02:00
|
|
|
inline operator reference_type * () const
|
2014-12-04 13:50:21 +02:00
|
|
|
{
|
|
|
|
return m_rInnerRef.get();
|
|
|
|
}
|
|
|
|
|
2015-04-29 08:24:26 +02:00
|
|
|
inline explicit operator bool () const
|
2015-01-05 14:29:59 +02:00
|
|
|
{
|
|
|
|
return m_rInnerRef.get() != NULL;
|
|
|
|
}
|
|
|
|
|
2015-04-29 08:23:52 +02:00
|
|
|
inline void clear()
|
2015-02-27 16:29:46 +00:00
|
|
|
{
|
|
|
|
m_rInnerRef.clear();
|
|
|
|
}
|
|
|
|
|
2015-04-29 08:23:52 +02:00
|
|
|
inline void reset()
|
2015-02-27 16:29:46 +00:00
|
|
|
{
|
|
|
|
m_rInnerRef.clear();
|
|
|
|
}
|
|
|
|
|
2014-12-04 13:50:21 +02:00
|
|
|
inline void disposeAndClear()
|
|
|
|
{
|
|
|
|
// hold it alive for the lifetime of this method
|
|
|
|
::rtl::Reference<reference_type> aTmp(m_rInnerRef);
|
|
|
|
m_rInnerRef.clear(); // we should use some 'swap' method ideally ;-)
|
2015-02-12 15:29:18 +02:00
|
|
|
if (aTmp.get()) {
|
2015-03-13 13:42:34 +02:00
|
|
|
aTmp->disposeOnce();
|
2015-02-12 15:29:18 +02:00
|
|
|
}
|
2014-12-04 13:50:21 +02:00
|
|
|
}
|
|
|
|
|
2015-03-09 14:29:30 +02:00
|
|
|
/** Returns True if handle points to the same body.
|
|
|
|
*/
|
|
|
|
template<class T>
|
2015-04-29 08:23:52 +02:00
|
|
|
inline bool operator== (const VclPtr<T> & handle) const
|
2015-03-09 14:29:30 +02:00
|
|
|
{
|
|
|
|
return (get() == handle.get());
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Needed to place VclPtr's into STL collection.
|
|
|
|
*/
|
2015-04-29 08:23:52 +02:00
|
|
|
inline bool operator!= (const VclPtr<reference_type> & handle) const
|
2015-03-09 14:29:30 +02:00
|
|
|
{
|
|
|
|
return (m_rInnerRef != handle.m_rInnerRef);
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Makes comparing against NULL easier, resolves compile-time ambiguity */
|
2015-04-29 08:23:52 +02:00
|
|
|
inline bool operator!= (::std::nullptr_t ) const
|
2015-03-09 14:29:30 +02:00
|
|
|
{
|
|
|
|
return (get() != nullptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Needed to place VclPtr's into STL collection.
|
|
|
|
*/
|
2015-04-29 08:23:52 +02:00
|
|
|
inline bool operator< (const VclPtr<reference_type> & handle) const
|
2015-03-09 14:29:30 +02:00
|
|
|
{
|
|
|
|
return (m_rInnerRef < handle.m_rInnerRef);
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Needed to place VclPtr's into STL collection.
|
|
|
|
*/
|
2015-04-29 08:23:52 +02:00
|
|
|
inline bool operator> (const VclPtr<reference_type> & handle) const
|
2015-03-09 14:29:30 +02:00
|
|
|
{
|
|
|
|
return (m_rInnerRef > handle.m_rInnerRef);
|
|
|
|
}
|
2015-01-06 10:29:11 +02:00
|
|
|
}; // class VclPtr
|
2014-12-04 13:50:21 +02:00
|
|
|
|
2015-03-30 17:49:20 +01:00
|
|
|
/**
|
2015-04-13 21:19:21 +01:00
|
|
|
* A construction helper for a temporary VclPtr. Since VclPtr types
|
|
|
|
* are created with a reference-count of one - to help fit into
|
|
|
|
* the existing code-flow; this helps us to construct them easily.
|
|
|
|
* see also VclPtr::Create and ScopedVclPtr
|
2015-03-30 17:49:20 +01:00
|
|
|
*
|
|
|
|
* For more details on the design please see vcl/README.lifecycle
|
|
|
|
*
|
|
|
|
* @param reference_type must be a subclass of vcl::Window
|
|
|
|
*/
|
|
|
|
template <class reference_type>
|
|
|
|
class VclPtrInstance : public VclPtr<reference_type>
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
template<typename... Arg> VclPtrInstance(Arg &&... arg)
|
|
|
|
: VclPtr<reference_type>( new reference_type(std::forward<Arg>(arg)...), SAL_NO_ACQUIRE )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
};
|
2015-03-19 13:53:29 +02:00
|
|
|
|
|
|
|
template <class reference_type>
|
|
|
|
class ScopedVclPtr : public VclPtr<reference_type>
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/** Constructor...
|
|
|
|
*/
|
|
|
|
inline ScopedVclPtr()
|
|
|
|
: VclPtr<reference_type>()
|
|
|
|
{}
|
|
|
|
|
2015-03-20 17:24:08 +00:00
|
|
|
/** Constructor
|
2015-03-19 13:53:29 +02:00
|
|
|
*/
|
|
|
|
inline ScopedVclPtr (reference_type * pBody)
|
|
|
|
: VclPtr<reference_type>(pBody)
|
|
|
|
{}
|
|
|
|
|
|
|
|
/** Copy constructor...
|
|
|
|
*/
|
|
|
|
inline ScopedVclPtr (const VclPtr<reference_type> & handle)
|
|
|
|
: VclPtr<reference_type>(handle)
|
|
|
|
{}
|
|
|
|
|
2015-03-20 17:24:08 +00:00
|
|
|
/**
|
|
|
|
Assignment that releases the last reference.
|
|
|
|
*/
|
2015-04-29 08:23:52 +02:00
|
|
|
inline ScopedVclPtr<reference_type>& operator= (reference_type * pBody)
|
2015-03-20 17:24:08 +00:00
|
|
|
{
|
|
|
|
VclPtr<reference_type>::disposeAndClear();
|
|
|
|
VclPtr<reference_type>::set(pBody);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2015-03-19 13:53:29 +02:00
|
|
|
/** Up-casting conversion constructor: Copies interface reference.
|
|
|
|
|
|
|
|
Does not work for up-casts to ambiguous bases. For the special case of
|
|
|
|
up-casting to Reference< XInterface >, see the corresponding conversion
|
|
|
|
operator.
|
|
|
|
|
|
|
|
@param rRef another reference
|
|
|
|
*/
|
|
|
|
template< class derived_type >
|
|
|
|
inline ScopedVclPtr(
|
|
|
|
const VclPtr< derived_type > & rRef,
|
|
|
|
typename ::vcl::detail::UpCast< reference_type, derived_type >::t = 0 )
|
|
|
|
: VclPtr<reference_type>( rRef )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
~ScopedVclPtr()
|
|
|
|
{
|
|
|
|
VclPtr<reference_type>::disposeAndClear();
|
2015-03-23 10:25:26 +02:00
|
|
|
assert(VclPtr<reference_type>::get() == nullptr); // make sure there are no lingering references
|
2015-03-19 13:53:29 +02:00
|
|
|
}
|
2015-04-13 21:19:21 +01:00
|
|
|
|
2015-03-20 17:24:08 +00:00
|
|
|
private:
|
|
|
|
// Most likely we don't want this default copy-construtor.
|
|
|
|
ScopedVclPtr (const ScopedVclPtr<reference_type> &) SAL_DELETED_FUNCTION;
|
|
|
|
// And certainly we don't want a default assignment operator.
|
2015-04-29 08:23:52 +02:00
|
|
|
ScopedVclPtr<reference_type>& operator= (const ScopedVclPtr<reference_type> &) SAL_DELETED_FUNCTION;
|
2015-03-30 17:49:20 +01:00
|
|
|
|
|
|
|
protected:
|
|
|
|
inline ScopedVclPtr (reference_type * pBody, __sal_NoAcquire)
|
|
|
|
: VclPtr<reference_type>(pBody, SAL_NO_ACQUIRE)
|
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A construction helper for ScopedVclPtr. Since VclPtr types are created
|
|
|
|
* with a reference-count of one - to help fit into the existing
|
|
|
|
* code-flow; this helps us to construct them easily.
|
|
|
|
*
|
|
|
|
* For more details on the design please see vcl/README.lifecycle
|
|
|
|
*
|
|
|
|
* @param reference_type must be a subclass of vcl::Window
|
|
|
|
*/
|
|
|
|
template <class reference_type>
|
|
|
|
class ScopedVclPtrInstance : public ScopedVclPtr<reference_type>
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
template<typename... Arg> ScopedVclPtrInstance(Arg &&... arg)
|
|
|
|
: ScopedVclPtr<reference_type>( new reference_type(std::forward<Arg>(arg)...), SAL_NO_ACQUIRE )
|
|
|
|
{
|
|
|
|
}
|
2015-03-19 13:53:29 +02:00
|
|
|
};
|
|
|
|
|
2015-01-06 10:29:11 +02:00
|
|
|
#endif // INCLUDED_VCL_PTR_HXX
|
2014-12-04 13:50:21 +02:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|