0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-09 05:29:00 +02:00
construct/include/ircd/js/value.h

364 lines
6.8 KiB
C++

/*
* Copyright (C) 2016 Charybdis Development Team
* Copyright (C) 2016 Jason Volk <jason@zemos.net>
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice is present in all copies.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
#pragma once
#define HAVE_IRCD_JS_VALUE_H
namespace ircd {
namespace js {
// Use Value to carry a non-gc host pointer value
template<class T> T *pointer_value(const JS::Value &);
JS::Value pointer_value(const void *const &);
JS::Value pointer_value(void *const &);
struct value
:root<JS::Value>
{
IRCD_OVERLOAD(pointer)
explicit operator std::string() const;
explicit operator double() const;
explicit operator uint64_t() const;
explicit operator int64_t() const;
explicit operator uint32_t() const;
explicit operator int32_t() const;
explicit operator uint16_t() const;
explicit operator bool() const;
template<class T> value(const JS::MutableHandle<T> &h);
template<class T> value(const JS::Handle<T> &h);
value(pointer_t, void *const &);
value(const std::string &);
value(const char *const &);
value(const nullptr_t &);
value(const double &);
value(const float &);
value(const uint64_t &);
value(const int32_t &);
value(const bool &);
value(const jsid &);
value(JSObject &);
value(JSObject *const &);
value(JSString *const &);
value(JSFunction *const &);
value(JS::Symbol *const &);
value(const JS::Value &);
value();
};
JSType type(const handle<value> &val);
JSType type(const value &val);
bool undefined(const handle<value> &val);
bool undefined(const value &val);
bool is_array(const handle<value> &val);
bool is_array(const value &val);
inline
value::value()
:value::root::type{JS::UndefinedValue()}
{
}
inline
value::value(const JS::Value &val)
:value::root::type{val}
{
}
inline
value::value(JS::Symbol *const &val)
:value::root::type{JS::SymbolValue(val)}
{
}
inline
value::value(JSObject *const &val)
:value::root::type
{
val? JS::ObjectValue(*val) : throw internal_error("NULL JSObject")
}
{
}
inline
value::value(JSObject &val)
:value::root::type{JS::ObjectValue(val)}
{
}
inline
value::value(JSString *const &val)
:value::root::type{JS::StringValue(val)}
{
}
inline
value::value(JSFunction *const &val)
:value::root::type{}
{
auto *const obj(JS_GetFunctionObject(val));
if(unlikely(!obj))
throw type_error("Function cannot convert to Object");
(*this) = JS::ObjectValue(*obj);
}
inline
value::value(const jsid &val)
:value::root::type{}
{
if(!JS_IdToValue(*cx, val, &(*this)))
throw type_error("Failed to construct value from Id");
}
inline
value::value(const bool &b)
:value::root::type{JS::BooleanValue(b)}
{
}
inline
value::value(const int32_t &val)
:value::root::type{JS::Int32Value(val)}
{
}
inline
value::value(const uint64_t &val)
:value::root::type{JS::DoubleValue(val)}
{
}
inline
value::value(const float &val)
:value::root::type{JS::Float32Value(val)}
{
}
inline
value::value(const double &val)
:value::root::type{JS::DoubleValue(val)}
{
}
inline
value::value(const nullptr_t &)
:value::root::type{JS::NullValue()}
{
}
inline
value::value(const std::string &s)
:value::root::type{[&s]
{
if(s.empty())
return JS::StringValue(JS_GetEmptyString(*cx));
auto buf(native_external_copy(s));
const auto ret(JS_NewExternalString(*cx, buf.get(), s.size(), &native_external_delete));
buf.release();
return JS::StringValue(ret);
}()}
{
}
inline
value::value(const char *const &s)
:value::root::type{[&s]
{
if(!s || !*s)
return JS::StringValue(JS_GetEmptyString(*cx));
const auto len(strlen(s));
auto buf(native_external_copy(s, len));
const auto ret(JS_NewExternalString(*cx, buf.get(), len, &native_external_delete));
buf.release();
return JS::StringValue(ret);
}()}
{
}
inline
value::value(pointer_t,
void *const &ptr)
:value::root::type{pointer_value(ptr)}
{
}
template<class T>
value::value(const JS::Handle<T> &h)
:value(h.get())
{
}
template<class T>
value::value(const JS::MutableHandle<T> &h)
:value(h.get())
{
}
inline
value::operator bool()
const
{
return JS::ToBoolean(*this);
}
inline
value::operator uint16_t()
const
{
uint16_t ret;
if(!JS::ToUint16(*cx, *this, &ret))
throw type_error("Failed cast to uint16_t");
return ret;
}
inline
value::operator int32_t()
const
{
int32_t ret;
if(!JS::ToInt32(*cx, *this, &ret))
throw type_error("Failed cast to int32_t");
return ret;
}
inline
value::operator uint32_t()
const
{
uint32_t ret;
if(!JS::ToUint32(*cx, *this, &ret))
throw type_error("Failed cast to uint32_t");
return ret;
}
inline
value::operator int64_t()
const
{
int64_t ret;
if(!JS::ToInt64(*cx, *this, &ret))
throw type_error("Failed cast to int64_t");
return ret;
}
inline
value::operator uint64_t()
const
{
uint64_t ret;
if(!JS::ToUint64(*cx, *this, &ret))
throw type_error("Failed cast to uint64_t");
return ret;
}
inline
value::operator double()
const
{
double ret;
if(!JS::ToNumber(*cx, *this, &ret))
throw type_error("Failed cast to double");
return ret;
}
inline
value::operator std::string()
const
{
const auto s(JS::ToString(*cx, *this));
return s? native(s) : throw type_error("Failed to cast to string");
}
inline bool
is_array(const value &val)
{
return is_array(handle<value>(val));
}
inline bool
is_array(const handle<value> &val)
{
bool ret;
if(!JS_IsArrayObject(*cx, val, &ret))
throw internal_error("Failed to query if value is array");
return ret;
}
inline bool
undefined(const value &val)
{
return type(val) == JSTYPE_VOID;
}
inline bool
undefined(const handle<value> &val)
{
return type(val) == JSTYPE_VOID;
}
inline JSType
type(const value &val)
{
return JS_TypeOfValue(*cx, val);
}
inline JSType
type(const handle<value> &val)
{
return JS_TypeOfValue(*cx, val);
}
inline JS::Value
pointer_value(const void *const &ptr)
{
return pointer_value(const_cast<void *>(ptr));
}
inline JS::Value
pointer_value(void *const &ptr)
{
JS::Value ret;
ret.setPrivate(ptr);
return ret;
}
template<class T>
T *
pointer_value(const JS::Value &val)
{
const auto ret(val.toPrivate());
return reinterpret_cast<T *>(ret);
}
} // namespace js
} // namespace ircd