2016-10-15 06:14:18 +02:00
|
|
|
/*
|
|
|
|
* 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_ID_H
|
|
|
|
|
|
|
|
namespace ircd {
|
|
|
|
namespace js {
|
|
|
|
|
2016-10-16 01:53:44 +02:00
|
|
|
JS::RootedValue id(const jsid &);
|
|
|
|
const jsid &id(const JSProtoKey &);
|
|
|
|
const jsid &id(const uint32_t &);
|
|
|
|
const jsid &id(const JS::HandleString &);
|
|
|
|
const jsid &id(const JS::HandleValue &);
|
2016-10-15 06:14:18 +02:00
|
|
|
|
|
|
|
|
|
|
|
inline const jsid &
|
2016-10-16 01:53:44 +02:00
|
|
|
id(const JS::HandleValue &h)
|
2016-10-15 06:14:18 +02:00
|
|
|
{
|
2016-10-16 01:53:44 +02:00
|
|
|
JS::RootedId ret(*cx);
|
|
|
|
if(!JS_ValueToId(*cx, h, &ret))
|
2016-10-15 06:14:18 +02:00
|
|
|
std::terminate(); //TODO: exception
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline const jsid &
|
2016-10-16 01:53:44 +02:00
|
|
|
id(const JS::HandleString &h)
|
2016-10-15 06:14:18 +02:00
|
|
|
{
|
2016-10-16 01:53:44 +02:00
|
|
|
JS::RootedId ret(*cx);
|
|
|
|
if(!JS_StringToId(*cx, h, &ret))
|
2016-10-15 06:14:18 +02:00
|
|
|
std::terminate(); //TODO: exception
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline const jsid &
|
2016-10-16 01:53:44 +02:00
|
|
|
id(const uint32_t &index)
|
2016-10-15 06:14:18 +02:00
|
|
|
{
|
2016-10-16 01:53:44 +02:00
|
|
|
JS::RootedId ret(*cx);
|
|
|
|
if(!JS_IndexToId(*cx, index, &ret))
|
2016-10-15 06:14:18 +02:00
|
|
|
std::terminate(); //TODO: exception
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline const jsid &
|
2016-10-16 01:53:44 +02:00
|
|
|
id(const JSProtoKey &key)
|
2016-10-15 06:14:18 +02:00
|
|
|
{
|
2016-10-16 01:53:44 +02:00
|
|
|
JS::RootedId ret(*cx);
|
|
|
|
JS::ProtoKeyToId(*cx, key, &ret);
|
2016-10-15 06:14:18 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline JS::RootedValue
|
2016-10-16 01:53:44 +02:00
|
|
|
id(const jsid &h)
|
2016-10-15 06:14:18 +02:00
|
|
|
{
|
2016-10-16 01:53:44 +02:00
|
|
|
JS::RootedValue ret(*cx);
|
|
|
|
if(!JS_IdToValue(*cx, h, &ret))
|
2016-10-15 06:14:18 +02:00
|
|
|
std::terminate(); //TODO: exception
|
|
|
|
|
2016-10-16 01:53:44 +02:00
|
|
|
return { *cx, ret };
|
2016-10-15 06:14:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace js
|
|
|
|
} // namespace ircd
|