// file : xsde/cxx/hybrid/serializer-map.cxx // author : Boris Kolpackov // copyright : Copyright (c) 2005-2009 Code Synthesis Tools CC // license : GNU GPL v2 + exceptions; see accompanying LICENSE file #include // strcmp #include namespace xsde { namespace cxx { namespace hybrid { serializer::serializer_base* serializer_map_impl:: find (const void* v) const { const char* tid = static_cast (v); // Binary search. // if (size_ == 0) return 0; size_t l = 0; size_t h = size_ - 1; while (l <= h) { size_t m = l + (h - l)/2; int r = strcmp (entries_[m].type_id, tid); if (r > 0) h = m - 1; else if (r < 0) l = m + 1; else return entries_[m].serializer; } return 0; } void serializer_map_impl:: reset () const { if (resetting_) return; bool& r = const_cast (resetting_); r = true; for (const entry* p = entries_; p != entries_ + size_; ++p) p->serializer->_reset (); r = false; } } } }