From c09cd7512491cee1e82c1ad8128ce9fd4bc3f79b Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Fri, 22 Sep 2017 23:32:28 +0200 Subject: Initial modularization with both Clang and VC hacks Note: gave up on VC about half way though. --- libbutl/string-table.mxx | 114 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 114 insertions(+) create mode 100644 libbutl/string-table.mxx (limited to 'libbutl/string-table.mxx') diff --git a/libbutl/string-table.mxx b/libbutl/string-table.mxx new file mode 100644 index 0000000..2db8d6a --- /dev/null +++ b/libbutl/string-table.mxx @@ -0,0 +1,114 @@ +// file : libbutl/string-table.mxx -*- C++ -*- +// copyright : Copyright (c) 2014-2017 Code Synthesis Ltd +// license : MIT; see accompanying LICENSE file + +#ifndef __cpp_modules +#pragma once +#endif + +#include + +#ifndef __cpp_lib_modules +#include +#include +#include + +#include // numeric_limits +#include // size_t +#endif + +// Other includes. + +#ifdef __cpp_modules +export module butl.string_table; +#ifdef __cpp_lib_modules +import std.core; +#endif +import butl.multi_index; +#else +#include +#endif + +#include + +LIBBUTL_MODEXPORT namespace butl +{ + // A pool of strings and, optionally, other accompanying data in which each + // entry is assigned an individual index (or id) of type I (e.g., uint8_t, + // uint16_t, etc., depending on how many entries are expected). Index value + // 0 is reserved to indicate the "no entry" condition. + // + template + struct string_table_element + { + const I i; + const D d; + }; + + template + struct string_table_element + { + const I i; + const std::string d; + }; + + // For custom data the options are to call the data member 'key' or to + // specialize this traits. + // + template + struct string_table_traits + { + static const std::string& + key (const D& d) {return d.key;} + }; + + template <> + struct string_table_traits + { + static const std::string& + key (const std::string& d) {return d;} + }; + + template + struct string_table + { + // Insert new entry unless one already exists. + // + I + insert (const D&); + + // Find existing. + // + I + find (const std::string& k) const + { + auto i (map_.find (key_type (&k))); + return i != map_.end () ? i->second.i : 0; + } + + // Reverse lookup. + // + const D& + operator[] (I i) const {assert (i > 0); return vec_[i - 1]->second.d;} + + I + size () const {return static_cast (vec_.size ());} + + bool + empty () const {return vec_.empty ();} + + void + clear () {vec_.clear (); map_.clear ();} + + private: + using key_type = butl::map_key; + using value_type = string_table_element; + using map_type = std::unordered_map; + using traits = string_table_traits; + + map_type map_; + std::vector vec_; + }; +} + +#include -- cgit v1.1