2 * Copyright 2016 Facebook, Inc.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
19 #include <folly/Conv.h>
20 #include <folly/Optional.h>
25 * Given a map and a key, return the value corresponding to the key in the map,
26 * or a given default value if the key doesn't exist in the map.
29 typename Map::mapped_type get_default(
30 const Map& map, const typename Map::key_type& key,
31 const typename Map::mapped_type& dflt =
32 typename Map::mapped_type()) {
33 auto pos = map.find(key);
34 return (pos != map.end() ? pos->second : dflt);
38 * Give a map and a key, return the value corresponding to the key in the map,
39 * or a given default value if the key doesn't exist in the map.
44 typename = typename std::enable_if<std::is_convertible<
45 typename std::result_of<Func()>::type,
46 typename Map::mapped_type>::value>::type>
47 typename Map::mapped_type
48 get_default(const Map& map, const typename Map::key_type& key, Func&& dflt) {
49 auto pos = map.find(key);
50 return pos != map.end() ? pos->second : dflt();
54 * Given a map and a key, return the value corresponding to the key in the map,
55 * or throw an exception of the specified type.
57 template <class E = std::out_of_range, class Map>
58 const typename Map::mapped_type& get_or_throw(
60 const typename Map::key_type& key,
61 const std::string& exceptionStrPrefix = std::string()) {
62 auto pos = map.find(key);
63 if (pos != map.end()) {
66 throw E(folly::to<std::string>(exceptionStrPrefix, key));
69 template <class E = std::out_of_range, class Map>
70 typename Map::mapped_type& get_or_throw(
72 const typename Map::key_type& key,
73 const std::string& exceptionStrPrefix = std::string()) {
74 auto pos = map.find(key);
75 if (pos != map.end()) {
78 throw E(folly::to<std::string>(exceptionStrPrefix, key));
82 * Given a map and a key, return a Optional<V> if the key exists and None if the
83 * key does not exist in the map.
86 folly::Optional<typename Map::mapped_type> get_optional(
87 const Map& map, const typename Map::key_type& key) {
88 auto pos = map.find(key);
89 if (pos != map.end()) {
90 return folly::Optional<typename Map::mapped_type>(pos->second);
97 * Given a map and a key, return a reference to the value corresponding to the
98 * key in the map, or the given default reference if the key doesn't exist in
102 const typename Map::mapped_type& get_ref_default(
103 const Map& map, const typename Map::key_type& key,
104 const typename Map::mapped_type& dflt) {
105 auto pos = map.find(key);
106 return (pos != map.end() ? pos->second : dflt);
110 * Given a map and a key, return a reference to the value corresponding to the
111 * key in the map, or the given default reference if the key doesn't exist in
117 typename = typename std::enable_if<std::is_convertible<
118 typename std::result_of<Func()>::type,
119 const typename Map::mapped_type&>::value>::type,
120 typename = typename std::enable_if<
121 std::is_reference<typename std::result_of<Func()>::type>::value>::type>
122 const typename Map::mapped_type& get_ref_default(
124 const typename Map::key_type& key,
126 auto pos = map.find(key);
127 return (pos != map.end() ? pos->second : dflt());
131 * Given a map and a key, return a pointer to the value corresponding to the
132 * key in the map, or nullptr if the key doesn't exist in the map.
135 const typename Map::mapped_type* get_ptr(
136 const Map& map, const typename Map::key_type& key) {
137 auto pos = map.find(key);
138 return (pos != map.end() ? &pos->second : nullptr);
142 * Non-const overload of the above.
145 typename Map::mapped_type* get_ptr(
146 Map& map, const typename Map::key_type& key) {
147 auto pos = map.find(key);
148 return (pos != map.end() ? &pos->second : nullptr);