0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-29 04:08:54 +02:00

modules: Add preliminary console to support js-style console.log() et al.

This commit is contained in:
Jason Volk 2016-10-26 02:40:55 -07:00
parent 4127367a46
commit 53f355e41d
2 changed files with 72 additions and 0 deletions

View file

@ -40,6 +40,7 @@ conf_module_LTLIBRARIES = \
moduledir=@moduledir@
future_la_SOURCES = future.cc
require_la_SOURCES = require.cc
console_la_SOURCES = console.cc
m_host_la_SOURCES = m_host.cc
m_get_la_SOURCES = m_get.cc
#m_ban_la_SOURCES = m_ban.cc
@ -129,6 +130,7 @@ m_get_la_SOURCES = m_get.cc
module_LTLIBRARIES = \
future.la \
require.la \
console.la \
m_host.la \
m_get.la

70
modules/console.cc Normal file
View file

@ -0,0 +1,70 @@
/*
* 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.
*/
#include <ircd/js/js.h>
namespace ircd {
namespace js {
struct console
:trap
{
using trap::trap;
}
static console{"console"};
struct console_log
:trap::function
{
value on_call(object::handle obj, value::handle _this, const args &args) override
{
ircd::js::log.info("%s", string(args[0]).c_str());
return {};
}
using trap::function::function;
}
static console_log{console, "log"};
struct console_error
:trap::function
{
value on_call(object::handle obj, value::handle _this, const args &args) override
{
ircd::js::log.error("%s", string(args[0]).c_str());
return {};
}
using trap::function::function;
}
static console_error{console, "error"};
} // namespace js
} // namespace ircd
using namespace ircd::js;
using namespace ircd;
mapi::header IRCD_MODULE
{
"Provides simple I/O for debugging similar to that found in web browsers.",
mapi::NO_FLAGS
};