2011-04-06 20:17:29 +00:00
|
|
|
|
2011-07-28 14:26:00 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2011 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
2011-04-06 20:17:29 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
2011-07-28 14:26:00 +00:00
|
|
|
|
2011-04-06 20:17:29 +00:00
|
|
|
#ifndef SkTLazy_DEFINED
|
|
|
|
#define SkTLazy_DEFINED
|
|
|
|
|
|
|
|
#include "SkTypes.h"
|
2011-07-28 16:51:20 +00:00
|
|
|
#include <new>
|
2011-04-06 20:17:29 +00:00
|
|
|
|
2013-03-20 19:19:53 +00:00
|
|
|
template <typename T> class SkTLazy;
|
|
|
|
template <typename T> void* operator new(size_t, SkTLazy<T>* lazy);
|
|
|
|
|
2011-04-06 20:17:29 +00:00
|
|
|
/**
|
|
|
|
* Efficient way to defer allocating/initializing a class until it is needed
|
|
|
|
* (if ever).
|
|
|
|
*/
|
|
|
|
template <typename T> class SkTLazy {
|
|
|
|
public:
|
|
|
|
SkTLazy() : fPtr(NULL) {}
|
|
|
|
|
|
|
|
explicit SkTLazy(const T* src) : fPtr(NULL) {
|
|
|
|
if (src) {
|
|
|
|
fPtr = new (fStorage) T(*src);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SkTLazy(const SkTLazy<T>& src) : fPtr(NULL) {
|
2011-09-13 15:27:18 +00:00
|
|
|
if (src.isValid()) {
|
|
|
|
fPtr = new (fStorage) T(*src->get());
|
|
|
|
} else {
|
|
|
|
fPtr = NULL;
|
2011-04-06 20:17:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
~SkTLazy() {
|
2011-09-13 15:27:18 +00:00
|
|
|
if (this->isValid()) {
|
2011-04-06 20:17:29 +00:00
|
|
|
fPtr->~T();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-04-10 00:35:29 +00:00
|
|
|
/**
|
|
|
|
* Return a pointer to a default-initialized instance of the class. If a
|
2013-03-20 19:19:53 +00:00
|
|
|
* previous instance had been initialized (either from init() or set()) it
|
2011-04-10 00:35:29 +00:00
|
|
|
* will first be destroyed, so that a freshly initialized instance is
|
|
|
|
* always returned.
|
|
|
|
*/
|
|
|
|
T* init() {
|
2011-09-13 15:27:18 +00:00
|
|
|
if (this->isValid()) {
|
2011-04-10 00:35:29 +00:00
|
|
|
fPtr->~T();
|
|
|
|
}
|
2011-09-14 12:44:13 +00:00
|
|
|
fPtr = new (SkTCast<T*>(fStorage)) T;
|
2011-04-10 00:35:29 +00:00
|
|
|
return fPtr;
|
|
|
|
}
|
2011-09-13 15:27:18 +00:00
|
|
|
|
2011-04-06 20:17:29 +00:00
|
|
|
/**
|
|
|
|
* Copy src into this, and return a pointer to a copy of it. Note this
|
|
|
|
* will always return the same pointer, so if it is called on a lazy that
|
|
|
|
* has already been initialized, then this will copy over the previous
|
|
|
|
* contents.
|
|
|
|
*/
|
|
|
|
T* set(const T& src) {
|
2014-05-02 21:24:22 +00:00
|
|
|
// Diagnoistic. May remove later. See crbug.com/364224
|
|
|
|
if (NULL == &src) {
|
|
|
|
sk_throw();
|
|
|
|
}
|
|
|
|
|
2011-09-13 15:27:18 +00:00
|
|
|
if (this->isValid()) {
|
2011-04-06 20:17:29 +00:00
|
|
|
*fPtr = src;
|
|
|
|
} else {
|
2011-09-14 12:44:13 +00:00
|
|
|
fPtr = new (SkTCast<T*>(fStorage)) T(src);
|
2011-04-06 20:17:29 +00:00
|
|
|
}
|
|
|
|
return fPtr;
|
|
|
|
}
|
2011-09-13 15:27:18 +00:00
|
|
|
|
2014-02-27 17:39:46 +00:00
|
|
|
/**
|
|
|
|
* Destroy the lazy object (if it was created via init() or set())
|
|
|
|
*/
|
|
|
|
void reset() {
|
|
|
|
if (this->isValid()) {
|
|
|
|
fPtr->~T();
|
|
|
|
fPtr = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-13 15:27:18 +00:00
|
|
|
/**
|
|
|
|
* Returns true if a valid object has been initialized in the SkTLazy,
|
|
|
|
* false otherwise.
|
|
|
|
*/
|
|
|
|
bool isValid() const { return NULL != fPtr; }
|
2012-08-23 18:09:54 +00:00
|
|
|
|
2011-04-06 20:17:29 +00:00
|
|
|
/**
|
2013-04-01 12:49:31 +00:00
|
|
|
* Returns the object. This version should only be called when the caller
|
|
|
|
* knows that the object has been initialized.
|
2011-04-06 20:17:29 +00:00
|
|
|
*/
|
2011-09-13 15:27:18 +00:00
|
|
|
T* get() const { SkASSERT(this->isValid()); return fPtr; }
|
2013-04-02 07:01:34 +00:00
|
|
|
|
2013-04-01 12:49:31 +00:00
|
|
|
/**
|
|
|
|
* Like above but doesn't assert if object isn't initialized (in which case
|
|
|
|
* NULL is returned).
|
|
|
|
*/
|
|
|
|
T* getMaybeNull() const { return fPtr; }
|
2012-08-23 18:09:54 +00:00
|
|
|
|
2011-04-06 20:17:29 +00:00
|
|
|
private:
|
2013-03-20 19:19:53 +00:00
|
|
|
friend void* operator new<T>(size_t, SkTLazy* lazy);
|
|
|
|
|
2011-04-06 20:17:29 +00:00
|
|
|
T* fPtr; // NULL or fStorage
|
|
|
|
char fStorage[sizeof(T)];
|
|
|
|
};
|
|
|
|
|
2013-03-20 19:19:53 +00:00
|
|
|
// Use the below macro (SkNEW_IN_TLAZY) rather than calling this directly
|
|
|
|
template <typename T> void* operator new(size_t, SkTLazy<T>* lazy) {
|
|
|
|
SkASSERT(!lazy->isValid());
|
|
|
|
lazy->fPtr = reinterpret_cast<T*>(lazy->fStorage);
|
|
|
|
return lazy->fPtr;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Skia doesn't use C++ exceptions but it may be compiled with them enabled. Having an op delete
|
|
|
|
// to match the op new silences warnings about missing op delete when a constructor throws an
|
|
|
|
// exception.
|
2013-03-22 13:34:59 +00:00
|
|
|
template <typename T> void operator delete(void*, SkTLazy<T>*) { SK_CRASH(); }
|
2013-03-20 19:19:53 +00:00
|
|
|
|
|
|
|
// Use this to construct a T inside an SkTLazy using a non-default constructor.
|
|
|
|
#define SkNEW_IN_TLAZY(tlazy_ptr, type_name, args) (new (tlazy_ptr) type_name args)
|
|
|
|
|
2012-10-11 19:32:32 +00:00
|
|
|
/**
|
|
|
|
* A helper built on top of SkTLazy to do copy-on-first-write. The object is initialized
|
|
|
|
* with a const pointer but provides a non-const pointer accessor. The first time the
|
|
|
|
* accessor is called (if ever) the object is cloned.
|
|
|
|
*
|
|
|
|
* In the following example at most one copy of constThing is made:
|
|
|
|
*
|
|
|
|
* SkTCopyOnFirstWrite<Thing> thing(&constThing);
|
|
|
|
* ...
|
|
|
|
* function_that_takes_a_const_thing_ptr(thing); // constThing is passed
|
|
|
|
* ...
|
|
|
|
* if (need_to_modify_thing()) {
|
|
|
|
* thing.writable()->modifyMe(); // makes a copy of constThing
|
|
|
|
* }
|
|
|
|
* ...
|
|
|
|
* x = thing->readSomething();
|
|
|
|
* ...
|
|
|
|
* if (need_to_modify_thing_now()) {
|
|
|
|
* thing.writable()->changeMe(); // makes a copy of constThing if we didn't call modifyMe()
|
|
|
|
* }
|
|
|
|
*
|
|
|
|
* consume_a_thing(thing); // could be constThing or a modified copy.
|
|
|
|
*/
|
|
|
|
template <typename T>
|
|
|
|
class SkTCopyOnFirstWrite {
|
|
|
|
public:
|
|
|
|
SkTCopyOnFirstWrite(const T& initial) : fObj(&initial) {}
|
|
|
|
|
2012-12-10 19:10:17 +00:00
|
|
|
// Constructor for delayed initialization.
|
|
|
|
SkTCopyOnFirstWrite() : fObj(NULL) {}
|
|
|
|
|
|
|
|
// Should only be called once, and only if the default constructor was used.
|
|
|
|
void init(const T& initial) {
|
|
|
|
SkASSERT(NULL == fObj);
|
|
|
|
SkASSERT(!fLazy.isValid());
|
|
|
|
fObj = &initial;
|
|
|
|
}
|
|
|
|
|
2012-10-11 19:32:32 +00:00
|
|
|
/**
|
|
|
|
* Returns a writable T*. The first time this is called the initial object is cloned.
|
|
|
|
*/
|
|
|
|
T* writable() {
|
2012-12-10 19:10:17 +00:00
|
|
|
SkASSERT(NULL != fObj);
|
2012-10-11 19:32:32 +00:00
|
|
|
if (!fLazy.isValid()) {
|
|
|
|
fLazy.set(*fObj);
|
|
|
|
fObj = fLazy.get();
|
|
|
|
}
|
|
|
|
return const_cast<T*>(fObj);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Operators for treating this as though it were a const pointer.
|
|
|
|
*/
|
|
|
|
|
|
|
|
const T *operator->() const { return fObj; }
|
|
|
|
|
|
|
|
operator const T*() const { return fObj; }
|
|
|
|
|
|
|
|
const T& operator *() const { return *fObj; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
const T* fObj;
|
|
|
|
SkTLazy<T> fLazy;
|
|
|
|
};
|
|
|
|
|
2011-04-06 20:17:29 +00:00
|
|
|
#endif
|