2016-10-14 06:51:43 +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_SCRIPT_H
|
|
|
|
|
2016-10-27 10:55:26 +02:00
|
|
|
namespace ircd {
|
|
|
|
namespace js {
|
|
|
|
namespace basic {
|
2016-10-14 06:51:43 +02:00
|
|
|
|
2016-10-27 10:55:26 +02:00
|
|
|
template<lifetime L>
|
2016-10-14 06:51:43 +02:00
|
|
|
struct script
|
2016-10-27 10:55:26 +02:00
|
|
|
:root<JSScript *, L>
|
2016-10-14 06:51:43 +02:00
|
|
|
{
|
2016-10-27 10:55:26 +02:00
|
|
|
value<lifetime::stack> operator()(JS::AutoObjectVector &stack) const;
|
|
|
|
value<lifetime::stack> operator()() const;
|
2016-10-19 03:00:25 +02:00
|
|
|
|
2016-10-27 10:55:26 +02:00
|
|
|
using root<JSScript *, L>::root;
|
2016-10-19 03:00:25 +02:00
|
|
|
script(const JS::CompileOptions &opts, const std::string &src); // new script
|
|
|
|
script(JSScript *const &);
|
2016-10-23 06:08:04 +02:00
|
|
|
script(JSScript &);
|
2016-10-14 06:51:43 +02:00
|
|
|
};
|
|
|
|
|
2016-10-27 10:55:26 +02:00
|
|
|
} // namespace basic
|
|
|
|
|
|
|
|
using script = basic::script<lifetime::stack>;
|
|
|
|
using heap_script = basic::script<lifetime::heap>;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Implementation
|
|
|
|
//
|
|
|
|
namespace basic {
|
|
|
|
|
|
|
|
template<lifetime L>
|
|
|
|
script<L>::script(JSScript &val)
|
|
|
|
:script<L>::root::type{&val}
|
2016-10-14 06:51:43 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-10-27 10:55:26 +02:00
|
|
|
template<lifetime L>
|
|
|
|
script<L>::script(JSScript *const &val)
|
|
|
|
:script<L>::root::type{val}
|
2016-10-19 03:00:25 +02:00
|
|
|
{
|
2016-10-27 10:55:26 +02:00
|
|
|
if(unlikely(!this->get()))
|
|
|
|
throw internal_error("NULL script");
|
2016-10-19 03:00:25 +02:00
|
|
|
}
|
|
|
|
|
2016-10-27 10:55:26 +02:00
|
|
|
template<lifetime L>
|
|
|
|
script<L>::script(const JS::CompileOptions &opts,
|
|
|
|
const std::string &src)
|
|
|
|
:script<L>::root::type{}
|
2016-10-23 06:08:04 +02:00
|
|
|
{
|
2016-10-27 10:55:26 +02:00
|
|
|
if(!JS::Compile(*cx, opts, src.data(), src.size(), &(*this)))
|
|
|
|
throw syntax_error("Failed to compile script");
|
2016-10-23 06:08:04 +02:00
|
|
|
}
|
|
|
|
|
2016-10-27 10:55:26 +02:00
|
|
|
template<lifetime L>
|
|
|
|
value<lifetime::stack>
|
|
|
|
script<L>::operator()()
|
|
|
|
const
|
2016-10-14 06:51:43 +02:00
|
|
|
{
|
2016-10-27 10:55:26 +02:00
|
|
|
value<lifetime::stack> ret;
|
|
|
|
if(!JS_ExecuteScript(*cx, *this, &ret))
|
|
|
|
throw jserror(jserror::pending);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<lifetime L>
|
|
|
|
value<lifetime::stack>
|
|
|
|
script<L>::operator()(JS::AutoObjectVector &stack)
|
|
|
|
const
|
|
|
|
{
|
|
|
|
value<lifetime::stack> ret;
|
|
|
|
if(!JS_ExecuteScript(*cx, stack, *this, &ret))
|
|
|
|
throw jserror(jserror::pending);
|
|
|
|
|
|
|
|
return ret;
|
2016-10-14 06:51:43 +02:00
|
|
|
}
|
|
|
|
|
2016-10-27 10:55:26 +02:00
|
|
|
} // namespace basic
|
2016-10-14 06:51:43 +02:00
|
|
|
} // namespace js
|
|
|
|
} // namespace ircd
|