2015-01-15 14:54:38 +01:00
|
|
|
#include "shared_string.hh"
|
2015-06-06 12:54:48 +02:00
|
|
|
#include "buffer_utils.hh"
|
2015-01-15 14:54:38 +01:00
|
|
|
|
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
2017-02-23 00:56:52 +01:00
|
|
|
StringDataPtr StringData::create(ArrayView<const StringView> strs)
|
2015-01-15 14:54:38 +01:00
|
|
|
{
|
2017-02-23 00:56:52 +01:00
|
|
|
const int len = std::accumulate(strs.begin(), strs.end(), 0,
|
|
|
|
[](int l, StringView s)
|
|
|
|
{ return l + (int)s.length(); });
|
|
|
|
void* ptr = StringData::operator new(sizeof(StringData) + len + 1);
|
|
|
|
auto* res = new (ptr) StringData(len);
|
|
|
|
auto* data = reinterpret_cast<char*>(res + 1);
|
|
|
|
for (auto& str : strs)
|
2015-01-15 14:54:38 +01:00
|
|
|
{
|
2017-02-23 00:56:52 +01:00
|
|
|
memcpy(data, str.begin(), (size_t)str.length());
|
|
|
|
data += (int)str.length();
|
2015-01-15 14:54:38 +01:00
|
|
|
}
|
2017-02-23 00:56:52 +01:00
|
|
|
*data = 0;
|
|
|
|
return RefPtr<StringData, PtrPolicy>{res};
|
2015-01-15 14:54:38 +01:00
|
|
|
}
|
|
|
|
|
2017-02-23 00:56:52 +01:00
|
|
|
StringDataPtr StringData::Registry::intern(StringView str)
|
2015-01-15 14:54:38 +01:00
|
|
|
{
|
2017-02-23 00:56:52 +01:00
|
|
|
auto it = m_strings.find(str);
|
|
|
|
if (it != m_strings.end())
|
|
|
|
return StringDataPtr{it->second};
|
|
|
|
|
|
|
|
auto data = StringData::create(str);
|
|
|
|
data->refcount |= interned_flag;
|
|
|
|
m_strings.emplace(data->strview(), data.get());
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
|
|
|
void StringData::Registry::remove(StringView str)
|
|
|
|
{
|
|
|
|
auto it = m_strings.find(str);
|
|
|
|
kak_assert(it != m_strings.end());
|
|
|
|
m_strings.erase(it);
|
2015-01-15 14:54:38 +01:00
|
|
|
}
|
|
|
|
|
2017-02-23 00:56:52 +01:00
|
|
|
void StringData::Registry::debug_stats() const
|
2015-01-15 14:54:38 +01:00
|
|
|
{
|
2015-06-06 12:54:48 +02:00
|
|
|
write_to_debug_buffer("Shared Strings stats:");
|
2015-01-15 14:54:38 +01:00
|
|
|
size_t total_refcount = 0;
|
|
|
|
size_t total_size = 0;
|
|
|
|
size_t count = m_strings.size();
|
|
|
|
for (auto& st : m_strings)
|
|
|
|
{
|
2016-02-05 01:20:45 +01:00
|
|
|
total_refcount += st.second->refcount - 1;
|
|
|
|
total_size += (int)st.second->length;
|
2015-01-15 14:54:38 +01:00
|
|
|
}
|
2015-06-06 12:54:48 +02:00
|
|
|
write_to_debug_buffer(format(" data size: {}, mean: {}", total_size, (float)total_size/count));
|
|
|
|
write_to_debug_buffer(format(" refcounts: {}, mean: {}", total_refcount, (float)total_refcount/count));
|
2015-01-15 14:54:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|