d38f137e9b
Review URL: http://codereview.appspot.com/5250070/ git-svn-id: http://skia.googlecode.com/svn/trunk@2471 2bbb7eff-a529-9590-31e7-b0007b416f81
70 lines
1.4 KiB
C++
70 lines
1.4 KiB
C++
|
|
/*
|
|
* Copyright 2010 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
|
|
#ifndef GrTemplates_DEFINED
|
|
#define GrTemplates_DEFINED
|
|
|
|
#include "GrNoncopyable.h"
|
|
|
|
/**
|
|
* Use to cast a ptr to a different type, and maintain strict-aliasing
|
|
*/
|
|
template <typename Dst, typename Src> Dst GrTCast(Src src) {
|
|
union {
|
|
Src src;
|
|
Dst dst;
|
|
} data;
|
|
data.src = src;
|
|
return data.dst;
|
|
}
|
|
|
|
/**
|
|
* saves value of T* in and restores in destructor
|
|
* e.g.:
|
|
* {
|
|
* GrAutoTPtrValueRestore<int*> autoCountRestore;
|
|
* if (useExtra) {
|
|
* autoCountRestore.save(&fCount);
|
|
* fCount += fExtraCount;
|
|
* }
|
|
* ...
|
|
* } // fCount is restored
|
|
*/
|
|
template <typename T> class GrAutoTPtrValueRestore : public GrNoncopyable {
|
|
public:
|
|
GrAutoTPtrValueRestore() : fPtr(NULL), fVal() {}
|
|
|
|
GrAutoTPtrValueRestore(T* ptr) {
|
|
fPtr = ptr;
|
|
if (NULL != ptr) {
|
|
fVal = *ptr;
|
|
}
|
|
}
|
|
|
|
~GrAutoTPtrValueRestore() {
|
|
if (NULL != fPtr) {
|
|
*fPtr = fVal;
|
|
}
|
|
}
|
|
|
|
// restores previously saved value (if any) and saves value for passed T*
|
|
void save(T* ptr) {
|
|
if (NULL != fPtr) {
|
|
*fPtr = fVal;
|
|
}
|
|
fPtr = ptr;
|
|
fVal = *ptr;
|
|
}
|
|
private:
|
|
T* fPtr;
|
|
T fVal;
|
|
};
|
|
|
|
#endif
|