0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-07-03 09:18:19 +02:00
construct/include/ircd/js/js.h

94 lines
2.9 KiB
C
Raw Normal View History

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-11 06:28:16 +02:00
/* This header exposes the SpiderMonkey engine API to all ye who include it.
* It also anchors all of our own developed headers and utils which use and extend their API.
*
* This header is included after the 'stdinc header' <ircd/js.h>. That header creates the
* namespace ircd::js, and does not include any 3rd party symbols. <ircd/js.h> is included
* automatically in stdinc.h.
*
* This header should be included if you intend to get dirty with the JS engine subsystem
* which requires jsapi support and can't be satisfied by the stdinc header.
*/
#pragma once
2016-11-29 16:23:38 +01:00
#ifdef RB_ENABLE_JS
#define HAVE_IRCD_JS_JS_H
2016-10-11 06:28:16 +02:00
// SpiderMonkey makes use of the `DEBUG` define in headers which must match what the bottom
// end was also compiled with. We tie that define to RB_DEBUG controlled by --enable-debug.
// From a completely clean build, configuring IRCd with --enable-debug should compile SpiderMonkey
// in debug as well.
#ifdef RB_DEBUG
#define DEBUG
#endif
2016-10-11 06:28:16 +02:00
// SpiderMonkey headers require an include basis e.g. -I/usr/include/mozjs-XX as their
// include directives are written as "jsxxx.h" or "mozilla/xxx.h" etc. Our includes are all
// <ircd/xxx.h> and shouldn't have any conflict issues.
2016-11-29 16:23:38 +01:00
#include <RB_INC_JSAPI_H
#include <RB_INC_JSFRIENDAPI_H
#include <RB_INC_JS_CONVERSIONS_H
2016-10-11 06:28:16 +02:00
// Some forward declarations for jsapi items not declared in the above includes,
// but visible to definition files making use of additional jsapi interfaces.
2017-08-23 23:04:45 +02:00
//struct JSAtom;
//namespace js { struct InterpreterFrame; }
2016-10-11 06:28:16 +02:00
namespace ircd {
namespace js {
// The ostream operator is explicitly brought from ircd:: to compete for efficient overloading,
// and prevent any unnecessary implicit conversions here.
using ircd::operator<<;
2016-10-11 06:28:16 +02:00
} // namespace js
} // namespace ircd
#include "version.h"
#include "type.h"
#include "debug.h"
#include "tracing.h"
#include "timer.h"
#include "context.h"
#include "priv.h"
#include "compartment.h"
#include "root.h"
2016-10-17 21:16:30 +02:00
#include "error.h"
#include "native.h"
#include "value.h"
#include "string.h"
2016-11-25 03:20:34 +01:00
#include "json.h"
#include "id.h"
#include "object.h"
#include "has.h"
#include "get.h"
#include "set.h"
#include "del.h"
#include "vector.h"
#include "for_each.h"
#include "script.h"
#include "module.h"
#include "args.h"
#include "function.h"
#include "function_literal.h"
#include "function_native.h"
#include "call.h"
#include "for_each.h"
#include "trap.h"
#include "trap_function.h"
#include "trap_property.h"
#include "ctor.h"
2016-10-29 14:25:59 +02:00
#include "global.h"
#include "task.h"
2016-11-29 16:23:38 +01:00
#endif // defined(RB_ENABLE_JS)