2014-10-01 01:20:12 +02:00
|
|
|
#include "interned_string.hh"
|
|
|
|
|
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
|
|
|
InternedString StringRegistry::acquire(StringView str)
|
|
|
|
{
|
|
|
|
auto it = m_slot_map.find(str);
|
|
|
|
if (it == m_slot_map.end())
|
|
|
|
{
|
|
|
|
size_t slot;
|
|
|
|
if (not m_free_slots.empty())
|
|
|
|
{
|
|
|
|
slot = m_free_slots.back();
|
|
|
|
m_free_slots.pop_back();
|
2014-12-30 12:56:01 +01:00
|
|
|
kak_assert(m_storage[slot].refcount == 0);
|
|
|
|
m_storage[slot] = DataAndRefCount{{str.begin(), str.end()}, 1};
|
2014-10-01 01:20:12 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
slot = m_storage.size();
|
2014-12-30 12:56:01 +01:00
|
|
|
m_storage.push_back({{str.begin(), str.end()}, 1});
|
2014-10-01 01:20:12 +02:00
|
|
|
}
|
|
|
|
// Create a new string view that point to the storage data
|
2014-12-30 12:56:01 +01:00
|
|
|
StringView storage_view{m_storage[slot].data.data(), (int)m_storage[slot].data.size()};
|
2014-10-01 01:20:12 +02:00
|
|
|
m_slot_map[storage_view] = slot;
|
|
|
|
|
2014-10-05 11:20:50 +02:00
|
|
|
return InternedString{storage_view, slot};
|
2014-10-01 01:20:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
size_t slot = it->second;
|
2014-10-07 20:07:05 +02:00
|
|
|
auto& data = m_storage[slot];
|
2014-12-30 12:56:01 +01:00
|
|
|
++data.refcount;
|
|
|
|
return {{data.data.data(), (int)data.data.size()}, slot};
|
2014-10-01 01:20:12 +02:00
|
|
|
}
|
|
|
|
|
2014-10-05 11:20:50 +02:00
|
|
|
void StringRegistry::acquire(size_t slot)
|
2014-10-01 01:20:12 +02:00
|
|
|
{
|
2014-10-05 11:20:50 +02:00
|
|
|
kak_assert(slot < m_storage.size());
|
2014-12-30 12:56:01 +01:00
|
|
|
kak_assert(m_storage[slot].refcount > 0);
|
|
|
|
++m_storage[slot].refcount;
|
2014-10-05 11:20:50 +02:00
|
|
|
}
|
2014-10-01 01:20:12 +02:00
|
|
|
|
2014-10-28 21:01:27 +01:00
|
|
|
void StringRegistry::release(size_t slot) noexcept
|
2014-10-05 11:20:50 +02:00
|
|
|
{
|
2014-12-30 12:56:01 +01:00
|
|
|
kak_assert(m_storage[slot].refcount > 0);
|
|
|
|
if (--m_storage[slot].refcount == 0)
|
2014-10-01 01:20:12 +02:00
|
|
|
{
|
|
|
|
m_free_slots.push_back(slot);
|
2015-01-07 20:29:31 +01:00
|
|
|
auto& data = m_storage[slot].data;
|
2014-10-05 11:20:50 +02:00
|
|
|
auto it = m_slot_map.find(StringView{data.data(), (int)data.size()});
|
|
|
|
kak_assert(it != m_slot_map.end());
|
2014-10-01 01:20:12 +02:00
|
|
|
m_slot_map.erase(it);
|
2015-01-07 20:29:31 +01:00
|
|
|
data = Vector<char, MemoryDomain::InternedString>{};
|
2014-10-01 01:20:12 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|