2#include <ossia/detail/mutex.hpp>
3#include <ossia/detail/optional.hpp>
4#include <ossia/detail/small_vector.hpp>
5#include <ossia/detail/string_algorithms.hpp>
16 using key_type =
typename map_type::key_type;
17 using mapped_type =
typename map_type::mapped_type;
18 using value_type =
typename map_type::value_type;
20 template <
typename Key>
21 std::optional<mapped_type> find(
const Key& path)
const
24 auto it = m_map.find(path);
35 template <
typename Key>
36 std::optional<mapped_type> find_and_take(
const Key& path)
39 auto it = m_map.find(path);
42 auto val = std::move(it.value());
44 return std::move(val);
52 void rename(
const key_type& oldk,
const key_type& newk)
56 ossia::small_vector<std::pair<key_type, mapped_type>, 8> cache;
58 for(
auto& [k, v] : m_map)
60 if(string_starts_with(k, oldk))
61 cache.emplace_back(k, std::move(v));
66 for(
auto&& e : std::move(cache))
69 e.first.replace(0, oldk.length(), newk);
70 m_map.insert({std::move(e.first), std::move(e.second)});
75 void insert(
const value_type& m)
81 void insert(value_type&& m)
84 m_map.insert(std::move(m));
87 void erase(
const key_type& m)
94 mutable mutex_t m_mutex;
95 map_type m_map TS_GUARDED_BY(m_mutex);
101using listened_parameters = locked_map<string_map<ossia::net::parameter_base*>>;