2018-02-04 03:22:01 +01:00
|
|
|
// Matrix Construct
|
|
|
|
//
|
|
|
|
// Copyright (C) Matrix Construct Developers, Authors & Contributors
|
|
|
|
// Copyright (C) 2016-2018 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. The
|
|
|
|
// full license for this software is available in the LICENSE file.
|
2016-10-19 02:17:29 +02:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#define HAVE_IRCD_JS_FUNCTION_H
|
|
|
|
|
|
|
|
namespace ircd {
|
|
|
|
namespace js {
|
|
|
|
|
2016-10-24 07:43:10 +02:00
|
|
|
string decompile(const JS::Handle<JSFunction *> &, const bool &pretty = false);
|
2016-11-25 03:21:46 +01:00
|
|
|
string display_name(const JSFunction *const &);
|
|
|
|
string name(const JSFunction *const *);
|
|
|
|
uint16_t arity(const JSFunction *const &);
|
|
|
|
bool is_ctor(const JSFunction *const &);
|
2016-11-29 16:23:38 +01:00
|
|
|
object enclosing_scope(JSFunction *const &);
|
2016-10-24 07:43:10 +02:00
|
|
|
|
2016-10-19 02:17:29 +02:00
|
|
|
struct function
|
2016-11-25 09:15:27 +01:00
|
|
|
:root<JSFunction *>
|
2016-10-19 02:17:29 +02:00
|
|
|
{
|
2017-08-23 23:25:22 +02:00
|
|
|
struct native; // Use this instead to specify a function in C
|
|
|
|
struct literal; // Use this instead to supply the JS as a C string literal.
|
|
|
|
|
2016-11-29 16:23:38 +01:00
|
|
|
IRCD_OVERLOAD(outermost_enclosing)
|
|
|
|
|
2016-10-23 06:08:04 +02:00
|
|
|
operator JSObject *() const;
|
2016-11-25 09:15:27 +01:00
|
|
|
explicit operator script() const;
|
|
|
|
explicit operator string() const;
|
2016-10-23 06:08:04 +02:00
|
|
|
|
2016-11-25 09:15:27 +01:00
|
|
|
value operator()(const object::handle &, const vector<value>::handle &) const;
|
|
|
|
template<class... args> value operator()(const object::handle &, args&&...) const;
|
2016-10-19 02:17:29 +02:00
|
|
|
|
|
|
|
// new function
|
2016-10-29 14:08:37 +02:00
|
|
|
template<class string_t>
|
2016-10-19 02:17:29 +02:00
|
|
|
function(JS::AutoObjectVector &stack,
|
|
|
|
const JS::CompileOptions &opts,
|
|
|
|
const char *const &name,
|
2016-10-29 14:08:37 +02:00
|
|
|
const std::vector<string_t> &args,
|
|
|
|
const string_t &src);
|
2016-10-19 02:17:29 +02:00
|
|
|
|
2016-11-25 09:15:27 +01:00
|
|
|
using root<JSFunction *>::root;
|
2016-11-29 16:23:38 +01:00
|
|
|
function(outermost_enclosing_t); // GetOutermostEnclosingFunctionOfScriptedCaller
|
2016-11-25 09:15:27 +01:00
|
|
|
function(const value::handle &);
|
|
|
|
function(const value &);
|
2016-10-23 06:08:04 +02:00
|
|
|
function(JSFunction *const &);
|
|
|
|
function(JSFunction &);
|
2016-10-19 02:17:29 +02:00
|
|
|
};
|
|
|
|
|
2016-11-25 09:15:27 +01:00
|
|
|
inline
|
|
|
|
function::function(JSFunction &func)
|
|
|
|
:function::root::type{&func}
|
2016-10-19 02:17:29 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-11-25 09:15:27 +01:00
|
|
|
inline
|
|
|
|
function::function(JSFunction *const &func)
|
|
|
|
:function::root::type{func}
|
2016-10-19 02:17:29 +02:00
|
|
|
{
|
2016-10-27 10:55:26 +02:00
|
|
|
if(unlikely(!this->get()))
|
|
|
|
throw internal_error("NULL function");
|
2016-10-19 02:17:29 +02:00
|
|
|
}
|
|
|
|
|
2016-11-25 09:15:27 +01:00
|
|
|
inline
|
|
|
|
function::function(const value &val)
|
|
|
|
:function{static_cast<value::handle>(val)}
|
2016-11-25 03:21:46 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-11-25 09:15:27 +01:00
|
|
|
inline
|
|
|
|
function::function(const value::handle &val)
|
|
|
|
:function::root::type
|
2016-10-19 02:17:29 +02:00
|
|
|
{
|
2016-10-27 10:55:26 +02:00
|
|
|
JS_ValueToFunction(*cx, val)
|
2016-10-19 02:17:29 +02:00
|
|
|
}
|
2016-10-23 06:08:04 +02:00
|
|
|
{
|
2016-10-27 10:55:26 +02:00
|
|
|
if(!this->get())
|
|
|
|
throw type_error("value is not a function");
|
2016-10-23 06:08:04 +02:00
|
|
|
}
|
|
|
|
|
2016-11-29 16:23:38 +01:00
|
|
|
inline
|
|
|
|
function::function(outermost_enclosing_t)
|
|
|
|
:function::root::type
|
|
|
|
{
|
|
|
|
::js::GetOutermostEnclosingFunctionOfScriptedCaller(*cx)
|
|
|
|
}
|
|
|
|
{
|
|
|
|
if(!this->get())
|
|
|
|
throw internal_error("Caller has no enclosing function");
|
|
|
|
}
|
|
|
|
|
2016-10-29 14:08:37 +02:00
|
|
|
template<class string_t>
|
2016-11-25 09:15:27 +01:00
|
|
|
function::function(JS::AutoObjectVector &stack,
|
2017-08-23 23:25:22 +02:00
|
|
|
const JS::CompileOptions &opts,
|
|
|
|
const char *const &name,
|
|
|
|
const std::vector<string_t> &args,
|
|
|
|
const string_t &src)
|
2016-11-25 09:15:27 +01:00
|
|
|
:function::root::type{}
|
2016-10-23 06:08:04 +02:00
|
|
|
{
|
2016-10-29 14:08:37 +02:00
|
|
|
std::vector<const typename string_t::value_type *> argp(args.size());
|
2016-10-27 10:55:26 +02:00
|
|
|
std::transform(begin(args), end(args), begin(argp), []
|
2016-10-29 14:08:37 +02:00
|
|
|
(const string_t &arg)
|
2016-10-27 10:55:26 +02:00
|
|
|
{
|
|
|
|
return arg.data();
|
|
|
|
});
|
|
|
|
|
|
|
|
if(!JS::CompileFunction(*cx,
|
|
|
|
stack,
|
|
|
|
opts,
|
|
|
|
name,
|
|
|
|
argp.size(),
|
|
|
|
&argp.front(),
|
|
|
|
src.data(),
|
|
|
|
src.size(),
|
|
|
|
&(*this)))
|
|
|
|
{
|
|
|
|
throw syntax_error("Failed to compile function");
|
|
|
|
}
|
2016-10-23 06:08:04 +02:00
|
|
|
}
|
|
|
|
|
2016-10-28 07:58:39 +02:00
|
|
|
template<class... args>
|
2016-11-25 09:15:27 +01:00
|
|
|
value
|
|
|
|
function::operator()(const object::handle &that,
|
|
|
|
args&&... a)
|
2016-10-27 10:55:26 +02:00
|
|
|
const
|
2016-10-19 02:17:29 +02:00
|
|
|
{
|
2016-11-25 09:15:27 +01:00
|
|
|
const vector<value> argv
|
|
|
|
{
|
2016-10-28 07:58:39 +02:00
|
|
|
std::forward<args>(a)...
|
2016-11-25 09:15:27 +01:00
|
|
|
};
|
2016-10-28 07:58:39 +02:00
|
|
|
|
2016-11-25 09:15:27 +01:00
|
|
|
const vector<value>::handle handle(argv);
|
|
|
|
return operator()(that, handle);
|
2016-10-19 02:17:29 +02:00
|
|
|
}
|
2016-10-27 10:55:26 +02:00
|
|
|
|
2016-11-25 09:15:27 +01:00
|
|
|
inline
|
|
|
|
function::operator string()
|
2016-10-23 06:08:04 +02:00
|
|
|
const
|
|
|
|
{
|
2016-10-24 07:43:10 +02:00
|
|
|
return decompile(*this, true);
|
2016-10-19 02:17:29 +02:00
|
|
|
}
|
|
|
|
|
2016-11-25 09:15:27 +01:00
|
|
|
inline
|
|
|
|
function::operator script()
|
2016-10-23 06:08:04 +02:00
|
|
|
const
|
2016-10-19 02:17:29 +02:00
|
|
|
{
|
2016-10-23 06:08:04 +02:00
|
|
|
return JS_GetFunctionScript(*cx, *this);
|
|
|
|
}
|
|
|
|
|
2016-11-25 09:15:27 +01:00
|
|
|
inline
|
|
|
|
function::operator JSObject *()
|
2016-10-23 06:08:04 +02:00
|
|
|
const
|
|
|
|
{
|
2016-10-27 10:55:26 +02:00
|
|
|
const auto ret(JS_GetFunctionObject(this->get()));
|
2016-10-23 06:08:04 +02:00
|
|
|
if(unlikely(!ret))
|
|
|
|
throw type_error("function cannot cast to Object");
|
|
|
|
|
|
|
|
return ret;
|
2016-10-19 02:17:29 +02:00
|
|
|
}
|
|
|
|
|
2016-11-29 16:23:38 +01:00
|
|
|
inline object
|
|
|
|
enclosing_scope(JSFunction *const &f)
|
|
|
|
{
|
2017-08-23 23:25:22 +02:00
|
|
|
return ::js::GetNearestEnclosingWithEnvironmentObjectForFunction(f);
|
2016-11-29 16:23:38 +01:00
|
|
|
}
|
|
|
|
|
2016-10-30 13:52:20 +01:00
|
|
|
inline bool
|
2016-11-25 03:21:46 +01:00
|
|
|
is_ctor(const JSFunction *const &f)
|
2016-10-30 13:52:20 +01:00
|
|
|
{
|
2016-11-25 03:21:46 +01:00
|
|
|
return JS_IsConstructor(const_cast<JSFunction *>(f));
|
2016-10-30 13:52:20 +01:00
|
|
|
}
|
|
|
|
|
2016-10-26 16:49:14 +02:00
|
|
|
inline uint16_t
|
2016-11-25 03:21:46 +01:00
|
|
|
arity(const JSFunction *const &f)
|
2016-10-26 16:49:14 +02:00
|
|
|
{
|
2016-11-25 03:21:46 +01:00
|
|
|
return JS_GetFunctionArity(const_cast<JSFunction *>(f));
|
2016-10-26 16:49:14 +02:00
|
|
|
}
|
|
|
|
|
2016-10-19 02:17:29 +02:00
|
|
|
inline string
|
2016-11-25 03:21:46 +01:00
|
|
|
name(const JSFunction *const &f)
|
2016-10-19 02:17:29 +02:00
|
|
|
{
|
2016-11-25 03:21:46 +01:00
|
|
|
const auto ret(JS_GetFunctionId(const_cast<JSFunction *>(f)));
|
2016-10-24 07:43:10 +02:00
|
|
|
return ret? string(ret) : string("<unnamed>");
|
|
|
|
}
|
|
|
|
|
|
|
|
inline string
|
2016-11-25 03:21:46 +01:00
|
|
|
display_name(const JSFunction *const &f)
|
2016-10-24 07:43:10 +02:00
|
|
|
{
|
2016-11-25 03:21:46 +01:00
|
|
|
const auto ret(JS_GetFunctionDisplayId(const_cast<JSFunction *>(f)));
|
2016-10-24 07:43:10 +02:00
|
|
|
return ret? string(ret) : string("<anonymous>");
|
2016-10-19 02:17:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
inline string
|
2016-10-24 07:43:10 +02:00
|
|
|
decompile(const JS::Handle<JSFunction *> &f,
|
|
|
|
const bool &pretty)
|
2016-10-19 02:17:29 +02:00
|
|
|
{
|
2016-10-24 07:43:10 +02:00
|
|
|
uint flags(0);
|
|
|
|
flags |= pretty? 0 : JS_DONT_PRETTY_PRINT;
|
|
|
|
return JS_DecompileFunction(*cx, f, flags);
|
2016-10-19 02:17:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace js
|
|
|
|
} // namespace ircd
|