mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-16 06:51:09 +00:00
768e812e45
* On windows it's strongly desired to be able to compile straight out of a clean checkout or source download. This means anyone can download the source and investigate something quickly, without having to worry about the hassle of figuring out how the project downloads 3rd party dependencies, fetching them, getting them registered in the right place. * This can't be put in a submodule as git submodules don't get downloaded by default so people new to git will get confusing compilation messages, and someone downloading the source from github directly without cloning via git won't get submodules included. * It does add some extra size to a fresh download/checkout which is unfortunate, but absolutely worth the cost. Shallow checkouts still aren't unfeasibly large, and it's only a one-off cost at clone time.
226 lines
5.6 KiB
C++
226 lines
5.6 KiB
C++
/****************************************************************************
|
|
**
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
** Contact: https://www.qt.io/licensing/
|
|
**
|
|
** This file is part of the QtCore module of the Qt Toolkit.
|
|
**
|
|
** $QT_BEGIN_LICENSE:LGPL$
|
|
** Commercial License Usage
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
** accordance with the commercial license agreement provided with the
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
|
**
|
|
** GNU Lesser General Public License Usage
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
|
** General Public License version 3 as published by the Free Software
|
|
** Foundation and appearing in the file LICENSE.LGPL3 included in the
|
|
** packaging of this file. Please review the following information to
|
|
** ensure the GNU Lesser General Public License version 3 requirements
|
|
** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
|
|
**
|
|
** GNU General Public License Usage
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
** General Public License version 2.0 or (at your option) the GNU General
|
|
** Public license version 3 or any later version approved by the KDE Free
|
|
** Qt Foundation. The licenses are as published by the Free Software
|
|
** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
|
|
** included in the packaging of this file. Please review the following
|
|
** information to ensure the GNU General Public License requirements will
|
|
** be met: https://www.gnu.org/licenses/gpl-2.0.html and
|
|
** https://www.gnu.org/licenses/gpl-3.0.html.
|
|
**
|
|
** $QT_END_LICENSE$
|
|
**
|
|
****************************************************************************/
|
|
|
|
#ifndef QARRAYDATAPOINTER_H
|
|
#define QARRAYDATAPOINTER_H
|
|
|
|
#include <QtCore/qarraydataops.h>
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
template <class T>
|
|
struct QArrayDataPointer
|
|
{
|
|
private:
|
|
typedef QTypedArrayData<T> Data;
|
|
typedef QArrayDataOps<T> DataOps;
|
|
|
|
public:
|
|
QArrayDataPointer() Q_DECL_NOTHROW
|
|
: d(Data::sharedNull())
|
|
{
|
|
}
|
|
|
|
QArrayDataPointer(const QArrayDataPointer &other)
|
|
: d(other.d->ref.ref()
|
|
? other.d
|
|
: other.clone(other.d->cloneFlags()))
|
|
{
|
|
}
|
|
|
|
explicit QArrayDataPointer(QTypedArrayData<T> *ptr)
|
|
: d(ptr)
|
|
{
|
|
Q_CHECK_PTR(ptr);
|
|
}
|
|
|
|
QArrayDataPointer(QArrayDataPointerRef<T> ref)
|
|
: d(ref.ptr)
|
|
{
|
|
}
|
|
|
|
QArrayDataPointer &operator=(const QArrayDataPointer &other)
|
|
{
|
|
QArrayDataPointer tmp(other);
|
|
this->swap(tmp);
|
|
return *this;
|
|
}
|
|
|
|
#ifdef Q_COMPILER_RVALUE_REFS
|
|
QArrayDataPointer(QArrayDataPointer &&other) Q_DECL_NOTHROW
|
|
: d(other.d)
|
|
{
|
|
other.d = Data::sharedNull();
|
|
}
|
|
|
|
QArrayDataPointer &operator=(QArrayDataPointer &&other) Q_DECL_NOTHROW
|
|
{
|
|
QArrayDataPointer moved(std::move(other));
|
|
this->swap(moved);
|
|
return *this;
|
|
}
|
|
#endif
|
|
|
|
DataOps &operator*() const
|
|
{
|
|
Q_ASSERT(d);
|
|
return *static_cast<DataOps *>(d);
|
|
}
|
|
|
|
DataOps *operator->() const
|
|
{
|
|
Q_ASSERT(d);
|
|
return static_cast<DataOps *>(d);
|
|
}
|
|
|
|
~QArrayDataPointer()
|
|
{
|
|
if (!d->ref.deref()) {
|
|
if (d->isMutable())
|
|
(*this)->destroyAll();
|
|
Data::deallocate(d);
|
|
}
|
|
}
|
|
|
|
bool isNull() const
|
|
{
|
|
return d == Data::sharedNull();
|
|
}
|
|
|
|
Data *data() const
|
|
{
|
|
return d;
|
|
}
|
|
|
|
bool needsDetach() const
|
|
{
|
|
return (!d->isMutable() || d->ref.isShared());
|
|
}
|
|
|
|
#if !defined(QT_NO_UNSHARABLE_CONTAINERS)
|
|
void setSharable(bool sharable)
|
|
{
|
|
if (needsDetach()) {
|
|
Data *detached = clone(sharable
|
|
? d->detachFlags() & ~QArrayData::Unsharable
|
|
: d->detachFlags() | QArrayData::Unsharable);
|
|
QArrayDataPointer old(d);
|
|
d = detached;
|
|
} else {
|
|
d->ref.setSharable(sharable);
|
|
}
|
|
}
|
|
|
|
bool isSharable() const { return d->isSharable(); }
|
|
#endif
|
|
|
|
void swap(QArrayDataPointer &other) Q_DECL_NOTHROW
|
|
{
|
|
qSwap(d, other.d);
|
|
}
|
|
|
|
void clear()
|
|
{
|
|
QArrayDataPointer tmp(d);
|
|
d = Data::sharedNull();
|
|
}
|
|
|
|
bool detach()
|
|
{
|
|
if (needsDetach()) {
|
|
Data *copy = clone(d->detachFlags());
|
|
QArrayDataPointer old(d);
|
|
d = copy;
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
private:
|
|
Q_REQUIRED_RESULT Data *clone(QArrayData::AllocationOptions options) const
|
|
{
|
|
Data *x = Data::allocate(d->detachCapacity(d->size), options);
|
|
Q_CHECK_PTR(x);
|
|
QArrayDataPointer copy(x);
|
|
|
|
if (d->size)
|
|
copy->copyAppend(d->begin(), d->end());
|
|
|
|
Data *result = copy.d;
|
|
copy.d = Data::sharedNull();
|
|
return result;
|
|
}
|
|
|
|
Data *d;
|
|
};
|
|
|
|
template <class T>
|
|
inline bool operator==(const QArrayDataPointer<T> &lhs, const QArrayDataPointer<T> &rhs)
|
|
{
|
|
return lhs.data() == rhs.data();
|
|
}
|
|
|
|
template <class T>
|
|
inline bool operator!=(const QArrayDataPointer<T> &lhs, const QArrayDataPointer<T> &rhs)
|
|
{
|
|
return lhs.data() != rhs.data();
|
|
}
|
|
|
|
template <class T>
|
|
inline void qSwap(QArrayDataPointer<T> &p1, QArrayDataPointer<T> &p2)
|
|
{
|
|
p1.swap(p2);
|
|
}
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
namespace std
|
|
{
|
|
template <class T>
|
|
inline void swap(
|
|
QT_PREPEND_NAMESPACE(QArrayDataPointer)<T> &p1,
|
|
QT_PREPEND_NAMESPACE(QArrayDataPointer)<T> &p2)
|
|
{
|
|
p1.swap(p2);
|
|
}
|
|
}
|
|
|
|
#endif // include guard
|