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
|
|
|
|
{
|
|
|
|
|
|
|
|
class SharedString : public StringView
|
|
|
|
{
|
|
|
|
public:
|
2015-01-18 19:49:32 +01:00
|
|
|
struct Storage : UseMemoryDomain<MemoryDomain::SharedString>
|
2015-01-18 19:23:58 +01:00
|
|
|
{
|
2015-01-19 14:25:04 +01:00
|
|
|
int refcount;
|
|
|
|
int length;
|
|
|
|
char data[1];
|
2015-01-18 19:23:58 +01:00
|
|
|
|
2015-01-19 14:25:04 +01:00
|
|
|
StringView strview() const { return {data, length}; }
|
|
|
|
|
|
|
|
static Storage* create(StringView str)
|
|
|
|
{
|
|
|
|
const int len = (int)str.length();
|
|
|
|
void* ptr = Storage::operator new(sizeof(Storage) + len);
|
|
|
|
Storage* res = reinterpret_cast<Storage*>(ptr);
|
|
|
|
memcpy(res->data, str.data(), len);
|
|
|
|
res->refcount = 0;
|
|
|
|
res->length = len;
|
|
|
|
res->data[len] = 0;
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void destroy(Storage* s)
|
2015-01-18 19:23:58 +01:00
|
|
|
{
|
2015-01-19 14:25:04 +01:00
|
|
|
Storage::operator delete(s, sizeof(Storage) + s->length);
|
2015-01-18 19:23:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
friend void inc_ref_count(Storage* s) { ++s->refcount; }
|
2015-01-19 14:25:04 +01:00
|
|
|
friend void dec_ref_count(Storage* s) { if (--s->refcount == 0) Storage::destroy(s); }
|
2015-01-18 19:23:58 +01:00
|
|
|
};
|
|
|
|
|
2015-01-15 14:54:38 +01:00
|
|
|
SharedString() = default;
|
|
|
|
SharedString(StringView str)
|
|
|
|
{
|
|
|
|
if (not str.empty())
|
|
|
|
{
|
2015-01-19 14:25:04 +01:00
|
|
|
m_storage = Storage::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};
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2015-01-18 19:23:58 +01:00
|
|
|
SharedString(StringView str, ref_ptr<Storage> storage)
|
2015-01-15 14:54:38 +01:00
|
|
|
: StringView{str}, m_storage(std::move(storage)) {}
|
|
|
|
|
|
|
|
friend class StringRegistry;
|
2015-01-18 19:23:58 +01:00
|
|
|
ref_ptr<Storage> 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-01-18 19:23:58 +01:00
|
|
|
UnorderedMap<StringView, ref_ptr<SharedString::Storage>, 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
|