2015-01-15 14:54:38 +01:00
|
|
|
#ifndef shared_string_hh_INCLUDED
|
|
|
|
#define shared_string_hh_INCLUDED
|
|
|
|
|
|
|
|
#include "string.hh"
|
2015-01-18 19:23:58 +01:00
|
|
|
#include "ref_ptr.hh"
|
2015-01-15 14:54:38 +01:00
|
|
|
#include "utils.hh"
|
|
|
|
#include "unordered_map.hh"
|
|
|
|
|
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
2015-03-01 13:03:08 +01:00
|
|
|
struct StringData : UseMemoryDomain<MemoryDomain::SharedString>
|
2015-01-15 14:54:38 +01:00
|
|
|
{
|
2015-01-19 20:31:56 +01:00
|
|
|
int refcount;
|
|
|
|
int length;
|
2015-01-18 19:23:58 +01:00
|
|
|
|
2015-03-12 10:52:33 +01:00
|
|
|
constexpr StringData(int ref, int len) : refcount(ref), length(len) {}
|
2015-02-28 18:09:29 +01:00
|
|
|
|
2015-01-26 20:41:26 +01:00
|
|
|
[[gnu::always_inline]]
|
2015-01-25 23:36:05 +01:00
|
|
|
char* data() { return reinterpret_cast<char*>(this + 1); }
|
2015-01-26 20:41:26 +01:00
|
|
|
[[gnu::always_inline]]
|
2015-01-25 23:36:05 +01:00
|
|
|
const char* data() const { return reinterpret_cast<const char*>(this + 1); }
|
2015-01-26 20:41:26 +01:00
|
|
|
[[gnu::always_inline]]
|
2015-01-25 23:36:05 +01:00
|
|
|
StringView strview() const { return {data(), length}; }
|
2015-01-19 14:25:04 +01:00
|
|
|
|
2015-03-01 13:03:08 +01:00
|
|
|
static RefPtr<StringData> create(StringView str, char back = 0)
|
2015-01-19 20:31:56 +01:00
|
|
|
{
|
2015-01-22 14:39:29 +01:00
|
|
|
const int len = (int)str.length() + (back != 0 ? 1 : 0);
|
2015-03-01 13:03:08 +01:00
|
|
|
void* ptr = StringData::operator new(sizeof(StringData) + len + 1);
|
2015-05-02 19:48:20 +02:00
|
|
|
StringData* res = new (ptr) StringData(0, len);
|
2015-02-11 00:09:30 +01:00
|
|
|
std::copy(str.begin(), str.end(), res->data());
|
2015-01-22 14:39:29 +01:00
|
|
|
if (back != 0)
|
2015-01-25 23:36:05 +01:00
|
|
|
res->data()[len-1] = back;
|
|
|
|
res->data()[len] = 0;
|
2015-03-01 13:03:08 +01:00
|
|
|
return RefPtr<StringData>(res);
|
2015-01-19 20:31:56 +01:00
|
|
|
}
|
2015-01-19 14:25:04 +01:00
|
|
|
|
2015-03-01 13:03:08 +01:00
|
|
|
static void destroy(StringData* s)
|
2015-01-19 20:31:56 +01:00
|
|
|
{
|
2015-03-01 13:03:08 +01:00
|
|
|
StringData::operator delete(s, sizeof(StringData) + s->length + 1);
|
2015-01-19 20:31:56 +01:00
|
|
|
}
|
2015-01-18 19:23:58 +01:00
|
|
|
|
2015-03-01 13:03:08 +01:00
|
|
|
friend void inc_ref_count(StringData* s, void*)
|
2015-02-28 18:09:29 +01:00
|
|
|
{
|
2015-03-12 10:52:33 +01:00
|
|
|
++s->refcount;
|
2015-02-28 18:09:29 +01:00
|
|
|
}
|
|
|
|
|
2015-03-01 13:03:08 +01:00
|
|
|
friend void dec_ref_count(StringData* s, void*)
|
2015-02-28 18:09:29 +01:00
|
|
|
{
|
2015-03-12 10:52:33 +01:00
|
|
|
if (--s->refcount == 0)
|
2015-03-01 13:03:08 +01:00
|
|
|
StringData::destroy(s);
|
2015-02-28 18:09:29 +01:00
|
|
|
}
|
2015-01-19 20:31:56 +01:00
|
|
|
};
|
2015-01-18 19:23:58 +01:00
|
|
|
|
2015-03-01 13:06:19 +01:00
|
|
|
using StringDataPtr = RefPtr<StringData>;
|
|
|
|
|
|
|
|
inline StringDataPtr operator"" _ss(const char* ptr, size_t len)
|
2015-01-22 14:39:29 +01:00
|
|
|
{
|
2015-03-01 13:03:08 +01:00
|
|
|
return StringData::create({ptr, (int)len});
|
2015-01-22 14:39:29 +01:00
|
|
|
}
|
|
|
|
|
2015-01-19 20:31:56 +01:00
|
|
|
class SharedString : public StringView
|
|
|
|
{
|
|
|
|
public:
|
2015-01-15 14:54:38 +01:00
|
|
|
SharedString() = default;
|
|
|
|
SharedString(StringView str)
|
|
|
|
{
|
|
|
|
if (not str.empty())
|
|
|
|
{
|
2015-03-01 13:03:08 +01:00
|
|
|
m_storage = StringData::create(str);
|
2015-01-18 19:23:58 +01:00
|
|
|
StringView::operator=(m_storage->strview());
|
2015-01-15 14:54:38 +01:00
|
|
|
}
|
|
|
|
}
|
2015-01-15 20:58:08 +01:00
|
|
|
struct NoCopy{};
|
|
|
|
SharedString(StringView str, NoCopy) : StringView(str) {}
|
|
|
|
|
2015-01-15 14:54:38 +01:00
|
|
|
SharedString(const char* str) : SharedString(StringView{str}) {}
|
|
|
|
|
|
|
|
SharedString acquire_substr(ByteCount from, ByteCount length = INT_MAX) const
|
|
|
|
{
|
|
|
|
return SharedString{StringView::substr(from, length), m_storage};
|
|
|
|
}
|
|
|
|
SharedString acquire_substr(CharCount from, CharCount length = INT_MAX) const
|
|
|
|
{
|
|
|
|
return SharedString{StringView::substr(from, length), m_storage};
|
|
|
|
}
|
|
|
|
|
2015-03-01 13:06:19 +01:00
|
|
|
explicit SharedString(StringDataPtr storage)
|
2015-01-19 20:31:56 +01:00
|
|
|
: StringView{storage->strview()}, m_storage(std::move(storage)) {}
|
|
|
|
|
2015-01-15 14:54:38 +01:00
|
|
|
private:
|
2015-03-01 13:06:19 +01:00
|
|
|
SharedString(StringView str, StringDataPtr storage)
|
2015-01-15 14:54:38 +01:00
|
|
|
: StringView{str}, m_storage(std::move(storage)) {}
|
|
|
|
|
|
|
|
friend class StringRegistry;
|
2015-03-01 13:06:19 +01:00
|
|
|
StringDataPtr m_storage;
|
2015-01-15 14:54:38 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
inline size_t hash_value(const SharedString& str)
|
|
|
|
{
|
|
|
|
return hash_data(str.data(), (int)str.length());
|
|
|
|
}
|
|
|
|
|
|
|
|
class StringRegistry : public Singleton<StringRegistry>
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
void debug_stats() const;
|
|
|
|
SharedString intern(StringView str);
|
|
|
|
void purge_unused();
|
|
|
|
|
|
|
|
private:
|
2015-04-16 13:38:59 +02:00
|
|
|
UnorderedSet<SharedString, MemoryDomain::SharedString> m_strings;
|
2015-01-15 14:54:38 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
inline SharedString intern(StringView str)
|
|
|
|
{
|
|
|
|
return StringRegistry::instance().intern(str);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // shared_string_hh_INCLUDED
|