mirror of
https://github.com/matrix-construct/construct
synced 2024-11-17 23:40:57 +01:00
232 lines
4.5 KiB
C
232 lines
4.5 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 {
|
||
|
|
||
|
struct value
|
||
|
:JS::Rooted<JS::Value>
|
||
|
{
|
||
|
explicit operator bool() const { return JS::ToBoolean(*this); }
|
||
|
explicit operator uint16_t() const;
|
||
|
explicit operator int32_t() const;
|
||
|
explicit operator uint32_t() const;
|
||
|
explicit operator int64_t() const;
|
||
|
explicit operator uint64_t() const;
|
||
|
explicit operator double() const;
|
||
|
|
||
|
explicit value(const bool &);
|
||
|
explicit value(const nullptr_t &);
|
||
|
explicit value(const int32_t &);
|
||
|
explicit value(const float &);
|
||
|
explicit value(const double &);
|
||
|
|
||
|
value(const jsid &);
|
||
|
value(JSObject &);
|
||
|
value(JSString *const &);
|
||
|
value(JS::Symbol *const &);
|
||
|
value(const JS::Value &);
|
||
|
|
||
|
template<class T> value(const JS::Handle<T> &h);
|
||
|
template<class T> value(const JS::Rooted<T> &r);
|
||
|
template<class T> value(const JS::PersistentRooted<T> &p);
|
||
|
|
||
|
value();
|
||
|
value(value &&) noexcept;
|
||
|
value(const value &) = delete;
|
||
|
value &operator=(value &&) noexcept;
|
||
|
};
|
||
|
|
||
|
inline
|
||
|
value::value()
|
||
|
:JS::Rooted<JS::Value>{*cx, JS::UndefinedValue()}
|
||
|
{
|
||
|
}
|
||
|
|
||
|
inline
|
||
|
value::value(value &&other)
|
||
|
noexcept
|
||
|
:JS::Rooted<JS::Value>{*cx, other.get()}
|
||
|
{
|
||
|
other.set(JS::UndefinedValue());
|
||
|
}
|
||
|
|
||
|
inline value &
|
||
|
value::operator=(value &&other)
|
||
|
noexcept
|
||
|
{
|
||
|
set(other.get());
|
||
|
other.set(JS::UndefinedValue());
|
||
|
return *this;
|
||
|
}
|
||
|
|
||
|
template<class T>
|
||
|
value::value(const JS::PersistentRooted<T> &r)
|
||
|
:value(JS::Handle<T>(r))
|
||
|
{
|
||
|
}
|
||
|
|
||
|
template<class T>
|
||
|
value::value(const JS::Rooted<T> &r)
|
||
|
:value(JS::Handle<T>(r))
|
||
|
{
|
||
|
}
|
||
|
|
||
|
template<class T>
|
||
|
value::value(const JS::Handle<T> &h)
|
||
|
:value(h.get())
|
||
|
{
|
||
|
}
|
||
|
|
||
|
inline
|
||
|
value::value(const JS::Value &val)
|
||
|
:JS::Rooted<JS::Value>{*cx, val}
|
||
|
{
|
||
|
}
|
||
|
|
||
|
inline
|
||
|
value::value(JS::Symbol *const &val)
|
||
|
:JS::Rooted<JS::Value>{*cx, JS::SymbolValue(val)}
|
||
|
{
|
||
|
}
|
||
|
|
||
|
inline
|
||
|
value::value(JSObject &val)
|
||
|
:JS::Rooted<JS::Value>{*cx, JS::ObjectValue(val)}
|
||
|
{
|
||
|
}
|
||
|
|
||
|
inline
|
||
|
value::value(JSString *const &val)
|
||
|
:JS::Rooted<JS::Value>{*cx, JS::StringValue(val)}
|
||
|
{
|
||
|
}
|
||
|
|
||
|
inline
|
||
|
value::value(const jsid &val)
|
||
|
:JS::Rooted<JS::Value>{*cx}
|
||
|
{
|
||
|
if(!JS_IdToValue(*cx, val, &(*this)))
|
||
|
throw type_error("Failed to construct value from Id");
|
||
|
}
|
||
|
|
||
|
inline
|
||
|
value::value(const bool &b)
|
||
|
:JS::Rooted<JS::Value>{*cx, JS::BooleanValue(b)}
|
||
|
{
|
||
|
}
|
||
|
|
||
|
inline
|
||
|
value::value(const nullptr_t &)
|
||
|
:JS::Rooted<JS::Value>{*cx, JS::NullValue()}
|
||
|
{
|
||
|
}
|
||
|
|
||
|
inline
|
||
|
value::value(const int32_t &val)
|
||
|
:JS::Rooted<JS::Value>{*cx, JS::Int32Value(val)}
|
||
|
{
|
||
|
}
|
||
|
|
||
|
inline
|
||
|
value::value(const float &val)
|
||
|
:JS::Rooted<JS::Value>{*cx, JS::Float32Value(val)}
|
||
|
{
|
||
|
}
|
||
|
|
||
|
inline
|
||
|
value::value(const double &val)
|
||
|
:JS::Rooted<JS::Value>{*cx, JS::DoubleValue(val)}
|
||
|
{
|
||
|
}
|
||
|
|
||
|
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 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 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 uint16_t()
|
||
|
const
|
||
|
{
|
||
|
uint16_t ret;
|
||
|
if(!JS::ToUint16(*cx, *this, &ret))
|
||
|
throw type_error("Failed cast to uint16_t");
|
||
|
|
||
|
return ret;
|
||
|
}
|
||
|
|
||
|
} // namespace js
|
||
|
} // namespace ircd
|