prefix_ void senf::GenericTLVParserRegistry<BaseParser,Keytype>::registerParser()
{
Keytype key (Parser::typeId+0);
- typename Map::iterator i (map_.find( key ));
- if (i == map_.end() )
- map_.insert(key, new detail::GenericTLVParserRegistry_Entry<BaseParser, Parser>() );
+ SENF_ASSERT_EXPRESSION(
+ map_.insert( key, new detail::GenericTLVParserRegistry_Entry<BaseParser, Parser>()).second == true,
+ "Duplicate TLV registration");
}
// Wow ... this is stupid .. Boost 1.33 ptr_map API is broken ...
template <class PacketType>
prefix_ void senf::detail::PacketRegistryImpl<KeyType>::unregisterPacket()
{
- registry_.template get<ByType>().erase(typeid(PacketType));
+ registryByType_.erase(typeid(PacketType));
}
template <class KeyType>
prefix_ boost::optional<typename senf::detail::PacketRegistryImpl<KeyType>::key_t>
senf::detail::PacketRegistryImpl<KeyType>::key(senf::TypeIdValue const & type, bool)
{
- typedef typename Registry::template index<ByType>::type TypeIndex;
- TypeIndex const & typeIndex (registry_.template get<ByType>());
- typename TypeIndex::const_iterator i (typeIndex.find(type.id()));
- if (i == typeIndex.end())
+ typename RegistryByType::const_iterator i (registryByType_.find(type.id()));
+ if (i == registryByType_.end())
return boost::optional<key_t>();
return (*i)->key;
}
template <class KeyType>
prefix_ typename senf::detail::PacketRegistryImpl<KeyType>::Entry const &
senf::detail::PacketRegistryImpl<KeyType>::lookup(key_t key)
+ const
{
Entry const * e (lookup(key, true));
if (!e)
template <class KeyType>
prefix_ typename senf::detail::PacketRegistryImpl<KeyType>::Entry const *
senf::detail::PacketRegistryImpl<KeyType>::lookup(key_t key, bool)
+ const
{
- typedef typename Registry::template index<ByKey>::type KeyIndex;
- KeyIndex const & keyIndex (registry_.template get<ByKey>());
- typename KeyIndex::const_iterator i (keyIndex.lower_bound(key));
- if (i == keyIndex.end() || (*i)->key != key)
+ typename RegistryByKey::const_iterator i (registryByKey_.lower_bound(key));
+ if (i == registryByKey_.end() || (*i)->key != key)
return 0;
return i->get();
}
prefix_ void senf::detail::PacketRegistryImpl<KeyType>::v_dump(std::ostream & os)
const
{
- typedef typename Registry::template index<ByKey>::type KeyIndex;
- KeyIndex const & keyIndex (registry_.template get<ByKey>());
- for (typename KeyIndex::iterator i (keyIndex.begin()), i_end (keyIndex.end());
- i != i_end; ++i) {
+ for (typename RegistryByKey::const_iterator i (registryByKey_.begin()), i_end (registryByKey_.end()); i != i_end; ++i) {
std::string n ((*i)->name());
senf::detail::DumpKey<KeyType>::dump((*i)->key, os);
os << ' ' << std::setw(6) << (*i)->priority << ' ' << n.substr(21,n.size()-22) << '\n';
template <class KeyType>
prefix_ senf::detail::PacketRegistryImpl<KeyType>::PacketRegistryImpl(std::string const & name)
+ : registryByKey_( registry_.template get<ByKey>()),
+ registryByType_( registry_.template get<ByType>())
{
registries()[name] = this;
}
{};
typedef boost::multi_index_container<typename Entry::ptr, RegistryIndices> Registry;
+ typedef typename Registry::template index<ByKey>::type RegistryByKey;
+ typedef typename Registry::template index<ByType>::type RegistryByType;
template <class PacketType>
struct EntryImpl : public Entry
key_t key(senf::TypeIdValue const & type);
boost::optional<key_t> key(senf::TypeIdValue const & type, bool);
- Entry const & lookup(key_t key);
- Entry const * lookup(key_t key, bool);
+ Entry const & lookup(key_t key) const;
+ Entry const * lookup(key_t key, bool) const;
iterator begin() const;
iterator end() const;
virtual void v_clear();
Registry registry_;
+ RegistryByKey & registryByKey_;
+ RegistryByType & registryByType_;
};
template <class KeyType, bool is_integral=std::numeric_limits<KeyType>::is_integer>
rv = 0;
break;
default:
- std::stringstream a, b;
+ std::stringstream a, b;
senf::hexdump( (char*) addr , ((char*) addr) + len , a);
- senf::hexdump( (char*) buffer , ((char*) buffer) + size , b);
+ senf::hexdump( (char*) buffer , ((char*) buffer) + size , b);
SENF_THROW_SYSTEM_EXCEPTION("::sendto(" + b.str() + ") to " + a.str());
}
} while (rv<0);
false),
name_ (server.name()), reader_ (), mode_ (server.mode())
{
- handle_.facet<senf::TCPSocketProtocol>().nodelay();
+ handle_.facet<senf::TCPSocketProtocol>().nodelay(true);
handle_.blocking(false);
executor_.chroot(root());
switch (mode_) {