X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=senf%2FPackets%2FPacketRegistry.ih;h=746281d251d21302312e25409c1f49923425605d;hb=e3179a2123ad51d0d9eb63834a581145c4f77c92;hp=af16278686f7eaa4c79eab77ba88513878d1eb50;hpb=601d1f509f5bb24df167a4dd5a20da67a0af9af8;p=senf.git diff --git a/senf/Packets/PacketRegistry.ih b/senf/Packets/PacketRegistry.ih index af16278..746281d 100644 --- a/senf/Packets/PacketRegistry.ih +++ b/senf/Packets/PacketRegistry.ih @@ -27,40 +27,25 @@ #define IH_SENF_Packets_PacketRegistry_ 1 // Custom includes -#include +#include +#include +#include +#include +#include +#include #include -#include -#include "../Utils/TypeIdValue.hh" +#include // for boost::noncopyable +#include -///////////////////////////////ih.p//////////////////////////////////////// +//-///////////////////////////////////////////////////////////////////////////////////////////////// namespace senf { - - /** \brief Registry entry - - Value returned by a registry lookup - */ - struct PkReg_Entry - : public intrusive_refcount - { - virtual ~PkReg_Entry(); - virtual Packet::factory_t factory() const = 0; - ///< Get factory of the registered packet type - virtual std::string name() const = 0; - }; - namespace detail { - /** \brief Internal: Registry entry implementation for a specific packet type - - \internal - */ - template - struct PkReg_EntryImpl - : public PkReg_Entry + struct TypeInfoCompare { - virtual Packet::factory_t factory() const; - virtual std::string name() const; + bool operator()(std::type_info const & a, std::type_info const & b) const + { return a.before(b); } }; /** \brief Internal: Registry implementation base-class and registry of registries @@ -74,13 +59,16 @@ namespace detail { virtual ~PacketRegistryImplBase(); static void dump(std::ostream & os); + static void clear(); protected: typedef std::map RegistryMap; static RegistryMap & registries(); private: - virtual void v_dump(std::ostream & os) = 0; + virtual bool v_empty() const = 0; + virtual void v_dump(std::ostream & os) const = 0; + virtual void v_clear() = 0; }; /** \brief Internal: Singleton class implementing the packet registry. @@ -93,31 +81,77 @@ namespace detail { { public: typedef KeyType key_t; - typedef PkReg_Entry Entry; + + struct Entry : public intrusive_refcount + { + typedef boost::intrusive_ptr ptr; + + Entry(KeyType const & key_, int priority_); + virtual ~Entry(); + + virtual Packet::factory_t factory() const = 0; + + virtual std::string name() const = 0; + virtual std::type_info const & type() const = 0; + + KeyType key; + int priority; + }; private: - typedef boost::intrusive_ptr Entry_ptr; - typedef std::map PacketMap; - typedef std::map ReversePacketMap; + struct ByKey {}; + struct ByType {}; + + struct RegistryIndices + : public boost::multi_index::indexed_by< + boost::multi_index::ordered_unique< + boost::multi_index::tag, + boost::multi_index::composite_key< + Entry, + boost::multi_index::member, + boost::multi_index::member >, + boost::multi_index::composite_key_compare< + std::less, + std::greater > >, + boost::multi_index::ordered_unique< + boost::multi_index::tag, + boost::multi_index::mem_fun, + TypeInfoCompare> > + {}; + + typedef boost::multi_index_container Registry; + + template + struct EntryImpl : public Entry + { + EntryImpl(KeyType const & key, int priority); + + virtual Packet::factory_t factory() const; + virtual std::string name() const; + virtual std::type_info const & type() const; + }; public: - /////////////////////////////////////////////////////////////////////////// + //-///////////////////////////////////////////////////////////////////////////////////////// // Types - typedef boost::transform_iterator< ::__gnu_cxx::select1st, - typename PacketMap::const_iterator > iterator; + typedef typename Registry::template index::type::const_iterator iterator; - /////////////////////////////////////////////////////////////////////////// + //-///////////////////////////////////////////////////////////////////////////////////////// ///\name Structors and default members - ///@{ + //\{ PacketRegistryImpl(std::string const & name); - ///@} - /////////////////////////////////////////////////////////////////////////// + //\} + //-///////////////////////////////////////////////////////////////////////////////////////// template - void registerPacket(key_t key); + void registerPacket(key_t key, int priority=0); + + template + void unregisterPacket(); + void unregisterPacket(key_t key, int priority=0); key_t key(senf::TypeIdValue const & type); boost::optional key(senf::TypeIdValue const & type, bool); @@ -131,15 +165,28 @@ namespace detail { protected: private: - virtual void v_dump(std::ostream & os); + virtual bool v_empty() const; + virtual void v_dump(std::ostream & os) const; + virtual void v_clear(); - PacketMap registry_; - ReversePacketMap reverseRegistry_; + Registry registry_; + }; + + template ::is_integer> + struct DumpKey + { + static void dump(KeyType const & v, std::ostream & os); + }; + + template + struct DumpKey + { + static void dump(KeyType const & v, std::ostream & os); }; }} -///////////////////////////////ih.e//////////////////////////////////////// +//-///////////////////////////////////////////////////////////////////////////////////////////////// #endif