1138be45ea
Reason for revert: Still need an answer for SkAdvancedTypefaceMetrics (at least for Google3 iOS build). Original issue's description: > skstd -> std for unique_ptr > > TBR=reed@google.com > No public API changes. > > BUG=skia:4564 > > Committed: https://skia.googlesource.com/skia/+/755c553c17b82bb5de3d9cc8d3b2a866ff9e9e50 > > CQ_EXTRA_TRYBOTS=client.skia.compile:Build-Mac10.9-Clang-x86_64-Release-CMake-Trybot,Build-Ubuntu-GCC-x86_64-Debug-CrOS_Link-Trybot;client.skia:Perf-Mac10.9-Clang-MacMini6.2-CPU-AVX-x86_64-Release-Trybot,Test-iOS-Clang-iPad4-GPU-SGX554-Arm7-Release-Trybot > > Committed: https://skia.googlesource.com/skia/+/06189155d987db5c7e69015f6ea87c2168d6a065 > > Committed: https://skia.googlesource.com/skia/+/70e8dfca4a7f5bce97b8021a6e378c4828b09c8c > > Committed: https://skia.googlesource.com/skia/+/dadfc245cc9a0279ff7b73da3344f2ca5d139907 > GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1436033003 > > Committed: https://skia.googlesource.com/skia/+/ccf1de0d9aa75f29829f1c4c462214b991fd8c9e TBR=bungeman@google.com,mtklein@chromium.org # Skipping CQ checks because original CL landed less than 1 days ago. NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=skia:4564 Review URL: https://codereview.chromium.org/1626873004
107 lines
3.4 KiB
C++
107 lines
3.4 KiB
C++
/*
|
|
* Copyright 2015 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#ifndef SkOncePtr_DEFINED
|
|
#define SkOncePtr_DEFINED
|
|
|
|
#include "../private/SkAtomics.h"
|
|
#include "SkUniquePtr.h"
|
|
|
|
template <typename T> class SkBaseOncePtr;
|
|
|
|
// Use this to create a global static pointer that's intialized exactly once when you call get().
|
|
#define SK_DECLARE_STATIC_ONCE_PTR(type, name) namespace {} static SkBaseOncePtr<type> name;
|
|
|
|
// Use this for a local or member pointer that's initialized exactly once when you call get().
|
|
template <typename T, typename Delete = skstd::default_delete<T>>
|
|
class SkOncePtr : SkNoncopyable {
|
|
public:
|
|
SkOncePtr() { sk_bzero(this, sizeof(*this)); }
|
|
~SkOncePtr() {
|
|
if (T* ptr = (T*)*this) {
|
|
Delete()(ptr);
|
|
}
|
|
}
|
|
|
|
template <typename F>
|
|
T* get(const F& f) const {
|
|
return fOnce.get(f);
|
|
}
|
|
|
|
operator T*() const {
|
|
return (T*)fOnce;
|
|
}
|
|
|
|
private:
|
|
SkBaseOncePtr<T> fOnce;
|
|
};
|
|
|
|
// If you ask for SkOncePtr<T[]>, we'll clean up with delete[] by default.
|
|
template <typename T>
|
|
class SkOncePtr<T[]> : public SkOncePtr<T, skstd::default_delete<T[]>> {};
|
|
|
|
/* TODO(mtklein): in next CL
|
|
typedef SkBaseOncePtr<void> SkOnceFlag;
|
|
#define SK_DECLARE_STATIC_ONCE(name) namespace {} static SkOnceFlag name
|
|
|
|
template <typename F>
|
|
inline void SkOnce(SkOnceFlag* once, const F& f) {
|
|
once->get([&]{ f(); return (void*)2; });
|
|
}
|
|
*/
|
|
|
|
// Implementation details below here! No peeking!
|
|
|
|
template <typename T>
|
|
class SkBaseOncePtr {
|
|
public:
|
|
template <typename F>
|
|
T* get(const F& f) const {
|
|
uintptr_t state = sk_atomic_load(&fState, sk_memory_order_acquire);
|
|
if (state < 2) {
|
|
if (state == 0) {
|
|
// It looks like no one has tried to create our pointer yet.
|
|
// We try to claim that task by atomically swapping our state from '0' to '1'.
|
|
if (sk_atomic_compare_exchange(
|
|
&fState, &state, (uintptr_t)1, sk_memory_order_relaxed, sk_memory_order_relaxed)) {
|
|
// We've claimed it. Create our pointer and store it into fState.
|
|
state = (uintptr_t)f();
|
|
SkASSERT(state > 1);
|
|
sk_atomic_store(&fState, state, sk_memory_order_release);
|
|
} else {
|
|
// Someone else claimed it.
|
|
// We fall through to the spin loop just below to wait for them to finish.
|
|
}
|
|
}
|
|
|
|
while (state == 1) {
|
|
// State '1' is our busy-but-not-done state.
|
|
// Some other thread has claimed the job of creating our pointer.
|
|
// We just need to wait for it to finish.
|
|
state = sk_atomic_load(&fState, sk_memory_order_acquire);
|
|
}
|
|
|
|
// We shouldn't be able to get here without having created our pointer.
|
|
SkASSERT(state > 1);
|
|
}
|
|
return (T*)state;
|
|
}
|
|
|
|
operator T*() const {
|
|
auto state = sk_atomic_load(&fState, sk_memory_order_acquire);
|
|
return state < 2 ? nullptr : (T*)state;
|
|
// TODO: If state == 1 spin until it's not?
|
|
}
|
|
|
|
// fState == 0 --> we have not created our ptr yet
|
|
// fState == 1 --> someone is in the middle of creating our ptr
|
|
// else --> (T*)fState is our ptr
|
|
mutable uintptr_t fState;
|
|
};
|
|
|
|
#endif//SkOncePtr_DEFINED
|