blob: 0994c990dccbe8625d59f06c705925ff2889cb21 [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
reed@android.com00bf85a2009-01-22 13:04:56 +00002/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00003 * Copyright 2009 The Android Open Source Project
reed@android.com00bf85a2009-01-22 13:04:56 +00004 *
epoger@google.comec3ed6a2011-07-28 14:26:00 +00005 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
reed@android.com00bf85a2009-01-22 13:04:56 +00007 */
8
epoger@google.comec3ed6a2011-07-28 14:26:00 +00009
reed@android.com00bf85a2009-01-22 13:04:56 +000010#ifndef SkTRegistry_DEFINED
11#define SkTRegistry_DEFINED
12
13#include "SkTypes.h"
14
15/** Template class that registers itself (in the constructor) into a linked-list
16 and provides a function-pointer. This can be used to auto-register a set of
17 services, e.g. a set of image codecs.
18 */
mtklein@google.combd6343b2013-09-04 17:20:18 +000019template <typename T> class SkTRegistry : SkNoncopyable {
reed@android.com00bf85a2009-01-22 13:04:56 +000020public:
mtklein@google.combd6343b2013-09-04 17:20:18 +000021 typedef T Factory;
reed@android.com00bf85a2009-01-22 13:04:56 +000022
mtklein@google.combd6343b2013-09-04 17:20:18 +000023 explicit SkTRegistry(T fact) : fFact(fact) {
djsollen@google.com56c69772011-11-08 19:00:26 +000024#ifdef SK_BUILD_FOR_ANDROID
reed@android.com57b799e2009-04-01 20:26:42 +000025 // work-around for double-initialization bug
26 {
27 SkTRegistry* reg = gHead;
28 while (reg) {
29 if (reg == this) {
30 return;
31 }
32 reg = reg->fChain;
33 }
34 }
35#endif
reed@android.com00bf85a2009-01-22 13:04:56 +000036 fChain = gHead;
mtklein@google.combd6343b2013-09-04 17:20:18 +000037 gHead = this;
reed@android.com00bf85a2009-01-22 13:04:56 +000038 }
39
40 static const SkTRegistry* Head() { return gHead; }
41
42 const SkTRegistry* next() const { return fChain; }
mtklein@google.combd6343b2013-09-04 17:20:18 +000043 const Factory& factory() const { return fFact; }
reed@android.com00bf85a2009-01-22 13:04:56 +000044
45private:
46 Factory fFact;
47 SkTRegistry* fChain;
48
49 static SkTRegistry* gHead;
50};
51
reed@android.comf523e252009-01-26 23:15:37 +000052// The caller still needs to declare an instance of this somewhere
mtklein@google.combd6343b2013-09-04 17:20:18 +000053template <typename T> SkTRegistry<T>* SkTRegistry<T>::gHead;
reed@android.com00bf85a2009-01-22 13:04:56 +000054
55#endif