2011-07-28 14:26:00 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
/*
|
2011-07-28 14:26:00 +00:00
|
|
|
* Copyright 2006 The Android Open Source Project
|
2008-12-17 15:59:43 +00:00
|
|
|
*
|
2011-07-28 14:26:00 +00:00
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
2008-12-17 15:59:43 +00:00
|
|
|
*/
|
|
|
|
|
2011-07-28 14:26:00 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
#ifndef SkGlobals_DEFINED
|
|
|
|
#define SkGlobals_DEFINED
|
|
|
|
|
|
|
|
#include "SkThread.h"
|
|
|
|
|
|
|
|
class SkGlobals {
|
|
|
|
public:
|
|
|
|
class Rec {
|
|
|
|
public:
|
|
|
|
virtual ~Rec();
|
|
|
|
private:
|
|
|
|
Rec* fNext;
|
|
|
|
uint32_t fTag;
|
|
|
|
|
|
|
|
friend class SkGlobals;
|
|
|
|
};
|
|
|
|
|
|
|
|
/** Look for a matching Rec for the specified tag. If one is found, return it.
|
|
|
|
If one is not found, if create_proc is null, return null, else
|
|
|
|
call the proc, and if it returns a Rec, add it to the global list
|
|
|
|
and return it.
|
|
|
|
|
|
|
|
create_proc can NOT call back into SkGlobals::Find (it would deadlock)
|
|
|
|
*/
|
|
|
|
static Rec* Find(uint32_t tag, Rec* (*create_proc)());
|
|
|
|
/** Helper for Find, when you want to assert that the Rec is already in the list
|
|
|
|
*/
|
|
|
|
static Rec* Get(uint32_t tag)
|
|
|
|
{
|
|
|
|
Rec* rec = SkGlobals::Find(tag, NULL);
|
|
|
|
SkASSERT(rec);
|
|
|
|
return rec;
|
|
|
|
}
|
|
|
|
|
|
|
|
// used by porting layer
|
|
|
|
struct BootStrap {
|
|
|
|
SkMutex fMutex;
|
|
|
|
Rec* fHead;
|
|
|
|
};
|
|
|
|
|
|
|
|
private:
|
|
|
|
static void Init();
|
|
|
|
static void Term();
|
|
|
|
friend class SkGraphics;
|
|
|
|
|
|
|
|
// This last function is implemented in the porting layer
|
|
|
|
static BootStrap& GetBootStrap();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|