aboutsummaryrefslogtreecommitdiff
path: root/build/string-table.txx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-03-13 14:48:35 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2015-03-13 14:48:35 +0200
commit5b5aabc6d347ff209c35b2db7250d4caaf9fd643 (patch)
tree377c328ec4282572f019210c6e96bd979e9b1802 /build/string-table.txx
parent75d03492c0a42031a987969a6eb20dd2121f54d1 (diff)
Factor string_table into separate file
Diffstat (limited to 'build/string-table.txx')
-rw-r--r--build/string-table.txx33
1 files changed, 33 insertions, 0 deletions
diff --git a/build/string-table.txx b/build/string-table.txx
new file mode 100644
index 0000000..67d93c9
--- /dev/null
+++ b/build/string-table.txx
@@ -0,0 +1,33 @@
+// file : build/string-table.txx -*- C++ -*-
+// copyright : Copyright (c) 2014-2015 Code Synthesis Tools CC
+// license : MIT; see accompanying LICENSE file
+
+#include <limits> // numeric_limits
+#include <cstddef> // size_t
+#include <cassert>
+
+namespace build
+{
+ template <typename I, typename D>
+ I string_table<I, D>::
+ insert (const D& d)
+ {
+ std::size_t i (vec_.size () + 1);
+
+ // Note: move(d) would be tricky since key still points to it.
+ //
+ auto r (map_.emplace (
+ key_type (&traits::key (d)),
+ value_type {static_cast<I> (i), d}));
+
+ if (r.second)
+ {
+ assert (i <= std::numeric_limits<I>::max ());
+
+ r.first->first.p = &traits::key (r.first->second.d); // Update key.
+ vec_.push_back (r.first);
+ }
+
+ return r.first->second.i;
+ }
+}