move strref implementation to strman

master
Daniel Kolesa 2021-03-23 01:49:29 +01:00
parent 2cc1b0e271
commit 68b66c0b28
2 changed files with 49 additions and 45 deletions

View File

@ -108,4 +108,53 @@ char *cs_strman::alloc_buf(std::size_t len) const {
return strp;
};
/* strref implementation */
/* strref */
LIBCUBESCRIPT_EXPORT cs_strref::cs_strref(
cs_shared_state *cs, std::string_view str
): p_state{cs}
{
p_str = cs->strman->add(str);
}
LIBCUBESCRIPT_EXPORT cs_strref::cs_strref(cs_state &cs, std::string_view str):
p_state{cs.p_state}
{
p_str = p_state->strman->add(str);
}
LIBCUBESCRIPT_EXPORT cs_strref::cs_strref(cs_strref const &ref):
p_state{ref.p_state}, p_str{ref.p_str}
{
p_state->strman->ref(p_str);
}
/* this can be used by friends to do quick cs_strref creation */
LIBCUBESCRIPT_EXPORT cs_strref::cs_strref(char const *p, cs_shared_state *cs):
p_state{cs}
{
p_str = p_state->strman->ref(p);
}
LIBCUBESCRIPT_EXPORT cs_strref::~cs_strref() {
p_state->strman->unref(p_str);
}
LIBCUBESCRIPT_EXPORT cs_strref &cs_strref::operator=(cs_strref const &ref) {
p_str = ref.p_str;
p_state = ref.p_state;
p_state->strman->ref(p_str);
return *this;
}
LIBCUBESCRIPT_EXPORT cs_strref::operator std::string_view() const {
return p_state->strman->get(p_str);
}
LIBCUBESCRIPT_EXPORT bool cs_strref::operator==(cs_strref const &s) const {
return p_str == s.p_str;
}
} /* namespace cscript */

View File

@ -9,51 +9,6 @@
namespace cscript {
/* strref */
cs_strref::cs_strref(cs_shared_state *cs, std::string_view str):
p_state{cs}
{
p_str = cs->strman->add(str);
}
cs_strref::cs_strref(cs_state &cs, std::string_view str):
p_state{cs.p_state}
{
p_str = p_state->strman->add(str);
}
cs_strref::cs_strref(cs_strref const &ref): p_state{ref.p_state}, p_str{ref.p_str}
{
p_state->strman->ref(p_str);
}
/* this can be used by friends to do quick cs_strref creation */
cs_strref::cs_strref(char const *p, cs_shared_state *cs):
p_state{cs}
{
p_str = p_state->strman->ref(p);
}
cs_strref::~cs_strref() {
p_state->strman->unref(p_str);
}
cs_strref &cs_strref::operator=(cs_strref const &ref) {
p_str = ref.p_str;
p_state = ref.p_state;
p_state->strman->ref(p_str);
return *this;
}
cs_strref::operator std::string_view() const {
return p_state->strman->get(p_str);
}
bool cs_strref::operator==(cs_strref const &s) const {
return p_str == s.p_str;
}
namespace util {
LIBCUBESCRIPT_EXPORT char const *parse_string(
cs_state &cs, std::string_view str, size_t &nlines