X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=senf%2FPackets%2FPacketRegistry.ih;h=e2b0e483118cad37f952a4a0722b2a7b33d5c40c;hb=9bc655e14d2d8c204ed835896cb51e42d49bd68f;hp=24c98512c21062ecb8b1e166b74c2cac1b576ecb;hpb=26610f603ebdd465307b9621f532c1fe19fd5571;p=senf.git diff --git a/senf/Packets/PacketRegistry.ih b/senf/Packets/PacketRegistry.ih index 24c9851..e2b0e48 100644 --- a/senf/Packets/PacketRegistry.ih +++ b/senf/Packets/PacketRegistry.ih @@ -28,6 +28,12 @@ // Custom includes #include +#include +#include +#include +#include +#include +#include #include #include #include @@ -35,32 +41,12 @@ ///////////////////////////////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 +60,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,19 +82,61 @@ 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 @@ -117,7 +148,11 @@ namespace detail { /////////////////////////////////////////////////////////////////////////// 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,10 +166,23 @@ 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); }; }}