]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/extensible.h
Merge branch 'master+no-rtti'
[user/henk/code/inspircd.git] / include / extensible.h
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
5  *
6  * This file is part of InspIRCd.  InspIRCd is free software: you can
7  * redistribute it and/or modify it under the terms of the GNU General Public
8  * License as published by the Free Software Foundation, version 2.
9  *
10  * This program is distributed in the hope that it will be useful, but WITHOUT
11  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
13  * details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  */
18
19
20 #pragma once
21
22 #include <stdint.h>
23
24 enum SerializeFormat
25 {
26         /** Shown to a human (does not need to be unserializable) */
27         FORMAT_USER,
28         /** Passed internally to this process (i.e. for /RELOADMODULE) */
29         FORMAT_INTERNAL,
30         /** Passed to other servers on the network (i.e. METADATA s2s command) */
31         FORMAT_NETWORK,
32         /** Stored on disk (i.e. permchannel database) */
33         FORMAT_PERSIST
34 };
35
36 /** Class represnting an extension of some object
37  */
38 class CoreExport ExtensionItem : public ServiceProvider, public usecountbase
39 {
40  public:
41     /** Extensible subclasses
42      */
43         enum ExtensibleType
44         {
45                 EXT_USER,
46                 EXT_CHANNEL,
47                 EXT_MEMBERSHIP
48         };
49
50         /** Type (subclass) of Extensible that this ExtensionItem is valid for
51          */
52         const ExtensibleType type;
53
54         ExtensionItem(const std::string& key, ExtensibleType exttype, Module* owner);
55         virtual ~ExtensionItem();
56         /** Serialize this item into a string
57          *
58          * @param format The format to serialize to
59          * @param container The object containing this item
60          * @param item The item itself
61          */
62         virtual std::string serialize(SerializeFormat format, const Extensible* container, void* item) const = 0;
63         /** Convert the string form back into an item
64          * @param format The format to serialize from (not FORMAT_USER)
65          * @param container The object that this item applies to
66          * @param value The return from a serialize() call that was run elsewhere with this key
67          */
68         virtual void unserialize(SerializeFormat format, Extensible* container, const std::string& value) = 0;
69         /** Free the item */
70         virtual void free(void* item) = 0;
71
72  protected:
73         /** Get the item from the internal map */
74         void* get_raw(const Extensible* container) const;
75         /** Set the item in the internal map; returns old value */
76         void* set_raw(Extensible* container, void* value);
77         /** Remove the item from the internal map; returns old value */
78         void* unset_raw(Extensible* container);
79 };
80
81 /** class Extensible is the parent class of many classes such as User and Channel.
82  * class Extensible implements a system which allows modules to 'extend' the class by attaching data within
83  * a map associated with the object. In this way modules can store their own custom information within user
84  * objects, channel objects and server objects, without breaking other modules (this is more sensible than using
85  * a flags variable, and each module defining bits within the flag as 'theirs' as it is less prone to conflict and
86  * supports arbitary data storage).
87  */
88 class CoreExport Extensible : public classbase
89 {
90  public:
91         typedef insp::flat_map<reference<ExtensionItem>, void*> ExtensibleStore;
92
93         // Friend access for the protected getter/setter
94         friend class ExtensionItem;
95  private:
96         /** Private data store.
97          * Holds all extensible metadata for the class.
98          */
99         ExtensibleStore extensions;
100
101         /** True if this Extensible has been culled.
102          * A warning is generated if false on destruction.
103          */
104         unsigned int culled:1;
105  public:
106         /**
107          * Get the extension items for iteraton (i.e. for metadata sync during netburst)
108          */
109         inline const ExtensibleStore& GetExtList() const { return extensions; }
110
111         Extensible();
112         virtual CullResult cull();
113         virtual ~Extensible();
114         void doUnhookExtensions(const std::vector<reference<ExtensionItem> >& toRemove);
115
116         /**
117          * Free all extension items attached to this Extensible
118          */
119         void FreeAllExtItems();
120 };
121
122 class CoreExport ExtensionManager
123 {
124         std::map<std::string, reference<ExtensionItem> > types;
125  public:
126         bool Register(ExtensionItem* item);
127         void BeginUnregister(Module* module, std::vector<reference<ExtensionItem> >& list);
128         ExtensionItem* GetItem(const std::string& name);
129 };
130
131 /** Base class for items that are NOT synchronized between servers */
132 class CoreExport LocalExtItem : public ExtensionItem
133 {
134  public:
135         LocalExtItem(const std::string& key, ExtensibleType exttype, Module* owner);
136         virtual ~LocalExtItem();
137         virtual std::string serialize(SerializeFormat format, const Extensible* container, void* item) const;
138         virtual void unserialize(SerializeFormat format, Extensible* container, const std::string& value);
139         virtual void free(void* item) = 0;
140 };
141
142 template <typename T, typename Del = stdalgo::defaultdeleter<T> >
143 class SimpleExtItem : public LocalExtItem
144 {
145  public:
146         SimpleExtItem(const std::string& Key, ExtensibleType exttype, Module* parent)
147                 : LocalExtItem(Key, exttype, parent)
148         {
149         }
150
151         virtual ~SimpleExtItem()
152         {
153         }
154
155         inline T* get(const Extensible* container) const
156         {
157                 return static_cast<T*>(get_raw(container));
158         }
159
160         inline void set(Extensible* container, const T& value)
161         {
162                 T* ptr = new T(value);
163                 T* old = static_cast<T*>(set_raw(container, ptr));
164                 Del del;
165                 del(old);
166         }
167
168         inline void set(Extensible* container, T* value)
169         {
170                 T* old = static_cast<T*>(set_raw(container, value));
171                 Del del;
172                 del(old);
173         }
174
175         inline void unset(Extensible* container)
176         {
177                 T* old = static_cast<T*>(unset_raw(container));
178                 Del del;
179                 del(old);
180         }
181
182         virtual void free(void* item)
183         {
184                 Del del;
185                 del(static_cast<T*>(item));
186         }
187 };
188
189 class CoreExport LocalStringExt : public SimpleExtItem<std::string>
190 {
191  public:
192         LocalStringExt(const std::string& key, ExtensibleType exttype, Module* owner);
193         virtual ~LocalStringExt();
194         std::string serialize(SerializeFormat format, const Extensible* container, void* item) const;
195 };
196
197 class CoreExport LocalIntExt : public LocalExtItem
198 {
199  public:
200         LocalIntExt(const std::string& key, ExtensibleType exttype, Module* owner);
201         virtual ~LocalIntExt();
202         std::string serialize(SerializeFormat format, const Extensible* container, void* item) const;
203         intptr_t get(const Extensible* container) const;
204         intptr_t set(Extensible* container, intptr_t value);
205         void unset(Extensible* container) { set(container, 0); }
206         void free(void* item);
207 };
208
209 class CoreExport StringExtItem : public ExtensionItem
210 {
211  public:
212         StringExtItem(const std::string& key, ExtensibleType exttype, Module* owner);
213         virtual ~StringExtItem();
214         std::string* get(const Extensible* container) const;
215         std::string serialize(SerializeFormat format, const Extensible* container, void* item) const;
216         void unserialize(SerializeFormat format, Extensible* container, const std::string& value);
217         void set(Extensible* container, const std::string& value);
218         void unset(Extensible* container);
219         void free(void* item);
220 };