mirror of
https://github.com/matrix-construct/construct
synced 2024-11-02 11:58:53 +01:00
243 lines
5.1 KiB
C++
243 lines
5.1 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_XDR_H
|
|
|
|
namespace ircd {
|
|
namespace js {
|
|
|
|
struct xdr
|
|
{
|
|
struct header;
|
|
struct atom;
|
|
struct binding;
|
|
struct sourcecode;
|
|
struct sourcemap;
|
|
struct displayurl;
|
|
struct filename;
|
|
struct source;
|
|
struct op;
|
|
struct bytecode;
|
|
struct srcnote;
|
|
struct consts;
|
|
struct object;
|
|
|
|
const struct header *header;
|
|
const struct atom *name;
|
|
const struct binding *binding;
|
|
const struct sourcecode *sourcecode;
|
|
const struct sourcemap *sourcemap;
|
|
const struct displayurl *displayurl;
|
|
const struct filename *filename;
|
|
const struct source *source;
|
|
const struct bytecode *bytecode;
|
|
const struct srcnote *srcnote;
|
|
const struct atom *atom;
|
|
const struct consts *consts;
|
|
const struct object *object;
|
|
|
|
void for_each_atom(const std::function<void (const struct atom &)> &) const;
|
|
void for_each_name(const std::function<void (const struct atom &)> &) const;
|
|
void for_each_binding(const std::function<void (const struct binding &)> &) const;
|
|
void for_each_bytecode(const std::function<void (const struct bytecode &)> &) const;
|
|
void for_each_const(const std::function<void (const struct consts &)> &) const;
|
|
void for_each_object(const std::function<void (const struct object &)> &) const;
|
|
|
|
xdr(const uint8_t *const &buffer, const size_t &len);
|
|
};
|
|
|
|
struct xdr::header
|
|
{
|
|
uint32_t magic;
|
|
uint16_t n_args;
|
|
uint16_t n_block_locals;
|
|
uint16_t n_body_level_lexicals;
|
|
uint32_t n_vars;
|
|
uint32_t n_unaliased_vars;
|
|
uint16_t n_unaliased_body_level_lexicals;
|
|
uint32_t length;
|
|
uint32_t prologue_length;
|
|
uint32_t version;
|
|
uint32_t n_atoms;
|
|
uint32_t n_srcnotes;
|
|
uint32_t n_consts;
|
|
uint32_t n_objects;
|
|
uint32_t n_regexps;
|
|
uint32_t n_try_notes;
|
|
uint32_t n_block_scopes;
|
|
uint32_t n_yield_offsets;
|
|
uint32_t n_typesets;
|
|
uint32_t fun_length;
|
|
uint32_t script_bits;
|
|
|
|
size_t num_names() const;
|
|
size_t num_bindings() const;
|
|
}
|
|
__attribute__((packed));
|
|
|
|
struct xdr::atom
|
|
{
|
|
uint32_t encoding : 1;
|
|
uint32_t length : 31; union
|
|
{
|
|
const char latin1[0];
|
|
const char16_t two_byte[0];
|
|
};
|
|
}
|
|
__attribute__((packed));
|
|
static_assert(sizeof(struct xdr::atom) == 4, "");
|
|
|
|
struct xdr::binding
|
|
{
|
|
uint8_t aliased : 1;
|
|
uint8_t kind : 7;
|
|
}
|
|
__attribute__((packed));
|
|
static_assert(sizeof(struct xdr::binding) == 1, "");
|
|
|
|
struct xdr::sourcecode
|
|
{
|
|
uint8_t has_source;
|
|
uint8_t retrievable;
|
|
uint32_t length;
|
|
uint32_t compressed_length;
|
|
uint8_t arguments_not_included;
|
|
const char16_t code[0];
|
|
}
|
|
__attribute__((packed));
|
|
|
|
struct xdr::sourcemap
|
|
{
|
|
uint8_t have;
|
|
uint32_t len;
|
|
const char16_t url[0];
|
|
}
|
|
__attribute__((packed));
|
|
|
|
struct xdr::displayurl
|
|
{
|
|
uint8_t have;
|
|
uint32_t len;
|
|
const char16_t url[0];
|
|
}
|
|
__attribute__((packed));
|
|
|
|
struct xdr::filename
|
|
{
|
|
uint8_t have;
|
|
const char name[0];
|
|
};
|
|
|
|
struct xdr::source
|
|
{
|
|
uint32_t start;
|
|
uint32_t end;
|
|
uint32_t lineno;
|
|
uint32_t column;
|
|
uint32_t nslots;
|
|
};
|
|
|
|
struct xdr::bytecode
|
|
{
|
|
struct info;
|
|
static std::array<struct info, 256> info;
|
|
|
|
uint8_t byte;
|
|
uint8_t operand[0];
|
|
};
|
|
|
|
struct xdr::bytecode::info
|
|
{
|
|
const char *name;
|
|
uint8_t length;
|
|
uint8_t push;
|
|
uint8_t pop;
|
|
};
|
|
|
|
const struct xdr::bytecode::info &info(const struct xdr::bytecode &);
|
|
|
|
struct xdr::srcnote
|
|
{
|
|
uint8_t note;
|
|
};
|
|
|
|
struct xdr::object
|
|
{
|
|
struct block
|
|
{
|
|
};
|
|
|
|
struct with
|
|
{
|
|
};
|
|
|
|
struct function
|
|
{
|
|
uint32_t scope_index;
|
|
uint32_t first_word;
|
|
uint32_t flags_word;
|
|
//struct xdr xdr;
|
|
};
|
|
|
|
struct literal
|
|
{
|
|
uint32_t is_array;
|
|
uint32_t n_properties;
|
|
|
|
};
|
|
|
|
uint32_t classk; union
|
|
{
|
|
struct block block;
|
|
struct with with;
|
|
struct function function;
|
|
struct literal literal;
|
|
};
|
|
};
|
|
|
|
size_t length(const struct xdr::object::block &);
|
|
size_t length(const struct xdr::object::with &);
|
|
size_t length(const struct xdr::object::function &);
|
|
size_t length(const struct xdr::object::literal &);
|
|
size_t length(const struct xdr::object &);
|
|
|
|
struct xdr::consts
|
|
{
|
|
uint32_t tag; union
|
|
{
|
|
uint32_t u32;
|
|
double dbl;
|
|
struct xdr::atom atom;
|
|
struct xdr::object object;
|
|
};
|
|
};
|
|
|
|
size_t length(const struct xdr::consts &consts);
|
|
|
|
} // namespace js
|
|
} // namespace ircd
|
|
|
|
inline const struct ircd::js::xdr::bytecode::info &
|
|
ircd::js::info(const struct xdr::bytecode &bytecode)
|
|
{
|
|
return bytecode.info[bytecode.byte];
|
|
}
|