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-25 07:11:15 +02:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#define HAVE_IRCD_JS_ARGS_H
|
|
|
|
|
|
|
|
namespace ircd {
|
|
|
|
namespace js {
|
|
|
|
|
|
|
|
struct args
|
|
|
|
:JS::CallArgs
|
|
|
|
{
|
2016-11-26 07:52:11 +01:00
|
|
|
operator vector<value>::handle() const { return { *this }; }
|
|
|
|
|
2016-10-28 08:32:51 +02:00
|
|
|
bool empty() const { return length() == 0; }
|
|
|
|
size_t size() const { return length(); }
|
|
|
|
bool has(const size_t &at) const { return size() > at; }
|
|
|
|
|
2016-11-10 21:20:47 +01:00
|
|
|
value at(const size_t &at) const;
|
2016-10-25 07:11:15 +02:00
|
|
|
value operator[](const size_t &at) const;
|
|
|
|
|
|
|
|
args(const unsigned &argc, JS::Value *const &argv);
|
|
|
|
};
|
|
|
|
|
|
|
|
inline
|
|
|
|
args::args(const unsigned &argc,
|
|
|
|
JS::Value *const &argv)
|
|
|
|
:JS::CallArgs{JS::CallArgsFromVp(argc, argv)}
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
inline value
|
|
|
|
args::operator[](const size_t &at)
|
|
|
|
const
|
2016-11-10 21:20:47 +01:00
|
|
|
{
|
2016-11-25 03:21:46 +01:00
|
|
|
return value{length() > at? JS::CallArgs::operator[](at) : JS::UndefinedValue()};
|
2016-11-10 21:20:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
inline value
|
|
|
|
args::at(const size_t &at)
|
|
|
|
const
|
2016-10-25 07:11:15 +02:00
|
|
|
{
|
|
|
|
if(unlikely(length() <= at))
|
|
|
|
throw range_error("Missing required argument #%zu", at);
|
|
|
|
|
|
|
|
return JS::CallArgs::operator[](at);
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace js
|
|
|
|
} // namespace ircd
|