1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194
|
/*
==============================================================================
This file is part of the JUCE framework.
Copyright (c) Raw Material Software Limited
JUCE is an open source framework subject to commercial or open source
licensing.
By downloading, installing, or using the JUCE framework, or combining the
JUCE framework with any other source code, object code, content or any other
copyrightable work, you agree to the terms of the JUCE End User Licence
Agreement, and all incorporated terms including the JUCE Privacy Policy and
the JUCE Website Terms of Service, as applicable, which will bind you. If you
do not agree to the terms of these agreements, we will not license the JUCE
framework to you, and you must discontinue the installation or download
process and cease use of the JUCE framework.
JUCE End User Licence Agreement: https://juce.com/legal/juce-8-licence/
JUCE Privacy Policy: https://juce.com/juce-privacy-policy
JUCE Website Terms of Service: https://juce.com/juce-website-terms-of-service/
Or:
You may also use this code under the terms of the AGPLv3:
https://www.gnu.org/licenses/agpl-3.0.en.html
THE JUCE FRAMEWORK IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL
WARRANTIES, WHETHER EXPRESSED OR IMPLIED, INCLUDING WARRANTY OF
MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, ARE DISCLAIMED.
==============================================================================
*/
namespace juce
{
//==============================================================================
/**
A smart-pointer that automatically creates and manages the lifetime of a
shared static instance of a class.
The SharedObjectType template type indicates the class to use for the shared
object - the only requirements on this class are that it must have a public
default constructor and destructor.
The SharedResourcePointer offers a pattern that differs from using a singleton or
static instance of an object, because it uses reference-counting to make sure that
the underlying shared object is automatically created/destroyed according to the
number of SharedResourcePointer objects that exist. When the last one is deleted,
the underlying object is also immediately destroyed. This allows you to use scoping
to manage the lifetime of a shared resource.
Note: The construction/deletion of the shared object must not involve any
code that makes recursive calls to a SharedResourcePointer, or you'll cause
a deadlock.
Example:
@code
// An example of a class that contains the shared data you want to use.
struct MySharedData
{
// There's no need to ever create an instance of this class directly yourself,
// but it does need a public constructor that does the initialisation.
MySharedData()
{
sharedStuff = generateHeavyweightStuff();
}
Array<SomeKindOfData> sharedStuff;
};
struct DataUserClass
{
DataUserClass()
{
// Multiple instances of the DataUserClass will all have the same
// shared common instance of MySharedData referenced by their sharedData
// member variables.
useSharedStuff (sharedData->sharedStuff);
}
// By keeping this pointer as a member variable, the shared resource
// is guaranteed to be available for as long as the DataUserClass object.
SharedResourcePointer<MySharedData> sharedData;
};
@endcode
@tags{Core}
*/
template <typename SharedObjectType>
class SharedResourcePointer
{
public:
/** Creates an instance of the shared object.
If other SharedResourcePointer objects for this type already exist, then
this one will simply point to the same shared object that they are already
using. Otherwise, if this is the first SharedResourcePointer to be created,
then a shared object will be created automatically.
*/
SharedResourcePointer() = default;
/** Copy constructor. */
SharedResourcePointer (const SharedResourcePointer&) = default;
/** Move constructor. */
SharedResourcePointer (SharedResourcePointer&&) noexcept = default;
/** Destructor.
If no other SharedResourcePointer objects exist, this will also delete
the shared object to which it refers.
*/
~SharedResourcePointer() = default;
/** Returns a pointer to the shared object. */
operator SharedObjectType*() const noexcept { return sharedObject.get(); }
/** Returns a reference to the shared object. */
SharedObjectType& get() const noexcept { return *sharedObject; }
/** Returns a reference to the shared object. */
SharedObjectType& getObject() const noexcept { return *sharedObject; }
/** Returns a pointer to the shared object. */
SharedObjectType* operator->() const noexcept { return sharedObject.get(); }
/** Returns a reference to the shared object. */
SharedObjectType& operator*() const noexcept { return *sharedObject; }
#ifndef DOXYGEN
[[deprecated ("If you are relying on this function please inform the JUCE team as we are planing on removing this in a subsequent release")]]
int getReferenceCount() const noexcept { return (int) sharedObject.use_count(); }
#endif
/** Returns the SharedResourcePointer if one already exists, or a null optional otherwise. */
static std::optional<SharedResourcePointer> getSharedObjectWithoutCreating()
{
if (auto sharedPtr = weak().lock())
return SharedResourcePointer { std::move (sharedPtr) };
return {};
}
private:
explicit SharedResourcePointer (std::shared_ptr<SharedObjectType>&& other) noexcept
: sharedObject (std::move (other))
{
jassert (sharedObject != nullptr);
}
class Weak
{
public:
std::shared_ptr<SharedObjectType> lock()
{
const SpinLock::ScopedLockType lock { mutex };
return ptr.lock();
}
std::shared_ptr<SharedObjectType> lockOrCreate()
{
const SpinLock::ScopedLockType lock { mutex };
if (auto locked = ptr.lock())
return locked;
const std::shared_ptr<SharedObjectType> shared (new SharedObjectType());
ptr = shared;
return shared;
}
private:
SpinLock mutex;
std::weak_ptr<SharedObjectType> ptr;
};
static inline Weak& weak()
{
static Weak weak;
return weak;
}
std::shared_ptr<SharedObjectType> sharedObject = weak().lockOrCreate();
// There's no need to assign to a SharedResourcePointer because every
// instance of the class is exactly the same!
SharedResourcePointer& operator= (const SharedResourcePointer&) = delete;
SharedResourcePointer& operator= (SharedResourcePointer&&) noexcept = delete;
JUCE_LEAK_DETECTOR (SharedResourcePointer)
};
} // namespace juce
|