X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Packets%2FPacketRegistry.ih;h=af16278686f7eaa4c79eab77ba88513878d1eb50;hb=f2f5d59e83863f3b513950173baee1b6da2aee3c;hp=94b9169d903513cbff4c452544d1c7dc29335275;hpb=47368f306a577d1e46df69a7f729bd3893cbe5e7;p=senf.git diff --git a/Packets/PacketRegistry.ih b/Packets/PacketRegistry.ih index 94b9169..af16278 100644 --- a/Packets/PacketRegistry.ih +++ b/Packets/PacketRegistry.ih @@ -1,9 +1,9 @@ // $Id$ // // Copyright (C) 2006 -// Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS) -// Kompetenzzentrum fuer Satelitenkommunikation (SatCom) -// Stefan Bund +// Fraunhofer Institute for Open Communication Systems (FOKUS) +// Competence Center NETwork research (NET), St. Augustin, GERMANY +// Stefan Bund // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by @@ -20,46 +20,98 @@ // Free Software Foundation, Inc., // 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -#ifndef IH_PacketRegistryImpl_ -#define IH_PacketRegistryImpl_ 1 +/** \file + \brief PacketRegistry internal header */ + +#ifndef IH_SENF_Packets_PacketRegistry_ +#define IH_SENF_Packets_PacketRegistry_ 1 // Custom includes +#include #include -#include "typeidvalue.hh" +#include +#include "../Utils/TypeIdValue.hh" ///////////////////////////////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 { - virtual PacketInterpreterBase::factory_t factory() const; + virtual Packet::factory_t factory() const; + virtual std::string name() const; }; - template - class PacketRegistryImpl + /** \brief Internal: Registry implementation base-class and registry of registries + + \internal + */ + class PacketRegistryImplBase : private boost::noncopyable { public: - /////////////////////////////////////////////////////////////////////////// - // Types + virtual ~PacketRegistryImplBase(); - typedef KeyType key_t; + static void dump(std::ostream & os); + + protected: + typedef std::map RegistryMap; + static RegistryMap & registries(); + + private: + virtual void v_dump(std::ostream & os) = 0; + }; + + /** \brief Internal: Singleton class implementing the packet registry. + \internal + */ + template + class PacketRegistryImpl + : public PacketRegistryImplBase + { + public: + typedef KeyType key_t; typedef PkReg_Entry Entry; + private: + typedef boost::intrusive_ptr Entry_ptr; + typedef std::map PacketMap; + typedef std::map ReversePacketMap; + + public: + /////////////////////////////////////////////////////////////////////////// + // Types + + typedef boost::transform_iterator< ::__gnu_cxx::select1st, + typename PacketMap::const_iterator > iterator; + /////////////////////////////////////////////////////////////////////////// ///\name Structors and default members ///@{ - // default default constructor - // no copy constructor - // no copy assignment - // default destructor - // no conversion constructors + PacketRegistryImpl(std::string const & name); ///@} /////////////////////////////////////////////////////////////////////////// @@ -73,12 +125,13 @@ namespace detail { Entry const & lookup(key_t key); Entry const * lookup(key_t key, bool); + iterator begin() const; + iterator end() const; + protected: private: - typedef boost::intrusive_ptr Entry_ptr; - typedef std::map PacketMap; - typedef std::map ReversePacketMap; + virtual void v_dump(std::ostream & os); PacketMap registry_; ReversePacketMap reverseRegistry_;