2018-02-06 21:40:41 +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.
|
|
|
|
|
2018-02-06 22:03:38 +01:00
|
|
|
#include <ircd/util/params.h>
|
|
|
|
|
2018-02-06 21:40:41 +01:00
|
|
|
using namespace ircd;
|
|
|
|
|
2018-04-06 05:01:13 +02:00
|
|
|
IRCD_EXCEPTION_HIDENAME(ircd::error, bad_command)
|
|
|
|
|
2018-03-26 08:23:30 +02:00
|
|
|
static void init_cmds();
|
2018-03-26 02:26:39 +02:00
|
|
|
|
|
|
|
mapi::header
|
|
|
|
IRCD_MODULE
|
2018-02-06 21:40:41 +01:00
|
|
|
{
|
2018-03-26 08:23:30 +02:00
|
|
|
"IRCd terminal console: runtime-reloadable self-reflecting command library.", []
|
|
|
|
{
|
|
|
|
init_cmds();
|
|
|
|
}
|
2018-03-26 02:26:39 +02:00
|
|
|
};
|
|
|
|
|
2018-05-23 09:46:21 +02:00
|
|
|
conf::item<seconds>
|
|
|
|
default_synapse
|
|
|
|
{
|
|
|
|
{ "name", "ircd.console.timeout" },
|
|
|
|
{ "default", 45L },
|
|
|
|
};
|
|
|
|
|
2018-04-06 05:01:13 +02:00
|
|
|
/// The first parameter for all commands. This aggregates general options
|
|
|
|
/// passed to commands as well as providing the output facility with an
|
|
|
|
/// ostream interface. Commands should only send output to this object. The
|
|
|
|
/// command's input line is not included here; it's the second param to a cmd.
|
|
|
|
struct opt
|
|
|
|
{
|
|
|
|
std::ostream &out;
|
|
|
|
bool html {false};
|
2018-05-23 09:46:21 +02:00
|
|
|
seconds timeout {default_synapse};
|
2018-04-27 05:39:54 +02:00
|
|
|
string_view special;
|
2018-04-06 05:01:13 +02:00
|
|
|
|
|
|
|
operator std::ostream &()
|
|
|
|
{
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class T> auto &operator<<(T&& t)
|
|
|
|
{
|
|
|
|
out << std::forward<T>(t);
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto &operator<<(std::ostream &(*manip)(std::ostream &))
|
|
|
|
{
|
|
|
|
return manip(out);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/// Instances of this object are generated when this module reads its
|
|
|
|
/// symbols to find commands. These instances are then stored in the
|
|
|
|
/// cmds set for lookup and iteration.
|
2018-03-26 02:26:39 +02:00
|
|
|
struct cmd
|
|
|
|
{
|
|
|
|
using is_transparent = void;
|
|
|
|
|
|
|
|
static constexpr const size_t &PATH_MAX
|
|
|
|
{
|
|
|
|
8
|
|
|
|
};
|
|
|
|
|
|
|
|
std::string name;
|
|
|
|
std::string symbol;
|
|
|
|
mods::sym_ptr ptr;
|
|
|
|
|
|
|
|
bool operator()(const cmd &a, const cmd &b) const
|
|
|
|
{
|
|
|
|
return a.name < b.name;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool operator()(const string_view &a, const cmd &b) const
|
|
|
|
{
|
|
|
|
return a < b.name;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool operator()(const cmd &a, const string_view &b) const
|
|
|
|
{
|
|
|
|
return a.name < b;
|
|
|
|
}
|
|
|
|
|
|
|
|
cmd(std::string name, std::string symbol)
|
|
|
|
:name{std::move(name)}
|
|
|
|
,symbol{std::move(symbol)}
|
|
|
|
,ptr{IRCD_MODULE, this->symbol}
|
|
|
|
{}
|
|
|
|
|
|
|
|
cmd() = default;
|
|
|
|
cmd(cmd &&) = delete;
|
|
|
|
cmd(const cmd &) = delete;
|
2018-02-06 21:40:41 +01:00
|
|
|
};
|
|
|
|
|
2018-03-26 02:26:39 +02:00
|
|
|
std::set<cmd, cmd>
|
|
|
|
cmds;
|
|
|
|
|
|
|
|
void
|
2018-03-26 08:23:30 +02:00
|
|
|
init_cmds()
|
2018-03-26 02:26:39 +02:00
|
|
|
{
|
|
|
|
auto symbols
|
|
|
|
{
|
|
|
|
mods::symbols(mods::path(IRCD_MODULE))
|
|
|
|
};
|
|
|
|
|
|
|
|
for(std::string &symbol : symbols)
|
|
|
|
{
|
|
|
|
// elide lots of grief by informally finding this first
|
|
|
|
if(!has(symbol, "console_cmd"))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
thread_local char buf[1024];
|
|
|
|
const string_view demangled
|
|
|
|
{
|
|
|
|
demangle(buf, symbol)
|
|
|
|
};
|
|
|
|
|
|
|
|
std::string command
|
|
|
|
{
|
|
|
|
replace(between(demangled, "__", "("), "__", " ")
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto iit
|
|
|
|
{
|
|
|
|
cmds.emplace(std::move(command), std::move(symbol))
|
|
|
|
};
|
|
|
|
|
|
|
|
if(!iit.second)
|
|
|
|
throw error
|
|
|
|
{
|
|
|
|
"Command '%s' already exists", command
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const cmd *
|
|
|
|
find_cmd(const string_view &line)
|
|
|
|
{
|
|
|
|
const size_t elems
|
|
|
|
{
|
|
|
|
std::min(token_count(line, ' '), cmd::PATH_MAX)
|
|
|
|
};
|
|
|
|
|
|
|
|
for(size_t e(elems+1); e > 0; --e)
|
|
|
|
{
|
|
|
|
const auto name
|
|
|
|
{
|
|
|
|
tokens_before(line, ' ', e)
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto it{cmds.lower_bound(name)};
|
|
|
|
if(it == end(cmds) || it->name != name)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
return &(*it);
|
|
|
|
}
|
|
|
|
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Main command dispatch
|
|
|
|
//
|
|
|
|
|
2018-03-26 09:04:47 +02:00
|
|
|
int console_command_derived(opt &, const string_view &line);
|
2018-02-06 21:40:41 +01:00
|
|
|
|
2018-04-06 05:01:13 +02:00
|
|
|
/// This function may be linked and called by those wishing to execute a
|
|
|
|
/// command. Output from the command will be appended to the provided ostream.
|
|
|
|
/// The input to the command is passed in `line`. Since `struct opt` is not
|
|
|
|
/// accessible outside of this module, all public options are passed via a
|
|
|
|
/// plaintext string which is parsed here.
|
2018-02-06 21:40:41 +01:00
|
|
|
extern "C" int
|
2018-03-26 09:12:16 +02:00
|
|
|
console_command(std::ostream &out,
|
|
|
|
const string_view &line,
|
|
|
|
const string_view &opts)
|
2018-02-06 21:40:41 +01:00
|
|
|
try
|
|
|
|
{
|
2018-03-26 09:33:26 +02:00
|
|
|
opt opt
|
|
|
|
{
|
|
|
|
out,
|
|
|
|
has(opts, "html")
|
|
|
|
};
|
|
|
|
|
2018-03-26 02:26:39 +02:00
|
|
|
const cmd *const cmd
|
2018-02-06 21:40:41 +01:00
|
|
|
{
|
2018-03-26 02:26:39 +02:00
|
|
|
find_cmd(line)
|
2018-02-06 21:40:41 +01:00
|
|
|
};
|
|
|
|
|
2018-03-26 02:26:39 +02:00
|
|
|
if(!cmd)
|
2018-03-26 09:04:47 +02:00
|
|
|
return console_command_derived(opt, line);
|
2018-02-22 01:00:07 +01:00
|
|
|
|
2018-03-26 02:26:39 +02:00
|
|
|
const auto args
|
|
|
|
{
|
|
|
|
lstrip(split(line, cmd->name).second, ' ')
|
|
|
|
};
|
2018-03-22 22:44:54 +01:00
|
|
|
|
2018-03-26 02:26:39 +02:00
|
|
|
const auto &ptr{cmd->ptr};
|
2018-03-26 09:04:47 +02:00
|
|
|
using prototype = bool (struct opt &, const string_view &);
|
|
|
|
return ptr.operator()<prototype>(opt, args);
|
2018-03-26 02:26:39 +02:00
|
|
|
}
|
2018-04-06 05:12:21 +02:00
|
|
|
catch(const params::error &e)
|
|
|
|
{
|
|
|
|
out << e.what() << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
2018-03-26 02:26:39 +02:00
|
|
|
catch(const bad_command &e)
|
|
|
|
{
|
|
|
|
return -2;
|
|
|
|
}
|
2018-02-06 21:40:41 +01:00
|
|
|
|
2018-03-26 02:26:39 +02:00
|
|
|
//
|
|
|
|
// Help
|
|
|
|
//
|
2018-02-06 22:18:30 +01:00
|
|
|
|
2018-03-26 02:26:39 +02:00
|
|
|
bool
|
2018-03-26 09:04:47 +02:00
|
|
|
console_cmd__help(opt &out, const string_view &line)
|
2018-03-26 02:26:39 +02:00
|
|
|
{
|
|
|
|
const auto cmd
|
|
|
|
{
|
|
|
|
find_cmd(line)
|
|
|
|
};
|
2018-02-08 05:17:26 +01:00
|
|
|
|
2018-03-26 02:26:39 +02:00
|
|
|
if(cmd)
|
|
|
|
{
|
|
|
|
out << "No help available for '" << cmd->name << "'."
|
|
|
|
<< std::endl;
|
2018-02-06 23:42:00 +01:00
|
|
|
|
2018-03-26 08:23:30 +02:00
|
|
|
//TODO: help string symbol map
|
2018-03-26 02:26:39 +02:00
|
|
|
}
|
2018-02-08 19:44:37 +01:00
|
|
|
|
2018-03-26 02:26:39 +02:00
|
|
|
out << "Commands available: \n"
|
|
|
|
<< std::endl;
|
2018-02-06 23:42:00 +01:00
|
|
|
|
2018-03-26 02:26:39 +02:00
|
|
|
const size_t elems
|
|
|
|
{
|
|
|
|
std::min(token_count(line, ' '), cmd::PATH_MAX)
|
|
|
|
};
|
2018-02-09 06:00:50 +01:00
|
|
|
|
2018-03-26 02:26:39 +02:00
|
|
|
for(size_t e(elems+1); e > 0; --e)
|
|
|
|
{
|
|
|
|
const auto name
|
|
|
|
{
|
|
|
|
tokens_before(line, ' ', e)
|
|
|
|
};
|
2018-02-19 23:37:56 +01:00
|
|
|
|
2018-03-26 02:26:39 +02:00
|
|
|
string_view last;
|
|
|
|
auto it{cmds.lower_bound(name)};
|
|
|
|
if(it == end(cmds))
|
|
|
|
continue;
|
2018-02-22 01:00:07 +01:00
|
|
|
|
2018-03-26 02:26:39 +02:00
|
|
|
for(; it != end(cmds); ++it)
|
2018-02-22 01:00:07 +01:00
|
|
|
{
|
2018-03-26 02:26:39 +02:00
|
|
|
if(!startswith(it->name, name))
|
|
|
|
break;
|
|
|
|
|
|
|
|
const auto prefix
|
2018-02-22 01:00:07 +01:00
|
|
|
{
|
2018-03-26 02:26:39 +02:00
|
|
|
tokens_before(it->name, ' ', e)
|
|
|
|
};
|
2018-02-22 01:00:07 +01:00
|
|
|
|
2018-03-26 02:26:39 +02:00
|
|
|
if(last == prefix)
|
|
|
|
continue;
|
2018-02-22 01:00:07 +01:00
|
|
|
|
2018-09-04 09:51:09 +02:00
|
|
|
if(name && prefix != name && !startswith(lstrip(prefix, name), ' '))
|
|
|
|
break;
|
2018-09-02 07:17:48 +02:00
|
|
|
|
2018-03-26 02:26:39 +02:00
|
|
|
last = prefix;
|
|
|
|
const auto suffix
|
|
|
|
{
|
|
|
|
e > 1? tokens_after(prefix, ' ', e - 2) : prefix
|
|
|
|
};
|
2018-02-22 01:00:07 +01:00
|
|
|
|
2018-03-26 02:26:39 +02:00
|
|
|
if(empty(suffix))
|
|
|
|
continue;
|
|
|
|
|
2018-03-26 08:23:30 +02:00
|
|
|
out << suffix << std::endl;
|
2018-02-22 01:00:07 +01:00
|
|
|
}
|
2018-03-26 02:26:39 +02:00
|
|
|
|
|
|
|
break;
|
2018-02-06 21:40:41 +01:00
|
|
|
}
|
|
|
|
|
2018-03-26 02:26:39 +02:00
|
|
|
return true;
|
2018-02-06 21:40:41 +01:00
|
|
|
}
|
|
|
|
|
2018-02-22 01:00:07 +01:00
|
|
|
//
|
|
|
|
// Test trigger stub
|
|
|
|
//
|
|
|
|
|
|
|
|
bool
|
2018-03-26 09:04:47 +02:00
|
|
|
console_cmd__test(opt &out, const string_view &line)
|
2018-02-22 01:00:07 +01:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-03-26 02:26:39 +02:00
|
|
|
//
|
|
|
|
// Derived commands
|
|
|
|
//
|
|
|
|
|
2018-05-23 08:02:37 +02:00
|
|
|
int console_command_numeric(opt &, const string_view &line);
|
2018-04-21 08:53:04 +02:00
|
|
|
bool console_id__user(opt &, const m::user::id &id, const string_view &line);
|
2018-05-11 11:08:36 +02:00
|
|
|
bool console_id__node(opt &, const m::node::id &id, const string_view &line);
|
2018-04-21 08:53:04 +02:00
|
|
|
bool console_id__room(opt &, const m::room::id &id, const string_view &line);
|
|
|
|
bool console_id__event(opt &, const m::event::id &id, const string_view &line);
|
2018-03-26 02:26:39 +02:00
|
|
|
bool console_json(const json::object &);
|
|
|
|
|
|
|
|
int
|
2018-03-26 09:04:47 +02:00
|
|
|
console_command_derived(opt &out, const string_view &line)
|
2018-02-22 01:00:07 +01:00
|
|
|
{
|
2018-05-23 08:02:37 +02:00
|
|
|
const string_view id
|
|
|
|
{
|
|
|
|
token(line, ' ', 0)
|
|
|
|
};
|
|
|
|
|
|
|
|
// First check if the line starts with a number, this is a special case
|
|
|
|
// sent to a custom dispatcher (which right now is specifically for the
|
2018-06-02 18:07:46 +02:00
|
|
|
// event stager suite).
|
2018-05-23 08:02:37 +02:00
|
|
|
if(try_lex_cast<int>(id))
|
|
|
|
return console_command_numeric(out, line);
|
|
|
|
|
2018-03-26 02:26:39 +02:00
|
|
|
if(m::has_sigil(id)) switch(m::sigil(id))
|
2018-02-22 01:00:07 +01:00
|
|
|
{
|
2018-03-26 02:26:39 +02:00
|
|
|
case m::id::EVENT:
|
2018-04-21 08:53:04 +02:00
|
|
|
return console_id__event(out, id, line);
|
2018-03-26 02:26:39 +02:00
|
|
|
|
|
|
|
case m::id::ROOM:
|
2018-04-21 08:53:04 +02:00
|
|
|
return console_id__room(out, id, line);
|
2018-03-26 02:26:39 +02:00
|
|
|
|
2018-05-11 11:08:36 +02:00
|
|
|
case m::id::NODE:
|
|
|
|
return console_id__node(out, id, line);
|
|
|
|
|
2018-03-26 02:26:39 +02:00
|
|
|
case m::id::USER:
|
2018-04-21 08:53:04 +02:00
|
|
|
return console_id__user(out, id, line);
|
2018-03-26 02:26:39 +02:00
|
|
|
|
2018-09-13 17:18:31 +02:00
|
|
|
case m::id::ROOM_ALIAS:
|
|
|
|
{
|
|
|
|
const auto room_id{m::room_id(id)};
|
|
|
|
return console_id__room(out, room_id, line);
|
|
|
|
}
|
|
|
|
|
2018-03-26 02:26:39 +02:00
|
|
|
default:
|
|
|
|
break;
|
2018-02-22 01:00:07 +01:00
|
|
|
}
|
|
|
|
|
2018-03-26 02:26:39 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Command by JSON
|
|
|
|
//
|
|
|
|
|
|
|
|
bool
|
|
|
|
console_json(const json::object &object)
|
|
|
|
{
|
|
|
|
if(!object.has("type"))
|
2018-02-22 01:00:07 +01:00
|
|
|
return true;
|
2018-03-26 02:26:39 +02:00
|
|
|
|
2018-04-13 23:47:17 +02:00
|
|
|
//return console_cmd__exec__event(object);
|
|
|
|
return true;
|
2018-02-22 01:00:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Command by ID
|
|
|
|
//
|
|
|
|
|
2018-03-22 22:44:54 +01:00
|
|
|
//
|
2018-03-26 02:26:39 +02:00
|
|
|
// misc
|
2018-03-22 22:44:54 +01:00
|
|
|
//
|
|
|
|
|
|
|
|
bool
|
2018-03-26 09:04:47 +02:00
|
|
|
console_cmd__debug(opt &out, const string_view &line)
|
2018-03-22 22:44:54 +01:00
|
|
|
{
|
2018-03-26 02:26:39 +02:00
|
|
|
if(!RB_DEBUG_LEVEL)
|
2018-03-22 22:44:54 +01:00
|
|
|
{
|
2018-03-26 02:26:39 +02:00
|
|
|
out << "Debugging is not compiled in." << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
2018-03-22 22:44:54 +01:00
|
|
|
|
2018-03-26 02:26:39 +02:00
|
|
|
if(log::console_enabled(log::DEBUG))
|
2018-03-22 22:44:54 +01:00
|
|
|
{
|
2018-03-26 02:26:39 +02:00
|
|
|
out << "Turning off debuglog..." << std::endl;
|
|
|
|
log::console_disable(log::DEBUG);
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
out << "Turning on debuglog..." << std::endl;
|
|
|
|
log::console_enable(log::DEBUG);
|
|
|
|
return true;
|
2018-03-22 22:44:54 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-24 00:55:13 +02:00
|
|
|
//
|
|
|
|
// log
|
|
|
|
//
|
|
|
|
|
2018-04-24 01:11:30 +02:00
|
|
|
bool
|
|
|
|
console_cmd__log(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
for(const auto *const &log : log::log::list)
|
|
|
|
out << (log->snote? log->snote : '-')
|
|
|
|
<< " " << std::setw(8) << std::left << log->name
|
|
|
|
<< " "
|
|
|
|
<< (log->fmasked? " FILE" : "")
|
|
|
|
<< (log->cmasked? " CONSOLE" : "")
|
|
|
|
<< std::endl;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-04-24 01:09:53 +02:00
|
|
|
bool
|
|
|
|
console_cmd__log__level(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"level",
|
|
|
|
}};
|
|
|
|
|
2018-05-22 02:16:02 +02:00
|
|
|
if(!param.count())
|
|
|
|
{
|
|
|
|
for(int i(0); i < num_of<log::facility>(); ++i)
|
|
|
|
if(i > RB_LOG_LEVEL)
|
|
|
|
out << "[\033[1;40m-\033[0m]: " << reflect(log::facility(i)) << std::endl;
|
|
|
|
else if(console_enabled(log::facility(i)))
|
|
|
|
out << "[\033[1;42m+\033[0m]: " << reflect(log::facility(i)) << std::endl;
|
|
|
|
else
|
|
|
|
out << "[\033[1;41m-\033[0m]: " << reflect(log::facility(i)) << std::endl;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-04-24 01:09:53 +02:00
|
|
|
const int level
|
|
|
|
{
|
|
|
|
param.at<int>(0)
|
|
|
|
};
|
|
|
|
|
|
|
|
for(int i(0); i < num_of<log::facility>(); ++i)
|
2018-05-22 02:09:37 +02:00
|
|
|
if(i > RB_LOG_LEVEL)
|
|
|
|
{
|
|
|
|
out << "[\033[1;40m-\033[0m]: " << reflect(log::facility(i)) << std::endl;
|
|
|
|
}
|
|
|
|
else if(i <= level)
|
2018-04-24 01:09:53 +02:00
|
|
|
{
|
|
|
|
console_enable(log::facility(i));
|
|
|
|
out << "[\033[1;42m+\033[0m]: " << reflect(log::facility(i)) << std::endl;
|
|
|
|
} else {
|
|
|
|
console_disable(log::facility(i));
|
|
|
|
out << "[\033[1;41m-\033[0m]: " << reflect(log::facility(i)) << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-04-20 21:48:25 +02:00
|
|
|
bool
|
2018-04-24 00:55:13 +02:00
|
|
|
console_cmd__log__mask(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
thread_local string_view list[64];
|
|
|
|
const auto &count
|
|
|
|
{
|
|
|
|
tokens(line, ' ', list)
|
|
|
|
};
|
|
|
|
|
|
|
|
log::console_mask({list, count});
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
console_cmd__log__unmask(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
thread_local string_view list[64];
|
|
|
|
const auto &count
|
|
|
|
{
|
|
|
|
tokens(line, ' ', list)
|
|
|
|
};
|
|
|
|
|
|
|
|
log::console_unmask({list, count});
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
console_cmd__log__mark(opt &out, const string_view &line)
|
2018-04-20 21:48:25 +02:00
|
|
|
{
|
2018-04-24 00:55:13 +02:00
|
|
|
const string_view &msg
|
|
|
|
{
|
|
|
|
empty(line)?
|
|
|
|
"marked by console":
|
|
|
|
line
|
|
|
|
};
|
2018-04-20 21:48:25 +02:00
|
|
|
|
2018-04-24 00:55:13 +02:00
|
|
|
log::mark
|
|
|
|
{
|
|
|
|
msg
|
|
|
|
};
|
|
|
|
|
|
|
|
out << "The log files were marked with '" << msg
|
2018-04-20 21:48:25 +02:00
|
|
|
<< "'"
|
|
|
|
<< std::endl;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-04-24 00:55:13 +02:00
|
|
|
bool
|
|
|
|
console_cmd__mark(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
return console_cmd__log__mark(out, line);
|
|
|
|
}
|
|
|
|
|
2018-04-20 21:43:58 +02:00
|
|
|
//
|
|
|
|
// info
|
|
|
|
//
|
|
|
|
|
|
|
|
bool
|
|
|
|
console_cmd__info(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
info::dump();
|
|
|
|
|
|
|
|
out << "Daemon information was written to the log."
|
|
|
|
<< std::endl;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-09-17 03:32:46 +02:00
|
|
|
bool
|
|
|
|
console_cmd__uptime(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const seconds uptime
|
|
|
|
{
|
|
|
|
ircd::uptime()
|
|
|
|
};
|
|
|
|
|
|
|
|
const hours uptime_h
|
|
|
|
{
|
|
|
|
uptime.count() / (60L * 60L)
|
|
|
|
};
|
|
|
|
|
|
|
|
const minutes uptime_m
|
|
|
|
{
|
|
|
|
(uptime.count() / 60L) % 60L
|
|
|
|
};
|
|
|
|
|
|
|
|
const minutes uptime_s
|
|
|
|
{
|
|
|
|
uptime.count() % 60L
|
|
|
|
};
|
|
|
|
|
|
|
|
out << "Running for ";
|
|
|
|
|
|
|
|
if(uptime_h.count())
|
|
|
|
out << uptime_h.count() << " hours ";
|
|
|
|
|
|
|
|
if(uptime_m.count())
|
|
|
|
out << uptime_m.count() << " minutes ";
|
|
|
|
|
|
|
|
out << uptime_s.count() << " seconds." << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-09-17 06:38:34 +02:00
|
|
|
bool
|
|
|
|
console_cmd__date(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
out << ircd::time() << std::endl;
|
|
|
|
|
|
|
|
thread_local char buf[128];
|
|
|
|
const auto now{ircd::now<system_point>()};
|
|
|
|
out << timef(buf, now, ircd::localtime) << std::endl;
|
|
|
|
out << timef(buf, now) << " (UTC)" << std::endl;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-05-25 09:54:29 +02:00
|
|
|
//
|
|
|
|
// mem
|
|
|
|
//
|
|
|
|
|
|
|
|
bool
|
|
|
|
console_cmd__mem(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
auto &this_thread
|
|
|
|
{
|
|
|
|
ircd::allocator::profile::this_thread
|
|
|
|
};
|
|
|
|
|
|
|
|
out << "IRCd thread allocations:" << std::endl
|
2018-06-09 23:41:35 +02:00
|
|
|
<< "alloc count: " << this_thread.alloc_count << std::endl
|
|
|
|
<< "freed count: " << this_thread.free_count << std::endl
|
|
|
|
<< "alloc bytes: " << this_thread.alloc_bytes << std::endl
|
|
|
|
<< "freed bytes: " << this_thread.free_bytes << std::endl
|
2018-06-09 23:28:10 +02:00
|
|
|
<< std::endl;
|
|
|
|
|
|
|
|
thread_local char buf[1024];
|
|
|
|
out << "malloc() information:" << std::endl
|
|
|
|
<< allocator::info(buf) << std::endl
|
2018-05-25 09:54:29 +02:00
|
|
|
;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-09-15 09:48:57 +02:00
|
|
|
//
|
|
|
|
// env
|
|
|
|
//
|
|
|
|
|
|
|
|
bool
|
|
|
|
console_cmd__env(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
if(!::environ)
|
|
|
|
throw error
|
|
|
|
{
|
|
|
|
"Env variable list not available."
|
|
|
|
};
|
|
|
|
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"key"
|
|
|
|
}};
|
|
|
|
|
|
|
|
if(param["key"] == "*")
|
|
|
|
{
|
|
|
|
for(const char *const *e(::environ); *e; ++e)
|
|
|
|
out << *e << std::endl;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(param["key"])
|
|
|
|
{
|
|
|
|
out << util::getenv(param["key"]) << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
for(const char *const *e(::environ); *e; ++e)
|
|
|
|
{
|
|
|
|
string_view kv[2];
|
|
|
|
tokens(*e, '=', kv);
|
|
|
|
if(!startswith(kv[0], "IRCD_") && !startswith(kv[0], "ircd_"))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
out << std::setw(64) << std::left << kv[0]
|
|
|
|
<< " :" << kv[1]
|
|
|
|
<< std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-03-26 02:26:39 +02:00
|
|
|
//
|
|
|
|
// conf
|
|
|
|
//
|
|
|
|
|
2018-03-22 22:44:54 +01:00
|
|
|
bool
|
2018-03-26 09:04:47 +02:00
|
|
|
console_cmd__conf__list(opt &out, const string_view &line)
|
2018-03-22 22:44:54 +01:00
|
|
|
{
|
|
|
|
thread_local char val[4_KiB];
|
|
|
|
for(const auto &item : conf::items)
|
|
|
|
out
|
2018-05-09 01:07:27 +02:00
|
|
|
<< std::setw(48) << std::left << std::setfill('_') << item.first
|
|
|
|
<< " " << item.second->get(val)
|
2018-03-22 22:44:54 +01:00
|
|
|
<< std::endl;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-04-24 01:39:29 +02:00
|
|
|
bool
|
|
|
|
console_cmd__conf(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
return console_cmd__conf__list(out, line);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
console_cmd__conf__set(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"key", "value"
|
|
|
|
}};
|
|
|
|
|
|
|
|
const auto &key
|
|
|
|
{
|
|
|
|
param.at(0)
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto &val
|
|
|
|
{
|
|
|
|
param.at(1)
|
|
|
|
};
|
|
|
|
|
|
|
|
using prototype = m::event::id::buf (const m::user::id &,
|
|
|
|
const string_view &key,
|
|
|
|
const string_view &val);
|
|
|
|
|
2018-09-14 16:39:11 +02:00
|
|
|
static mods::import<prototype> set_conf_item
|
2018-04-24 01:39:29 +02:00
|
|
|
{
|
|
|
|
"s_conf", "set_conf_item"
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto event_id
|
|
|
|
{
|
|
|
|
set_conf_item(m::me, key, val)
|
|
|
|
};
|
|
|
|
|
|
|
|
out << event_id << " <- " << key << " = " << val << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
console_cmd__conf__get(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"key"
|
|
|
|
}};
|
|
|
|
|
|
|
|
const auto &key
|
|
|
|
{
|
|
|
|
param.at(0)
|
|
|
|
};
|
|
|
|
|
|
|
|
thread_local char val[4_KiB];
|
|
|
|
for(const auto &item : conf::items)
|
|
|
|
{
|
|
|
|
if(item.first != key)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
out << std::setw(48) << std::right << item.first
|
|
|
|
<< " = " << item.second->get(val)
|
|
|
|
<< std::endl;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
throw m::NOT_FOUND
|
|
|
|
{
|
|
|
|
"Conf item '%s' not found", key
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-05-26 05:37:33 +02:00
|
|
|
bool
|
|
|
|
console_cmd__conf__rehash(opt &out, const string_view &line)
|
|
|
|
{
|
2018-09-03 06:13:03 +02:00
|
|
|
using prototype = void (const bool &);
|
2018-09-14 16:39:11 +02:00
|
|
|
static mods::import<prototype> rehash_conf
|
2018-05-26 05:37:33 +02:00
|
|
|
{
|
|
|
|
"s_conf", "rehash_conf"
|
|
|
|
};
|
|
|
|
|
2018-09-03 06:13:03 +02:00
|
|
|
rehash_conf(false);
|
|
|
|
out << "Saved runtime conf items"
|
|
|
|
<< " from the current state into !conf:" << my_host()
|
|
|
|
<< std::endl;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
console_cmd__conf__reload(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
using prototype = void ();
|
2018-09-14 16:39:11 +02:00
|
|
|
static mods::import<prototype> reload_conf
|
2018-09-03 06:13:03 +02:00
|
|
|
{
|
|
|
|
"s_conf", "reload_conf"
|
|
|
|
};
|
|
|
|
|
|
|
|
reload_conf();
|
2018-05-26 05:37:33 +02:00
|
|
|
out << "Updated any runtime conf items"
|
|
|
|
<< " from the current state in !conf:" << my_host()
|
|
|
|
<< std::endl;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-09-03 06:13:03 +02:00
|
|
|
bool
|
|
|
|
console_cmd__conf__reset(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
using prototype = void ();
|
2018-09-14 16:39:11 +02:00
|
|
|
static mods::import<prototype> refresh_conf
|
2018-09-03 06:13:03 +02:00
|
|
|
{
|
|
|
|
"s_conf", "refresh_conf"
|
|
|
|
};
|
|
|
|
|
|
|
|
refresh_conf();
|
|
|
|
out << "All conf items which execute code upon a change"
|
|
|
|
<< " have done so with the latest runtime value."
|
|
|
|
<< std::endl;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-04-27 00:21:33 +02:00
|
|
|
//
|
|
|
|
// hook
|
|
|
|
//
|
|
|
|
|
|
|
|
bool
|
|
|
|
console_cmd__hook__list(opt &out, const string_view &line)
|
|
|
|
{
|
2018-05-27 07:05:56 +02:00
|
|
|
for(const auto &site : m::hook::base::site::list)
|
2018-04-27 00:21:33 +02:00
|
|
|
{
|
2018-05-07 06:53:23 +02:00
|
|
|
out << std::setw(24) << std::left << site->name()
|
2018-04-27 00:21:33 +02:00
|
|
|
<< std::endl;
|
|
|
|
|
2018-05-07 06:53:23 +02:00
|
|
|
out << string_view{site->feature}
|
2018-04-27 00:21:33 +02:00
|
|
|
<< std::endl;
|
|
|
|
|
2018-05-07 06:53:23 +02:00
|
|
|
for(const auto &hookp : site->hooks)
|
2018-04-27 00:21:33 +02:00
|
|
|
out << (hookp->registered? '+' : '-')
|
|
|
|
<< " " << string_view{hookp->feature}
|
|
|
|
<< std::endl;
|
|
|
|
|
|
|
|
out << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
console_cmd__hook(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
return console_cmd__hook__list(out, line);
|
|
|
|
}
|
|
|
|
|
2018-02-06 21:40:41 +01:00
|
|
|
//
|
|
|
|
// mod
|
|
|
|
//
|
|
|
|
|
|
|
|
bool
|
2018-04-14 09:51:30 +02:00
|
|
|
console_cmd__mod(opt &out, const string_view &line)
|
2018-02-06 21:40:41 +01:00
|
|
|
{
|
2018-02-19 23:49:42 +01:00
|
|
|
auto avflist(mods::available());
|
|
|
|
const auto b(std::make_move_iterator(begin(avflist)));
|
|
|
|
const auto e(std::make_move_iterator(end(avflist)));
|
|
|
|
std::vector<std::string> available(b, e);
|
|
|
|
std::sort(begin(available), end(available));
|
|
|
|
|
|
|
|
for(const auto &mod : available)
|
2018-02-06 21:40:41 +01:00
|
|
|
{
|
|
|
|
const auto loadstr
|
|
|
|
{
|
2018-04-14 09:51:30 +02:00
|
|
|
mods::loaded(mod)? "\033[1;32;42m+\033[0m" : " "
|
2018-02-06 21:40:41 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
out << "[" << loadstr << "] " << mod << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-04-14 09:51:30 +02:00
|
|
|
bool
|
|
|
|
console_cmd__mod__path(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
for(const auto &path : ircd::mods::paths)
|
|
|
|
out << path << std::endl;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-02-06 21:40:41 +01:00
|
|
|
bool
|
2018-03-26 09:04:47 +02:00
|
|
|
console_cmd__mod__syms(opt &out, const string_view &line)
|
2018-02-06 21:40:41 +01:00
|
|
|
{
|
|
|
|
const std::string path
|
|
|
|
{
|
|
|
|
token(line, ' ', 0)
|
|
|
|
};
|
|
|
|
|
|
|
|
const std::vector<std::string> symbols
|
|
|
|
{
|
|
|
|
mods::symbols(path)
|
|
|
|
};
|
|
|
|
|
|
|
|
for(const auto &sym : symbols)
|
|
|
|
out << sym << std::endl;
|
|
|
|
|
|
|
|
out << " -- " << symbols.size() << " symbols in " << path << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-02-19 09:37:19 +01:00
|
|
|
bool
|
2018-03-26 09:04:47 +02:00
|
|
|
console_cmd__mod__reload(opt &out, const string_view &line)
|
2018-02-19 09:37:19 +01:00
|
|
|
{
|
2018-04-25 02:13:44 +02:00
|
|
|
const auto names
|
2018-02-19 09:37:19 +01:00
|
|
|
{
|
2018-04-25 02:13:44 +02:00
|
|
|
tokens<std::vector>(line, ' ')
|
2018-02-19 09:37:19 +01:00
|
|
|
};
|
|
|
|
|
2018-04-25 02:13:44 +02:00
|
|
|
for(auto it(names.begin()); it != names.end(); ++it)
|
2018-02-19 09:37:19 +01:00
|
|
|
{
|
2018-04-25 02:13:44 +02:00
|
|
|
const auto &name{*it};
|
2018-09-14 03:02:10 +02:00
|
|
|
if(mods::imports.erase(std::string{name}))
|
2018-04-25 02:13:44 +02:00
|
|
|
out << name << " unloaded." << std::endl;
|
|
|
|
else
|
|
|
|
out << name << " is not loaded." << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
for(auto it(names.rbegin()); it != names.rend(); ++it)
|
|
|
|
{
|
|
|
|
const auto &name{*it};
|
2018-09-14 03:02:10 +02:00
|
|
|
if(mods::imports.emplace(std::string{name}, name).second)
|
2018-04-25 02:13:44 +02:00
|
|
|
out << name << " loaded." << std::endl;
|
|
|
|
else
|
|
|
|
out << name << " is already loaded." << std::endl;
|
2018-02-19 09:37:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-03-28 09:13:32 +02:00
|
|
|
bool
|
|
|
|
console_cmd__mod__load(opt &out, const string_view &line)
|
|
|
|
{
|
2018-04-25 02:13:44 +02:00
|
|
|
tokens(line, ' ', [&out]
|
|
|
|
(const string_view &name)
|
2018-03-28 09:13:32 +02:00
|
|
|
{
|
2018-09-14 03:02:10 +02:00
|
|
|
if(mods::imports.find(name) != end(mods::imports))
|
2018-04-25 02:13:44 +02:00
|
|
|
{
|
|
|
|
out << name << " is already loaded." << std::endl;
|
|
|
|
return;
|
|
|
|
}
|
2018-03-28 09:13:32 +02:00
|
|
|
|
2018-09-14 03:02:10 +02:00
|
|
|
mods::imports.emplace(std::string{name}, name);
|
2018-04-25 02:13:44 +02:00
|
|
|
out << name << " loaded." << std::endl;
|
|
|
|
});
|
2018-03-28 09:13:32 +02:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-03-28 10:23:58 +02:00
|
|
|
bool
|
|
|
|
console_cmd__mod__unload(opt &out, const string_view &line)
|
|
|
|
{
|
2018-04-25 02:13:44 +02:00
|
|
|
tokens(line, ' ', [&out]
|
|
|
|
(const string_view &name)
|
2018-03-28 10:23:58 +02:00
|
|
|
{
|
2018-09-14 03:02:10 +02:00
|
|
|
if(!mods::imports.erase(std::string{name}))
|
2018-04-25 02:13:44 +02:00
|
|
|
{
|
|
|
|
out << name << " is not loaded." << std::endl;
|
|
|
|
return;
|
|
|
|
}
|
2018-03-28 10:23:58 +02:00
|
|
|
|
2018-04-25 02:13:44 +02:00
|
|
|
out << "unloaded " << name << std::endl;
|
|
|
|
});
|
2018-03-28 10:23:58 +02:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-04-20 00:55:32 +02:00
|
|
|
//
|
|
|
|
// ctx
|
|
|
|
//
|
|
|
|
|
2018-04-20 08:19:11 +02:00
|
|
|
bool
|
|
|
|
console_cmd__ctx__interrupt(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
2018-05-22 14:43:09 +02:00
|
|
|
"id", "[id]..."
|
2018-04-20 08:19:11 +02:00
|
|
|
}};
|
|
|
|
|
2018-05-22 14:43:09 +02:00
|
|
|
for(size_t i(0); i < param.count(); ++i)
|
|
|
|
for(auto *const &ctx : ctx::ctxs)
|
|
|
|
if(id(*ctx) == param.at<uint64_t>(i))
|
|
|
|
{
|
|
|
|
interrupt(*ctx);
|
|
|
|
break;
|
|
|
|
}
|
2018-04-20 08:19:11 +02:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-05-20 02:07:40 +02:00
|
|
|
bool
|
|
|
|
console_cmd__ctx__term(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
2018-05-22 14:43:09 +02:00
|
|
|
"id", "[id]..."
|
2018-05-20 02:07:40 +02:00
|
|
|
}};
|
|
|
|
|
2018-05-22 14:43:09 +02:00
|
|
|
for(size_t i(0); i < param.count(); ++i)
|
|
|
|
for(auto *const &ctx : ctx::ctxs)
|
|
|
|
if(id(*ctx) == param.at<uint64_t>(i))
|
|
|
|
{
|
|
|
|
terminate(*ctx);
|
|
|
|
break;
|
|
|
|
}
|
2018-05-20 02:07:40 +02:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-04-20 00:55:32 +02:00
|
|
|
bool
|
|
|
|
console_cmd__ctx__list(opt &out, const string_view &line)
|
|
|
|
{
|
2018-05-07 21:54:38 +02:00
|
|
|
out << " "
|
|
|
|
<< "ID"
|
2018-09-01 10:02:57 +02:00
|
|
|
<< " "
|
2018-05-07 21:54:38 +02:00
|
|
|
<< "STATE"
|
|
|
|
<< " "
|
|
|
|
<< "YIELDS"
|
|
|
|
<< " "
|
|
|
|
<< "CYCLE COUNT"
|
|
|
|
<< " "
|
|
|
|
<< "PCT"
|
|
|
|
<< " "
|
|
|
|
<< "STACK "
|
|
|
|
<< " "
|
|
|
|
<< "LIMIT"
|
|
|
|
<< " "
|
|
|
|
<< "PCT"
|
|
|
|
<< " "
|
|
|
|
<< ":NAME"
|
|
|
|
<< std::endl;
|
|
|
|
|
2018-04-20 00:55:32 +02:00
|
|
|
for(const auto *const &ctxp : ctx::ctxs)
|
|
|
|
{
|
|
|
|
const auto &ctx{*ctxp};
|
|
|
|
out << std::setw(5) << std::right << id(ctx);
|
2018-05-06 07:09:20 +02:00
|
|
|
out << " "
|
2018-04-20 00:55:32 +02:00
|
|
|
<< (started(ctx)? 'S' : '-')
|
|
|
|
<< (running(ctx)? 'R' : '-')
|
|
|
|
<< (waiting(ctx)? 'W' : '-')
|
|
|
|
<< (finished(ctx)? 'F' : '-')
|
2018-05-22 09:00:26 +02:00
|
|
|
<< (interruptible(ctx)? '-' : 'N')
|
2018-04-20 00:55:32 +02:00
|
|
|
<< (interruption(ctx)? 'I' : '-')
|
2018-05-06 10:00:11 +02:00
|
|
|
<< (termination(ctx)? 'T' : '-')
|
2018-04-20 00:55:32 +02:00
|
|
|
;
|
|
|
|
|
2018-05-07 21:54:38 +02:00
|
|
|
out << " "
|
|
|
|
<< std::setw(8) << std::right << yields(ctx)
|
|
|
|
<< " ";
|
|
|
|
|
2018-05-06 07:58:25 +02:00
|
|
|
out << " "
|
|
|
|
<< std::setw(15) << std::right << cycles(ctx)
|
|
|
|
<< " ";
|
|
|
|
|
|
|
|
const long double total_cyc(ctx::prof::total_slice_cycles());
|
|
|
|
const auto tsc_pct
|
2018-05-06 07:31:52 +02:00
|
|
|
{
|
2018-05-06 07:58:25 +02:00
|
|
|
total_cyc > 0.0? (cycles(ctx) / total_cyc) : 0.0L
|
2018-05-06 07:31:52 +02:00
|
|
|
};
|
|
|
|
|
2018-05-06 07:58:25 +02:00
|
|
|
out << " "
|
|
|
|
<< std::setw(5) << std::right << std::fixed << std::setprecision(2) << (tsc_pct * 100)
|
2018-05-07 21:54:38 +02:00
|
|
|
<< "% ";
|
2018-05-06 07:31:52 +02:00
|
|
|
|
|
|
|
out << " "
|
2018-05-06 07:58:25 +02:00
|
|
|
<< std::setw(7) << std::right << stack_at(ctx)
|
|
|
|
<< " ";
|
|
|
|
|
|
|
|
out << " "
|
2018-05-06 07:31:52 +02:00
|
|
|
<< std::setw(7) << std::right << stack_max(ctx)
|
2018-05-06 07:58:25 +02:00
|
|
|
<< " ";
|
|
|
|
|
|
|
|
const auto stack_pct
|
|
|
|
{
|
|
|
|
stack_at(ctx) / (long double)stack_max(ctx)
|
|
|
|
};
|
|
|
|
|
|
|
|
out << " "
|
|
|
|
<< std::setw(5) << std::right << std::fixed << std::setprecision(2) << (stack_pct * 100)
|
2018-05-07 21:54:38 +02:00
|
|
|
<< "% ";
|
2018-05-06 07:31:52 +02:00
|
|
|
|
|
|
|
out << " :"
|
|
|
|
<< name(ctx);
|
|
|
|
|
2018-04-20 00:55:32 +02:00
|
|
|
out << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
console_cmd__ctx(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
if(empty(line))
|
|
|
|
return console_cmd__ctx__list(out, line);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-02-08 05:17:26 +01:00
|
|
|
//
|
|
|
|
// db
|
|
|
|
//
|
|
|
|
|
2018-04-10 06:23:54 +02:00
|
|
|
bool
|
|
|
|
console_cmd__db__sync(opt &out, const string_view &line)
|
|
|
|
try
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"dbname",
|
|
|
|
}};
|
|
|
|
|
|
|
|
const auto dbname
|
|
|
|
{
|
|
|
|
param.at(0)
|
|
|
|
};
|
|
|
|
|
|
|
|
auto &database
|
|
|
|
{
|
2018-05-25 05:01:52 +02:00
|
|
|
db::database::get(dbname)
|
2018-04-10 06:23:54 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
sync(database);
|
|
|
|
out << "done" << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
catch(const std::out_of_range &e)
|
|
|
|
{
|
|
|
|
out << "No open database by that name" << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
console_cmd__db__flush(opt &out, const string_view &line)
|
|
|
|
try
|
2018-04-27 02:19:29 +02:00
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"dbname", "[sync]"
|
|
|
|
}};
|
|
|
|
|
|
|
|
const auto dbname
|
|
|
|
{
|
|
|
|
param.at(0)
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto sync
|
|
|
|
{
|
|
|
|
param.at(1, false)
|
|
|
|
};
|
|
|
|
|
|
|
|
auto &database
|
|
|
|
{
|
2018-05-25 05:01:52 +02:00
|
|
|
db::database::get(dbname)
|
2018-04-27 02:19:29 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
flush(database, sync);
|
|
|
|
out << "done" << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
catch(const std::out_of_range &e)
|
|
|
|
{
|
|
|
|
out << "No open database by that name" << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
console_cmd__db__sort(opt &out, const string_view &line)
|
|
|
|
try
|
2018-04-10 06:23:54 +02:00
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"dbname", "[blocking]"
|
|
|
|
}};
|
|
|
|
|
|
|
|
const auto dbname
|
|
|
|
{
|
|
|
|
param.at(0)
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto blocking
|
|
|
|
{
|
|
|
|
param.at(1, false)
|
|
|
|
};
|
|
|
|
|
|
|
|
auto &database
|
|
|
|
{
|
2018-05-25 05:01:52 +02:00
|
|
|
db::database::get(dbname)
|
2018-04-10 06:23:54 +02:00
|
|
|
};
|
|
|
|
|
2018-04-27 02:19:29 +02:00
|
|
|
sort(database, blocking);
|
2018-04-10 06:23:54 +02:00
|
|
|
out << "done" << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
catch(const std::out_of_range &e)
|
2018-04-15 11:42:57 +02:00
|
|
|
{
|
|
|
|
out << "No open database by that name" << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
console_cmd__db__compact(opt &out, const string_view &line)
|
|
|
|
try
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
2018-05-11 01:41:34 +02:00
|
|
|
"dbname", "[colname]", "[begin]", "[end]", "[level]"
|
2018-04-15 11:42:57 +02:00
|
|
|
}};
|
|
|
|
|
|
|
|
const auto dbname
|
|
|
|
{
|
|
|
|
param.at(0)
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto colname
|
|
|
|
{
|
|
|
|
param[1]
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto begin
|
|
|
|
{
|
|
|
|
param[2]
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto end
|
|
|
|
{
|
|
|
|
param[3]
|
|
|
|
};
|
|
|
|
|
2018-05-11 01:41:34 +02:00
|
|
|
const auto level
|
|
|
|
{
|
|
|
|
param.at(4, -1)
|
|
|
|
};
|
|
|
|
|
2018-04-15 11:42:57 +02:00
|
|
|
auto &database
|
|
|
|
{
|
2018-05-25 05:01:52 +02:00
|
|
|
db::database::get(dbname)
|
2018-04-15 11:42:57 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
if(!colname)
|
|
|
|
{
|
|
|
|
compact(database);
|
|
|
|
out << "done" << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
db::column column
|
|
|
|
{
|
|
|
|
database, colname
|
|
|
|
};
|
|
|
|
|
2018-05-11 01:41:34 +02:00
|
|
|
const bool integer
|
|
|
|
{
|
|
|
|
begin? try_lex_cast<uint64_t>(begin) : false
|
|
|
|
};
|
|
|
|
|
|
|
|
const std::pair<string_view, string_view> range
|
|
|
|
{
|
|
|
|
integer? byte_view<string_view>(lex_cast<uint64_t>(begin)) : begin,
|
|
|
|
integer && end? byte_view<string_view>(lex_cast<uint64_t>(end)) : end,
|
|
|
|
};
|
|
|
|
|
|
|
|
compact(column, range, level);
|
|
|
|
compact(column, level);
|
2018-04-15 11:42:57 +02:00
|
|
|
out << "done" << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
catch(const std::out_of_range &e)
|
2018-04-15 13:45:31 +02:00
|
|
|
{
|
|
|
|
out << "No open database by that name" << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
console_cmd__db__ticker(opt &out, const string_view &line)
|
|
|
|
try
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"dbname", "[ticker]"
|
|
|
|
}};
|
|
|
|
|
|
|
|
const auto dbname
|
|
|
|
{
|
|
|
|
param.at(0)
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto ticker
|
|
|
|
{
|
|
|
|
param[1]
|
|
|
|
};
|
|
|
|
|
|
|
|
auto &database
|
|
|
|
{
|
2018-05-25 05:01:52 +02:00
|
|
|
db::database::get(dbname)
|
2018-04-15 13:45:31 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
// Special branch for integer properties that RocksDB aggregates.
|
2018-05-23 13:16:30 +02:00
|
|
|
if(ticker && ticker != "-a")
|
2018-04-15 13:45:31 +02:00
|
|
|
{
|
|
|
|
out << ticker << ": " << db::ticker(database, ticker) << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
for(uint32_t i(0); i < db::ticker_max; ++i)
|
|
|
|
{
|
|
|
|
const string_view &name
|
|
|
|
{
|
|
|
|
db::ticker_id(i)
|
|
|
|
};
|
|
|
|
|
|
|
|
if(!name)
|
|
|
|
continue;
|
|
|
|
|
2018-05-23 13:16:30 +02:00
|
|
|
const auto &val
|
|
|
|
{
|
|
|
|
db::ticker(database, i)
|
|
|
|
};
|
|
|
|
|
|
|
|
if(val == 0 && ticker != "-a")
|
|
|
|
continue;
|
|
|
|
|
|
|
|
out << std::left << std::setw(48) << std::setfill('_') << name
|
|
|
|
<< " " << val
|
2018-04-15 13:45:31 +02:00
|
|
|
<< std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
catch(const std::out_of_range &e)
|
2018-04-10 06:23:54 +02:00
|
|
|
{
|
|
|
|
out << "No open database by that name" << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-05-24 01:57:49 +02:00
|
|
|
bool
|
|
|
|
console_cmd__db__io(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const auto &ic
|
|
|
|
{
|
|
|
|
db::iostats_current()
|
|
|
|
};
|
|
|
|
|
|
|
|
out << db::string(ic) << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-05-24 01:27:44 +02:00
|
|
|
bool
|
|
|
|
console_cmd__db__perf(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const auto &pc
|
|
|
|
{
|
|
|
|
db::perf_current()
|
|
|
|
};
|
|
|
|
|
|
|
|
out << db::string(pc) << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
console_cmd__db__perf__level(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"[level]"
|
|
|
|
}};
|
|
|
|
|
|
|
|
if(!param.count())
|
|
|
|
{
|
|
|
|
const auto &level
|
|
|
|
{
|
|
|
|
db::perf_level()
|
|
|
|
};
|
|
|
|
|
|
|
|
out << "Current level is: " << level << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
const auto &level
|
|
|
|
{
|
|
|
|
param.at<uint>(0)
|
|
|
|
};
|
|
|
|
|
|
|
|
db::perf_level(level);
|
|
|
|
out << "Set level to: " << level << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-02-08 05:17:26 +01:00
|
|
|
bool
|
2018-03-26 09:04:47 +02:00
|
|
|
console_cmd__db__prop(opt &out, const string_view &line)
|
2018-04-13 03:57:54 +02:00
|
|
|
try
|
2018-03-05 11:44:03 +01:00
|
|
|
{
|
2018-04-13 03:57:54 +02:00
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"dbname", "column", "property"
|
|
|
|
}};
|
|
|
|
|
2018-03-05 11:44:03 +01:00
|
|
|
const auto dbname
|
|
|
|
{
|
2018-04-13 03:57:54 +02:00
|
|
|
param.at(0)
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto colname
|
|
|
|
{
|
|
|
|
param.at(1, "*"_sv)
|
2018-03-05 11:44:03 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
const auto property
|
|
|
|
{
|
2018-04-13 03:57:54 +02:00
|
|
|
param.at(2)
|
|
|
|
};
|
|
|
|
|
|
|
|
auto &database
|
|
|
|
{
|
2018-05-25 05:01:52 +02:00
|
|
|
db::database::get(dbname)
|
2018-04-13 03:57:54 +02:00
|
|
|
};
|
|
|
|
|
2018-04-15 06:44:58 +02:00
|
|
|
// Special branch for integer properties that RocksDB aggregates.
|
2018-04-13 03:57:54 +02:00
|
|
|
if(colname == "*")
|
|
|
|
{
|
|
|
|
const uint64_t value
|
|
|
|
{
|
|
|
|
db::property(database, property)
|
|
|
|
};
|
|
|
|
|
|
|
|
out << value << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-04-15 06:44:58 +02:00
|
|
|
const auto query{[&out, &database, &property]
|
|
|
|
(const string_view &colname)
|
2018-04-13 03:57:54 +02:00
|
|
|
{
|
2018-04-15 06:44:58 +02:00
|
|
|
const db::column column
|
|
|
|
{
|
|
|
|
database, colname
|
|
|
|
};
|
2018-03-05 11:44:03 +01:00
|
|
|
|
2018-04-15 06:44:58 +02:00
|
|
|
const auto value
|
|
|
|
{
|
|
|
|
db::property<db::prop_map>(column, property)
|
|
|
|
};
|
|
|
|
|
|
|
|
for(const auto &p : value)
|
|
|
|
out << p.first << " : " << p.second << std::endl;
|
|
|
|
}};
|
|
|
|
|
|
|
|
// Branch for querying the property for a single column
|
|
|
|
if(colname != "**")
|
2018-04-13 03:57:54 +02:00
|
|
|
{
|
2018-04-15 06:44:58 +02:00
|
|
|
query(colname);
|
|
|
|
return true;
|
|
|
|
}
|
2018-04-13 03:57:54 +02:00
|
|
|
|
2018-04-15 06:44:58 +02:00
|
|
|
// Querying the property for all columns in a loop
|
|
|
|
for(const auto &column_name : database.column_names)
|
|
|
|
{
|
|
|
|
out << std::setw(16) << std::right << column_name << " : ";
|
|
|
|
query(column_name);
|
|
|
|
}
|
2018-04-13 03:57:54 +02:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
catch(const std::out_of_range &e)
|
|
|
|
{
|
|
|
|
out << "No open database by that name" << std::endl;
|
2018-03-05 11:44:03 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-05-15 02:29:31 +02:00
|
|
|
bool
|
|
|
|
console_cmd__db__cache(opt &out, const string_view &line)
|
|
|
|
try
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"dbname", "column",
|
|
|
|
}};
|
|
|
|
|
|
|
|
const auto dbname
|
|
|
|
{
|
|
|
|
param.at(0)
|
|
|
|
};
|
|
|
|
|
2018-09-03 12:50:12 +02:00
|
|
|
auto colname
|
2018-05-15 02:29:31 +02:00
|
|
|
{
|
|
|
|
param[1]
|
|
|
|
};
|
|
|
|
|
|
|
|
auto &database
|
|
|
|
{
|
2018-05-25 05:01:52 +02:00
|
|
|
db::database::get(dbname)
|
2018-05-15 02:29:31 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
if(!colname)
|
|
|
|
{
|
|
|
|
const auto usage(db::usage(cache(database)));
|
|
|
|
const auto capacity(db::capacity(cache(database)));
|
|
|
|
const auto usage_pct
|
|
|
|
{
|
|
|
|
capacity > 0.0? (double(usage) / double(capacity)) : 0.0L
|
|
|
|
};
|
|
|
|
|
2018-09-03 12:50:12 +02:00
|
|
|
out << std::left
|
|
|
|
<< std::setw(16) << "ROW"
|
|
|
|
<< std::right
|
|
|
|
<< " "
|
|
|
|
<< std::setw(9) << "CACHED"
|
|
|
|
<< " "
|
|
|
|
<< std::setw(9) << "CAPACITY"
|
|
|
|
<< " "
|
2018-09-05 12:10:31 +02:00
|
|
|
<< std::setw(6) << "PCT"
|
2018-09-03 12:50:12 +02:00
|
|
|
<< " "
|
|
|
|
<< std::endl;
|
|
|
|
|
|
|
|
out << std::left
|
|
|
|
<< std::setw(16) << "*"
|
|
|
|
<< std::right
|
|
|
|
<< " "
|
2018-05-15 02:29:31 +02:00
|
|
|
<< std::setw(9) << usage
|
2018-05-15 09:41:35 +02:00
|
|
|
<< " "
|
2018-05-15 02:29:31 +02:00
|
|
|
<< std::setw(9) << capacity
|
2018-05-15 09:41:35 +02:00
|
|
|
<< " "
|
2018-09-03 12:43:25 +02:00
|
|
|
<< std::setw(6) << std::right << std::fixed << std::setprecision(2) << (usage_pct * 100)
|
2018-05-15 09:41:35 +02:00
|
|
|
<< "%"
|
2018-09-03 12:50:12 +02:00
|
|
|
<< std::endl
|
2018-05-15 02:29:31 +02:00
|
|
|
<< std::endl;
|
|
|
|
|
2018-09-03 12:50:12 +02:00
|
|
|
// Now set the colname to * so the column total branch is taken
|
|
|
|
// below and we output that line too.
|
|
|
|
colname = "*";
|
2018-05-15 02:29:31 +02:00
|
|
|
}
|
|
|
|
|
2018-05-15 09:41:35 +02:00
|
|
|
out << std::left
|
|
|
|
<< std::setw(16) << "COLUMN"
|
|
|
|
<< std::right
|
|
|
|
<< " "
|
2018-09-05 12:10:31 +02:00
|
|
|
<< std::setw(9) << "HITS"
|
2018-05-15 09:41:35 +02:00
|
|
|
<< " "
|
2018-09-05 12:10:31 +02:00
|
|
|
<< std::setw(9) << "MISSES"
|
2018-05-15 09:41:35 +02:00
|
|
|
<< " "
|
2018-09-05 12:10:31 +02:00
|
|
|
<< std::setw(9) << "INSERTS"
|
2018-05-15 09:41:35 +02:00
|
|
|
<< " "
|
2018-09-05 12:10:31 +02:00
|
|
|
<< std::setw(10) << "CACHED"
|
2018-05-15 09:41:35 +02:00
|
|
|
<< " "
|
2018-09-05 12:10:31 +02:00
|
|
|
<< std::setw(10) << "CAPACITY"
|
2018-05-15 09:41:35 +02:00
|
|
|
<< " "
|
2018-09-05 12:10:31 +02:00
|
|
|
<< std::setw(7) << "PCT"
|
2018-05-15 09:41:35 +02:00
|
|
|
<< " "
|
2018-09-05 12:10:31 +02:00
|
|
|
<< "|"
|
|
|
|
<< std::setw(9) << "HITS"
|
|
|
|
<< " "
|
|
|
|
<< std::setw(9) << "MISSES"
|
|
|
|
<< " "
|
|
|
|
<< std::setw(9) << "INSERTS"
|
|
|
|
<< " "
|
|
|
|
<< std::setw(10) << "CACHED"
|
|
|
|
<< " "
|
|
|
|
<< std::setw(10) << "CAPACITY"
|
|
|
|
<< " "
|
|
|
|
<< std::setw(7) << "PCT"
|
2018-05-15 09:41:35 +02:00
|
|
|
<< std::endl;
|
|
|
|
|
2018-05-15 02:29:31 +02:00
|
|
|
const auto output{[&out]
|
2018-05-15 09:41:35 +02:00
|
|
|
(const string_view &column_name,
|
|
|
|
const size_t &usage, const size_t &capacity,
|
2018-05-15 02:29:31 +02:00
|
|
|
const size_t usage_comp, const size_t &capacity_comp,
|
2018-09-05 12:10:31 +02:00
|
|
|
const double &usage_pct, const double &usage_comp_pct,
|
|
|
|
const db::cache_stats &stats, const db::cache_stats &stats_comp)
|
2018-05-15 02:29:31 +02:00
|
|
|
{
|
2018-05-15 09:41:35 +02:00
|
|
|
out << std::setw(16) << std::left << column_name
|
|
|
|
<< std::right
|
|
|
|
<< " "
|
2018-09-05 12:10:31 +02:00
|
|
|
<< std::setw(9) << stats.hits
|
|
|
|
<< " "
|
|
|
|
<< std::setw(9) << stats.misses
|
|
|
|
<< " "
|
|
|
|
<< std::setw(9) << stats.inserts
|
|
|
|
<< " "
|
|
|
|
<< std::setw(10) << usage
|
|
|
|
<< " "
|
|
|
|
<< std::setw(10) << capacity
|
2018-05-15 09:41:35 +02:00
|
|
|
<< " "
|
2018-09-03 12:43:25 +02:00
|
|
|
<< std::setw(6) << std::right << std::fixed << std::setprecision(2) << (usage_pct * 100)
|
2018-09-05 12:10:31 +02:00
|
|
|
<< '%'
|
|
|
|
<< " "
|
|
|
|
<< "|"
|
|
|
|
<< std::setw(9) << stats_comp.hits
|
|
|
|
<< " "
|
|
|
|
<< std::setw(9) << stats_comp.misses
|
|
|
|
<< " "
|
|
|
|
<< std::setw(9) << stats_comp.inserts
|
2018-05-15 09:41:35 +02:00
|
|
|
<< " "
|
2018-09-05 12:10:31 +02:00
|
|
|
<< std::setw(10) << usage_comp
|
|
|
|
<< " "
|
|
|
|
<< std::setw(10) << capacity_comp
|
2018-05-15 09:41:35 +02:00
|
|
|
<< " "
|
2018-09-03 12:43:25 +02:00
|
|
|
<< std::setw(6) << std::right << std::fixed << std::setprecision(2) << (usage_comp_pct * 100)
|
2018-09-05 12:10:31 +02:00
|
|
|
<< '%'
|
2018-05-15 02:29:31 +02:00
|
|
|
<< std::endl;
|
|
|
|
}};
|
|
|
|
|
|
|
|
const auto query{[&output, &database]
|
|
|
|
(const string_view &colname)
|
|
|
|
{
|
|
|
|
const db::column column
|
|
|
|
{
|
|
|
|
database, colname
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto usage(db::usage(cache(column)));
|
|
|
|
const auto capacity(db::capacity(cache(column)));
|
|
|
|
const auto usage_pct
|
|
|
|
{
|
|
|
|
capacity > 0.0? (double(usage) / double(capacity)) : 0.0L
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto usage_comp(db::usage(cache_compressed(column)));
|
|
|
|
const auto capacity_comp(db::capacity(cache_compressed(column)));
|
|
|
|
const auto usage_comp_pct
|
|
|
|
{
|
|
|
|
capacity_comp > 0.0? (double(usage_comp) / double(capacity_comp)) : 0.0L
|
|
|
|
};
|
|
|
|
|
2018-09-05 12:10:31 +02:00
|
|
|
const auto stats(db::stats(cache(column)));
|
|
|
|
const auto stats_comp(db::stats(cache_compressed(column)));
|
|
|
|
output(colname, usage, capacity, usage_comp, capacity_comp, usage_pct, usage_comp_pct, stats, stats_comp);
|
2018-05-15 02:29:31 +02:00
|
|
|
}};
|
|
|
|
|
|
|
|
// Querying the totals for all caches for all columns in a loop
|
|
|
|
if(colname == "*")
|
|
|
|
{
|
|
|
|
size_t usage(0), usage_comp(0);
|
|
|
|
size_t capacity(0), capacity_comp(0);
|
2018-09-05 12:10:31 +02:00
|
|
|
db::cache_stats stats, stats_comp;
|
2018-05-15 02:29:31 +02:00
|
|
|
for(const auto &column : database.columns)
|
|
|
|
{
|
|
|
|
const db::column c(*column);
|
|
|
|
usage += db::usage(cache(c));
|
|
|
|
capacity += db::capacity(cache(c));
|
|
|
|
usage_comp += db::usage(cache_compressed(c));
|
|
|
|
capacity_comp += db::capacity(cache_compressed(c));
|
2018-09-05 12:10:31 +02:00
|
|
|
|
|
|
|
const auto _stats(db::stats(cache(c)));
|
|
|
|
stats.inserts += _stats.inserts;
|
|
|
|
stats.misses += _stats.misses;
|
|
|
|
stats.hits += _stats.hits;
|
|
|
|
|
|
|
|
const auto _stats_comp(db::stats(cache_compressed(c)));
|
|
|
|
stats_comp.inserts += _stats_comp.inserts;
|
|
|
|
stats_comp.misses += _stats_comp.misses;
|
|
|
|
stats_comp.hits += _stats_comp.hits;
|
2018-05-15 02:29:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const auto usage_pct
|
|
|
|
{
|
|
|
|
capacity > 0.0? (double(usage) / double(capacity)) : 0.0L
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto usage_comp_pct
|
|
|
|
{
|
|
|
|
capacity_comp > 0.0? (double(usage_comp) / double(capacity_comp)) : 0.0L
|
|
|
|
};
|
|
|
|
|
2018-09-05 12:10:31 +02:00
|
|
|
output("*", usage, capacity, usage_comp, capacity_comp, usage_pct, usage_comp_pct, stats, stats_comp);
|
2018-05-15 02:29:31 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Query the cache for a single column
|
|
|
|
if(colname != "**")
|
|
|
|
{
|
|
|
|
query(colname);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Querying the cache for all columns in a loop
|
|
|
|
for(const auto &column_name : database.column_names)
|
|
|
|
query(column_name);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
catch(const std::out_of_range &e)
|
|
|
|
{
|
|
|
|
out << "No open database by that name" << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-05-24 04:04:18 +02:00
|
|
|
bool
|
|
|
|
console_cmd__db__cache__clear(opt &out, const string_view &line)
|
|
|
|
try
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
2018-08-19 03:00:45 +02:00
|
|
|
"dbname", "column", "[key]"
|
2018-05-24 04:04:18 +02:00
|
|
|
}};
|
|
|
|
|
2018-08-19 03:00:45 +02:00
|
|
|
const auto &dbname
|
2018-05-24 04:04:18 +02:00
|
|
|
{
|
|
|
|
param.at(0)
|
|
|
|
};
|
|
|
|
|
2018-08-19 03:00:45 +02:00
|
|
|
const auto &colname
|
2018-05-24 04:04:18 +02:00
|
|
|
{
|
|
|
|
param[1]
|
|
|
|
};
|
|
|
|
|
2018-08-19 03:00:45 +02:00
|
|
|
const auto &key
|
|
|
|
{
|
|
|
|
param[2]
|
|
|
|
};
|
|
|
|
|
2018-05-24 04:04:18 +02:00
|
|
|
auto &database
|
|
|
|
{
|
2018-05-25 05:01:52 +02:00
|
|
|
db::database::get(dbname)
|
2018-05-24 04:04:18 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
const auto clear{[&out, &database]
|
|
|
|
(const string_view &colname)
|
|
|
|
{
|
|
|
|
db::column column
|
|
|
|
{
|
|
|
|
database, colname
|
|
|
|
};
|
|
|
|
|
|
|
|
db::clear(cache(column));
|
|
|
|
db::clear(cache_compressed(column));
|
|
|
|
out << "Cleared caches for '" << name(database) << "' '" << colname << "'"
|
|
|
|
<< std::endl;
|
|
|
|
}};
|
|
|
|
|
2018-08-19 03:00:45 +02:00
|
|
|
const auto remove{[&out, &database]
|
|
|
|
(const string_view &colname, const string_view &key)
|
|
|
|
{
|
|
|
|
db::column column
|
|
|
|
{
|
|
|
|
database, colname
|
|
|
|
};
|
|
|
|
|
|
|
|
const bool removed[]
|
|
|
|
{
|
|
|
|
db::remove(cache(column), key),
|
|
|
|
db::remove(cache_compressed(column), key)
|
|
|
|
};
|
|
|
|
|
|
|
|
out << "Removed key from";
|
|
|
|
if(removed[0])
|
|
|
|
out << " [uncompressed cache]";
|
|
|
|
|
|
|
|
if(removed[1])
|
|
|
|
out << " [compressed cache]";
|
|
|
|
|
|
|
|
out << std::endl;
|
|
|
|
}};
|
|
|
|
|
2018-05-24 04:04:18 +02:00
|
|
|
if(!colname || colname == "**")
|
|
|
|
{
|
|
|
|
for(const auto &colname : database.column_names)
|
|
|
|
clear(colname);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-08-19 03:00:45 +02:00
|
|
|
if(!key)
|
|
|
|
{
|
|
|
|
clear(colname);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
remove(colname, key);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
catch(const std::out_of_range &e)
|
|
|
|
{
|
|
|
|
out << "No open database by that name" << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
console_cmd__db__cache__fetch(opt &out, const string_view &line)
|
|
|
|
try
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"dbname", "column", "key"
|
|
|
|
}};
|
|
|
|
|
|
|
|
const auto dbname
|
|
|
|
{
|
|
|
|
param.at(0)
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto colname
|
|
|
|
{
|
|
|
|
param[1]
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto key
|
|
|
|
{
|
|
|
|
param[2]
|
|
|
|
};
|
|
|
|
|
|
|
|
auto &database
|
|
|
|
{
|
|
|
|
db::database::get(dbname)
|
|
|
|
};
|
|
|
|
|
|
|
|
db::column column
|
|
|
|
{
|
|
|
|
database, colname
|
|
|
|
};
|
|
|
|
|
2018-09-02 06:16:25 +02:00
|
|
|
db::has(column, key);
|
2018-05-24 04:04:18 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
catch(const std::out_of_range &e)
|
|
|
|
{
|
|
|
|
out << "No open database by that name" << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-04-17 22:43:10 +02:00
|
|
|
bool
|
|
|
|
console_cmd__db__stats(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"dbname", "column"
|
|
|
|
}};
|
|
|
|
|
|
|
|
return console_cmd__db__prop(out, fmt::snstringf
|
|
|
|
{
|
|
|
|
1024, "%s %s rocksdb.stats",
|
|
|
|
param.at(0),
|
|
|
|
param.at(1)
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-04-20 23:13:35 +02:00
|
|
|
bool
|
|
|
|
console_cmd__db__set(opt &out, const string_view &line)
|
|
|
|
try
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"dbname", "column", "option", "value"
|
|
|
|
}};
|
|
|
|
|
|
|
|
const auto dbname
|
|
|
|
{
|
|
|
|
param.at(0)
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto colname
|
|
|
|
{
|
|
|
|
param.at(1, "*"_sv)
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto option
|
|
|
|
{
|
|
|
|
param.at(2)
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto value
|
|
|
|
{
|
|
|
|
param.at(3)
|
|
|
|
};
|
|
|
|
|
|
|
|
auto &database
|
|
|
|
{
|
2018-05-25 05:01:52 +02:00
|
|
|
db::database::get(dbname)
|
2018-04-20 23:13:35 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
// Special branch for DBOptions
|
|
|
|
if(colname == "*")
|
|
|
|
{
|
|
|
|
db::setopt(database, option, value);
|
|
|
|
out << "done" << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
const auto setopt{[&out, &database, &option, &value]
|
|
|
|
(const string_view &colname)
|
|
|
|
{
|
|
|
|
db::column column
|
|
|
|
{
|
|
|
|
database, colname
|
|
|
|
};
|
|
|
|
|
|
|
|
db::setopt(column, option, value);
|
|
|
|
out << colname << " :done" << std::endl;
|
|
|
|
}};
|
|
|
|
|
|
|
|
// Branch for querying the property for a single column
|
|
|
|
if(colname != "**")
|
|
|
|
{
|
|
|
|
setopt(colname);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Querying the property for all columns in a loop
|
|
|
|
for(const auto &colname : database.column_names)
|
|
|
|
setopt(colname);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
catch(const std::out_of_range &e)
|
|
|
|
{
|
|
|
|
out << "No open database by that name" << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-04-03 20:48:21 +02:00
|
|
|
bool
|
|
|
|
console_cmd__db__files(opt &out, const string_view &line)
|
|
|
|
try
|
|
|
|
{
|
|
|
|
const auto dbname
|
|
|
|
{
|
|
|
|
token(line, ' ', 0)
|
|
|
|
};
|
|
|
|
|
|
|
|
auto &database
|
|
|
|
{
|
2018-05-25 05:01:52 +02:00
|
|
|
db::database::get(dbname)
|
2018-04-03 20:48:21 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
uint64_t msz;
|
|
|
|
const auto files
|
|
|
|
{
|
|
|
|
db::files(database, msz)
|
|
|
|
};
|
|
|
|
|
|
|
|
for(const auto &file : files)
|
|
|
|
out << file << std::endl;
|
|
|
|
|
|
|
|
out << "-- " << files.size() << " files; "
|
|
|
|
<< "manifest is " << msz << " bytes.";
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
catch(const std::out_of_range &e)
|
|
|
|
{
|
|
|
|
out << "No open database by that name" << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-04-17 23:14:00 +02:00
|
|
|
bool
|
|
|
|
console_cmd__db__bytes(opt &out, const string_view &line)
|
|
|
|
try
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"dbname", "column"
|
|
|
|
}};
|
|
|
|
|
|
|
|
auto &database
|
|
|
|
{
|
2018-05-25 05:01:52 +02:00
|
|
|
db::database::get(param.at(0))
|
2018-04-17 23:14:00 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
if(!param[1] || param[1] == "*")
|
|
|
|
{
|
|
|
|
const auto bytes
|
|
|
|
{
|
|
|
|
db::bytes(database)
|
|
|
|
};
|
|
|
|
|
|
|
|
out << bytes << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
const auto query{[&out, &database]
|
|
|
|
(const string_view &colname)
|
|
|
|
{
|
|
|
|
const db::column column
|
|
|
|
{
|
|
|
|
database, colname
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto value
|
|
|
|
{
|
|
|
|
db::bytes(column)
|
|
|
|
};
|
|
|
|
|
|
|
|
out << std::setw(16) << std::right << colname
|
|
|
|
<< " : " << value
|
|
|
|
<< std::endl;
|
|
|
|
}};
|
|
|
|
|
|
|
|
if(param[1] != "**")
|
|
|
|
{
|
|
|
|
query(param.at(1));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
for(const auto &colname : database.column_names)
|
|
|
|
query(colname);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
catch(const std::out_of_range &e)
|
|
|
|
{
|
|
|
|
out << "No open database by that name" << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-03-23 05:24:43 +01:00
|
|
|
bool
|
2018-03-26 09:04:47 +02:00
|
|
|
console_cmd__db__txns(opt &out, const string_view &line)
|
2018-03-23 05:24:43 +01:00
|
|
|
try
|
|
|
|
{
|
|
|
|
const auto dbname
|
|
|
|
{
|
|
|
|
token(line, ' ', 0)
|
|
|
|
};
|
|
|
|
|
|
|
|
if(dbname != "events")
|
|
|
|
throw error
|
|
|
|
{
|
|
|
|
"Sorry, this command is specific to the events db for now."
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto seqnum
|
|
|
|
{
|
|
|
|
lex_cast<uint64_t>(token(line, ' ', 1, "0"))
|
|
|
|
};
|
|
|
|
|
|
|
|
auto limit
|
|
|
|
{
|
|
|
|
lex_cast<size_t>(token(line, ' ', 2, "32"))
|
|
|
|
};
|
|
|
|
|
|
|
|
auto &database
|
|
|
|
{
|
2018-05-25 05:01:52 +02:00
|
|
|
db::database::get(dbname)
|
2018-03-23 05:24:43 +01:00
|
|
|
};
|
|
|
|
|
2018-03-26 08:23:30 +02:00
|
|
|
for_each(database, seqnum, db::seq_closure_bool{[&out, &limit]
|
2018-03-23 05:24:43 +01:00
|
|
|
(db::txn &txn, const uint64_t &seqnum) -> bool
|
|
|
|
{
|
2018-04-17 00:16:51 +02:00
|
|
|
m::event::id::buf event_id;
|
|
|
|
txn.get(db::op::SET, "event_id", [&event_id]
|
|
|
|
(const db::delta &delta)
|
|
|
|
{
|
|
|
|
event_id = std::get<delta.KEY>(delta);
|
|
|
|
});
|
|
|
|
|
|
|
|
if(event_id)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
out << std::setw(12) << std::right << seqnum << " : "
|
|
|
|
<< string_view{event_id}
|
|
|
|
<< std::endl;
|
2018-03-23 05:24:43 +01:00
|
|
|
|
|
|
|
return --limit;
|
|
|
|
}});
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
catch(const std::out_of_range &e)
|
|
|
|
{
|
|
|
|
out << "No open database by that name" << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-03-28 00:27:46 +02:00
|
|
|
bool
|
|
|
|
console_cmd__db__txn(opt &out, const string_view &line)
|
|
|
|
try
|
|
|
|
{
|
|
|
|
const auto dbname
|
|
|
|
{
|
|
|
|
token(line, ' ', 0)
|
|
|
|
};
|
|
|
|
|
|
|
|
if(dbname != "events")
|
|
|
|
throw error
|
|
|
|
{
|
|
|
|
"Sorry, this command is specific to the events db for now."
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto seqnum
|
|
|
|
{
|
|
|
|
lex_cast<uint64_t>(token(line, ' ', 1, "0"))
|
|
|
|
};
|
|
|
|
|
|
|
|
auto &database
|
|
|
|
{
|
2018-05-25 05:01:52 +02:00
|
|
|
db::database::get(dbname)
|
2018-03-28 00:27:46 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
get(database, seqnum, db::seq_closure{[&out]
|
|
|
|
(db::txn &txn, const uint64_t &seqnum)
|
|
|
|
{
|
|
|
|
for_each(txn, [&out, &seqnum]
|
|
|
|
(const db::delta &delta)
|
|
|
|
{
|
|
|
|
out << std::setw(12) << std::right << seqnum << " : "
|
|
|
|
<< std::setw(8) << std::left << reflect(std::get<delta.OP>(delta)) << " "
|
|
|
|
<< std::setw(18) << std::right << std::get<delta.COL>(delta) << " "
|
|
|
|
<< std::get<delta.KEY>(delta)
|
|
|
|
<< std::endl;
|
|
|
|
});
|
|
|
|
}});
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
catch(const std::out_of_range &e)
|
|
|
|
{
|
|
|
|
out << "No open database by that name" << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-03-23 03:56:08 +01:00
|
|
|
bool
|
2018-03-26 09:04:47 +02:00
|
|
|
console_cmd__db__checkpoint(opt &out, const string_view &line)
|
2018-03-23 03:56:08 +01:00
|
|
|
try
|
|
|
|
{
|
|
|
|
const auto dbname
|
|
|
|
{
|
|
|
|
token(line, ' ', 0)
|
|
|
|
};
|
|
|
|
|
2018-05-25 05:01:52 +02:00
|
|
|
auto &database
|
2018-03-23 03:56:08 +01:00
|
|
|
{
|
2018-05-25 05:01:52 +02:00
|
|
|
db::database::get(dbname)
|
2018-03-23 03:56:08 +01:00
|
|
|
};
|
|
|
|
|
2018-05-25 05:01:52 +02:00
|
|
|
const auto seqnum
|
2018-03-23 03:56:08 +01:00
|
|
|
{
|
2018-05-25 05:01:52 +02:00
|
|
|
checkpoint(database)
|
2018-03-23 03:56:08 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
out << "Checkpoint " << name(database)
|
2018-05-25 05:01:52 +02:00
|
|
|
<< " at sequence " << seqnum << " complete."
|
2018-03-23 03:56:08 +01:00
|
|
|
<< std::endl;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
catch(const std::out_of_range &e)
|
|
|
|
{
|
|
|
|
out << "No open database by that name" << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-07-06 00:58:58 +02:00
|
|
|
bool
|
|
|
|
console_cmd__db__check(opt &out, const string_view &line)
|
|
|
|
try
|
|
|
|
{
|
|
|
|
const auto dbname
|
|
|
|
{
|
|
|
|
token(line, ' ', 0)
|
|
|
|
};
|
|
|
|
|
|
|
|
auto &database
|
|
|
|
{
|
|
|
|
db::database::get(dbname)
|
|
|
|
};
|
|
|
|
|
|
|
|
check(database);
|
|
|
|
out << "Check of " << dbname << " completed without error."
|
|
|
|
<< std::endl;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
catch(const std::out_of_range &e)
|
|
|
|
{
|
|
|
|
out << "No open database by that name" << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-09-05 08:21:26 +02:00
|
|
|
bool
|
|
|
|
console_cmd__db__DROP__DROP__DROP(opt &out, const string_view &line)
|
|
|
|
try
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"dbname", "column"
|
|
|
|
}};
|
|
|
|
|
|
|
|
const auto dbname
|
|
|
|
{
|
|
|
|
param.at(0)
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto colname
|
|
|
|
{
|
|
|
|
param.at(0)
|
|
|
|
};
|
|
|
|
|
|
|
|
auto &database
|
|
|
|
{
|
|
|
|
db::database::get(dbname)
|
|
|
|
};
|
|
|
|
|
|
|
|
throw error
|
|
|
|
{
|
|
|
|
"TODO: please implement."
|
|
|
|
};
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
catch(const std::out_of_range &e)
|
|
|
|
{
|
|
|
|
out << "No open database by that name" << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-02-08 05:17:26 +01:00
|
|
|
bool
|
2018-03-26 09:04:47 +02:00
|
|
|
console_cmd__db__list(opt &out, const string_view &line)
|
2018-02-08 05:17:26 +01:00
|
|
|
{
|
|
|
|
const auto available
|
|
|
|
{
|
|
|
|
db::available()
|
|
|
|
};
|
|
|
|
|
|
|
|
for(const auto &path : available)
|
|
|
|
{
|
|
|
|
const auto name
|
|
|
|
{
|
2018-08-12 20:56:53 +02:00
|
|
|
replace(lstrip(lstrip(path, fs::get(fs::DB)), '/'), "/", ":")
|
2018-02-08 05:17:26 +01:00
|
|
|
};
|
|
|
|
|
2018-05-25 05:01:52 +02:00
|
|
|
const auto &d
|
2018-02-08 05:17:26 +01:00
|
|
|
{
|
2018-05-25 05:01:52 +02:00
|
|
|
db::database::get(std::nothrow, name)
|
2018-02-08 05:17:26 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
const auto &light
|
|
|
|
{
|
2018-05-25 05:01:52 +02:00
|
|
|
d? "\033[1;42m \033[0m" : " "
|
2018-02-08 05:17:26 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
out << "[" << light << "]"
|
|
|
|
<< " " << name
|
|
|
|
<< " `" << path << "'"
|
|
|
|
<< std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-04-18 23:27:18 +02:00
|
|
|
bool
|
|
|
|
console_cmd__db(opt &out, const string_view &line)
|
|
|
|
try
|
|
|
|
{
|
|
|
|
if(empty(line))
|
|
|
|
return console_cmd__db__list(out, line);
|
|
|
|
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
2018-05-14 12:41:25 +02:00
|
|
|
"dbname"
|
2018-04-18 23:27:18 +02:00
|
|
|
}};
|
|
|
|
|
|
|
|
auto &database
|
|
|
|
{
|
2018-05-25 05:01:52 +02:00
|
|
|
db::database::get(param.at(0))
|
2018-04-18 23:27:18 +02:00
|
|
|
};
|
2018-04-20 06:45:39 +02:00
|
|
|
|
2018-05-23 02:01:01 +02:00
|
|
|
out << std::left << std::setw(28) << std::setfill('_') << "UUID "
|
|
|
|
<< " " << uuid(database)
|
|
|
|
<< std::endl;
|
|
|
|
|
2018-05-23 13:16:30 +02:00
|
|
|
out << std::left << std::setw(28) << std::setfill('_') << "errors "
|
|
|
|
<< " " << db::property(database, "rocksdb.background-errors")
|
|
|
|
<< std::endl;
|
|
|
|
|
2018-05-14 12:41:25 +02:00
|
|
|
out << std::left << std::setw(28) << std::setfill('_') << "columns "
|
|
|
|
<< " " << database.columns.size()
|
|
|
|
<< std::endl;
|
|
|
|
|
|
|
|
out << std::left << std::setw(28) << std::setfill('_') << "files "
|
|
|
|
<< " " << file_count(database)
|
|
|
|
<< std::endl;
|
|
|
|
|
2018-05-23 13:16:30 +02:00
|
|
|
out << std::left << std::setw(28) << std::setfill('_') << "sequence "
|
|
|
|
<< " " << sequence(database)
|
|
|
|
<< std::endl;
|
|
|
|
|
2018-05-14 12:41:25 +02:00
|
|
|
out << std::left << std::setw(28) << std::setfill('_') << "keys "
|
|
|
|
<< " " << db::property(database, "rocksdb.estimate-num-keys")
|
|
|
|
<< std::endl;
|
|
|
|
|
|
|
|
out << std::left << std::setw(28) << std::setfill('_') << "size "
|
|
|
|
<< " " << bytes(database)
|
|
|
|
<< std::endl;
|
|
|
|
|
2018-05-15 02:31:08 +02:00
|
|
|
out << std::left << std::setw(28) << std::setfill('_') << "row cache size "
|
|
|
|
<< " " << db::usage(cache(database))
|
|
|
|
<< std::endl;
|
|
|
|
|
2018-05-14 12:41:25 +02:00
|
|
|
out << std::left << std::setw(28) << std::setfill('_') << "live data size "
|
|
|
|
<< " " << db::property(database, "rocksdb.estimate-live-data-size")
|
|
|
|
<< std::endl;
|
|
|
|
|
|
|
|
out << std::left << std::setw(28) << std::setfill('_') << "all tables size "
|
|
|
|
<< " " << db::property(database, "rocksdb.size-all-mem-tables")
|
|
|
|
<< std::endl;
|
|
|
|
|
|
|
|
out << std::left << std::setw(28) << std::setfill('_') << "active table size "
|
|
|
|
<< " " << db::property(database, "rocksdb.cur-size-active-mem-table")
|
|
|
|
<< std::endl;
|
2018-05-14 04:14:57 +02:00
|
|
|
|
2018-05-14 12:41:25 +02:00
|
|
|
out << std::left << std::setw(28) << std::setfill('_') << "active table entries "
|
|
|
|
<< " " << db::property(database, "rocksdb.num-entries-active-mem-table")
|
2018-05-14 04:14:57 +02:00
|
|
|
<< std::endl;
|
|
|
|
|
2018-05-14 12:41:25 +02:00
|
|
|
out << std::left << std::setw(28) << std::setfill('_') << "active table deletes "
|
|
|
|
<< " " << db::property(database, "rocksdb.num-deletes-active-mem-table")
|
2018-05-14 04:14:57 +02:00
|
|
|
<< std::endl;
|
|
|
|
|
2018-05-23 13:16:30 +02:00
|
|
|
out << std::left << std::setw(28) << std::setfill('_') << "lsm sequence "
|
2018-05-14 12:41:25 +02:00
|
|
|
<< " " << db::property(database, "rocksdb.current-super-version-number")
|
2018-05-14 04:14:57 +02:00
|
|
|
<< std::endl;
|
|
|
|
|
2018-04-20 06:45:39 +02:00
|
|
|
return true;
|
2018-04-18 23:27:18 +02:00
|
|
|
}
|
|
|
|
catch(const std::out_of_range &e)
|
|
|
|
{
|
|
|
|
out << "No open database by that name" << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-02-06 22:18:30 +01:00
|
|
|
//
|
2018-04-14 01:31:37 +02:00
|
|
|
// peer
|
2018-02-06 22:18:30 +01:00
|
|
|
//
|
|
|
|
|
2018-03-26 09:33:26 +02:00
|
|
|
static bool
|
2018-04-14 01:31:37 +02:00
|
|
|
html__peer(opt &out, const string_view &line)
|
2018-03-26 09:33:26 +02:00
|
|
|
{
|
|
|
|
out << "<table>";
|
|
|
|
|
|
|
|
out << "<tr>";
|
|
|
|
out << "<td> HOST </td>";
|
|
|
|
out << "<td> ADDR </td>";
|
|
|
|
out << "<td> LINKS </td>";
|
|
|
|
out << "<td> REQS </td>";
|
2018-03-27 02:11:39 +02:00
|
|
|
out << "<td> ▲ BYTES Q</td>";
|
|
|
|
out << "<td> ▼ BYTES Q</td>";
|
2018-03-27 02:21:24 +02:00
|
|
|
out << "<td> ▲ BYTES</td>";
|
|
|
|
out << "<td> ▼ BYTES</td>";
|
2018-03-26 09:33:26 +02:00
|
|
|
out << "<td> ERROR </td>";
|
|
|
|
out << "</tr>";
|
|
|
|
|
|
|
|
for(const auto &p : server::peers)
|
|
|
|
{
|
|
|
|
using std::setw;
|
|
|
|
using std::left;
|
|
|
|
using std::right;
|
|
|
|
|
|
|
|
const auto &host{p.first};
|
|
|
|
const auto &peer{*p.second};
|
|
|
|
const net::ipport &ipp{peer.remote};
|
|
|
|
|
|
|
|
out << "<tr>";
|
|
|
|
|
|
|
|
out << "<td>" << host << "</td>";
|
|
|
|
out << "<td>" << ipp << "</td>";
|
|
|
|
|
|
|
|
out << "<td>" << peer.link_count() << "</td>";
|
|
|
|
out << "<td>" << peer.tag_count() << "</td>";
|
2018-03-27 02:11:39 +02:00
|
|
|
out << "<td>" << peer.write_size() << "</td>";
|
|
|
|
out << "<td>" << peer.read_size() << "</td>";
|
2018-03-27 02:21:24 +02:00
|
|
|
out << "<td>" << peer.write_total() << "</td>";
|
|
|
|
out << "<td>" << peer.read_total() << "</td>";
|
2018-03-26 09:33:26 +02:00
|
|
|
|
|
|
|
out << "<td>";
|
|
|
|
if(peer.err_has() && peer.err_msg())
|
|
|
|
out << peer.err_msg();
|
|
|
|
else if(peer.err_has())
|
|
|
|
out << "<unknown error>"_sv;
|
|
|
|
out << "</td>";
|
|
|
|
|
|
|
|
out << "</tr>";
|
|
|
|
}
|
|
|
|
|
|
|
|
out << "</table>";
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-02-06 22:18:30 +01:00
|
|
|
bool
|
2018-04-14 01:31:37 +02:00
|
|
|
console_cmd__peer(opt &out, const string_view &line)
|
2018-02-06 22:18:30 +01:00
|
|
|
{
|
2018-03-26 09:33:26 +02:00
|
|
|
if(out.html)
|
2018-04-14 01:31:37 +02:00
|
|
|
return html__peer(out, line);
|
2018-03-26 09:33:26 +02:00
|
|
|
|
2018-05-31 19:47:06 +02:00
|
|
|
const auto print{[&out]
|
|
|
|
(const auto &host, const auto &peer)
|
2018-02-06 22:18:30 +01:00
|
|
|
{
|
2018-03-26 02:26:39 +02:00
|
|
|
using std::setw;
|
|
|
|
using std::left;
|
|
|
|
using std::right;
|
2018-03-03 18:41:37 +01:00
|
|
|
|
2018-03-26 02:26:39 +02:00
|
|
|
const net::ipport &ipp{peer.remote};
|
2018-05-31 19:47:06 +02:00
|
|
|
out << setw(40) << left << host;
|
2018-03-03 18:41:37 +01:00
|
|
|
|
2018-03-26 02:26:39 +02:00
|
|
|
if(ipp)
|
|
|
|
out << ' ' << setw(22) << left << ipp;
|
|
|
|
else
|
|
|
|
out << ' ' << setw(22) << left << " ";
|
2018-03-03 18:41:37 +01:00
|
|
|
|
2018-05-30 17:18:40 +02:00
|
|
|
out << " " << setw(2) << right << peer.link_count() << " L"
|
|
|
|
<< " " << setw(2) << right << peer.tag_count() << " T"
|
|
|
|
<< " " << setw(2) << right << peer.tag_committed() << " TC"
|
|
|
|
<< " " << setw(9) << right << peer.write_size() << " UP Q"
|
|
|
|
<< " " << setw(9) << right << peer.read_size() << " DN Q"
|
|
|
|
<< " " << setw(9) << right << peer.write_total() << " UP"
|
|
|
|
<< " " << setw(9) << right << peer.read_total() << " DN"
|
2018-03-26 02:26:39 +02:00
|
|
|
;
|
2018-03-12 22:06:12 +01:00
|
|
|
|
2018-03-26 02:26:39 +02:00
|
|
|
if(peer.err_has() && peer.err_msg())
|
|
|
|
out << " :" << peer.err_msg();
|
|
|
|
else if(peer.err_has())
|
|
|
|
out << " <unknown error>"_sv;
|
2018-03-25 03:06:03 +02:00
|
|
|
|
2018-03-26 02:26:39 +02:00
|
|
|
out << std::endl;
|
2018-05-31 19:47:06 +02:00
|
|
|
}};
|
|
|
|
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"[hostport]", "[all]"
|
|
|
|
}};
|
|
|
|
|
|
|
|
const auto &hostport
|
|
|
|
{
|
|
|
|
param[0]
|
|
|
|
};
|
|
|
|
|
|
|
|
const bool all
|
|
|
|
{
|
|
|
|
has(line, "all")
|
|
|
|
};
|
|
|
|
|
|
|
|
if(hostport && hostport != "all")
|
|
|
|
{
|
|
|
|
auto &peer
|
|
|
|
{
|
|
|
|
server::find(hostport)
|
|
|
|
};
|
|
|
|
|
|
|
|
print(peer.hostname, peer);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
for(const auto &p : server::peers)
|
|
|
|
{
|
|
|
|
const auto &host{p.first};
|
|
|
|
const auto &peer{*p.second};
|
|
|
|
if(peer.err_has() && !all)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
print(host, peer);
|
2018-02-06 22:18:30 +01:00
|
|
|
}
|
2018-03-03 18:41:37 +01:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-09-03 04:24:20 +02:00
|
|
|
bool
|
|
|
|
console_cmd__peer__count(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
size_t i{0};
|
|
|
|
for(const auto &pair : ircd::server::peers)
|
|
|
|
{
|
|
|
|
assert(bool(pair.second));
|
|
|
|
const auto &peer{*pair.second};
|
|
|
|
if(!peer.err_has())
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
|
|
|
|
out << i << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-04-14 04:12:20 +02:00
|
|
|
bool
|
|
|
|
console_cmd__peer__error(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
for(const auto &pair : ircd::server::peers)
|
|
|
|
{
|
|
|
|
using std::setw;
|
|
|
|
using std::left;
|
|
|
|
using std::right;
|
|
|
|
|
|
|
|
const auto &host{pair.first};
|
|
|
|
assert(bool(pair.second));
|
|
|
|
const auto &peer{*pair.second};
|
|
|
|
if(!peer.err_has())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
const net::ipport &ipp{peer.remote};
|
|
|
|
out << setw(40) << right << host;
|
|
|
|
|
|
|
|
if(ipp)
|
|
|
|
out << ' ' << setw(22) << left << ipp;
|
|
|
|
else
|
|
|
|
out << ' ' << setw(22) << left << " ";
|
|
|
|
|
|
|
|
out << peer.e->etime;
|
|
|
|
|
|
|
|
if(peer.err_msg())
|
|
|
|
out << " :" << peer.err_msg();
|
|
|
|
else
|
|
|
|
out << " <unknown error>"_sv;
|
|
|
|
|
|
|
|
out << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-09-03 04:24:20 +02:00
|
|
|
bool
|
|
|
|
console_cmd__peer__error__count(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
size_t i{0};
|
|
|
|
for(const auto &pair : ircd::server::peers)
|
|
|
|
{
|
|
|
|
assert(bool(pair.second));
|
|
|
|
const auto &peer{*pair.second};
|
|
|
|
if(peer.err_has())
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
|
|
|
|
out << i << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-03-12 22:06:12 +01:00
|
|
|
bool
|
2018-04-14 01:31:37 +02:00
|
|
|
console_cmd__peer__error__clear__all(opt &out, const string_view &line)
|
2018-03-12 22:06:12 +01:00
|
|
|
{
|
2018-04-11 06:04:25 +02:00
|
|
|
size_t cleared(0);
|
|
|
|
for(auto &pair : ircd::server::peers)
|
|
|
|
{
|
|
|
|
const auto &name{pair.first};
|
|
|
|
assert(bool(pair.second));
|
|
|
|
auto &peer{*pair.second};
|
|
|
|
cleared += peer.err_clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
out << "cleared " << cleared
|
|
|
|
<< " of " << ircd::server::peers.size()
|
|
|
|
<< std::endl;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2018-04-14 01:31:37 +02:00
|
|
|
console_cmd__peer__error__clear(opt &out, const string_view &line)
|
2018-04-11 06:04:25 +02:00
|
|
|
{
|
|
|
|
if(empty(line))
|
2018-04-14 01:31:37 +02:00
|
|
|
return console_cmd__peer__error__clear__all(out, line);
|
2018-04-11 06:04:25 +02:00
|
|
|
|
2018-03-12 22:06:12 +01:00
|
|
|
const net::hostport hp
|
|
|
|
{
|
|
|
|
token(line, ' ', 0)
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto cleared
|
|
|
|
{
|
|
|
|
server::errclear(hp)
|
|
|
|
};
|
|
|
|
|
|
|
|
out << std::boolalpha << cleared << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-03-25 03:06:03 +02:00
|
|
|
bool
|
2018-04-14 01:31:37 +02:00
|
|
|
console_cmd__peer__version(opt &out, const string_view &line)
|
2018-03-25 03:06:03 +02:00
|
|
|
{
|
|
|
|
for(const auto &p : server::peers)
|
|
|
|
{
|
|
|
|
using std::setw;
|
|
|
|
using std::left;
|
|
|
|
using std::right;
|
|
|
|
|
|
|
|
const auto &host{p.first};
|
|
|
|
const auto &peer{*p.second};
|
|
|
|
const net::ipport &ipp{peer.remote};
|
|
|
|
|
|
|
|
out << setw(40) << right << host;
|
|
|
|
|
|
|
|
if(ipp)
|
|
|
|
out << ' ' << setw(22) << left << ipp;
|
|
|
|
else
|
|
|
|
out << ' ' << setw(22) << left << " ";
|
|
|
|
|
|
|
|
if(!empty(peer.server_name))
|
|
|
|
out << " :" << peer.server_name;
|
|
|
|
|
|
|
|
out << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-05-14 09:04:44 +02:00
|
|
|
bool
|
|
|
|
console_cmd__peer__find(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"ip:port"
|
|
|
|
}};
|
|
|
|
|
|
|
|
const auto &ip{rsplit(param.at(0), ':').first};
|
|
|
|
const auto &port{rsplit(param.at(0), ':').second};
|
|
|
|
const net::ipport ipp{ip, port? port : "0"};
|
|
|
|
|
|
|
|
for(const auto &p : server::peers)
|
|
|
|
{
|
|
|
|
const auto &hostname{p.first};
|
|
|
|
const auto &peer{*p.second};
|
|
|
|
const net::ipport &ipp_
|
|
|
|
{
|
|
|
|
peer.remote
|
|
|
|
};
|
|
|
|
|
|
|
|
if(is_v6(ipp) && (!is_v6(ipp_) || host6(ipp) != host6(ipp_)))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if(is_v4(ipp) && (!is_v4(ipp_) || host4(ipp) != host4(ipp_)))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if(net::port(ipp) && net::port(ipp) != net::port(ipp_))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
out << hostname << std::endl;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-05-29 20:54:18 +02:00
|
|
|
bool
|
|
|
|
console_cmd__peer__cancel(opt &out, const string_view &line)
|
|
|
|
try
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"hostport"
|
|
|
|
}};
|
|
|
|
|
|
|
|
const auto &hostport
|
|
|
|
{
|
|
|
|
param.at(0)
|
|
|
|
};
|
|
|
|
|
|
|
|
auto &peer
|
|
|
|
{
|
|
|
|
server::find(hostport)
|
|
|
|
};
|
|
|
|
|
|
|
|
peer.cancel();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
catch(const std::out_of_range &e)
|
|
|
|
{
|
|
|
|
throw error
|
|
|
|
{
|
|
|
|
"Peer not found"
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-05-30 12:13:36 +02:00
|
|
|
bool
|
|
|
|
console_cmd__peer__close(opt &out, const string_view &line)
|
|
|
|
try
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"hostport", "[dc]"
|
|
|
|
}};
|
|
|
|
|
|
|
|
const auto &hostport
|
|
|
|
{
|
|
|
|
param.at(0)
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto &dc
|
|
|
|
{
|
|
|
|
param.at(1, "SSL_NOTIFY"_sv)
|
|
|
|
};
|
|
|
|
|
|
|
|
auto &peer
|
|
|
|
{
|
|
|
|
server::find(hostport)
|
|
|
|
};
|
|
|
|
|
|
|
|
const net::close_opts opts
|
|
|
|
{
|
|
|
|
dc == "RST"?
|
|
|
|
net::dc::RST:
|
|
|
|
dc == "SSL_NOTIFY"?
|
|
|
|
net::dc::SSL_NOTIFY:
|
|
|
|
net::dc::SSL_NOTIFY
|
|
|
|
};
|
|
|
|
|
|
|
|
peer.close(opts);
|
|
|
|
peer.err_clear();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
catch(const std::out_of_range &e)
|
|
|
|
{
|
|
|
|
throw error
|
|
|
|
{
|
|
|
|
"Peer not found"
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-04-14 01:31:37 +02:00
|
|
|
//
|
|
|
|
// net
|
|
|
|
//
|
|
|
|
|
2018-03-03 18:41:37 +01:00
|
|
|
bool
|
2018-03-26 09:04:47 +02:00
|
|
|
console_cmd__net__host(opt &out, const string_view &line)
|
2018-03-03 18:41:37 +01:00
|
|
|
{
|
2018-03-26 02:26:39 +02:00
|
|
|
const params token
|
2018-03-03 18:41:37 +01:00
|
|
|
{
|
2018-03-26 02:26:39 +02:00
|
|
|
line, " ", {"host", "service"}
|
|
|
|
};
|
2018-02-06 22:18:30 +01:00
|
|
|
|
2018-03-26 02:26:39 +02:00
|
|
|
const auto &host{token.at(0)};
|
|
|
|
const auto &service
|
|
|
|
{
|
|
|
|
token.count() > 1? token.at(1) : string_view{}
|
|
|
|
};
|
|
|
|
|
|
|
|
const net::hostport hostport
|
2018-02-06 22:18:30 +01:00
|
|
|
{
|
2018-03-26 02:26:39 +02:00
|
|
|
host, service
|
2018-02-06 22:18:30 +01:00
|
|
|
};
|
|
|
|
|
2018-03-26 02:26:39 +02:00
|
|
|
ctx::dock dock;
|
|
|
|
bool done{false};
|
|
|
|
net::ipport ipport;
|
|
|
|
std::exception_ptr eptr;
|
|
|
|
net::dns(hostport, [&done, &dock, &eptr, &ipport]
|
2018-05-02 03:40:03 +02:00
|
|
|
(std::exception_ptr eptr_, const net::hostport &, const net::ipport &ipport_)
|
2018-02-06 22:18:30 +01:00
|
|
|
{
|
2018-03-26 02:26:39 +02:00
|
|
|
eptr = std::move(eptr_);
|
|
|
|
ipport = ipport_;
|
|
|
|
done = true;
|
|
|
|
dock.notify_one();
|
|
|
|
});
|
2018-03-02 08:56:48 +01:00
|
|
|
|
2018-03-26 02:26:39 +02:00
|
|
|
while(!done)
|
|
|
|
dock.wait();
|
|
|
|
|
|
|
|
if(eptr)
|
|
|
|
std::rethrow_exception(eptr);
|
|
|
|
else
|
|
|
|
out << ipport << std::endl;
|
2018-02-06 22:18:30 +01:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-05-01 23:50:52 +02:00
|
|
|
bool
|
|
|
|
console_cmd__host(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
return console_cmd__net__host(out, line);
|
|
|
|
}
|
|
|
|
|
2018-03-02 08:56:48 +01:00
|
|
|
bool
|
2018-04-24 01:19:52 +02:00
|
|
|
console_cmd__net__host__cache__A(opt &out, const string_view &line)
|
2018-03-02 08:56:48 +01:00
|
|
|
{
|
2018-04-24 01:19:52 +02:00
|
|
|
for(const auto &pair : net::dns::cache.A)
|
2018-03-02 08:56:48 +01:00
|
|
|
{
|
2018-04-24 01:19:52 +02:00
|
|
|
const auto &host{pair.first};
|
|
|
|
const auto &record{pair.second};
|
|
|
|
const net::ipport ipp{record.ip4, 0};
|
|
|
|
out << std::setw(48) << std::right << host
|
|
|
|
<< " => " << std::setw(21) << std::left << ipp
|
|
|
|
<< " expires " << timestr(record.ttl, ircd::localtime)
|
|
|
|
<< " (" << record.ttl << ")"
|
|
|
|
<< std::endl;
|
|
|
|
}
|
2018-03-02 08:56:48 +01:00
|
|
|
|
2018-04-24 01:19:52 +02:00
|
|
|
return true;
|
|
|
|
}
|
2018-03-02 08:56:48 +01:00
|
|
|
|
2018-09-03 04:24:20 +02:00
|
|
|
bool
|
|
|
|
console_cmd__net__host__cache__A__count(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
size_t count[2] {0};
|
|
|
|
for(const auto &pair : net::dns::cache.A)
|
|
|
|
{
|
|
|
|
const auto &host{pair.first};
|
|
|
|
const auto &record{pair.second};
|
|
|
|
++count[bool(record.ip4)];
|
|
|
|
}
|
|
|
|
|
|
|
|
out << "resolved: " << count[1] << std::endl;
|
|
|
|
out << "error: " << count[0] << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-09-14 04:33:13 +02:00
|
|
|
bool
|
|
|
|
console_cmd__net__host__cache__A__clear(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"hostport"
|
|
|
|
}};
|
|
|
|
|
|
|
|
if(!param.count())
|
|
|
|
{
|
|
|
|
const size_t size{net::dns::cache.A.size()};
|
|
|
|
net::dns::cache.A.clear();
|
|
|
|
out << size << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
const net::hostport hostport
|
|
|
|
{
|
|
|
|
param.at("hostport")
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto ret
|
|
|
|
{
|
|
|
|
net::dns::cache.A.erase(host(hostport))
|
|
|
|
};
|
|
|
|
|
|
|
|
out << ret << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-04-24 01:19:52 +02:00
|
|
|
bool
|
|
|
|
console_cmd__net__host__cache__SRV(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
for(const auto &pair : net::dns::cache.SRV)
|
|
|
|
{
|
|
|
|
const auto &key{pair.first};
|
|
|
|
const auto &record{pair.second};
|
|
|
|
const net::hostport hostport
|
2018-03-02 08:56:48 +01:00
|
|
|
{
|
2018-04-24 01:19:52 +02:00
|
|
|
record.tgt, record.port
|
2018-03-02 08:56:48 +01:00
|
|
|
};
|
2018-04-24 01:19:52 +02:00
|
|
|
|
|
|
|
out << std::setw(48) << std::right << key
|
|
|
|
<< " => " << std::setw(48) << std::left << hostport
|
|
|
|
<< " expires " << timestr(record.ttl, ircd::localtime)
|
|
|
|
<< " (" << record.ttl << ")"
|
|
|
|
<< std::endl;
|
2018-03-02 08:56:48 +01:00
|
|
|
}
|
2018-04-24 01:19:52 +02:00
|
|
|
|
|
|
|
return true;
|
2018-03-02 08:56:48 +01:00
|
|
|
}
|
|
|
|
|
2018-09-03 04:24:20 +02:00
|
|
|
bool
|
|
|
|
console_cmd__net__host__cache__SRV__count(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
size_t count[2] {0};
|
|
|
|
for(const auto &pair : net::dns::cache.SRV)
|
|
|
|
{
|
|
|
|
const auto &host{pair.first};
|
|
|
|
const auto &record{pair.second};
|
|
|
|
++count[bool(record.tgt)];
|
|
|
|
}
|
|
|
|
|
|
|
|
out << "resolved: " << count[1] << std::endl;
|
|
|
|
out << "error: " << count[0] << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-09-14 04:39:02 +02:00
|
|
|
bool
|
|
|
|
console_cmd__net__host__cache__SRV__clear(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"hostport", "[service]"
|
|
|
|
}};
|
|
|
|
|
|
|
|
if(!param.count())
|
|
|
|
{
|
|
|
|
const size_t size{net::dns::cache.SRV.size()};
|
|
|
|
net::dns::cache.SRV.clear();
|
|
|
|
out << size << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
const net::hostport hostport
|
|
|
|
{
|
|
|
|
param.at("hostport")
|
|
|
|
};
|
|
|
|
|
|
|
|
net::dns::opts opts;
|
|
|
|
opts.srv = param.at("[service]", "_matrix._tcp."_sv);
|
|
|
|
|
|
|
|
thread_local char srv_key_buf[128];
|
|
|
|
const auto srv_key
|
|
|
|
{
|
|
|
|
net::dns::make_SRV_key(srv_key_buf, hostport, opts)
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto ret
|
|
|
|
{
|
|
|
|
net::dns::cache.SRV.erase(srv_key)
|
|
|
|
};
|
|
|
|
|
|
|
|
out << ret << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-05-01 23:51:13 +02:00
|
|
|
bool
|
|
|
|
console_cmd__net__host__prefetch(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"room_id",
|
|
|
|
}};
|
|
|
|
|
|
|
|
const auto &room_id
|
|
|
|
{
|
|
|
|
m::room_id(param.at(0))
|
|
|
|
};
|
|
|
|
|
|
|
|
const m::room room
|
|
|
|
{
|
|
|
|
room_id
|
|
|
|
};
|
|
|
|
|
|
|
|
const m::room::origins origins
|
|
|
|
{
|
|
|
|
room
|
|
|
|
};
|
|
|
|
|
|
|
|
size_t count{0};
|
|
|
|
origins.for_each([&count](const string_view &origin)
|
|
|
|
{
|
|
|
|
net::dns(origin, net::dns::prefetch_ipport);
|
|
|
|
++count;
|
|
|
|
});
|
|
|
|
|
|
|
|
out << "Prefetch resolving " << count << " origins."
|
|
|
|
<< std::endl;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-08-16 08:41:39 +02:00
|
|
|
bool
|
|
|
|
console_cmd__net__listen__list(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
using list = std::list<net::listener>;
|
|
|
|
|
2018-09-14 16:39:11 +02:00
|
|
|
static mods::import<list> listeners
|
2018-08-16 08:41:39 +02:00
|
|
|
{
|
|
|
|
"s_listen", "listeners"
|
|
|
|
};
|
|
|
|
|
|
|
|
const list &l(listeners);
|
|
|
|
for(const auto &listener : l)
|
2018-08-30 00:54:24 +02:00
|
|
|
{
|
|
|
|
const json::object opts(listener);
|
|
|
|
out << listener << ": " << opts << std::endl;
|
|
|
|
}
|
2018-08-16 08:41:39 +02:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
console_cmd__net__listen(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
if(empty(line))
|
|
|
|
return console_cmd__net__listen__list(out, line);
|
|
|
|
|
|
|
|
const params token{line, " ",
|
|
|
|
{
|
|
|
|
"name",
|
|
|
|
"host",
|
|
|
|
"port",
|
|
|
|
"certificate_pem_path",
|
|
|
|
"private_key_pem_path",
|
|
|
|
"tmp_dh_path",
|
|
|
|
"backlog",
|
|
|
|
"max_connections",
|
|
|
|
}};
|
|
|
|
|
|
|
|
const json::members opts
|
|
|
|
{
|
|
|
|
{ "host", token.at("host", "0.0.0.0"_sv) },
|
|
|
|
{ "port", token.at("port", 8448L) },
|
|
|
|
{ "certificate_pem_path", token.at("certificate_pem_path") },
|
|
|
|
{ "private_key_pem_path", token.at("private_key_pem_path") },
|
2018-08-31 04:23:50 +02:00
|
|
|
{ "tmp_dh_path", token.at("tmp_dh_path", ""_sv) },
|
2018-08-16 08:41:39 +02:00
|
|
|
{ "backlog", token.at("backlog", -1L) },
|
|
|
|
{ "max_connections", token.at("max_connections", -1L) },
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto eid
|
|
|
|
{
|
|
|
|
m::send(m::my_room, m::me, "ircd.listen", token.at("name"), opts)
|
|
|
|
};
|
|
|
|
|
|
|
|
out << eid << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-08-31 04:24:17 +02:00
|
|
|
bool
|
|
|
|
console_cmd__net__listen__load(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
using prototype = bool (const string_view &);
|
|
|
|
|
2018-09-14 16:39:11 +02:00
|
|
|
static mods::import<prototype> load_listener
|
2018-08-31 04:24:17 +02:00
|
|
|
{
|
|
|
|
"s_listen", "load_listener"
|
|
|
|
};
|
|
|
|
|
|
|
|
const params params{line, " ",
|
|
|
|
{
|
|
|
|
"name",
|
|
|
|
}};
|
|
|
|
|
|
|
|
if(load_listener(params.at("name")))
|
|
|
|
out << "loaded listener '" << params.at("name") << "'" << std::endl;
|
|
|
|
else
|
|
|
|
out << "failed to load listener '" << params.at("name") << "'" << std::endl;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
console_cmd__net__listen__unload(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
using prototype = bool (const string_view &);
|
|
|
|
|
2018-09-14 16:39:11 +02:00
|
|
|
static mods::import<prototype> unload_listener
|
2018-08-31 04:24:17 +02:00
|
|
|
{
|
|
|
|
"s_listen", "unload_listener"
|
|
|
|
};
|
|
|
|
|
|
|
|
const params params{line, " ",
|
|
|
|
{
|
|
|
|
"name",
|
|
|
|
}};
|
|
|
|
|
|
|
|
if(unload_listener(params.at("name")))
|
|
|
|
out << "unloaded listener '" << params.at("name") << "'" << std::endl;
|
|
|
|
else
|
|
|
|
out << "failed to unload listener '" << params.at("name") << "'" << std::endl;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-04-14 02:04:37 +02:00
|
|
|
//
|
|
|
|
// client
|
|
|
|
//
|
|
|
|
|
|
|
|
bool
|
|
|
|
console_cmd__client(opt &out, const string_view &line)
|
|
|
|
{
|
2018-04-15 01:26:57 +02:00
|
|
|
using std::setw;
|
|
|
|
using std::left;
|
|
|
|
using std::right;
|
|
|
|
|
2018-05-22 10:00:22 +02:00
|
|
|
const params param{line, " ",
|
|
|
|
{
|
2018-06-11 08:07:20 +02:00
|
|
|
"[reqs|id]",
|
2018-05-22 10:00:22 +02:00
|
|
|
}};
|
|
|
|
|
2018-06-11 08:07:20 +02:00
|
|
|
const bool &reqs
|
|
|
|
{
|
|
|
|
param[0] == "reqs"
|
|
|
|
};
|
|
|
|
|
2018-05-22 10:00:22 +02:00
|
|
|
const auto &idnum
|
|
|
|
{
|
2018-06-11 08:07:20 +02:00
|
|
|
!reqs?
|
|
|
|
param.at<ulong>(0, 0):
|
|
|
|
0
|
2018-05-22 10:00:22 +02:00
|
|
|
};
|
|
|
|
|
2018-09-02 06:16:05 +02:00
|
|
|
std::vector<client *> clients(client::map.size());
|
|
|
|
static const values<decltype(client::map)> values;
|
|
|
|
std::transform(begin(client::map), end(client::map), begin(clients), values);
|
|
|
|
std::sort(begin(clients), end(clients), []
|
|
|
|
(const auto &a, const auto &b)
|
|
|
|
{
|
|
|
|
return a->id < b->id;
|
|
|
|
});
|
|
|
|
|
|
|
|
for(const auto &client : clients)
|
2018-04-14 02:04:37 +02:00
|
|
|
{
|
2018-05-22 10:00:22 +02:00
|
|
|
if(idnum && client->id < idnum)
|
|
|
|
continue;
|
|
|
|
else if(idnum && client->id > idnum)
|
|
|
|
break;
|
2018-06-11 08:07:20 +02:00
|
|
|
else if(reqs && !client->reqctx)
|
|
|
|
continue;
|
2018-05-22 10:00:22 +02:00
|
|
|
|
2018-04-15 01:26:57 +02:00
|
|
|
out << setw(8) << left << client->id
|
|
|
|
<< " " << right << setw(22) << local(*client)
|
|
|
|
<< " " << left << setw(22) << remote(*client)
|
|
|
|
;
|
2018-04-14 02:04:37 +02:00
|
|
|
|
|
|
|
if(bool(client->sock))
|
|
|
|
{
|
|
|
|
const auto stat
|
|
|
|
{
|
|
|
|
net::bytes(*client->sock)
|
|
|
|
};
|
|
|
|
|
2018-04-15 01:26:57 +02:00
|
|
|
out << " | UP " << setw(8) << right << stat.second
|
|
|
|
<< " | DN " << setw(8) << right << stat.first
|
|
|
|
<< " |";
|
2018-04-14 02:04:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if(client->reqctx)
|
2018-04-15 01:26:57 +02:00
|
|
|
out << " CTX " << setw(4) << id(*client->reqctx);
|
2018-04-20 06:45:39 +02:00
|
|
|
else
|
|
|
|
out << " ASYNC";
|
2018-04-15 01:26:57 +02:00
|
|
|
|
2018-04-14 02:04:37 +02:00
|
|
|
if(client->request.user_id)
|
|
|
|
out << " USER " << client->request.user_id;
|
|
|
|
|
|
|
|
if(client->request.origin)
|
|
|
|
out << " PEER " << client->request.origin;
|
|
|
|
|
|
|
|
if(client->request.head.method)
|
|
|
|
out << " " << client->request.head.method << ""
|
|
|
|
<< " " << client->request.head.path;
|
|
|
|
|
|
|
|
out << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-08-31 04:29:47 +02:00
|
|
|
bool
|
|
|
|
console_cmd__client__clear(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
client::interrupt_all();
|
|
|
|
client::close_all();
|
|
|
|
client::wait_all();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-09-01 12:39:35 +02:00
|
|
|
bool
|
|
|
|
console_cmd__client__spawn(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
client::spawn();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-09-14 07:23:28 +02:00
|
|
|
//
|
|
|
|
// resource
|
|
|
|
//
|
|
|
|
|
|
|
|
bool
|
|
|
|
console_cmd__resource(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
for(const auto &p : resource::resources)
|
|
|
|
out << p.first << std::endl;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-02-06 23:42:00 +01:00
|
|
|
//
|
|
|
|
// key
|
|
|
|
//
|
|
|
|
|
|
|
|
bool
|
2018-03-26 09:04:47 +02:00
|
|
|
console_cmd__key(opt &out, const string_view &line)
|
2018-02-06 23:42:00 +01:00
|
|
|
{
|
2018-03-26 02:26:39 +02:00
|
|
|
out << "origin: " << m::my_host() << std::endl;
|
|
|
|
out << "public key ID: " << m::self::public_key_id << std::endl;
|
|
|
|
out << "public key base64: " << m::self::public_key_b64 << std::endl;
|
|
|
|
out << "TLS cert sha256 base64: " << m::self::tls_cert_der_sha256_b64 << std::endl;
|
2018-02-06 23:42:00 +01:00
|
|
|
|
2018-03-26 02:26:39 +02:00
|
|
|
return true;
|
2018-02-06 23:42:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2018-03-26 09:04:47 +02:00
|
|
|
console_cmd__key__get(opt &out, const string_view &line)
|
2018-02-06 23:42:00 +01:00
|
|
|
{
|
2018-05-11 11:05:08 +02:00
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"server_name", "[query_server]"
|
|
|
|
}};
|
|
|
|
|
2018-02-06 23:42:00 +01:00
|
|
|
const auto server_name
|
|
|
|
{
|
2018-05-11 11:05:08 +02:00
|
|
|
param.at(0)
|
2018-02-06 23:42:00 +01:00
|
|
|
};
|
|
|
|
|
2018-05-11 11:05:08 +02:00
|
|
|
const auto query_server
|
2018-02-06 23:42:00 +01:00
|
|
|
{
|
2018-05-11 11:05:08 +02:00
|
|
|
param[1]
|
|
|
|
};
|
|
|
|
|
|
|
|
if(!query_server)
|
|
|
|
{
|
|
|
|
m::keys::get(server_name, [&out]
|
|
|
|
(const auto &keys)
|
|
|
|
{
|
|
|
|
out << keys << std::endl;
|
|
|
|
});
|
2018-09-05 08:22:09 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
const std::pair<string_view, string_view> queries[1]
|
|
|
|
{
|
|
|
|
{ server_name, {} }
|
|
|
|
};
|
2018-05-11 11:05:08 +02:00
|
|
|
|
2018-09-05 08:22:09 +02:00
|
|
|
m::keys::query(query_server, queries, [&out]
|
|
|
|
(const auto &keys)
|
|
|
|
{
|
|
|
|
out << keys << std::endl;
|
|
|
|
return true;
|
|
|
|
});
|
2018-05-11 11:05:08 +02:00
|
|
|
}
|
2018-02-06 23:42:00 +01:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-08-29 01:01:06 +02:00
|
|
|
bool
|
|
|
|
console_cmd__key__crt__sign(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
using prototype = void (const m::event &);
|
2018-09-14 16:39:11 +02:00
|
|
|
static mods::import<prototype> create_my_key
|
2018-08-29 01:01:06 +02:00
|
|
|
{
|
|
|
|
"s_keys", "create_my_key"
|
|
|
|
};
|
|
|
|
|
|
|
|
create_my_key({});
|
|
|
|
|
|
|
|
out << "done" << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-05-23 08:02:37 +02:00
|
|
|
//
|
2018-06-02 18:07:46 +02:00
|
|
|
// stage
|
2018-05-23 08:02:37 +02:00
|
|
|
//
|
|
|
|
|
2018-06-02 18:07:46 +02:00
|
|
|
std::vector<std::string> stage;
|
2018-05-23 08:02:37 +02:00
|
|
|
|
|
|
|
bool
|
2018-06-02 18:07:46 +02:00
|
|
|
console_cmd__stage__list(opt &out, const string_view &line)
|
2018-05-23 08:02:37 +02:00
|
|
|
{
|
2018-06-02 18:07:46 +02:00
|
|
|
for(const json::object &object : stage)
|
2018-05-23 08:02:37 +02:00
|
|
|
{
|
|
|
|
const m::event event{object};
|
|
|
|
out << pretty_oneline(event) << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2018-06-02 18:07:46 +02:00
|
|
|
console_cmd__stage(opt &out, const string_view &line)
|
2018-05-23 08:02:37 +02:00
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"id", "[json]"
|
|
|
|
}};
|
|
|
|
|
|
|
|
if(!param.count())
|
2018-06-02 18:07:46 +02:00
|
|
|
return console_cmd__stage__list(out, line);
|
2018-05-23 08:02:37 +02:00
|
|
|
|
|
|
|
const auto &id
|
|
|
|
{
|
|
|
|
param.at<uint>(0)
|
|
|
|
};
|
|
|
|
|
2018-06-02 18:07:46 +02:00
|
|
|
if(stage.size() < id)
|
2018-05-23 08:02:37 +02:00
|
|
|
throw error
|
|
|
|
{
|
2018-06-02 18:07:46 +02:00
|
|
|
"Cannot stage position %d without composing %d first", id, stage.size()
|
2018-05-23 08:02:37 +02:00
|
|
|
};
|
|
|
|
|
2018-06-02 23:46:06 +02:00
|
|
|
const auto &key
|
|
|
|
{
|
|
|
|
param[1]
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto &val
|
|
|
|
{
|
|
|
|
key? tokens_after(line, ' ', 1) : string_view{}
|
|
|
|
};
|
|
|
|
|
2018-06-02 18:07:46 +02:00
|
|
|
if(stage.size() == id)
|
2018-05-23 08:02:37 +02:00
|
|
|
{
|
2018-06-02 23:46:06 +02:00
|
|
|
m::event base_event
|
2018-05-23 08:02:37 +02:00
|
|
|
{
|
|
|
|
{ "depth", json::undefined_number },
|
|
|
|
{ "origin", my_host() },
|
|
|
|
{ "origin_server_ts", time<milliseconds>() },
|
|
|
|
{ "sender", m::me.user_id },
|
|
|
|
{ "room_id", m::my_room.room_id },
|
|
|
|
{ "type", "m.room.message" },
|
2018-06-04 03:43:52 +02:00
|
|
|
{ "prev_state", "[]" },
|
2018-05-23 08:02:37 +02:00
|
|
|
};
|
|
|
|
|
2018-06-02 23:46:06 +02:00
|
|
|
const json::strung content{json::members
|
|
|
|
{
|
|
|
|
{ "body", "test" },
|
|
|
|
{ "msgtype", "m.text" }
|
|
|
|
}};
|
|
|
|
|
|
|
|
json::get<"content"_>(base_event) = content;
|
2018-06-02 18:07:46 +02:00
|
|
|
stage.emplace_back(json::strung(base_event));
|
2018-05-23 08:02:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if(key && val)
|
|
|
|
{
|
2018-06-02 18:07:46 +02:00
|
|
|
m::event event{stage.at(id)};
|
2018-05-23 08:02:37 +02:00
|
|
|
set(event, key, val);
|
2018-06-02 18:07:46 +02:00
|
|
|
stage.at(id) = json::strung{event};
|
2018-05-23 08:02:37 +02:00
|
|
|
}
|
2018-06-02 23:46:06 +02:00
|
|
|
else if(key)
|
|
|
|
{
|
|
|
|
stage.at(id) = std::string{key};
|
|
|
|
}
|
2018-05-23 08:02:37 +02:00
|
|
|
|
|
|
|
const m::event event
|
|
|
|
{
|
2018-06-02 18:07:46 +02:00
|
|
|
stage.at(id)
|
2018-05-23 08:02:37 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
out << pretty(event) << std::endl;
|
2018-06-02 18:07:46 +02:00
|
|
|
out << stage.at(id) << std::endl;
|
2018-06-02 23:46:06 +02:00
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
if(!verify(event))
|
|
|
|
out << "- SIGNATURE FAILED" << std::endl;
|
|
|
|
}
|
|
|
|
catch(const std::exception &e)
|
|
|
|
{
|
|
|
|
out << "- UNABLE TO VERIFY SIGNATURES" << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
if(!verify_hash(event))
|
|
|
|
out << "- HASH MISMATCH: " << b64encode_unpadded(hash(event)) << std::endl;
|
|
|
|
}
|
|
|
|
catch(const std::exception &e)
|
|
|
|
{
|
|
|
|
out << "- UNABLE TO VERIFY HASHES" << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
const m::event::conforms conforms
|
|
|
|
{
|
|
|
|
event
|
|
|
|
};
|
|
|
|
|
|
|
|
if(!conforms.clean())
|
|
|
|
out << "- " << conforms << std::endl;
|
|
|
|
|
2018-05-23 08:02:37 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-06-02 01:11:47 +02:00
|
|
|
bool
|
2018-06-02 18:07:46 +02:00
|
|
|
console_cmd__stage__make_prev(opt &out, const string_view &line)
|
2018-06-02 01:11:47 +02:00
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"[id]", "[limit]"
|
|
|
|
}};
|
|
|
|
|
|
|
|
const int &id
|
|
|
|
{
|
|
|
|
param.at<int>(0, -1)
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto &limit
|
|
|
|
{
|
|
|
|
param.at<size_t>(1, 16)
|
|
|
|
};
|
|
|
|
|
|
|
|
m::event event
|
|
|
|
{
|
2018-06-02 18:07:46 +02:00
|
|
|
stage.at(id)
|
2018-06-02 01:11:47 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
using prototype = std::pair<json::array, int64_t> (const m::room &,
|
|
|
|
const mutable_buffer &,
|
|
|
|
const size_t &,
|
|
|
|
const bool &);
|
2018-09-14 16:39:11 +02:00
|
|
|
static mods::import<prototype> make_prev__buf
|
2018-06-02 01:11:47 +02:00
|
|
|
{
|
|
|
|
"m_room", "make_prev__buf"
|
|
|
|
};
|
|
|
|
|
|
|
|
thread_local char buf[8192];
|
|
|
|
const auto prev
|
|
|
|
{
|
|
|
|
make_prev__buf(m::room{at<"room_id"_>(event)}, buf, limit, true)
|
|
|
|
};
|
|
|
|
|
|
|
|
json::get<"prev_events"_>(event) = prev.first;
|
|
|
|
json::get<"depth"_>(event) = prev.second;
|
|
|
|
|
2018-06-02 18:07:46 +02:00
|
|
|
stage.at(id) = json::strung
|
2018-06-02 01:11:47 +02:00
|
|
|
{
|
|
|
|
event
|
|
|
|
};
|
|
|
|
|
2018-06-02 18:07:46 +02:00
|
|
|
event = m::event(stage.at(id));
|
2018-06-02 01:11:47 +02:00
|
|
|
out << pretty(event) << std::endl;
|
2018-06-02 18:07:46 +02:00
|
|
|
out << stage.at(id) << std::endl;
|
2018-06-02 01:11:47 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-06-02 01:12:09 +02:00
|
|
|
bool
|
2018-06-02 18:07:46 +02:00
|
|
|
console_cmd__stage__make_auth(opt &out, const string_view &line)
|
2018-06-02 01:12:09 +02:00
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"[id]"
|
|
|
|
}};
|
|
|
|
|
|
|
|
const int &id
|
|
|
|
{
|
|
|
|
param.at<int>(0, -1)
|
|
|
|
};
|
|
|
|
|
|
|
|
m::event event
|
|
|
|
{
|
2018-06-02 18:07:46 +02:00
|
|
|
stage.at(id)
|
2018-06-02 01:12:09 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
using prototype = json::array (const m::room &,
|
|
|
|
const mutable_buffer &,
|
|
|
|
const vector_view<const string_view> &,
|
|
|
|
const string_view &);
|
|
|
|
|
2018-09-14 16:39:11 +02:00
|
|
|
static mods::import<prototype> make_auth__buf
|
2018-06-02 01:12:09 +02:00
|
|
|
{
|
|
|
|
"m_room", "make_auth__buf"
|
|
|
|
};
|
|
|
|
|
2018-06-02 23:46:06 +02:00
|
|
|
static const string_view types_general[]
|
|
|
|
{
|
|
|
|
"m.room.create",
|
|
|
|
"m.room.power_levels",
|
|
|
|
};
|
|
|
|
|
|
|
|
static const string_view types_membership[]
|
2018-06-02 01:12:09 +02:00
|
|
|
{
|
|
|
|
"m.room.create",
|
|
|
|
"m.room.join_rules",
|
|
|
|
"m.room.power_levels",
|
|
|
|
};
|
|
|
|
|
2018-06-02 23:46:06 +02:00
|
|
|
const auto is_membership
|
|
|
|
{
|
|
|
|
at<"type"_>(event) == "m.room.member"
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto &types
|
|
|
|
{
|
|
|
|
is_membership?
|
|
|
|
vector_view<const string_view>(types_membership):
|
|
|
|
vector_view<const string_view>(types_general)
|
|
|
|
};
|
|
|
|
|
2018-06-02 01:12:09 +02:00
|
|
|
const auto member
|
|
|
|
{
|
2018-06-02 23:46:06 +02:00
|
|
|
!is_membership?
|
2018-06-02 01:12:09 +02:00
|
|
|
at<"sender"_>(event):
|
|
|
|
string_view{}
|
|
|
|
};
|
|
|
|
|
|
|
|
const m::room room
|
|
|
|
{
|
|
|
|
at<"room_id"_>(event)
|
|
|
|
};
|
|
|
|
|
|
|
|
thread_local char buf[1024];
|
|
|
|
json::get<"auth_events"_>(event) = make_auth__buf(room, buf, types, member);
|
|
|
|
|
2018-06-02 18:07:46 +02:00
|
|
|
stage.at(id) = json::strung
|
2018-06-02 01:12:09 +02:00
|
|
|
{
|
|
|
|
event
|
|
|
|
};
|
|
|
|
|
2018-06-02 18:07:46 +02:00
|
|
|
event = m::event(stage.at(id));
|
2018-06-02 01:12:09 +02:00
|
|
|
out << pretty(event) << std::endl;
|
2018-06-02 18:07:46 +02:00
|
|
|
out << stage.at(id) << std::endl;
|
2018-06-02 01:12:09 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-05-27 15:11:45 +02:00
|
|
|
bool
|
2018-06-02 18:07:46 +02:00
|
|
|
console_cmd__stage__final(opt &out, const string_view &line)
|
2018-05-27 15:11:45 +02:00
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
2018-05-30 19:03:50 +02:00
|
|
|
"[id]", "[options]"
|
2018-05-27 15:11:45 +02:00
|
|
|
}};
|
|
|
|
|
|
|
|
const int &id
|
|
|
|
{
|
|
|
|
param.at<int>(0, -1)
|
|
|
|
};
|
|
|
|
|
2018-05-30 19:03:50 +02:00
|
|
|
const auto opts
|
|
|
|
{
|
|
|
|
param[1]
|
|
|
|
};
|
|
|
|
|
2018-05-27 15:11:45 +02:00
|
|
|
m::event event
|
|
|
|
{
|
2018-06-02 18:07:46 +02:00
|
|
|
stage.at(id)
|
2018-05-27 15:11:45 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
m::event::id::buf event_id_buf;
|
2018-05-30 19:03:50 +02:00
|
|
|
if(!has(opts, "no_event_id"))
|
|
|
|
json::get<"event_id"_>(event) = make_id(event, event_id_buf);
|
2018-05-27 15:11:45 +02:00
|
|
|
|
|
|
|
thread_local char hashes_buf[512];
|
2018-05-30 19:03:50 +02:00
|
|
|
if(!has(opts, "no_hashes"))
|
|
|
|
json::get<"hashes"_>(event) = m::hashes(hashes_buf, event);
|
2018-05-27 15:11:45 +02:00
|
|
|
|
|
|
|
thread_local char sigs_buf[512];
|
2018-05-30 19:03:50 +02:00
|
|
|
if(!has(opts, "no_signatures"))
|
|
|
|
event = signatures(sigs_buf, event);
|
2018-05-27 15:11:45 +02:00
|
|
|
|
2018-06-02 18:07:46 +02:00
|
|
|
stage.at(id) = json::strung
|
2018-05-27 15:11:45 +02:00
|
|
|
{
|
|
|
|
event
|
|
|
|
};
|
|
|
|
|
2018-06-02 18:07:46 +02:00
|
|
|
event = m::event(stage.at(id));
|
2018-05-27 15:11:45 +02:00
|
|
|
out << pretty(event) << std::endl;
|
2018-06-02 18:07:46 +02:00
|
|
|
out << stage.at(id) << std::endl;
|
2018-05-27 15:11:45 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-06-02 02:15:21 +02:00
|
|
|
bool
|
2018-06-02 18:07:46 +02:00
|
|
|
console_cmd__stage__make_vector(opt &out, const string_view &line)
|
2018-06-02 02:15:21 +02:00
|
|
|
{
|
|
|
|
m::event::id::buf prev_;
|
2018-06-02 18:07:46 +02:00
|
|
|
for(size_t i(1); i < stage.size(); ++i)
|
2018-06-02 02:15:21 +02:00
|
|
|
{
|
2018-06-02 18:07:46 +02:00
|
|
|
const auto prev(unquote(json::object{stage.at(i-1)}.get("event_id")));
|
|
|
|
const int64_t depth(json::object{stage.at(i-1)}.get<int64_t>("depth"));
|
2018-06-02 02:15:21 +02:00
|
|
|
thread_local char buf[1024], hb[512], sb[512];
|
2018-06-02 18:07:46 +02:00
|
|
|
m::event event{stage.at(i)};
|
2018-06-02 02:15:21 +02:00
|
|
|
json::stack st{buf};
|
|
|
|
{
|
|
|
|
json::stack::array top{st};
|
|
|
|
{
|
|
|
|
json::stack::array a{top};
|
|
|
|
a.append(prev);
|
|
|
|
{
|
|
|
|
json::stack::object hash{a};
|
|
|
|
json::stack::member{hash, "w", "nil"};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
json::get<"depth"_>(event) = depth + 1;
|
|
|
|
json::get<"prev_events"_>(event) = json::array{st.completed()};
|
|
|
|
json::get<"event_id"_>(event) = make_id(event, prev_);
|
|
|
|
json::get<"hashes"_>(event) = m::hashes(hb, event);
|
|
|
|
event = signatures(sb, event);
|
2018-06-02 18:07:46 +02:00
|
|
|
stage.at(i) = json::strung{event};
|
|
|
|
out << unquote(json::object{stage.at(i)}.at("event_id")) << std::endl;
|
2018-06-02 02:15:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-05-30 19:05:01 +02:00
|
|
|
bool
|
2018-06-02 18:07:46 +02:00
|
|
|
console_cmd__stage__copy(opt &out, const string_view &line)
|
2018-05-30 19:05:01 +02:00
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"srcid", "[dstid]"
|
|
|
|
}};
|
|
|
|
|
|
|
|
const auto &srcid
|
|
|
|
{
|
|
|
|
param.at<uint>(0)
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto &dstid
|
|
|
|
{
|
2018-06-02 18:07:46 +02:00
|
|
|
param.at<uint>(1, stage.size())
|
2018-05-30 19:05:01 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
const auto &src
|
|
|
|
{
|
2018-06-02 18:07:46 +02:00
|
|
|
stage.at(srcid)
|
2018-05-30 19:05:01 +02:00
|
|
|
};
|
|
|
|
|
2018-06-02 18:07:46 +02:00
|
|
|
if(stage.size() < dstid)
|
2018-05-30 19:05:01 +02:00
|
|
|
throw error
|
|
|
|
{
|
2018-06-02 18:07:46 +02:00
|
|
|
"Cannot stage position %d without composing %d first", dstid, stage.size()
|
2018-05-30 19:05:01 +02:00
|
|
|
};
|
|
|
|
|
2018-06-02 18:07:46 +02:00
|
|
|
if(stage.size() == dstid)
|
2018-05-30 19:05:01 +02:00
|
|
|
{
|
2018-06-02 18:07:46 +02:00
|
|
|
stage.emplace_back(src);
|
2018-05-30 19:05:01 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-06-02 18:07:46 +02:00
|
|
|
stage.at(dstid) = src;
|
2018-05-30 19:05:01 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-05-23 08:02:37 +02:00
|
|
|
bool
|
2018-06-02 18:07:46 +02:00
|
|
|
console_cmd__stage__clear(opt &out, const string_view &line)
|
2018-05-23 08:02:37 +02:00
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"[id]",
|
|
|
|
}};
|
|
|
|
|
|
|
|
const int &id
|
|
|
|
{
|
|
|
|
param.at<int>(0, -1)
|
|
|
|
};
|
|
|
|
|
|
|
|
if(id == -1)
|
|
|
|
{
|
2018-06-02 18:07:46 +02:00
|
|
|
stage.clear();
|
2018-05-23 08:02:37 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-06-02 18:07:46 +02:00
|
|
|
stage.at(id).clear();
|
2018-05-23 08:02:37 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2018-06-02 18:07:46 +02:00
|
|
|
console_cmd__stage__eval(opt &out, const string_view &line)
|
2018-05-23 08:02:37 +02:00
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"[id]",
|
|
|
|
}};
|
|
|
|
|
|
|
|
const int &id
|
|
|
|
{
|
|
|
|
param.at<int>(0, -1)
|
|
|
|
};
|
|
|
|
|
|
|
|
m::vm::opts opts;
|
|
|
|
m::vm::eval eval
|
|
|
|
{
|
|
|
|
opts
|
|
|
|
};
|
|
|
|
|
|
|
|
if(id == -1)
|
2018-06-02 18:07:46 +02:00
|
|
|
for(size_t i(0); i < stage.size(); ++i)
|
|
|
|
eval(m::event{stage.at(i)});
|
2018-05-23 08:02:37 +02:00
|
|
|
else
|
2018-06-02 18:07:46 +02:00
|
|
|
eval(m::event{stage.at(id)});
|
2018-05-23 08:02:37 +02:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2018-06-02 18:07:46 +02:00
|
|
|
console_cmd__stage__commit(opt &out, const string_view &line)
|
2018-05-23 08:02:37 +02:00
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"[id]",
|
|
|
|
}};
|
|
|
|
|
|
|
|
const int &id
|
|
|
|
{
|
|
|
|
param.at<int>(0, -1)
|
|
|
|
};
|
|
|
|
|
|
|
|
m::vm::copts copts;
|
|
|
|
m::vm::eval eval
|
|
|
|
{
|
|
|
|
copts
|
|
|
|
};
|
|
|
|
|
|
|
|
if(id == -1)
|
2018-06-02 18:07:46 +02:00
|
|
|
for(size_t i(0); i < stage.size(); ++i)
|
|
|
|
eval(m::event{stage.at(i)});
|
2018-05-23 08:02:37 +02:00
|
|
|
else
|
2018-06-02 18:07:46 +02:00
|
|
|
eval(m::event{stage.at(id)});
|
2018-05-23 08:02:37 +02:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-05-30 19:05:23 +02:00
|
|
|
bool
|
2018-06-02 18:07:46 +02:00
|
|
|
console_cmd__stage__send(opt &out, const string_view &line)
|
2018-05-30 19:05:23 +02:00
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"remote", "[id]"
|
|
|
|
}};
|
|
|
|
|
|
|
|
const net::hostport remote
|
|
|
|
{
|
|
|
|
param.at(0)
|
|
|
|
};
|
|
|
|
|
|
|
|
const int &id
|
|
|
|
{
|
|
|
|
param.at<int>(1, -1)
|
|
|
|
};
|
|
|
|
|
|
|
|
std::vector<json::value> pduv;
|
|
|
|
if(id > -1)
|
2018-06-02 18:07:46 +02:00
|
|
|
pduv.emplace_back(stage.at(id));
|
2018-05-30 19:05:23 +02:00
|
|
|
else
|
2018-06-02 18:07:46 +02:00
|
|
|
for(size_t i(0); i < stage.size(); ++i)
|
|
|
|
pduv.emplace_back(stage.at(i));
|
2018-05-30 19:05:23 +02:00
|
|
|
|
|
|
|
const auto txn
|
|
|
|
{
|
|
|
|
m::txn::create(pduv)
|
|
|
|
};
|
|
|
|
|
|
|
|
thread_local char idbuf[128];
|
|
|
|
const auto txnid
|
|
|
|
{
|
|
|
|
m::txn::create_id(idbuf, txn)
|
|
|
|
};
|
|
|
|
|
|
|
|
const unique_buffer<mutable_buffer> bufs
|
|
|
|
{
|
|
|
|
16_KiB
|
|
|
|
};
|
|
|
|
|
|
|
|
m::v1::send::opts opts;
|
|
|
|
opts.remote = remote;
|
|
|
|
m::v1::send request
|
|
|
|
{
|
|
|
|
txnid, const_buffer{txn}, bufs, std::move(opts)
|
|
|
|
};
|
|
|
|
|
|
|
|
request.wait(out.timeout);
|
|
|
|
const auto code
|
|
|
|
{
|
|
|
|
request.get()
|
|
|
|
};
|
|
|
|
|
|
|
|
const json::object response{request};
|
|
|
|
const m::v1::send::response resp
|
|
|
|
{
|
|
|
|
response
|
|
|
|
};
|
|
|
|
|
|
|
|
resp.for_each_pdu([&]
|
|
|
|
(const m::event::id &event_id, const json::object &error)
|
|
|
|
{
|
|
|
|
out << remote << " ->" << txnid << " " << event_id << " ";
|
|
|
|
if(empty(error))
|
|
|
|
out << http::status(code) << std::endl;
|
|
|
|
else
|
|
|
|
out << string_view{error} << std::endl;
|
|
|
|
});
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-06-09 05:25:53 +02:00
|
|
|
bool
|
|
|
|
console_cmd__stage__broadcast(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"[id]"
|
|
|
|
}};
|
|
|
|
|
|
|
|
const int &id
|
|
|
|
{
|
|
|
|
param.at<int>(0, -1)
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto start
|
|
|
|
{
|
|
|
|
id > -1? id : 0
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto stop
|
|
|
|
{
|
|
|
|
id > -1? id + 1 : stage.size()
|
|
|
|
};
|
|
|
|
|
|
|
|
for(size_t i(start); i < stop; ++i)
|
|
|
|
{
|
|
|
|
const m::vm::opts opts;
|
|
|
|
const m::event event{stage.at(i)};
|
2018-09-06 04:29:41 +02:00
|
|
|
m::vm::accepted a{event, &opts, nullptr, &opts.report};
|
2018-06-09 05:25:53 +02:00
|
|
|
m::vm::accept(a);
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-05-23 08:02:37 +02:00
|
|
|
int
|
|
|
|
console_command_numeric(opt &out, const string_view &line)
|
|
|
|
{
|
2018-06-02 18:07:46 +02:00
|
|
|
return console_cmd__stage(out, line);
|
2018-05-23 08:02:37 +02:00
|
|
|
}
|
|
|
|
|
2018-04-17 01:01:10 +02:00
|
|
|
//
|
2018-04-18 09:33:38 +02:00
|
|
|
// events
|
2018-04-17 01:01:10 +02:00
|
|
|
//
|
|
|
|
|
|
|
|
bool
|
2018-04-18 09:33:38 +02:00
|
|
|
console_cmd__events(opt &out, const string_view &line)
|
2018-04-17 01:01:10 +02:00
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
2018-05-25 06:32:20 +02:00
|
|
|
"start", "[dir]", "[limit]"
|
2018-04-17 01:01:10 +02:00
|
|
|
}};
|
|
|
|
|
|
|
|
const uint64_t start
|
|
|
|
{
|
|
|
|
param.at<uint64_t>(0, uint64_t(-1))
|
|
|
|
};
|
|
|
|
|
2018-05-25 06:32:20 +02:00
|
|
|
const char &dir
|
|
|
|
{
|
|
|
|
param.at(1, "b"_sv).at(0)
|
|
|
|
};
|
|
|
|
|
2018-04-17 01:01:10 +02:00
|
|
|
size_t limit
|
|
|
|
{
|
2018-05-25 06:32:20 +02:00
|
|
|
param.at<size_t>(2, 32)
|
2018-04-17 01:01:10 +02:00
|
|
|
};
|
|
|
|
|
2018-05-25 06:32:20 +02:00
|
|
|
const auto closure{[&out, &limit]
|
2018-05-25 06:36:20 +02:00
|
|
|
(const m::event::idx &seq, const m::event &event)
|
2018-04-17 01:01:10 +02:00
|
|
|
{
|
|
|
|
out << seq << " " << pretty_oneline(event) << std::endl;;
|
|
|
|
return --limit;
|
2018-05-25 06:32:20 +02:00
|
|
|
}};
|
|
|
|
|
|
|
|
if(dir == 'f')
|
|
|
|
m::events::for_each(start, closure);
|
|
|
|
else
|
|
|
|
m::events::rfor_each(start, closure);
|
2018-04-17 01:01:10 +02:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-04-19 22:54:33 +02:00
|
|
|
bool
|
|
|
|
console_cmd__events__filter(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"start", "event_filter_json"
|
|
|
|
}};
|
|
|
|
|
|
|
|
const uint64_t start
|
|
|
|
{
|
|
|
|
param.at<uint64_t>(0, uint64_t(-1))
|
|
|
|
};
|
|
|
|
|
|
|
|
const m::event_filter filter
|
|
|
|
{
|
|
|
|
param.at(1)
|
|
|
|
};
|
|
|
|
|
|
|
|
m::events::rfor_each(start, filter, [&out]
|
2018-05-25 06:36:20 +02:00
|
|
|
(const m::event::idx &seq, const m::event &event)
|
2018-04-19 22:54:33 +02:00
|
|
|
{
|
|
|
|
out << seq << " " << pretty_oneline(event) << std::endl;;
|
|
|
|
return true;
|
|
|
|
});
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-05-26 03:03:57 +02:00
|
|
|
conf::item<size_t>
|
|
|
|
events_dump_buffer_size
|
|
|
|
{
|
|
|
|
{ "name", "ircd.console.events.dump.buffer_size" },
|
|
|
|
{ "default", int64_t(4_MiB) },
|
|
|
|
};
|
|
|
|
|
2018-05-25 06:00:16 +02:00
|
|
|
bool
|
|
|
|
console_cmd__events__dump(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"filename"
|
|
|
|
}};
|
|
|
|
|
|
|
|
const auto filename
|
|
|
|
{
|
|
|
|
param.at(0)
|
|
|
|
};
|
|
|
|
|
2018-05-30 11:41:14 +02:00
|
|
|
const fs::fd file
|
|
|
|
{
|
|
|
|
filename, std::ios::out | std::ios::app
|
|
|
|
};
|
|
|
|
|
2018-05-25 06:00:16 +02:00
|
|
|
const unique_buffer<mutable_buffer> buf
|
|
|
|
{
|
2018-05-26 03:03:57 +02:00
|
|
|
size_t(events_dump_buffer_size)
|
2018-05-25 06:00:16 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
char *pos{data(buf)};
|
|
|
|
size_t foff{0}, ecount{0}, acount{0}, errcount{0};
|
2018-05-25 06:32:20 +02:00
|
|
|
m::events::for_each(m::event::idx{0}, [&]
|
|
|
|
(const m::event::idx &seq, const m::event &event)
|
2018-05-25 06:00:16 +02:00
|
|
|
{
|
|
|
|
const auto remain
|
|
|
|
{
|
|
|
|
size_t(data(buf) + size(buf) - pos)
|
|
|
|
};
|
|
|
|
|
2018-05-26 03:03:57 +02:00
|
|
|
assert(remain >= m::event::MAX_SIZE && remain <= size(buf));
|
2018-05-25 06:00:16 +02:00
|
|
|
const mutable_buffer mb{pos, remain};
|
|
|
|
pos += json::print(mb, event);
|
|
|
|
++ecount;
|
|
|
|
|
2018-05-26 03:03:57 +02:00
|
|
|
if(pos + m::event::MAX_SIZE > data(buf) + size(buf))
|
2018-05-25 06:00:16 +02:00
|
|
|
{
|
|
|
|
const const_buffer cb{data(buf), pos};
|
2018-05-30 11:41:14 +02:00
|
|
|
foff += size(fs::append(file, cb));
|
2018-05-25 06:00:16 +02:00
|
|
|
pos = data(buf);
|
|
|
|
++acount;
|
|
|
|
|
|
|
|
const double pct
|
|
|
|
{
|
|
|
|
(seq / double(m::vm::current_sequence)) * 100.0
|
|
|
|
};
|
|
|
|
|
|
|
|
log::info
|
|
|
|
{
|
|
|
|
"dump[%s] %lf$%c @ seq %zu of %zu; %zu events; %zu bytes; %zu writes; %zu errors",
|
|
|
|
filename,
|
|
|
|
pct,
|
|
|
|
'%', //TODO: fix gram
|
|
|
|
seq,
|
|
|
|
m::vm::current_sequence,
|
|
|
|
ecount,
|
|
|
|
foff,
|
|
|
|
acount,
|
|
|
|
errcount
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
});
|
|
|
|
|
|
|
|
if(pos > data(buf))
|
|
|
|
{
|
|
|
|
const const_buffer cb{data(buf), pos};
|
2018-05-30 11:41:14 +02:00
|
|
|
foff += size(fs::append(file, cb));
|
2018-05-25 06:00:16 +02:00
|
|
|
++acount;
|
|
|
|
}
|
|
|
|
|
|
|
|
out << "Dumped " << ecount << " events"
|
|
|
|
<< " using " << foff << " bytes"
|
|
|
|
<< " in " << acount << " writes"
|
|
|
|
<< " to " << filename
|
|
|
|
<< " with " << errcount << " errors"
|
|
|
|
<< std::endl;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-02-06 23:42:00 +01:00
|
|
|
//
|
|
|
|
// event
|
|
|
|
//
|
|
|
|
|
|
|
|
bool
|
2018-03-26 09:04:47 +02:00
|
|
|
console_cmd__event(opt &out, const string_view &line)
|
2018-02-06 23:42:00 +01:00
|
|
|
{
|
2018-05-20 14:26:14 +02:00
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"event_id"
|
|
|
|
}};
|
|
|
|
|
2018-03-26 02:26:39 +02:00
|
|
|
const m::event::id event_id
|
|
|
|
{
|
2018-05-20 14:26:14 +02:00
|
|
|
param.at(0)
|
2018-03-26 02:26:39 +02:00
|
|
|
};
|
|
|
|
|
2018-02-06 23:42:00 +01:00
|
|
|
const auto args
|
|
|
|
{
|
|
|
|
tokens_after(line, ' ', 0)
|
|
|
|
};
|
|
|
|
|
2018-05-20 14:26:14 +02:00
|
|
|
const m::event::fetch event
|
2018-02-06 23:42:00 +01:00
|
|
|
{
|
2018-05-20 14:26:14 +02:00
|
|
|
event_id
|
2018-03-26 02:26:39 +02:00
|
|
|
};
|
2018-03-25 08:12:41 +02:00
|
|
|
|
2018-03-26 02:26:39 +02:00
|
|
|
if(!empty(args)) switch(hash(token(args, ' ', 0)))
|
|
|
|
{
|
|
|
|
case hash("raw"):
|
2018-05-20 14:26:14 +02:00
|
|
|
out << event << std::endl;
|
2018-03-26 02:26:39 +02:00
|
|
|
return true;
|
2018-04-20 02:41:43 +02:00
|
|
|
|
|
|
|
case hash("idx"):
|
2018-05-11 11:06:33 +02:00
|
|
|
out << index(event) << std::endl;
|
2018-04-20 02:41:43 +02:00
|
|
|
return true;
|
2018-05-06 07:09:56 +02:00
|
|
|
|
|
|
|
case hash("content"):
|
|
|
|
{
|
|
|
|
for(const auto &m : json::get<"content"_>(event))
|
|
|
|
out << m.first << ": " << m.second << std::endl;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2018-02-06 23:42:00 +01:00
|
|
|
}
|
2018-03-26 02:26:39 +02:00
|
|
|
|
|
|
|
out << pretty(event) << std::endl;
|
2018-05-11 11:09:09 +02:00
|
|
|
|
|
|
|
const m::event::conforms conforms
|
|
|
|
{
|
|
|
|
event
|
|
|
|
};
|
|
|
|
|
|
|
|
if(!conforms.clean())
|
|
|
|
out << "- " << conforms << std::endl;
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
if(!verify(event))
|
|
|
|
out << "- SIGNATURE FAILED" << std::endl;
|
|
|
|
}
|
|
|
|
catch(const std::exception &e)
|
|
|
|
{
|
|
|
|
out << "- SIGNATURE FAILED: " << e.what() << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!verify_hash(event))
|
|
|
|
out << "- HASH MISMATCH: " << b64encode_unpadded(hash(event)) << std::endl;
|
|
|
|
|
2018-03-26 02:26:39 +02:00
|
|
|
return true;
|
2018-02-06 23:42:00 +01:00
|
|
|
}
|
|
|
|
|
2018-04-21 08:53:04 +02:00
|
|
|
bool
|
|
|
|
console_id__event(opt &out,
|
|
|
|
const m::event::id &id,
|
|
|
|
const string_view &line)
|
|
|
|
{
|
|
|
|
return console_cmd__event(out, line);
|
|
|
|
}
|
|
|
|
|
2018-05-19 01:46:54 +02:00
|
|
|
bool
|
|
|
|
console_cmd__event__sign(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"event_id", "[host]", "[accept|eval]"
|
|
|
|
}};
|
|
|
|
|
|
|
|
const m::event::id event_id
|
|
|
|
{
|
|
|
|
param.at(0)
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto &host
|
|
|
|
{
|
|
|
|
param.at(1, event_id.host())
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto &op
|
|
|
|
{
|
|
|
|
param[2]
|
|
|
|
};
|
|
|
|
|
|
|
|
m::v1::event::opts opts;
|
|
|
|
opts.remote = host;
|
|
|
|
opts.dynamic = false;
|
|
|
|
const unique_buffer<mutable_buffer> buf
|
|
|
|
{
|
|
|
|
96_KiB
|
|
|
|
};
|
|
|
|
|
|
|
|
m::v1::event request
|
|
|
|
{
|
|
|
|
event_id, buf, std::move(opts)
|
|
|
|
};
|
|
|
|
|
|
|
|
request.wait(out.timeout);
|
|
|
|
const auto code
|
|
|
|
{
|
|
|
|
request.get()
|
|
|
|
};
|
|
|
|
|
|
|
|
const m::event orig_event
|
|
|
|
{
|
|
|
|
request
|
|
|
|
};
|
|
|
|
|
|
|
|
thread_local char sigbuf[64_KiB];
|
|
|
|
const auto event
|
|
|
|
{
|
|
|
|
m::signatures(mutable_buffer{sigbuf}, orig_event)
|
|
|
|
};
|
|
|
|
|
|
|
|
out << pretty(event)
|
|
|
|
<< std::endl;
|
|
|
|
|
|
|
|
if(op == "accept")
|
|
|
|
{
|
|
|
|
const m::vm::opts opts;
|
|
|
|
m::vm::accepted a
|
|
|
|
{
|
2018-09-06 04:29:41 +02:00
|
|
|
event, &opts, nullptr, &opts.report
|
2018-05-19 01:46:54 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
m::vm::accept(a);
|
|
|
|
}
|
|
|
|
else if(op == "eval")
|
|
|
|
{
|
|
|
|
m::vm::opts opts;
|
|
|
|
m::vm::eval
|
|
|
|
{
|
|
|
|
event, opts
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-05-05 01:53:29 +02:00
|
|
|
bool
|
|
|
|
console_cmd__event__bad(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"event_id",
|
|
|
|
}};
|
|
|
|
|
|
|
|
const m::event::id event_id
|
|
|
|
{
|
|
|
|
param.at(0)
|
|
|
|
};
|
|
|
|
|
|
|
|
m::event::idx workaround;
|
|
|
|
const bool b
|
|
|
|
{
|
|
|
|
bad(event_id, workaround)
|
|
|
|
};
|
|
|
|
|
|
|
|
out << event_id << "is"
|
|
|
|
<< (b? " " : " NOT ") << "BAD";
|
|
|
|
|
|
|
|
if(b && workaround != m::event::idx(-1))
|
|
|
|
m::event::fetch::event_id(workaround, std::nothrow, [&out]
|
|
|
|
(const m::event::id &event_id)
|
|
|
|
{
|
|
|
|
out << " and a workaround is " << event_id;
|
|
|
|
});
|
|
|
|
|
|
|
|
out << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-03-25 08:12:41 +02:00
|
|
|
bool
|
2018-03-26 09:04:47 +02:00
|
|
|
console_cmd__event__erase(opt &out, const string_view &line)
|
2018-03-25 08:12:41 +02:00
|
|
|
{
|
|
|
|
const m::event::id event_id
|
|
|
|
{
|
|
|
|
token(line, ' ', 0)
|
|
|
|
};
|
|
|
|
|
|
|
|
m::event::fetch event
|
|
|
|
{
|
|
|
|
event_id
|
|
|
|
};
|
|
|
|
|
|
|
|
db::txn txn
|
|
|
|
{
|
|
|
|
*m::dbs::events
|
|
|
|
};
|
|
|
|
|
|
|
|
m::dbs::write_opts opts;
|
|
|
|
opts.op = db::op::DELETE;
|
2018-05-18 08:47:05 +02:00
|
|
|
opts.event_idx = index(event);
|
2018-03-25 08:12:41 +02:00
|
|
|
m::dbs::write(txn, event, opts);
|
|
|
|
txn();
|
|
|
|
|
|
|
|
out << "erased " << txn.size() << " cells"
|
|
|
|
<< " for " << event_id << std::endl;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-02-06 23:42:00 +01:00
|
|
|
bool
|
2018-03-26 09:04:47 +02:00
|
|
|
console_cmd__event__fetch(opt &out, const string_view &line)
|
2018-02-06 23:42:00 +01:00
|
|
|
{
|
2018-09-05 08:25:09 +02:00
|
|
|
const params param{line, " ",
|
2018-02-06 23:42:00 +01:00
|
|
|
{
|
2018-09-05 08:25:09 +02:00
|
|
|
"room_id", "event_id"
|
|
|
|
}};
|
2018-02-06 23:42:00 +01:00
|
|
|
|
2018-09-05 08:25:09 +02:00
|
|
|
const m::event::id &event_id
|
2018-02-06 23:42:00 +01:00
|
|
|
{
|
2018-09-05 08:25:09 +02:00
|
|
|
param.at("event_id")
|
2018-02-06 23:42:00 +01:00
|
|
|
};
|
|
|
|
|
2018-09-05 08:25:09 +02:00
|
|
|
const auto &room_id
|
2018-02-06 23:42:00 +01:00
|
|
|
{
|
2018-09-05 08:25:09 +02:00
|
|
|
m::room_id(param.at("room_id"))
|
2018-02-06 23:42:00 +01:00
|
|
|
};
|
|
|
|
|
2018-04-11 06:04:52 +02:00
|
|
|
const unique_buffer<mutable_buffer> buf
|
|
|
|
{
|
2018-09-05 08:25:09 +02:00
|
|
|
64_KiB
|
2018-04-11 06:04:52 +02:00
|
|
|
};
|
|
|
|
|
2018-09-05 08:25:09 +02:00
|
|
|
using prototype = json::object (const m::room::id &,
|
|
|
|
const m::event::id &,
|
|
|
|
const mutable_buffer &);
|
|
|
|
|
2018-09-14 16:39:11 +02:00
|
|
|
static mods::import<prototype> acquire
|
2018-02-06 23:42:00 +01:00
|
|
|
{
|
2018-09-05 08:25:09 +02:00
|
|
|
"vm_fetch", "acquire"
|
2018-02-06 23:42:00 +01:00
|
|
|
};
|
|
|
|
|
2018-09-05 08:25:09 +02:00
|
|
|
const m::event event
|
2018-02-06 23:42:00 +01:00
|
|
|
{
|
2018-09-05 08:25:09 +02:00
|
|
|
acquire(room_id, event_id, buf)
|
2018-02-06 23:42:00 +01:00
|
|
|
};
|
|
|
|
|
2018-09-05 08:25:09 +02:00
|
|
|
m::vm::opts vmopts;
|
|
|
|
vmopts.non_conform.set(m::event::conforms::MISSING_PREV_STATE);
|
|
|
|
vmopts.non_conform.set(m::event::conforms::MISSING_MEMBERSHIP);
|
|
|
|
vmopts.prev_check_exists = false;
|
|
|
|
vmopts.head_must_exist = false;
|
|
|
|
vmopts.history = false;
|
|
|
|
vmopts.notify = false;
|
|
|
|
vmopts.verify = false;
|
|
|
|
m::vm::eval eval
|
2018-02-06 23:42:00 +01:00
|
|
|
{
|
2018-09-05 08:25:09 +02:00
|
|
|
vmopts
|
2018-02-06 23:42:00 +01:00
|
|
|
};
|
|
|
|
|
2018-09-05 08:25:09 +02:00
|
|
|
eval(event);
|
|
|
|
|
|
|
|
out << event << std::endl;
|
2018-02-06 23:42:00 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-05-31 20:13:15 +02:00
|
|
|
bool
|
|
|
|
console_cmd__event__visible(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"event_id", "user_id|node_id"
|
|
|
|
}};
|
|
|
|
|
|
|
|
const m::event::id &event_id
|
|
|
|
{
|
|
|
|
param.at(0)
|
|
|
|
};
|
|
|
|
|
|
|
|
const string_view &mxid
|
|
|
|
{
|
|
|
|
param[1]
|
|
|
|
};
|
|
|
|
|
|
|
|
const bool visible
|
|
|
|
{
|
|
|
|
m::visible(event_id, mxid)
|
|
|
|
};
|
|
|
|
|
|
|
|
out << event_id << " is "
|
|
|
|
<< (visible? "VISIBLE" : "NOT VISIBLE")
|
|
|
|
<< (mxid? " to " : "")
|
|
|
|
<< mxid
|
|
|
|
<< std::endl;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-02-06 21:40:41 +01:00
|
|
|
//
|
|
|
|
// state
|
|
|
|
//
|
|
|
|
|
|
|
|
bool
|
2018-03-26 09:04:47 +02:00
|
|
|
console_cmd__state__count(opt &out, const string_view &line)
|
2018-02-06 21:40:41 +01:00
|
|
|
{
|
|
|
|
const string_view arg
|
|
|
|
{
|
|
|
|
token(line, ' ', 0)
|
|
|
|
};
|
|
|
|
|
2018-02-08 22:25:59 +01:00
|
|
|
const string_view root
|
2018-02-06 21:40:41 +01:00
|
|
|
{
|
2018-02-08 22:25:59 +01:00
|
|
|
arg
|
2018-02-06 21:40:41 +01:00
|
|
|
};
|
|
|
|
|
2018-02-08 22:25:59 +01:00
|
|
|
out << m::state::count(root) << std::endl;
|
2018-02-06 21:40:41 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2018-03-26 09:04:47 +02:00
|
|
|
console_cmd__state__each(opt &out, const string_view &line)
|
2018-02-06 21:40:41 +01:00
|
|
|
{
|
|
|
|
const string_view arg
|
|
|
|
{
|
|
|
|
token(line, ' ', 0)
|
|
|
|
};
|
|
|
|
|
|
|
|
const string_view type
|
|
|
|
{
|
|
|
|
token(line, ' ', 1)
|
|
|
|
};
|
|
|
|
|
2018-02-08 22:25:59 +01:00
|
|
|
const string_view root
|
2018-02-06 21:40:41 +01:00
|
|
|
{
|
2018-02-08 22:25:59 +01:00
|
|
|
arg
|
2018-02-06 21:40:41 +01:00
|
|
|
};
|
|
|
|
|
2018-03-26 08:23:30 +02:00
|
|
|
m::state::for_each(root, type, [&out]
|
2018-02-06 21:40:41 +01:00
|
|
|
(const string_view &key, const string_view &val)
|
|
|
|
{
|
|
|
|
out << key << " => " << val << std::endl;
|
|
|
|
});
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2018-03-26 09:04:47 +02:00
|
|
|
console_cmd__state__get(opt &out, const string_view &line)
|
2018-02-06 21:40:41 +01:00
|
|
|
{
|
2018-02-08 22:25:59 +01:00
|
|
|
const string_view root
|
2018-02-06 21:40:41 +01:00
|
|
|
{
|
|
|
|
token(line, ' ', 0)
|
|
|
|
};
|
|
|
|
|
|
|
|
const string_view type
|
|
|
|
{
|
|
|
|
token(line, ' ', 1)
|
|
|
|
};
|
|
|
|
|
|
|
|
const string_view state_key
|
|
|
|
{
|
|
|
|
token(line, ' ', 2)
|
|
|
|
};
|
|
|
|
|
2018-03-26 08:23:30 +02:00
|
|
|
m::state::get(root, type, state_key, [&out]
|
2018-02-06 21:40:41 +01:00
|
|
|
(const auto &value)
|
|
|
|
{
|
|
|
|
out << "got: " << value << std::endl;
|
|
|
|
});
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2018-04-27 05:55:47 +02:00
|
|
|
console_cmd__state__find(opt &out, const string_view &line)
|
2018-02-06 21:40:41 +01:00
|
|
|
{
|
2018-04-27 05:55:47 +02:00
|
|
|
const params param{line, " ",
|
2018-02-06 21:40:41 +01:00
|
|
|
{
|
2018-04-27 05:55:47 +02:00
|
|
|
"root", "[type]" "[state_key]"
|
|
|
|
}};
|
|
|
|
|
|
|
|
const string_view &root
|
|
|
|
{
|
|
|
|
param.at(0)
|
2018-02-06 21:40:41 +01:00
|
|
|
};
|
|
|
|
|
2018-04-27 05:55:47 +02:00
|
|
|
const string_view &type
|
2018-02-06 21:40:41 +01:00
|
|
|
{
|
2018-04-27 05:55:47 +02:00
|
|
|
param[1]
|
2018-02-06 21:40:41 +01:00
|
|
|
};
|
|
|
|
|
2018-04-27 05:55:47 +02:00
|
|
|
const string_view &state_key
|
2018-02-06 21:40:41 +01:00
|
|
|
{
|
2018-04-27 05:55:47 +02:00
|
|
|
param[2]
|
|
|
|
};
|
2018-02-06 21:40:41 +01:00
|
|
|
|
2018-04-27 05:55:47 +02:00
|
|
|
const auto closure{[&out]
|
|
|
|
(const auto &key, const string_view &val)
|
|
|
|
{
|
|
|
|
out << key << " => " << val << std::endl;
|
|
|
|
return false;
|
|
|
|
}};
|
2018-02-06 21:40:41 +01:00
|
|
|
|
2018-04-27 05:55:47 +02:00
|
|
|
m::state::test(root, type, state_key, closure);
|
2018-02-06 21:40:41 +01:00
|
|
|
return true;
|
|
|
|
}
|
2018-02-08 19:44:37 +01:00
|
|
|
|
2018-02-08 22:25:59 +01:00
|
|
|
bool
|
2018-03-26 09:04:47 +02:00
|
|
|
console_cmd__state__root(opt &out, const string_view &line)
|
2018-02-08 22:25:59 +01:00
|
|
|
{
|
|
|
|
const m::event::id event_id
|
|
|
|
{
|
|
|
|
token(line, ' ', 0)
|
|
|
|
};
|
|
|
|
|
|
|
|
char buf[m::state::ID_MAX_SZ];
|
|
|
|
out << m::dbs::state_root(buf, event_id) << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-02-08 19:44:37 +01:00
|
|
|
//
|
2018-03-26 02:26:39 +02:00
|
|
|
// commit
|
2018-02-08 19:44:37 +01:00
|
|
|
//
|
|
|
|
|
|
|
|
bool
|
2018-03-26 09:04:47 +02:00
|
|
|
console_cmd__commit(opt &out, const string_view &line)
|
2018-02-08 19:44:37 +01:00
|
|
|
{
|
2018-03-26 02:26:39 +02:00
|
|
|
m::event event
|
2018-02-08 19:44:37 +01:00
|
|
|
{
|
2018-03-26 02:26:39 +02:00
|
|
|
json::object{line}
|
2018-02-08 19:44:37 +01:00
|
|
|
};
|
|
|
|
|
2018-03-26 02:26:39 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
2018-04-13 23:47:17 +02:00
|
|
|
// eval
|
2018-03-26 02:26:39 +02:00
|
|
|
//
|
|
|
|
|
|
|
|
bool
|
2018-04-13 23:47:17 +02:00
|
|
|
console_cmd__eval(opt &out, const string_view &line)
|
2018-03-26 02:26:39 +02:00
|
|
|
{
|
2018-04-13 23:47:17 +02:00
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"event_id", "opts",
|
|
|
|
}};
|
|
|
|
|
|
|
|
const m::event::id &event_id
|
|
|
|
{
|
|
|
|
param.at(0)
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto &args
|
|
|
|
{
|
|
|
|
param[1]
|
|
|
|
};
|
|
|
|
|
|
|
|
const unique_buffer<mutable_buffer> buf
|
|
|
|
{
|
|
|
|
64_KiB
|
|
|
|
};
|
|
|
|
|
|
|
|
const m::event event
|
2018-02-08 19:44:37 +01:00
|
|
|
{
|
2018-04-13 23:47:17 +02:00
|
|
|
event_id, buf
|
2018-03-26 02:26:39 +02:00
|
|
|
};
|
|
|
|
|
2018-04-13 23:47:17 +02:00
|
|
|
m::vm::opts opts;
|
|
|
|
opts.errorlog = 0;
|
|
|
|
opts.warnlog = 0;
|
|
|
|
opts.nothrows = 0;
|
|
|
|
opts.non_conform |= m::event::conforms::MISSING_PREV_STATE;
|
|
|
|
|
|
|
|
tokens(args, ' ', [&opts](const auto &arg)
|
|
|
|
{
|
|
|
|
switch(hash(arg))
|
|
|
|
{
|
|
|
|
case "replay"_:
|
|
|
|
opts.replays = true;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case "noverify"_:
|
|
|
|
opts.verify = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
m::vm::eval eval{opts};
|
|
|
|
out << pretty(event) << std::endl;
|
2018-03-26 02:26:39 +02:00
|
|
|
eval(event);
|
2018-04-13 23:47:17 +02:00
|
|
|
out << "done" << std::endl;
|
2018-03-26 02:26:39 +02:00
|
|
|
return true;
|
2018-02-08 19:44:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2018-04-13 23:47:17 +02:00
|
|
|
console_cmd__eval__file(opt &out, const string_view &line)
|
2018-02-08 19:44:37 +01:00
|
|
|
{
|
|
|
|
const params token{line, " ",
|
|
|
|
{
|
2018-02-20 05:08:02 +01:00
|
|
|
"file path", "limit", "start", "room_id/event_id/sender"
|
2018-02-08 19:44:37 +01:00
|
|
|
}};
|
|
|
|
|
|
|
|
const auto path
|
|
|
|
{
|
|
|
|
token.at(0)
|
|
|
|
};
|
|
|
|
|
2018-05-30 11:41:14 +02:00
|
|
|
const fs::fd file
|
|
|
|
{
|
|
|
|
path
|
|
|
|
};
|
|
|
|
|
2018-02-08 19:44:37 +01:00
|
|
|
const auto limit
|
|
|
|
{
|
|
|
|
token.at<size_t>(1)
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto start
|
|
|
|
{
|
|
|
|
token[2]? lex_cast<size_t>(token[2]) : 0
|
|
|
|
};
|
|
|
|
|
2018-02-20 05:08:02 +01:00
|
|
|
const string_view id{token[3]};
|
2018-02-10 22:12:23 +01:00
|
|
|
const string_view room_id
|
|
|
|
{
|
2018-02-20 05:08:02 +01:00
|
|
|
id && m::sigil(id) == m::id::ROOM? id : string_view{}
|
|
|
|
};
|
|
|
|
|
|
|
|
const string_view event_id
|
|
|
|
{
|
|
|
|
id && m::sigil(id) == m::id::EVENT? id : string_view{}
|
|
|
|
};
|
|
|
|
|
|
|
|
const string_view sender
|
|
|
|
{
|
|
|
|
id && m::sigil(id) == m::id::USER? id : string_view{}
|
2018-02-10 22:12:23 +01:00
|
|
|
};
|
|
|
|
|
2018-03-05 11:44:03 +01:00
|
|
|
m::vm::opts opts;
|
|
|
|
opts.non_conform.set(m::event::conforms::MISSING_PREV_STATE);
|
|
|
|
opts.non_conform.set(m::event::conforms::MISSING_MEMBERSHIP);
|
|
|
|
opts.prev_check_exists = false;
|
|
|
|
opts.notify = false;
|
2018-03-26 02:26:39 +02:00
|
|
|
opts.verify = false;
|
2018-02-08 21:53:37 +01:00
|
|
|
m::vm::eval eval
|
2018-02-08 19:44:37 +01:00
|
|
|
{
|
|
|
|
opts
|
|
|
|
};
|
|
|
|
|
2018-02-08 21:53:37 +01:00
|
|
|
size_t foff{0};
|
|
|
|
size_t i(0), j(0), r(0);
|
2018-02-10 22:12:23 +01:00
|
|
|
for(; !limit || i < limit; ++r)
|
2018-02-08 19:44:37 +01:00
|
|
|
{
|
2018-02-08 21:53:37 +01:00
|
|
|
static char buf[512_KiB];
|
|
|
|
const string_view read
|
2018-02-08 19:44:37 +01:00
|
|
|
{
|
2018-05-30 11:41:14 +02:00
|
|
|
fs::read(file, buf, foff)
|
2018-02-08 21:53:37 +01:00
|
|
|
};
|
2018-02-08 19:44:37 +01:00
|
|
|
|
2018-02-08 21:53:37 +01:00
|
|
|
size_t boff(0);
|
2018-02-20 05:37:28 +01:00
|
|
|
json::object object;
|
2018-02-08 21:53:37 +01:00
|
|
|
json::vector vector{read};
|
|
|
|
for(; boff < size(read) && i < limit; ) try
|
2018-02-08 19:44:37 +01:00
|
|
|
{
|
2018-02-20 05:37:28 +01:00
|
|
|
object = *begin(vector);
|
2018-02-20 03:52:38 +01:00
|
|
|
boff += size(string_view{object});
|
2018-02-08 21:53:37 +01:00
|
|
|
vector = { data(read) + boff, size(read) - boff };
|
2018-02-20 03:52:38 +01:00
|
|
|
const m::event event
|
|
|
|
{
|
|
|
|
object
|
|
|
|
};
|
2018-02-10 22:12:23 +01:00
|
|
|
|
|
|
|
if(room_id && json::get<"room_id"_>(event) != room_id)
|
|
|
|
continue;
|
|
|
|
|
2018-02-20 05:08:02 +01:00
|
|
|
if(event_id && json::get<"event_id"_>(event) != event_id)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if(sender && json::get<"sender"_>(event) != sender)
|
|
|
|
continue;
|
|
|
|
|
2018-02-08 21:53:37 +01:00
|
|
|
if(j++ < start)
|
2018-02-08 19:44:37 +01:00
|
|
|
continue;
|
|
|
|
|
2018-02-08 21:53:37 +01:00
|
|
|
eval(event);
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
catch(const json::parse_error &e)
|
|
|
|
{
|
|
|
|
break;
|
2018-02-08 19:44:37 +01:00
|
|
|
}
|
2018-02-20 05:37:28 +01:00
|
|
|
catch(const std::exception &e)
|
|
|
|
{
|
|
|
|
out << fmt::snstringf
|
|
|
|
{
|
|
|
|
128, "Error at i=%zu j=%zu r=%zu foff=%zu boff=%zu\n",
|
|
|
|
i, j, r, foff, boff
|
|
|
|
};
|
|
|
|
|
|
|
|
out << string_view{object} << std::endl;
|
|
|
|
out << e.what() << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
2018-02-08 19:44:37 +01:00
|
|
|
|
2018-02-08 21:53:37 +01:00
|
|
|
foff += boff;
|
2018-02-08 19:44:37 +01:00
|
|
|
}
|
|
|
|
|
2018-02-08 21:53:37 +01:00
|
|
|
out << "Executed " << i
|
|
|
|
<< " of " << j << " events"
|
|
|
|
<< " in " << foff << " bytes"
|
|
|
|
<< " using " << r << " reads"
|
|
|
|
<< std::endl;
|
|
|
|
|
2018-02-08 19:44:37 +01:00
|
|
|
return true;
|
|
|
|
}
|
2018-02-09 06:00:50 +01:00
|
|
|
|
2018-04-10 04:39:59 +02:00
|
|
|
//
|
|
|
|
// rooms
|
|
|
|
//
|
|
|
|
|
|
|
|
bool
|
|
|
|
console_cmd__rooms(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
m::rooms::for_each(m::room::id::closure{[&out]
|
|
|
|
(const m::room::id &room_id)
|
|
|
|
{
|
|
|
|
out << room_id << std::endl;
|
|
|
|
}});
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-02-09 06:00:50 +01:00
|
|
|
//
|
|
|
|
// room
|
|
|
|
//
|
|
|
|
|
2018-04-19 00:05:15 +02:00
|
|
|
bool
|
|
|
|
console_cmd__room__top(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"room_id",
|
|
|
|
}};
|
|
|
|
|
|
|
|
const auto &room_id
|
|
|
|
{
|
|
|
|
m::room_id(param.at(0))
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto top
|
|
|
|
{
|
|
|
|
m::top(std::nothrow, room_id)
|
|
|
|
};
|
|
|
|
|
2018-08-21 17:44:52 +02:00
|
|
|
const m::room::state state
|
2018-05-18 09:32:58 +02:00
|
|
|
{
|
2018-08-21 17:44:52 +02:00
|
|
|
room_id
|
2018-05-18 09:32:58 +02:00
|
|
|
};
|
|
|
|
|
2018-09-13 17:10:24 +02:00
|
|
|
out << "version: " << m::version(room_id) << std::endl;
|
|
|
|
out << "federate: " << std::boolalpha << m::federate(room_id) << std::endl;
|
|
|
|
out << "idx: " << std::get<m::event::idx>(top) << std::endl;
|
|
|
|
out << "depth: " << std::get<int64_t>(top) << std::endl;
|
|
|
|
out << "event: " << std::get<m::event::id::buf>(top) << std::endl;
|
|
|
|
out << std::endl;
|
|
|
|
|
2018-08-21 17:44:52 +02:00
|
|
|
state.for_each(m::room::state::types{[&out, &state]
|
|
|
|
(const string_view &type)
|
|
|
|
{
|
|
|
|
if(!startswith(type, "m."))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
state.for_each(type, m::event::closure{[&out]
|
|
|
|
(const m::event &event)
|
|
|
|
{
|
2018-09-13 17:10:24 +02:00
|
|
|
if(json::get<"state_key"_>(event) != "")
|
|
|
|
return;
|
|
|
|
|
|
|
|
out << json::get<"type"_>(event) << ':' << std::endl;
|
|
|
|
for(const auto &member : json::get<"content"_>(event))
|
|
|
|
out << '\t' << member.first << ": " << member.second << std::endl;
|
|
|
|
out << std::endl;
|
2018-08-21 17:44:52 +02:00
|
|
|
}});
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}});
|
2018-05-18 09:32:58 +02:00
|
|
|
|
2018-04-19 00:05:15 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-04-21 08:53:04 +02:00
|
|
|
bool
|
|
|
|
console_id__room(opt &out,
|
|
|
|
const m::room::id &id,
|
|
|
|
const string_view &line)
|
|
|
|
{
|
|
|
|
//TODO: XXX more detailed summary
|
|
|
|
return console_cmd__room__top(out, line);
|
|
|
|
}
|
|
|
|
|
2018-09-13 08:21:40 +02:00
|
|
|
bool
|
|
|
|
console_cmd__room__version(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"room_id",
|
|
|
|
}};
|
|
|
|
|
|
|
|
const auto &room_id
|
|
|
|
{
|
|
|
|
m::room_id(param.at(0))
|
|
|
|
};
|
|
|
|
|
|
|
|
out << m::version(room_id) << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-02-09 06:00:50 +01:00
|
|
|
bool
|
2018-03-26 09:04:47 +02:00
|
|
|
console_cmd__room__head(opt &out, const string_view &line)
|
2018-02-09 06:00:50 +01:00
|
|
|
{
|
2018-04-07 07:08:31 +02:00
|
|
|
const auto &room_id
|
2018-02-09 06:00:50 +01:00
|
|
|
{
|
2018-04-07 07:08:31 +02:00
|
|
|
m::room_id(token(line, ' ', 0))
|
2018-02-09 06:00:50 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
const m::room room
|
|
|
|
{
|
|
|
|
room_id
|
|
|
|
};
|
|
|
|
|
2018-05-05 05:48:43 +02:00
|
|
|
const m::room::head head
|
|
|
|
{
|
|
|
|
room
|
|
|
|
};
|
|
|
|
|
|
|
|
head.for_each([&out]
|
|
|
|
(const m::event::idx &event_idx, const m::event::id &event_id)
|
|
|
|
{
|
|
|
|
const m::event::fetch event
|
|
|
|
{
|
|
|
|
event_idx, std::nothrow
|
|
|
|
};
|
|
|
|
|
|
|
|
out << pretty_oneline(event) << std::endl;
|
|
|
|
});
|
|
|
|
|
2018-02-09 06:00:50 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-05-22 11:58:21 +02:00
|
|
|
bool
|
|
|
|
console_cmd__room__head__rebuild(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"room_id",
|
|
|
|
}};
|
|
|
|
|
|
|
|
const auto &room_id
|
|
|
|
{
|
|
|
|
m::room_id(param.at(0))
|
|
|
|
};
|
|
|
|
|
|
|
|
const m::room room
|
|
|
|
{
|
|
|
|
room_id
|
|
|
|
};
|
|
|
|
|
|
|
|
using prototype = size_t (const m::room &);
|
2018-09-14 16:39:11 +02:00
|
|
|
static mods::import<prototype> head__rebuild
|
2018-05-22 11:58:21 +02:00
|
|
|
{
|
|
|
|
"m_room", "head__rebuild"
|
|
|
|
};
|
|
|
|
|
|
|
|
const size_t count
|
|
|
|
{
|
|
|
|
head__rebuild(room)
|
|
|
|
};
|
|
|
|
|
|
|
|
out << "done " << count << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-05-26 04:35:29 +02:00
|
|
|
bool
|
|
|
|
console_cmd__room__head__add(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"event_id"
|
|
|
|
}};
|
|
|
|
|
|
|
|
const m::event::id &event_id
|
|
|
|
{
|
|
|
|
param.at(0)
|
|
|
|
};
|
|
|
|
|
2018-05-27 15:26:06 +02:00
|
|
|
using prototype = void (const m::event::id &, const db::op &, const bool &);
|
2018-09-14 16:39:11 +02:00
|
|
|
static mods::import<prototype> head__modify
|
2018-05-26 04:35:29 +02:00
|
|
|
{
|
|
|
|
"m_room", "head__modify"
|
|
|
|
};
|
|
|
|
|
2018-05-27 15:26:06 +02:00
|
|
|
head__modify(event_id, db::op::SET, true);
|
2018-05-26 04:35:29 +02:00
|
|
|
out << "Added " << event_id << " to head " << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
console_cmd__room__head__del(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"event_id"
|
|
|
|
}};
|
|
|
|
|
|
|
|
const m::event::id &event_id
|
|
|
|
{
|
|
|
|
param.at(0)
|
|
|
|
};
|
|
|
|
|
2018-05-27 15:26:06 +02:00
|
|
|
using prototype = void (const m::event::id &, const db::op &, const bool &);
|
2018-09-14 16:39:11 +02:00
|
|
|
static mods::import<prototype> head__modify
|
2018-05-26 04:35:29 +02:00
|
|
|
{
|
|
|
|
"m_room", "head__modify"
|
|
|
|
};
|
|
|
|
|
2018-05-27 15:26:06 +02:00
|
|
|
head__modify(event_id, db::op::DELETE, true);
|
2018-05-26 04:35:29 +02:00
|
|
|
out << "Deleted " << event_id << " from head (if existed)" << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-06-02 02:20:35 +02:00
|
|
|
bool
|
|
|
|
console_cmd__room__herd(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"room_id", "user_id"
|
|
|
|
}};
|
|
|
|
|
|
|
|
const auto &room_id
|
|
|
|
{
|
|
|
|
m::room_id(param.at(0))
|
|
|
|
};
|
|
|
|
|
|
|
|
const m::user::id &user_id
|
|
|
|
{
|
|
|
|
param.at(1)
|
|
|
|
};
|
|
|
|
|
|
|
|
using prototype = void (const m::room &, const m::user &, const milliseconds &);
|
2018-09-14 16:39:11 +02:00
|
|
|
static mods::import<prototype> room_herd
|
2018-06-02 02:20:35 +02:00
|
|
|
{
|
|
|
|
"m_room", "room_herd"
|
|
|
|
};
|
|
|
|
|
|
|
|
room_herd(room_id, user_id, out.timeout);
|
|
|
|
out << "done" << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-05-22 11:58:49 +02:00
|
|
|
bool
|
|
|
|
console_cmd__room__head__reset(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"room_id",
|
|
|
|
}};
|
|
|
|
|
|
|
|
const auto &room_id
|
|
|
|
{
|
|
|
|
m::room_id(param.at(0))
|
|
|
|
};
|
|
|
|
|
|
|
|
const m::room room
|
|
|
|
{
|
|
|
|
room_id
|
|
|
|
};
|
|
|
|
|
|
|
|
using prototype = size_t (const m::room &);
|
2018-09-14 16:39:11 +02:00
|
|
|
static mods::import<prototype> head__reset
|
2018-05-22 11:58:49 +02:00
|
|
|
{
|
|
|
|
"m_room", "head__reset"
|
|
|
|
};
|
|
|
|
|
|
|
|
const size_t count
|
|
|
|
{
|
|
|
|
head__reset(room)
|
|
|
|
};
|
|
|
|
|
|
|
|
out << "done " << count << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-05-31 18:18:57 +02:00
|
|
|
bool
|
|
|
|
console_cmd__room__complete(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"room_id",
|
|
|
|
}};
|
|
|
|
|
|
|
|
const auto &room_id
|
|
|
|
{
|
|
|
|
m::room_id(param.at(0))
|
|
|
|
};
|
|
|
|
|
|
|
|
const m::room room
|
|
|
|
{
|
|
|
|
room_id
|
|
|
|
};
|
|
|
|
|
|
|
|
using prototype = std::pair<bool, int64_t> (const m::room &);
|
2018-09-14 16:39:11 +02:00
|
|
|
static mods::import<prototype> is_complete
|
2018-05-31 18:18:57 +02:00
|
|
|
{
|
|
|
|
"m_room", "is_complete"
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto res
|
|
|
|
{
|
|
|
|
is_complete(room)
|
|
|
|
};
|
|
|
|
|
|
|
|
out << (res.first? "YES" : "NO")
|
|
|
|
<< " @ depth " << res.second
|
|
|
|
<< std::endl;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-02-09 06:00:50 +01:00
|
|
|
bool
|
2018-03-26 09:04:47 +02:00
|
|
|
console_cmd__room__depth(opt &out, const string_view &line)
|
2018-02-09 06:00:50 +01:00
|
|
|
{
|
2018-04-07 07:08:31 +02:00
|
|
|
const auto &room_id
|
2018-02-09 06:00:50 +01:00
|
|
|
{
|
2018-04-07 07:08:31 +02:00
|
|
|
m::room_id(token(line, ' ', 0))
|
2018-02-09 06:00:50 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
const m::room room
|
|
|
|
{
|
|
|
|
room_id
|
|
|
|
};
|
|
|
|
|
|
|
|
out << depth(room_id) << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-05-31 20:09:33 +02:00
|
|
|
bool
|
|
|
|
console_cmd__room__visible(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"room_id", "user_id|node_id", "event_id"
|
|
|
|
}};
|
|
|
|
|
|
|
|
const auto &room_id
|
|
|
|
{
|
|
|
|
m::room_id(param.at(0))
|
|
|
|
};
|
|
|
|
|
|
|
|
const string_view &mxid
|
|
|
|
{
|
|
|
|
param[1] && param[1] != "*"?
|
|
|
|
param[1]:
|
|
|
|
param[1] == "*"?
|
|
|
|
string_view{}:
|
|
|
|
param[1]
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto &event_id
|
|
|
|
{
|
|
|
|
param[2]
|
|
|
|
};
|
|
|
|
|
|
|
|
const m::room room
|
|
|
|
{
|
|
|
|
room_id, event_id
|
|
|
|
};
|
|
|
|
|
|
|
|
const bool visible
|
|
|
|
{
|
|
|
|
room.visible(mxid)
|
|
|
|
};
|
|
|
|
|
|
|
|
out << room_id << " is "
|
|
|
|
<< (visible? "VISIBLE" : "NOT VISIBLE")
|
|
|
|
<< (mxid? " to " : "")
|
|
|
|
<< mxid
|
|
|
|
<< (event_id? " at " : "")
|
|
|
|
<< event_id
|
|
|
|
<< std::endl;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-02-09 06:00:50 +01:00
|
|
|
bool
|
2018-03-26 09:04:47 +02:00
|
|
|
console_cmd__room__members(opt &out, const string_view &line)
|
2018-02-09 06:00:50 +01:00
|
|
|
{
|
2018-05-01 07:48:30 +02:00
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"room_id", "[membership]"
|
|
|
|
}};
|
|
|
|
|
2018-04-07 07:08:31 +02:00
|
|
|
const auto &room_id
|
2018-02-09 06:00:50 +01:00
|
|
|
{
|
2018-05-01 07:48:30 +02:00
|
|
|
m::room_id(param.at(0))
|
2018-02-09 06:00:50 +01:00
|
|
|
};
|
|
|
|
|
2018-03-05 11:44:03 +01:00
|
|
|
const string_view membership
|
|
|
|
{
|
2018-05-01 07:48:30 +02:00
|
|
|
param[1]
|
2018-03-05 11:44:03 +01:00
|
|
|
};
|
|
|
|
|
2018-02-09 06:00:50 +01:00
|
|
|
const m::room room
|
|
|
|
{
|
|
|
|
room_id
|
|
|
|
};
|
|
|
|
|
|
|
|
const m::room::members members
|
|
|
|
{
|
|
|
|
room
|
|
|
|
};
|
|
|
|
|
2018-05-21 05:18:19 +02:00
|
|
|
const m::room::members::closure closure{[&out]
|
|
|
|
(const m::user::id &user_id)
|
|
|
|
{
|
|
|
|
out << user_id << std::endl;
|
|
|
|
}};
|
|
|
|
|
|
|
|
members.for_each(membership, closure);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
console_cmd__room__members__events(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"room_id", "[membership]"
|
|
|
|
}};
|
|
|
|
|
|
|
|
const auto &room_id
|
|
|
|
{
|
|
|
|
m::room_id(param.at(0))
|
|
|
|
};
|
|
|
|
|
|
|
|
const string_view membership
|
|
|
|
{
|
|
|
|
param[1]
|
|
|
|
};
|
|
|
|
|
|
|
|
const m::room room
|
|
|
|
{
|
|
|
|
room_id
|
|
|
|
};
|
|
|
|
|
|
|
|
const m::room::members members
|
|
|
|
{
|
|
|
|
room
|
|
|
|
};
|
|
|
|
|
2018-03-26 08:23:30 +02:00
|
|
|
const auto closure{[&out](const m::event &event)
|
2018-02-10 22:03:13 +01:00
|
|
|
{
|
|
|
|
out << pretty_oneline(event) << std::endl;
|
2018-03-05 11:44:03 +01:00
|
|
|
}};
|
|
|
|
|
2018-05-01 07:48:30 +02:00
|
|
|
members.for_each(membership, closure);
|
2018-02-10 22:03:13 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-07-06 00:59:41 +02:00
|
|
|
bool
|
|
|
|
console_cmd__room__members__count(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"room_id", "[membership]"
|
|
|
|
}};
|
|
|
|
|
|
|
|
const auto &room_id
|
|
|
|
{
|
|
|
|
m::room_id(param.at(0))
|
|
|
|
};
|
|
|
|
|
|
|
|
const string_view membership
|
|
|
|
{
|
|
|
|
param[1]
|
|
|
|
};
|
|
|
|
|
|
|
|
const m::room room
|
|
|
|
{
|
|
|
|
room_id
|
|
|
|
};
|
|
|
|
|
|
|
|
const m::room::members members
|
|
|
|
{
|
|
|
|
room
|
|
|
|
};
|
|
|
|
|
|
|
|
out << members.count(membership) << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-04-21 08:53:30 +02:00
|
|
|
bool
|
|
|
|
console_cmd__room__members__origin(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"room_id", "origin", "[membership]"
|
|
|
|
}};
|
|
|
|
|
|
|
|
const auto &room_id
|
|
|
|
{
|
|
|
|
m::room_id(param.at(0))
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto &origin
|
|
|
|
{
|
|
|
|
param.at(1)
|
|
|
|
};
|
|
|
|
|
|
|
|
const string_view membership
|
|
|
|
{
|
|
|
|
param[2]
|
|
|
|
};
|
|
|
|
|
|
|
|
const m::room room
|
|
|
|
{
|
|
|
|
room_id
|
|
|
|
};
|
|
|
|
|
|
|
|
const m::room::members members
|
|
|
|
{
|
|
|
|
room
|
|
|
|
};
|
|
|
|
|
|
|
|
members.for_each(membership, [&out, &origin]
|
|
|
|
(const m::event &event)
|
|
|
|
{
|
|
|
|
if(json::get<"origin"_>(event) != origin)
|
|
|
|
return;
|
|
|
|
|
|
|
|
out << pretty_oneline(event) << std::endl;
|
|
|
|
});
|
|
|
|
|
2018-04-29 06:15:22 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
console_cmd__room__members__read(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
2018-05-12 04:53:00 +02:00
|
|
|
"event_id", "[membership]"
|
2018-04-29 06:15:22 +02:00
|
|
|
}};
|
|
|
|
|
2018-05-12 04:53:00 +02:00
|
|
|
const m::event::id &event_id
|
2018-04-29 06:15:22 +02:00
|
|
|
{
|
2018-05-12 04:53:00 +02:00
|
|
|
param.at(0)
|
2018-04-29 06:15:22 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
const string_view membership
|
|
|
|
{
|
2018-05-24 01:29:17 +02:00
|
|
|
param.at(1, "join"_sv)
|
2018-04-29 06:15:22 +02:00
|
|
|
};
|
|
|
|
|
2018-05-12 04:53:00 +02:00
|
|
|
m::room::id::buf room_id
|
2018-04-29 06:15:22 +02:00
|
|
|
{
|
2018-05-12 04:53:00 +02:00
|
|
|
m::get(event_id, "room_id", room_id)
|
2018-04-29 06:15:22 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
const m::room room
|
|
|
|
{
|
|
|
|
room_id
|
|
|
|
};
|
|
|
|
|
|
|
|
const m::room::members members
|
|
|
|
{
|
|
|
|
room
|
|
|
|
};
|
|
|
|
|
|
|
|
const m::event::closure event_closure{[&out, &event_id]
|
|
|
|
(const m::event &event)
|
|
|
|
{
|
|
|
|
if(event_id)
|
|
|
|
if(unquote(at<"content"_>(event).get("event_id")) != event_id)
|
|
|
|
return;
|
|
|
|
|
|
|
|
out << timestr(at<"origin_server_ts"_>(event) / 1000)
|
|
|
|
<< " " << at<"sender"_>(event)
|
|
|
|
<< " " << at<"content"_>(event)
|
|
|
|
<< " " << at<"event_id"_>(event)
|
|
|
|
<< std::endl;
|
|
|
|
}};
|
|
|
|
|
|
|
|
const auto member_closure{[&room_id, event_closure]
|
|
|
|
(const m::event &event)
|
|
|
|
{
|
|
|
|
const m::user user
|
|
|
|
{
|
|
|
|
at<"state_key"_>(event)
|
|
|
|
};
|
|
|
|
|
2018-05-24 01:47:59 +02:00
|
|
|
static const m::event::fetch::opts fopts
|
|
|
|
{
|
|
|
|
m::event::keys::include
|
|
|
|
{
|
|
|
|
"event_id", "content", "origin_server_ts", "sender"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
db::get::NO_CACHE
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
const m::user::room user_room
|
|
|
|
{
|
|
|
|
user, nullptr, &fopts
|
|
|
|
};
|
|
|
|
|
2018-04-29 06:15:22 +02:00
|
|
|
user_room.get(std::nothrow, "ircd.read", room_id, event_closure);
|
|
|
|
}};
|
|
|
|
|
2018-05-01 07:48:30 +02:00
|
|
|
members.for_each(membership, member_closure);
|
2018-04-21 08:53:30 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-03-03 11:39:32 +01:00
|
|
|
bool
|
2018-03-26 09:04:47 +02:00
|
|
|
console_cmd__room__origins(opt &out, const string_view &line)
|
2018-03-03 11:39:32 +01:00
|
|
|
{
|
2018-04-07 07:08:31 +02:00
|
|
|
const auto &room_id
|
2018-03-03 11:39:32 +01:00
|
|
|
{
|
2018-04-07 07:08:31 +02:00
|
|
|
m::room_id(token(line, ' ', 0))
|
2018-03-03 11:39:32 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
const m::room room
|
|
|
|
{
|
|
|
|
room_id
|
|
|
|
};
|
|
|
|
|
|
|
|
const m::room::origins origins
|
|
|
|
{
|
|
|
|
room
|
|
|
|
};
|
|
|
|
|
2018-03-26 08:23:30 +02:00
|
|
|
origins.test([&out](const string_view &origin)
|
2018-03-03 11:39:32 +01:00
|
|
|
{
|
|
|
|
out << origin << std::endl;
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-08-23 02:44:24 +02:00
|
|
|
bool
|
|
|
|
console_cmd__room__origins__random(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
2018-08-23 03:06:22 +02:00
|
|
|
"room_id", "[noerror]"
|
2018-08-23 02:44:24 +02:00
|
|
|
}};
|
|
|
|
|
|
|
|
const auto &room_id
|
|
|
|
{
|
|
|
|
m::room_id(param.at("room_id"))
|
|
|
|
};
|
|
|
|
|
2018-08-23 03:06:22 +02:00
|
|
|
const bool noerror
|
|
|
|
{
|
|
|
|
param.at<bool>("[noerror]", false)
|
|
|
|
};
|
|
|
|
|
2018-08-23 02:44:24 +02:00
|
|
|
const m::room room
|
|
|
|
{
|
|
|
|
room_id
|
|
|
|
};
|
|
|
|
|
2018-08-24 13:14:24 +02:00
|
|
|
const m::room::origins origins
|
|
|
|
{
|
|
|
|
room
|
|
|
|
};
|
|
|
|
|
2018-08-23 03:06:22 +02:00
|
|
|
const auto ok{[&noerror]
|
|
|
|
(const string_view &origin)
|
|
|
|
{
|
|
|
|
if(noerror && ircd::server::errmsg(origin))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}};
|
|
|
|
|
2018-08-23 02:44:24 +02:00
|
|
|
char buf[256];
|
|
|
|
const string_view origin
|
|
|
|
{
|
2018-08-24 13:14:24 +02:00
|
|
|
origins.random(buf, ok)
|
2018-08-23 02:44:24 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
if(!origin)
|
|
|
|
throw m::NOT_FOUND
|
|
|
|
{
|
|
|
|
"No origins for this room."
|
|
|
|
};
|
|
|
|
|
|
|
|
out << origin << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-02-10 22:03:13 +01:00
|
|
|
bool
|
2018-03-26 09:04:47 +02:00
|
|
|
console_cmd__room__state(opt &out, const string_view &line)
|
2018-02-10 22:03:13 +01:00
|
|
|
{
|
2018-04-07 07:08:31 +02:00
|
|
|
const auto &room_id
|
2018-02-10 22:03:13 +01:00
|
|
|
{
|
2018-04-07 07:08:31 +02:00
|
|
|
m::room_id(token(line, ' ', 0))
|
2018-02-10 22:03:13 +01:00
|
|
|
};
|
|
|
|
|
2018-03-05 11:44:03 +01:00
|
|
|
const auto &event_id
|
|
|
|
{
|
|
|
|
token(line, ' ', 1, {})
|
|
|
|
};
|
|
|
|
|
2018-02-10 22:03:13 +01:00
|
|
|
const m::room room
|
|
|
|
{
|
2018-03-05 11:44:03 +01:00
|
|
|
room_id, event_id
|
2018-02-10 22:03:13 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
const m::room::state state
|
|
|
|
{
|
|
|
|
room
|
|
|
|
};
|
|
|
|
|
2018-03-26 08:23:30 +02:00
|
|
|
state.for_each([&out](const m::event &event)
|
2018-02-09 06:00:50 +01:00
|
|
|
{
|
|
|
|
out << pretty_oneline(event) << std::endl;
|
|
|
|
});
|
|
|
|
|
2018-02-27 11:36:08 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-08-21 17:39:34 +02:00
|
|
|
bool
|
|
|
|
console_cmd__room__state__types(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const auto &room_id
|
|
|
|
{
|
|
|
|
m::room_id(token(line, ' ', 0))
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto &event_id
|
|
|
|
{
|
|
|
|
token(line, ' ', 1, {})
|
|
|
|
};
|
|
|
|
|
|
|
|
const m::room room
|
|
|
|
{
|
|
|
|
room_id, event_id
|
|
|
|
};
|
|
|
|
|
|
|
|
const m::room::state state
|
|
|
|
{
|
|
|
|
room
|
|
|
|
};
|
|
|
|
|
|
|
|
state.for_each(m::room::state::types{[&out]
|
|
|
|
(const string_view &type)
|
|
|
|
{
|
|
|
|
out << type << std::endl;
|
|
|
|
return true;
|
|
|
|
}});
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-06-12 08:49:44 +02:00
|
|
|
bool
|
|
|
|
console_cmd__room__state__force(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"event_id"
|
|
|
|
}};
|
|
|
|
|
|
|
|
const m::event::id &event_id
|
|
|
|
{
|
|
|
|
param.at(0)
|
|
|
|
};
|
|
|
|
|
|
|
|
const m::event::fetch event
|
|
|
|
{
|
|
|
|
event_id
|
|
|
|
};
|
|
|
|
|
|
|
|
using prototype = bool (const m::event &);
|
2018-09-14 16:39:11 +02:00
|
|
|
static mods::import<prototype> state__force_present
|
2018-06-12 08:49:44 +02:00
|
|
|
{
|
|
|
|
"m_room", "state__force_present"
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto res
|
|
|
|
{
|
|
|
|
state__force_present(event)
|
|
|
|
};
|
|
|
|
|
|
|
|
out << "forced " << event_id << " into present state" << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-05-14 04:16:34 +02:00
|
|
|
bool
|
|
|
|
console_cmd__room__state__rebuild__present(opt &out, const string_view &line)
|
|
|
|
{
|
2018-05-18 03:09:36 +02:00
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"room_id"
|
|
|
|
}};
|
|
|
|
|
2018-05-14 04:16:34 +02:00
|
|
|
const auto &room_id
|
|
|
|
{
|
2018-05-18 03:09:36 +02:00
|
|
|
m::room_id(param.at(0))
|
2018-05-14 04:16:34 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
const m::room room
|
|
|
|
{
|
|
|
|
room_id
|
|
|
|
};
|
|
|
|
|
|
|
|
using prototype = size_t (const m::room &);
|
2018-09-14 16:39:11 +02:00
|
|
|
static mods::import<prototype> state__rebuild_present
|
2018-05-14 04:16:34 +02:00
|
|
|
{
|
2018-05-18 09:02:04 +02:00
|
|
|
"m_room", "state__rebuild_present"
|
2018-05-14 04:16:34 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
const size_t count
|
|
|
|
{
|
|
|
|
state__rebuild_present(room)
|
|
|
|
};
|
|
|
|
|
|
|
|
out << "done " << count << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-05-18 04:29:44 +02:00
|
|
|
bool
|
|
|
|
console_cmd__room__state__rebuild__history(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"room_id"
|
|
|
|
}};
|
|
|
|
|
|
|
|
const auto &room_id
|
|
|
|
{
|
|
|
|
m::room_id(param.at(0))
|
|
|
|
};
|
|
|
|
|
|
|
|
const m::room room
|
|
|
|
{
|
|
|
|
room_id
|
|
|
|
};
|
|
|
|
|
|
|
|
using prototype = size_t (const m::room &);
|
2018-09-14 16:39:11 +02:00
|
|
|
static mods::import<prototype> state__rebuild_history
|
2018-05-18 04:29:44 +02:00
|
|
|
{
|
2018-05-18 09:02:04 +02:00
|
|
|
"m_room", "state__rebuild_history"
|
2018-05-18 04:29:44 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
const size_t count
|
|
|
|
{
|
|
|
|
state__rebuild_history(room)
|
|
|
|
};
|
|
|
|
|
|
|
|
out << "done " << count << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-02-27 11:36:08 +01:00
|
|
|
bool
|
2018-03-26 09:04:47 +02:00
|
|
|
console_cmd__room__count(opt &out, const string_view &line)
|
2018-02-27 11:36:08 +01:00
|
|
|
{
|
2018-04-27 06:36:09 +02:00
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"room_id", "{event_filter_json}"
|
|
|
|
}};
|
|
|
|
|
2018-04-07 07:08:31 +02:00
|
|
|
const auto &room_id
|
2018-02-27 11:36:08 +01:00
|
|
|
{
|
2018-04-27 06:36:09 +02:00
|
|
|
m::room_id(param.at(0))
|
2018-02-27 11:36:08 +01:00
|
|
|
};
|
|
|
|
|
2018-04-27 06:36:09 +02:00
|
|
|
const m::event_filter filter
|
2018-02-27 11:36:08 +01:00
|
|
|
{
|
2018-04-27 06:36:09 +02:00
|
|
|
param[1]
|
2018-02-27 11:36:08 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
const m::room room
|
|
|
|
{
|
|
|
|
room_id
|
|
|
|
};
|
|
|
|
|
2018-04-27 06:36:09 +02:00
|
|
|
auto limit
|
2018-02-27 11:36:08 +01:00
|
|
|
{
|
2018-04-27 06:36:09 +02:00
|
|
|
json::get<"limit"_>(filter)?: -1
|
2018-02-27 11:36:08 +01:00
|
|
|
};
|
|
|
|
|
2018-04-27 06:36:09 +02:00
|
|
|
size_t count{0};
|
|
|
|
m::room::messages it{room};
|
|
|
|
for(; it && limit; --it, --limit)
|
|
|
|
{
|
|
|
|
const m::event &event{*it};
|
|
|
|
count += match(filter, event);
|
|
|
|
}
|
2018-02-27 11:36:08 +01:00
|
|
|
|
2018-04-27 06:36:09 +02:00
|
|
|
out << count << std::endl;
|
2018-02-09 06:00:50 +01:00
|
|
|
return true;
|
|
|
|
}
|
2018-02-13 23:32:49 +01:00
|
|
|
|
|
|
|
bool
|
2018-04-27 05:39:54 +02:00
|
|
|
console_cmd__room__events(opt &out, const string_view &line)
|
2018-02-13 23:32:49 +01:00
|
|
|
{
|
2018-04-14 07:13:33 +02:00
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"room_id", "depth|-limit", "order", "limit"
|
|
|
|
}};
|
|
|
|
|
2018-04-07 07:08:31 +02:00
|
|
|
const auto &room_id
|
2018-02-13 23:32:49 +01:00
|
|
|
{
|
2018-04-14 07:13:33 +02:00
|
|
|
m::room_id(param.at(0))
|
2018-02-13 23:32:49 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
const int64_t depth
|
|
|
|
{
|
2018-04-14 07:13:33 +02:00
|
|
|
param.at<int64_t>(1, std::numeric_limits<int64_t>::max())
|
2018-02-13 23:32:49 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
const char order
|
|
|
|
{
|
2018-04-14 07:13:33 +02:00
|
|
|
param.at(2, "b"_sv).at(0)
|
|
|
|
};
|
|
|
|
|
|
|
|
ssize_t limit
|
|
|
|
{
|
|
|
|
depth < 0?
|
|
|
|
std::abs(depth):
|
|
|
|
param.at(3, ssize_t(32))
|
2018-02-13 23:32:49 +01:00
|
|
|
};
|
|
|
|
|
2018-04-27 05:39:54 +02:00
|
|
|
const bool roots
|
|
|
|
{
|
|
|
|
has(out.special, "roots")
|
|
|
|
};
|
|
|
|
|
2018-02-13 23:32:49 +01:00
|
|
|
const m::room room
|
|
|
|
{
|
|
|
|
room_id
|
|
|
|
};
|
|
|
|
|
|
|
|
m::room::messages it{room};
|
2018-04-14 07:13:33 +02:00
|
|
|
if(depth >= 0 && depth < std::numeric_limits<int64_t>::max())
|
2018-02-13 23:32:49 +01:00
|
|
|
it.seek(depth);
|
|
|
|
|
2018-04-14 07:13:33 +02:00
|
|
|
for(; it && limit >= 0; order == 'b'? --it : ++it, --limit)
|
2018-04-27 05:39:54 +02:00
|
|
|
if(roots)
|
2018-05-18 03:19:22 +02:00
|
|
|
out << std::setw(48) << std::left << it.state_root()
|
2018-04-27 05:39:54 +02:00
|
|
|
<< " " << std::setw(8) << std::left << it.event_idx()
|
|
|
|
<< " " << it.event_id()
|
|
|
|
<< std::endl;
|
|
|
|
else
|
|
|
|
out << pretty_oneline(*it)
|
|
|
|
<< std::endl;
|
2018-02-13 23:32:49 +01:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2018-02-16 00:55:59 +01:00
|
|
|
|
2018-09-05 08:24:56 +02:00
|
|
|
bool
|
|
|
|
console_cmd__room__messages(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"room_id", "depth|-limit", "order", "limit"
|
|
|
|
}};
|
|
|
|
|
|
|
|
const auto &room_id
|
|
|
|
{
|
|
|
|
m::room_id(param.at(0))
|
|
|
|
};
|
|
|
|
|
|
|
|
const int64_t depth
|
|
|
|
{
|
|
|
|
param.at<int64_t>(1, std::numeric_limits<int64_t>::max())
|
|
|
|
};
|
|
|
|
|
|
|
|
const char order
|
|
|
|
{
|
|
|
|
param.at(2, "b"_sv).at(0)
|
|
|
|
};
|
|
|
|
|
|
|
|
ssize_t limit
|
|
|
|
{
|
|
|
|
depth < 0?
|
|
|
|
std::abs(depth):
|
|
|
|
param.at(3, ssize_t(32))
|
|
|
|
};
|
|
|
|
|
|
|
|
const m::room room
|
|
|
|
{
|
|
|
|
room_id
|
|
|
|
};
|
|
|
|
|
|
|
|
m::room::messages it{room};
|
|
|
|
if(depth >= 0 && depth < std::numeric_limits<int64_t>::max())
|
|
|
|
it.seek(depth);
|
|
|
|
|
|
|
|
for(; it && limit >= 0; order == 'b'? --it : ++it, --limit)
|
|
|
|
out << pretty_msgline(*it)
|
|
|
|
<< std::endl;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-04-27 05:39:54 +02:00
|
|
|
bool
|
|
|
|
console_cmd__room__roots(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
assert(!out.special);
|
|
|
|
out.special = "roots";
|
|
|
|
return console_cmd__room__events(out, line);
|
|
|
|
}
|
|
|
|
|
2018-02-16 00:55:59 +01:00
|
|
|
bool
|
2018-03-26 09:04:47 +02:00
|
|
|
console_cmd__room__get(opt &out, const string_view &line)
|
2018-02-16 00:55:59 +01:00
|
|
|
{
|
2018-04-08 20:30:50 +02:00
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"room_id", "type", "state_key", "args"
|
|
|
|
}};
|
|
|
|
|
2018-04-07 07:08:31 +02:00
|
|
|
const auto &room_id
|
2018-02-16 00:55:59 +01:00
|
|
|
{
|
2018-04-08 20:30:50 +02:00
|
|
|
m::room_id(param.at(0))
|
2018-02-16 00:55:59 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
const string_view type
|
|
|
|
{
|
2018-04-08 20:30:50 +02:00
|
|
|
param.at(1)
|
2018-02-16 00:55:59 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
const string_view state_key
|
|
|
|
{
|
2018-04-08 20:30:50 +02:00
|
|
|
param.at(2)
|
2018-02-16 00:55:59 +01:00
|
|
|
};
|
|
|
|
|
2018-04-08 20:30:50 +02:00
|
|
|
const string_view arg
|
|
|
|
{
|
|
|
|
param[3]
|
|
|
|
};
|
|
|
|
|
|
|
|
const m::room::state room
|
2018-02-16 00:55:59 +01:00
|
|
|
{
|
|
|
|
room_id
|
|
|
|
};
|
|
|
|
|
2018-04-08 20:30:50 +02:00
|
|
|
room.get(type, state_key, [&out, &arg]
|
|
|
|
(const m::event &event)
|
2018-02-16 00:55:59 +01:00
|
|
|
{
|
2018-04-08 20:30:50 +02:00
|
|
|
if(has(arg, "raw"))
|
|
|
|
out << event << std::endl;
|
|
|
|
else if(has(arg, "content"))
|
|
|
|
out << json::get<"content"_>(event) << std::endl;
|
|
|
|
else
|
|
|
|
out << pretty(event) << std::endl;
|
2018-02-16 00:55:59 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2018-03-26 09:04:47 +02:00
|
|
|
console_cmd__room__set(opt &out, const string_view &line)
|
2018-02-16 00:55:59 +01:00
|
|
|
{
|
2018-04-28 11:44:07 +02:00
|
|
|
const params param{line, " ",
|
2018-04-05 07:12:42 +02:00
|
|
|
{
|
2018-04-28 11:44:07 +02:00
|
|
|
"room_id", "sender", "type", "state_key", "content", "[prev_event_id]"
|
|
|
|
}};
|
2018-04-05 07:12:42 +02:00
|
|
|
|
2018-04-07 07:08:31 +02:00
|
|
|
const auto &room_id
|
2018-02-16 00:55:59 +01:00
|
|
|
{
|
2018-04-11 06:04:52 +02:00
|
|
|
m::room_id(param.at(0))
|
2018-02-16 00:55:59 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
const m::user::id &sender
|
|
|
|
{
|
2018-04-05 07:12:42 +02:00
|
|
|
param.at(1)
|
2018-02-16 00:55:59 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
const string_view type
|
|
|
|
{
|
2018-04-05 07:12:42 +02:00
|
|
|
param.at(2)
|
2018-02-16 00:55:59 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
const string_view state_key
|
|
|
|
{
|
2018-04-05 07:12:42 +02:00
|
|
|
param.at(3)
|
2018-02-16 00:55:59 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
const json::object &content
|
|
|
|
{
|
2018-04-11 06:04:52 +02:00
|
|
|
param.at(4, json::object{})
|
2018-02-16 00:55:59 +01:00
|
|
|
};
|
|
|
|
|
2018-04-28 11:44:07 +02:00
|
|
|
const string_view prev_event_id
|
|
|
|
{
|
|
|
|
param[5]
|
|
|
|
};
|
|
|
|
|
2018-02-16 00:55:59 +01:00
|
|
|
const m::room room
|
|
|
|
{
|
2018-04-28 11:44:07 +02:00
|
|
|
room_id, prev_event_id
|
2018-02-16 00:55:59 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
const auto event_id
|
|
|
|
{
|
|
|
|
send(room, sender, type, state_key, content)
|
|
|
|
};
|
|
|
|
|
|
|
|
out << event_id << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-04-28 09:18:30 +02:00
|
|
|
bool
|
|
|
|
console_cmd__room__send(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param
|
|
|
|
{
|
|
|
|
line, " ",
|
|
|
|
{
|
2018-04-28 11:44:07 +02:00
|
|
|
"room_id", "sender", "type", "content", "[prev_event_id]"
|
2018-04-28 09:18:30 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto &room_id
|
|
|
|
{
|
|
|
|
m::room_id(param.at(0))
|
|
|
|
};
|
|
|
|
|
|
|
|
const m::user::id &sender
|
|
|
|
{
|
|
|
|
param.at(1)
|
|
|
|
};
|
|
|
|
|
|
|
|
const string_view type
|
|
|
|
{
|
|
|
|
param.at(2)
|
|
|
|
};
|
|
|
|
|
|
|
|
const json::object &content
|
|
|
|
{
|
|
|
|
param.at(3, json::object{})
|
|
|
|
};
|
|
|
|
|
2018-04-28 11:44:07 +02:00
|
|
|
const string_view prev_event_id
|
|
|
|
{
|
|
|
|
param[4]
|
|
|
|
};
|
|
|
|
|
2018-04-28 09:18:30 +02:00
|
|
|
const m::room room
|
|
|
|
{
|
2018-04-28 11:44:07 +02:00
|
|
|
room_id, prev_event_id
|
2018-04-28 09:18:30 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
const auto event_id
|
|
|
|
{
|
|
|
|
send(room, sender, type, content)
|
|
|
|
};
|
|
|
|
|
|
|
|
out << event_id << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-02-16 00:55:59 +01:00
|
|
|
bool
|
2018-03-26 09:04:47 +02:00
|
|
|
console_cmd__room__message(opt &out, const string_view &line)
|
2018-02-16 00:55:59 +01:00
|
|
|
{
|
2018-04-07 07:08:31 +02:00
|
|
|
const auto &room_id
|
2018-02-16 00:55:59 +01:00
|
|
|
{
|
2018-04-07 07:08:31 +02:00
|
|
|
m::room_id(token(line, ' ', 0))
|
2018-02-16 00:55:59 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
const m::user::id &sender
|
|
|
|
{
|
|
|
|
token(line, ' ', 1)
|
|
|
|
};
|
|
|
|
|
|
|
|
const string_view body
|
|
|
|
{
|
|
|
|
tokens_after(line, ' ', 1)
|
|
|
|
};
|
|
|
|
|
|
|
|
const m::room room
|
|
|
|
{
|
|
|
|
room_id
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto event_id
|
|
|
|
{
|
|
|
|
message(room, sender, body)
|
|
|
|
};
|
|
|
|
|
|
|
|
out << event_id << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2018-03-26 09:04:47 +02:00
|
|
|
console_cmd__room__redact(opt &out, const string_view &line)
|
2018-02-16 00:55:59 +01:00
|
|
|
{
|
2018-04-07 07:08:31 +02:00
|
|
|
const auto &room_id
|
2018-02-16 00:55:59 +01:00
|
|
|
{
|
2018-04-07 07:08:31 +02:00
|
|
|
m::room_id(token(line, ' ', 0))
|
2018-02-16 00:55:59 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
const m::event::id &redacts
|
|
|
|
{
|
|
|
|
token(line, ' ', 1)
|
|
|
|
};
|
|
|
|
|
|
|
|
const m::user::id &sender
|
|
|
|
{
|
|
|
|
token(line, ' ', 2)
|
|
|
|
};
|
|
|
|
|
|
|
|
const string_view reason
|
|
|
|
{
|
|
|
|
tokens_after(line, ' ', 2)
|
|
|
|
};
|
|
|
|
|
|
|
|
const m::room room
|
|
|
|
{
|
|
|
|
room_id
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto event_id
|
|
|
|
{
|
|
|
|
redact(room, sender, redacts, reason)
|
|
|
|
};
|
|
|
|
|
|
|
|
out << event_id << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
2018-02-19 23:37:56 +01:00
|
|
|
|
2018-03-27 12:00:42 +02:00
|
|
|
bool
|
|
|
|
console_cmd__room__join(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const string_view room_id_or_alias
|
|
|
|
{
|
|
|
|
token(line, ' ', 0)
|
|
|
|
};
|
|
|
|
|
|
|
|
const m::user::id &user_id
|
|
|
|
{
|
|
|
|
token(line, ' ', 1)
|
|
|
|
};
|
|
|
|
|
|
|
|
const string_view &event_id
|
|
|
|
{
|
|
|
|
token(line, ' ', 2, {})
|
|
|
|
};
|
|
|
|
|
|
|
|
switch(m::sigil(room_id_or_alias))
|
|
|
|
{
|
|
|
|
case m::id::ROOM:
|
|
|
|
{
|
|
|
|
const m::room room
|
|
|
|
{
|
|
|
|
room_id_or_alias, event_id
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto join_event
|
|
|
|
{
|
|
|
|
m::join(room, user_id)
|
|
|
|
};
|
|
|
|
|
|
|
|
out << join_event << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
case m::id::ROOM_ALIAS:
|
|
|
|
{
|
|
|
|
const m::room::alias alias
|
|
|
|
{
|
|
|
|
room_id_or_alias
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto join_event
|
|
|
|
{
|
|
|
|
m::join(alias, user_id)
|
|
|
|
};
|
|
|
|
|
|
|
|
out << join_event << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
default: throw error
|
|
|
|
{
|
|
|
|
"Don't know how to join '%s'", room_id_or_alias
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-09-12 18:54:09 +02:00
|
|
|
bool
|
|
|
|
console_cmd__room__leave(opt &out, const string_view &line)
|
|
|
|
{
|
2018-09-15 13:02:06 +02:00
|
|
|
const params param{line, " ",
|
2018-09-12 18:54:09 +02:00
|
|
|
{
|
2018-09-15 13:02:06 +02:00
|
|
|
"room_id_or_alias", "user_id"
|
|
|
|
}};
|
2018-09-12 18:54:09 +02:00
|
|
|
|
2018-09-15 13:02:06 +02:00
|
|
|
const m::room::id::buf room_id
|
2018-09-12 18:54:09 +02:00
|
|
|
{
|
2018-09-15 13:02:06 +02:00
|
|
|
m::room_id(param.at("room_id_or_alias"))
|
2018-09-12 18:54:09 +02:00
|
|
|
};
|
|
|
|
|
2018-09-15 13:02:06 +02:00
|
|
|
const m::user::id::buf user_id
|
2018-09-12 18:54:09 +02:00
|
|
|
{
|
2018-09-15 13:02:06 +02:00
|
|
|
param.at("user_id")
|
|
|
|
};
|
2018-09-12 18:54:09 +02:00
|
|
|
|
2018-09-15 13:02:06 +02:00
|
|
|
const m::room room
|
|
|
|
{
|
|
|
|
room_id
|
|
|
|
};
|
2018-09-12 18:54:09 +02:00
|
|
|
|
2018-09-15 13:02:06 +02:00
|
|
|
const auto leave_event_id
|
|
|
|
{
|
|
|
|
m::leave(room, user_id)
|
|
|
|
};
|
2018-09-12 18:54:09 +02:00
|
|
|
|
2018-09-15 13:02:06 +02:00
|
|
|
out << leave_event_id << std::endl;
|
2018-09-12 18:54:09 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-04-27 00:09:30 +02:00
|
|
|
bool
|
|
|
|
console_cmd__room__create(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param
|
|
|
|
{
|
|
|
|
line, " ",
|
|
|
|
{
|
|
|
|
"room_id", "[creator]", "[type]", "[parent]"
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const m::room::id room_id
|
|
|
|
{
|
|
|
|
param.at(0)
|
|
|
|
};
|
|
|
|
|
|
|
|
const m::user::id creator
|
|
|
|
{
|
|
|
|
param.at(1, m::me.user_id)
|
|
|
|
};
|
|
|
|
|
|
|
|
const string_view type
|
|
|
|
{
|
|
|
|
param[2]
|
|
|
|
};
|
|
|
|
|
|
|
|
const string_view &parent
|
|
|
|
{
|
|
|
|
param[3]
|
|
|
|
};
|
|
|
|
|
|
|
|
const m::room room
|
|
|
|
{
|
|
|
|
parent?
|
|
|
|
m::create(room_id, creator, parent, type):
|
|
|
|
m::create(room_id, creator, type)
|
|
|
|
};
|
|
|
|
|
|
|
|
out << room.room_id << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-03-06 09:24:32 +01:00
|
|
|
bool
|
2018-03-26 09:04:47 +02:00
|
|
|
console_cmd__room__id(opt &out, const string_view &id)
|
2018-03-06 09:24:32 +01:00
|
|
|
{
|
|
|
|
if(m::has_sigil(id)) switch(m::sigil(id))
|
|
|
|
{
|
|
|
|
case m::id::USER:
|
|
|
|
out << m::user{id}.room_id() << std::endl;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case m::id::NODE:
|
|
|
|
out << m::node{id}.room_id() << std::endl;
|
|
|
|
break;
|
|
|
|
|
2018-03-26 03:33:40 +02:00
|
|
|
case m::id::ROOM_ALIAS:
|
|
|
|
out << m::room_id(m::room::alias(id)) << std::endl;
|
|
|
|
break;
|
|
|
|
|
2018-03-06 09:24:32 +01:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-02-19 23:37:56 +01:00
|
|
|
bool
|
2018-03-26 09:04:47 +02:00
|
|
|
console_cmd__room__purge(opt &out, const string_view &line)
|
2018-02-19 23:37:56 +01:00
|
|
|
{
|
2018-04-07 07:08:31 +02:00
|
|
|
const auto &room_id
|
2018-02-19 23:37:56 +01:00
|
|
|
{
|
2018-04-07 07:08:31 +02:00
|
|
|
m::room_id(token(line, ' ', 0))
|
2018-02-19 23:37:56 +01:00
|
|
|
};
|
|
|
|
|
2018-08-22 20:58:45 +02:00
|
|
|
const m::room room
|
|
|
|
{
|
|
|
|
room_id
|
|
|
|
};
|
|
|
|
|
|
|
|
using prototype = size_t (const m::room &);
|
2018-09-14 16:39:11 +02:00
|
|
|
static mods::import<prototype> purge
|
2018-08-22 20:58:45 +02:00
|
|
|
{
|
|
|
|
"m_room", "purge"
|
|
|
|
};
|
|
|
|
|
|
|
|
const size_t ret
|
|
|
|
{
|
|
|
|
purge(room)
|
|
|
|
};
|
|
|
|
|
|
|
|
out << "erased " << ret << std::endl;
|
2018-02-25 08:54:56 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-05-23 11:03:29 +02:00
|
|
|
bool
|
|
|
|
console_cmd__room__dagree(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"room_id",
|
|
|
|
}};
|
|
|
|
|
|
|
|
const auto &room_id
|
|
|
|
{
|
|
|
|
m::room_id(param.at(0))
|
|
|
|
};
|
|
|
|
|
|
|
|
const m::room room
|
|
|
|
{
|
|
|
|
room_id
|
|
|
|
};
|
|
|
|
|
|
|
|
using prototype = size_t (const m::room &, std::vector<size_t> &);
|
2018-09-14 16:39:11 +02:00
|
|
|
static mods::import<prototype> dagree_histogram
|
2018-05-23 11:03:29 +02:00
|
|
|
{
|
|
|
|
"m_room", "dagree_histogram"
|
|
|
|
};
|
|
|
|
|
|
|
|
std::vector<size_t> v(32, 0);
|
|
|
|
const size_t count
|
|
|
|
{
|
|
|
|
dagree_histogram(room, v)
|
|
|
|
};
|
|
|
|
|
|
|
|
for(size_t i(0); i < v.size(); ++i)
|
|
|
|
out << std::setw(2) << std::right << i << ": " << v.at(i) << std::endl;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-04-05 07:23:06 +02:00
|
|
|
//
|
|
|
|
// user
|
|
|
|
//
|
|
|
|
|
2018-04-21 08:53:04 +02:00
|
|
|
//TODO: XXX
|
|
|
|
bool
|
|
|
|
console_id__user(opt &out,
|
|
|
|
const m::user::id &id,
|
|
|
|
const string_view &args)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-06-07 22:28:50 +02:00
|
|
|
bool
|
|
|
|
console_cmd__user__register(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"username", "password"
|
|
|
|
}};
|
|
|
|
|
|
|
|
const string_view &username
|
|
|
|
{
|
|
|
|
param.at(0)
|
|
|
|
};
|
|
|
|
|
|
|
|
const string_view &password
|
|
|
|
{
|
|
|
|
param.at(1)
|
|
|
|
};
|
|
|
|
|
|
|
|
const m::registar request
|
|
|
|
{
|
|
|
|
{ "username", username },
|
|
|
|
{ "password", password },
|
|
|
|
{ "bind_email", false },
|
|
|
|
};
|
|
|
|
|
|
|
|
using prototype = std::string
|
|
|
|
(const m::registar &,
|
|
|
|
const client *const &,
|
|
|
|
const bool &);
|
|
|
|
|
2018-09-14 16:39:11 +02:00
|
|
|
static mods::import<prototype> register_user
|
2018-06-07 22:28:50 +02:00
|
|
|
{
|
|
|
|
"client_register", "register_user"
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto ret
|
|
|
|
{
|
|
|
|
register_user(request, nullptr, false)
|
|
|
|
};
|
|
|
|
|
|
|
|
out << ret << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-04-05 07:23:06 +02:00
|
|
|
bool
|
|
|
|
console_cmd__user__password(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param
|
|
|
|
{
|
|
|
|
line, " ",
|
|
|
|
{
|
|
|
|
"user_id", "password"
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
m::user user
|
|
|
|
{
|
|
|
|
param.at(0)
|
|
|
|
};
|
|
|
|
|
|
|
|
const string_view &password
|
|
|
|
{
|
|
|
|
param.at(1)
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto eid
|
|
|
|
{
|
|
|
|
user.password(password)
|
|
|
|
};
|
|
|
|
|
|
|
|
out << eid << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-04-05 07:24:13 +02:00
|
|
|
bool
|
|
|
|
console_cmd__user__active(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param
|
|
|
|
{
|
|
|
|
line, " ",
|
|
|
|
{
|
|
|
|
"user_id"
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const m::user user
|
|
|
|
{
|
|
|
|
param.at(0)
|
|
|
|
};
|
|
|
|
|
|
|
|
out << user.user_id << " is "
|
|
|
|
<< (user.is_active()? "active" : "inactive")
|
|
|
|
<< std::endl;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
console_cmd__user__activate(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param
|
|
|
|
{
|
|
|
|
line, " ",
|
|
|
|
{
|
|
|
|
"user_id"
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
m::user user
|
|
|
|
{
|
|
|
|
param.at(0)
|
|
|
|
};
|
|
|
|
|
|
|
|
if(user.is_active())
|
|
|
|
{
|
|
|
|
out << user.user_id << " is already active" << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
const auto eid
|
|
|
|
{
|
|
|
|
user.activate()
|
|
|
|
};
|
|
|
|
|
|
|
|
out << eid << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
console_cmd__user__deactivate(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param
|
|
|
|
{
|
|
|
|
line, " ",
|
|
|
|
{
|
|
|
|
"user_id"
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
m::user user
|
|
|
|
{
|
|
|
|
param.at(0)
|
|
|
|
};
|
|
|
|
|
|
|
|
if(!user.is_active())
|
|
|
|
{
|
|
|
|
out << user.user_id << " is already inactive" << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
const auto eid
|
|
|
|
{
|
|
|
|
user.deactivate()
|
|
|
|
};
|
|
|
|
|
|
|
|
out << eid << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-04-12 11:27:31 +02:00
|
|
|
bool
|
|
|
|
console_cmd__user__presence(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"user_id", "limit"
|
|
|
|
}};
|
|
|
|
|
|
|
|
const m::user user
|
|
|
|
{
|
|
|
|
param.at(0)
|
|
|
|
};
|
|
|
|
|
|
|
|
auto limit
|
|
|
|
{
|
|
|
|
param.at(1, size_t(16))
|
|
|
|
};
|
|
|
|
|
|
|
|
const m::user::room user_room{user};
|
2018-05-29 21:53:28 +02:00
|
|
|
user_room.for_each("ircd.presence", m::event::closure_bool{[&out, &limit]
|
2018-04-12 11:27:31 +02:00
|
|
|
(const m::event &event)
|
|
|
|
{
|
|
|
|
out << timestr(at<"origin_server_ts"_>(event) / 1000)
|
|
|
|
<< " " << at<"content"_>(event)
|
|
|
|
<< " " << at<"event_id"_>(event)
|
|
|
|
<< std::endl;
|
|
|
|
|
|
|
|
return --limit > 0;
|
|
|
|
}});
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-04-13 23:04:36 +02:00
|
|
|
bool
|
|
|
|
console_cmd__user__rooms(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"user_id", "[membership]"
|
|
|
|
}};
|
|
|
|
|
|
|
|
const m::user &user
|
|
|
|
{
|
|
|
|
param.at(0)
|
|
|
|
};
|
|
|
|
|
|
|
|
const string_view &membership
|
|
|
|
{
|
|
|
|
param[1]
|
|
|
|
};
|
|
|
|
|
|
|
|
const m::user::rooms rooms
|
|
|
|
{
|
|
|
|
user
|
|
|
|
};
|
|
|
|
|
|
|
|
rooms.for_each(membership, m::user::rooms::closure{[&out]
|
|
|
|
(const m::room &room, const string_view &membership)
|
|
|
|
{
|
|
|
|
out << room.room_id
|
|
|
|
<< " " << membership
|
|
|
|
<< std::endl;
|
|
|
|
}});
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-04-24 04:50:21 +02:00
|
|
|
bool
|
|
|
|
console_cmd__user__rooms__origins(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"user_id", "[membership]"
|
|
|
|
}};
|
|
|
|
|
|
|
|
const m::user &user
|
|
|
|
{
|
|
|
|
param.at(0)
|
|
|
|
};
|
|
|
|
|
|
|
|
const string_view &membership
|
|
|
|
{
|
|
|
|
param[1]
|
|
|
|
};
|
|
|
|
|
|
|
|
const m::user::rooms::origins origins
|
|
|
|
{
|
|
|
|
user
|
|
|
|
};
|
|
|
|
|
|
|
|
origins.for_each(membership, m::user::rooms::origins::closure{[&out]
|
|
|
|
(const string_view &origin)
|
|
|
|
{
|
|
|
|
out << origin << std::endl;
|
|
|
|
}});
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-04-12 11:38:56 +02:00
|
|
|
bool
|
|
|
|
console_cmd__user__read(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"user_id",
|
|
|
|
}};
|
|
|
|
|
|
|
|
const m::user user
|
|
|
|
{
|
|
|
|
param.at(0)
|
|
|
|
};
|
|
|
|
|
|
|
|
const m::user::room user_room{user};
|
|
|
|
const m::room::state state{user_room};
|
2018-04-22 01:42:46 +02:00
|
|
|
state.for_each("ircd.read", m::event::closure{[&out]
|
2018-04-12 11:38:56 +02:00
|
|
|
(const m::event &event)
|
|
|
|
{
|
|
|
|
out << timestr(at<"origin_server_ts"_>(event) / 1000)
|
|
|
|
<< " " << at<"state_key"_>(event)
|
|
|
|
<< " " << at<"content"_>(event)
|
|
|
|
<< " " << at<"event_id"_>(event)
|
|
|
|
<< std::endl;
|
|
|
|
}});
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-06-09 05:26:14 +02:00
|
|
|
bool
|
|
|
|
console_cmd__user__read__receipt(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"user_id", "event_id", "[room_id]|[time]"
|
|
|
|
}};
|
|
|
|
|
|
|
|
const m::user::id user_id
|
|
|
|
{
|
|
|
|
param.at(0)
|
|
|
|
};
|
|
|
|
|
|
|
|
const m::event::id event_id
|
|
|
|
{
|
|
|
|
param.at(1)
|
|
|
|
};
|
|
|
|
|
|
|
|
m::room::id::buf room_id
|
|
|
|
{
|
|
|
|
param[2]?
|
|
|
|
param[2]:
|
|
|
|
string_view{m::get(event_id, "room_id", room_id)}
|
|
|
|
};
|
|
|
|
|
|
|
|
const time_t &ms
|
|
|
|
{
|
|
|
|
param.at(3, ircd::time<milliseconds>())
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto eid
|
|
|
|
{
|
|
|
|
m::receipt::read(room_id, user_id, event_id, ms)
|
|
|
|
};
|
|
|
|
|
|
|
|
out << eid << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-05-26 14:27:43 +02:00
|
|
|
bool
|
|
|
|
console_cmd__user__read__ignore(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
2018-05-30 21:07:03 +02:00
|
|
|
"my_user_id", "target_user|room_id"
|
2018-05-26 14:27:43 +02:00
|
|
|
}};
|
|
|
|
|
|
|
|
const m::user my_user
|
|
|
|
{
|
|
|
|
param.at(0)
|
|
|
|
};
|
|
|
|
|
2018-05-30 21:07:03 +02:00
|
|
|
string_view target
|
2018-05-26 14:27:43 +02:00
|
|
|
{
|
2018-05-31 11:48:09 +02:00
|
|
|
param[1]
|
|
|
|
};
|
|
|
|
|
|
|
|
const m::user::room user_room
|
|
|
|
{
|
|
|
|
my_user
|
2018-05-26 14:27:43 +02:00
|
|
|
};
|
|
|
|
|
2018-05-31 11:48:09 +02:00
|
|
|
if(!target)
|
|
|
|
{
|
|
|
|
m::room::state{user_room}.for_each("ircd.read.ignore", [&out]
|
|
|
|
(const m::event &event)
|
|
|
|
{
|
|
|
|
out << at<"state_key"_>(event)
|
|
|
|
<< std::endl;
|
|
|
|
});
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-05-30 21:07:03 +02:00
|
|
|
char buf[m::id::MAX_SIZE];
|
|
|
|
switch(m::sigil(target))
|
|
|
|
{
|
|
|
|
case m::id::USER:
|
|
|
|
case m::id::ROOM:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case m::id::ROOM_ALIAS:
|
|
|
|
target = m::room_id(buf, target);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default: throw error
|
|
|
|
{
|
|
|
|
"Unsupported target MXID type for receipt ignores."
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
if(user_room.has("ircd.read.ignore", target))
|
2018-05-26 14:27:43 +02:00
|
|
|
{
|
|
|
|
out << "User " << my_user.user_id << " is already not sending"
|
2018-05-30 21:07:03 +02:00
|
|
|
<< " receipts for messages from " << target
|
2018-05-26 14:27:43 +02:00
|
|
|
<< std::endl;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
const auto eid
|
|
|
|
{
|
2018-05-30 21:07:03 +02:00
|
|
|
send(user_room, m::me.user_id, "ircd.read.ignore", target, json::object{})
|
2018-05-26 14:27:43 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
out << "User " << my_user.user_id << " will not send receipts for"
|
2018-05-30 21:07:03 +02:00
|
|
|
<< " messages from " << target
|
2018-05-26 14:27:43 +02:00
|
|
|
<< " (" << eid << ")"
|
|
|
|
<< std::endl;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-05-13 01:09:24 +02:00
|
|
|
bool
|
|
|
|
console_cmd__user__filter(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"user_id", "[filter_id]"
|
|
|
|
}};
|
|
|
|
|
|
|
|
const m::user user
|
|
|
|
{
|
|
|
|
param.at(0)
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto &filter_id
|
|
|
|
{
|
|
|
|
param[1]
|
|
|
|
};
|
|
|
|
|
|
|
|
if(filter_id)
|
|
|
|
{
|
|
|
|
out << user.filter(filter_id) << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
const m::user::room user_room{user};
|
|
|
|
const m::room::state state{user_room};
|
|
|
|
state.for_each("ircd.filter", m::event::closure{[&out]
|
|
|
|
(const m::event &event)
|
|
|
|
{
|
|
|
|
out << at<"state_key"_>(event) << std::endl;
|
|
|
|
out << at<"content"_>(event) << std::endl;
|
|
|
|
out << std::endl;
|
|
|
|
}});
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-08-24 22:56:52 +02:00
|
|
|
bool
|
|
|
|
console_cmd__user__events(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"user_id", "limit"
|
|
|
|
}};
|
|
|
|
|
|
|
|
const m::user::events user
|
|
|
|
{
|
|
|
|
m::user(param.at("user_id"))
|
|
|
|
};
|
|
|
|
|
|
|
|
size_t limit
|
|
|
|
{
|
|
|
|
param.at<size_t>("limit", 32)
|
|
|
|
};
|
|
|
|
|
|
|
|
user.for_each([&out, &limit]
|
|
|
|
(const m::event &event)
|
|
|
|
{
|
|
|
|
out << pretty_oneline(event) << std::endl;;
|
|
|
|
return bool(--limit);
|
|
|
|
});
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
console_cmd__user__events__count(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"user_id"
|
|
|
|
}};
|
|
|
|
|
|
|
|
const m::user::events user
|
|
|
|
{
|
|
|
|
m::user(param.at("user_id"))
|
|
|
|
};
|
|
|
|
|
|
|
|
out << user.count() << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-09-17 04:27:58 +02:00
|
|
|
//
|
|
|
|
// typing
|
|
|
|
//
|
|
|
|
|
|
|
|
bool
|
|
|
|
console_cmd__typing(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
m::typing::for_each([&out]
|
|
|
|
(const m::typing &event)
|
|
|
|
{
|
|
|
|
out << event << std::endl;
|
|
|
|
});
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-05-11 11:08:36 +02:00
|
|
|
//
|
|
|
|
// node
|
|
|
|
//
|
|
|
|
|
|
|
|
//TODO: XXX
|
|
|
|
bool
|
|
|
|
console_id__node(opt &out,
|
|
|
|
const m::node::id &id,
|
|
|
|
const string_view &args)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
console_cmd__node__keys(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"node_id", "[limit]"
|
|
|
|
}};
|
|
|
|
|
|
|
|
const m::node &node
|
|
|
|
{
|
|
|
|
param.at(0)
|
|
|
|
};
|
|
|
|
|
|
|
|
auto limit
|
|
|
|
{
|
|
|
|
param.at(1, size_t(1))
|
|
|
|
};
|
|
|
|
|
|
|
|
const m::node::room node_room
|
|
|
|
{
|
|
|
|
node
|
|
|
|
};
|
|
|
|
|
|
|
|
const m::room::state state{node_room};
|
|
|
|
state.for_each("ircd.key", [&out, &limit]
|
|
|
|
(const m::event &event)
|
|
|
|
{
|
|
|
|
const m::keys keys
|
|
|
|
{
|
|
|
|
json::get<"content"_>(event)
|
|
|
|
};
|
|
|
|
|
|
|
|
out << keys << std::endl;
|
|
|
|
return --limit;
|
|
|
|
});
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-05-11 11:27:58 +02:00
|
|
|
bool
|
|
|
|
console_cmd__node__key(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"node_id", "key_id"
|
|
|
|
}};
|
|
|
|
|
|
|
|
const m::node &node
|
|
|
|
{
|
|
|
|
param.at(0)
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto &key_id
|
|
|
|
{
|
|
|
|
param[1]
|
|
|
|
};
|
|
|
|
|
|
|
|
const m::node::room node_room{node};
|
|
|
|
node_room.get("ircd.key", [&out]
|
|
|
|
(const m::event &event)
|
|
|
|
{
|
|
|
|
const m::keys key
|
|
|
|
{
|
|
|
|
json::get<"content"_>(event)
|
|
|
|
};
|
|
|
|
|
|
|
|
out << key << std::endl;
|
|
|
|
});
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-04-11 06:05:11 +02:00
|
|
|
//
|
|
|
|
// feds
|
|
|
|
//
|
|
|
|
|
2018-04-14 08:47:04 +02:00
|
|
|
bool
|
|
|
|
console_cmd__feds__version(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"room_id",
|
|
|
|
}};
|
|
|
|
|
2018-04-28 03:02:42 +02:00
|
|
|
const auto room_id
|
2018-04-14 08:47:04 +02:00
|
|
|
{
|
|
|
|
m::room_id(param.at(0))
|
|
|
|
};
|
|
|
|
|
2018-05-05 12:22:20 +02:00
|
|
|
using closure_prototype = bool (const string_view &,
|
|
|
|
std::exception_ptr,
|
|
|
|
const json::object &);
|
|
|
|
|
2018-04-28 03:02:42 +02:00
|
|
|
using prototype = void (const m::room::id &,
|
2018-05-05 12:22:20 +02:00
|
|
|
const milliseconds &,
|
|
|
|
const std::function<closure_prototype> &);
|
2018-04-14 08:47:04 +02:00
|
|
|
|
2018-09-14 16:39:11 +02:00
|
|
|
static mods::import<prototype> feds__version
|
2018-04-14 08:47:04 +02:00
|
|
|
{
|
2018-04-28 03:02:42 +02:00
|
|
|
"federation_federation", "feds__version"
|
2018-04-14 08:47:04 +02:00
|
|
|
};
|
|
|
|
|
2018-05-05 12:22:20 +02:00
|
|
|
feds__version(room_id, out.timeout, [&out]
|
|
|
|
(const string_view &origin, std::exception_ptr eptr, const json::object &response)
|
|
|
|
{
|
|
|
|
out << (eptr? '-' : '+')
|
|
|
|
<< " "
|
|
|
|
<< std::setw(40) << std::left << origin
|
|
|
|
<< " ";
|
|
|
|
|
|
|
|
if(eptr)
|
|
|
|
out << what(eptr);
|
|
|
|
else
|
|
|
|
out << string_view{response};
|
|
|
|
|
|
|
|
out << std::endl;
|
|
|
|
return true;
|
|
|
|
});
|
|
|
|
|
2018-04-14 08:47:04 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-05-05 12:58:59 +02:00
|
|
|
bool
|
|
|
|
console_cmd__feds__state(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"room_id",
|
|
|
|
}};
|
|
|
|
|
|
|
|
const auto room_id
|
|
|
|
{
|
|
|
|
m::room_id(param.at(0))
|
|
|
|
};
|
|
|
|
|
|
|
|
const m::event::id::buf &event_id
|
|
|
|
{
|
|
|
|
param.count() > 1? param.at(1) : m::head(room_id)
|
|
|
|
};
|
|
|
|
|
2018-05-06 01:49:17 +02:00
|
|
|
std::forward_list<std::string> origins;
|
|
|
|
std::map<std::string, std::forward_list<string_view>, std::less<>> grid;
|
2018-08-26 04:52:46 +02:00
|
|
|
const auto closure{[&out, &grid, &origins]
|
2018-05-05 12:58:59 +02:00
|
|
|
(const string_view &origin, std::exception_ptr eptr, const json::object &response)
|
|
|
|
{
|
|
|
|
if(eptr)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
const json::array &auth_chain
|
|
|
|
{
|
|
|
|
response["auth_chain_ids"]
|
|
|
|
};
|
|
|
|
|
|
|
|
const json::array &pdus
|
|
|
|
{
|
|
|
|
response["pdu_ids"]
|
|
|
|
};
|
|
|
|
|
2018-05-06 01:49:17 +02:00
|
|
|
for(const auto &pdu_id : pdus)
|
|
|
|
{
|
|
|
|
const auto &event_id{unquote(pdu_id)};
|
|
|
|
auto it
|
|
|
|
{
|
|
|
|
grid.lower_bound(event_id)
|
|
|
|
};
|
|
|
|
|
|
|
|
if(it == end(grid) || it->first != event_id)
|
|
|
|
it = grid.emplace_hint(it, event_id, std::forward_list<string_view>{});
|
|
|
|
|
|
|
|
origins.emplace_front(origin);
|
|
|
|
it->second.emplace_front(origins.front());
|
|
|
|
}
|
2018-05-05 12:58:59 +02:00
|
|
|
|
|
|
|
return true;
|
2018-08-26 04:52:46 +02:00
|
|
|
}};
|
|
|
|
|
|
|
|
m::feds::state
|
|
|
|
{
|
|
|
|
room_id, event_id, out.timeout, closure
|
|
|
|
};
|
2018-05-05 12:58:59 +02:00
|
|
|
|
2018-05-06 01:49:17 +02:00
|
|
|
for(auto &p : grid)
|
|
|
|
{
|
|
|
|
p.second.sort();
|
|
|
|
|
|
|
|
out << std::setw(64) << std::left << p.first << " : ";
|
|
|
|
for(const auto &origin : p.second)
|
|
|
|
out << " " << origin;
|
|
|
|
|
|
|
|
out << std::endl;
|
|
|
|
}
|
|
|
|
|
2018-05-05 12:58:59 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-04-11 06:05:11 +02:00
|
|
|
bool
|
|
|
|
console_cmd__feds__event(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
2018-04-28 03:02:42 +02:00
|
|
|
"event_id"
|
2018-04-11 06:05:11 +02:00
|
|
|
}};
|
|
|
|
|
2018-04-26 08:35:33 +02:00
|
|
|
const m::event::id event_id
|
2018-04-11 06:05:11 +02:00
|
|
|
{
|
2018-04-26 08:35:33 +02:00
|
|
|
param.at(0)
|
2018-04-11 06:05:11 +02:00
|
|
|
};
|
|
|
|
|
2018-04-28 03:02:42 +02:00
|
|
|
using prototype = void (const m::event::id &,
|
|
|
|
std::ostream &);
|
2018-04-11 06:05:11 +02:00
|
|
|
|
2018-09-14 16:39:11 +02:00
|
|
|
static mods::import<prototype> feds__event
|
2018-04-11 06:05:11 +02:00
|
|
|
{
|
2018-04-28 03:02:42 +02:00
|
|
|
"federation_federation", "feds__event"
|
2018-04-11 06:05:11 +02:00
|
|
|
};
|
|
|
|
|
2018-04-28 03:02:42 +02:00
|
|
|
feds__event(event_id, out);
|
2018-04-11 06:05:11 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-04-30 14:31:38 +02:00
|
|
|
bool
|
|
|
|
console_cmd__feds__head(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"room_id", "[user_id]"
|
|
|
|
}};
|
|
|
|
|
|
|
|
const auto &room_id
|
|
|
|
{
|
|
|
|
m::room_id(param.at(0))
|
|
|
|
};
|
|
|
|
|
|
|
|
const m::user::id &user_id
|
|
|
|
{
|
|
|
|
param.at(1, m::me.user_id)
|
|
|
|
};
|
|
|
|
|
2018-05-14 04:21:09 +02:00
|
|
|
using closure_prototype = bool (const string_view &,
|
|
|
|
std::exception_ptr,
|
|
|
|
const json::object &);
|
|
|
|
|
2018-04-30 14:31:38 +02:00
|
|
|
using prototype = void (const m::room::id &,
|
|
|
|
const m::user::id &,
|
2018-05-14 04:21:09 +02:00
|
|
|
const milliseconds &,
|
|
|
|
const std::function<closure_prototype> &);
|
2018-04-30 14:31:38 +02:00
|
|
|
|
2018-09-14 16:39:11 +02:00
|
|
|
static mods::import<prototype> feds__head
|
2018-04-30 14:31:38 +02:00
|
|
|
{
|
|
|
|
"federation_federation", "feds__head"
|
|
|
|
};
|
|
|
|
|
2018-05-14 04:21:09 +02:00
|
|
|
feds__head(room_id, user_id, out.timeout, [&out]
|
|
|
|
(const string_view &origin, std::exception_ptr eptr, const json::object &event)
|
|
|
|
{
|
|
|
|
if(eptr)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
const json::array prev_events
|
|
|
|
{
|
|
|
|
event.at("prev_events")
|
|
|
|
};
|
|
|
|
|
|
|
|
out << "+ " << std::setw(40) << std::left << origin;
|
|
|
|
out << " " << event.at("depth");
|
|
|
|
for(const json::array prev_event : prev_events)
|
|
|
|
{
|
|
|
|
const auto &prev_event_id
|
|
|
|
{
|
|
|
|
unquote(prev_event.at(0))
|
|
|
|
};
|
|
|
|
|
|
|
|
out << " " << string_view{prev_event_id};
|
|
|
|
};
|
|
|
|
out << std::endl;
|
|
|
|
return true;
|
|
|
|
});
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-06-09 05:43:59 +02:00
|
|
|
bool
|
|
|
|
console_cmd__feds__auth(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"room_id", "[user_id]"
|
|
|
|
}};
|
|
|
|
|
|
|
|
const auto &room_id
|
|
|
|
{
|
|
|
|
m::room_id(param.at(0))
|
|
|
|
};
|
|
|
|
|
|
|
|
const m::user::id &user_id
|
|
|
|
{
|
|
|
|
param.at(1, m::me.user_id)
|
|
|
|
};
|
|
|
|
|
|
|
|
using closure_prototype = bool (const string_view &,
|
|
|
|
std::exception_ptr,
|
|
|
|
const json::object &);
|
|
|
|
|
|
|
|
using prototype = void (const m::room::id &,
|
|
|
|
const m::user::id &,
|
|
|
|
const milliseconds &,
|
|
|
|
const std::function<closure_prototype> &);
|
|
|
|
|
2018-09-14 16:39:11 +02:00
|
|
|
static mods::import<prototype> feds__head
|
2018-06-09 05:43:59 +02:00
|
|
|
{
|
|
|
|
"federation_federation", "feds__head"
|
|
|
|
};
|
|
|
|
|
|
|
|
feds__head(room_id, user_id, out.timeout, [&out]
|
|
|
|
(const string_view &origin, std::exception_ptr eptr, const json::object &event)
|
|
|
|
{
|
|
|
|
if(eptr)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
const json::array auth_events
|
|
|
|
{
|
|
|
|
event.at("auth_events")
|
|
|
|
};
|
|
|
|
|
|
|
|
out << "+ " << std::setw(40) << std::left << origin;
|
|
|
|
for(const json::array auth_event : auth_events)
|
|
|
|
{
|
|
|
|
const auto &auth_event_id
|
|
|
|
{
|
|
|
|
unquote(auth_event.at(0))
|
|
|
|
};
|
|
|
|
|
|
|
|
out << " " << string_view{auth_event_id};
|
|
|
|
};
|
|
|
|
out << std::endl;
|
|
|
|
return true;
|
|
|
|
});
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-05-14 04:21:09 +02:00
|
|
|
bool
|
|
|
|
console_cmd__feds__heads(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"room_id", "[user_id]"
|
|
|
|
}};
|
|
|
|
|
|
|
|
const auto &room_id
|
|
|
|
{
|
|
|
|
m::room_id(param.at(0))
|
|
|
|
};
|
|
|
|
|
|
|
|
const m::user::id &user_id
|
|
|
|
{
|
|
|
|
param.at(1, m::me.user_id)
|
|
|
|
};
|
|
|
|
|
|
|
|
using closure_prototype = bool (const string_view &,
|
|
|
|
std::exception_ptr,
|
|
|
|
const json::object &);
|
|
|
|
|
|
|
|
using prototype = void (const m::room::id &,
|
|
|
|
const m::user::id &,
|
|
|
|
const milliseconds &,
|
|
|
|
const std::function<closure_prototype> &);
|
|
|
|
|
2018-09-14 16:39:11 +02:00
|
|
|
static mods::import<prototype> feds__head
|
2018-05-14 04:21:09 +02:00
|
|
|
{
|
|
|
|
"federation_federation", "feds__head"
|
|
|
|
};
|
|
|
|
|
|
|
|
std::forward_list<std::string> origins;
|
|
|
|
std::map<std::string, std::forward_list<string_view>, std::less<>> grid;
|
|
|
|
|
|
|
|
feds__head(room_id, user_id, out.timeout, [&origins, &grid]
|
|
|
|
(const string_view &origin, std::exception_ptr eptr, const json::object &event)
|
|
|
|
{
|
|
|
|
if(eptr)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
const json::array &prev_events
|
|
|
|
{
|
|
|
|
event.at("prev_events")
|
|
|
|
};
|
|
|
|
|
|
|
|
for(const json::array &prev_event : prev_events)
|
|
|
|
{
|
|
|
|
const auto &event_id
|
|
|
|
{
|
|
|
|
unquote(prev_event.at(0))
|
|
|
|
};
|
|
|
|
|
|
|
|
auto it
|
|
|
|
{
|
|
|
|
grid.lower_bound(event_id)
|
|
|
|
};
|
|
|
|
|
|
|
|
if(it == end(grid) || it->first != event_id)
|
|
|
|
it = grid.emplace_hint(it, event_id, std::forward_list<string_view>{});
|
|
|
|
|
|
|
|
origins.emplace_front(origin);
|
|
|
|
it->second.emplace_front(origins.front());
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
});
|
|
|
|
|
|
|
|
for(auto &p : grid)
|
|
|
|
{
|
|
|
|
p.second.sort();
|
|
|
|
|
|
|
|
out << std::setw(64) << std::left << p.first << " : ";
|
|
|
|
for(const auto &origin : p.second)
|
|
|
|
out << " " << origin;
|
|
|
|
|
|
|
|
out << std::endl;
|
|
|
|
}
|
|
|
|
|
2018-04-30 14:31:38 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-05-14 04:21:31 +02:00
|
|
|
bool
|
|
|
|
console_cmd__feds__perspective(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"room_id", "server_name", "key_id",
|
|
|
|
}};
|
|
|
|
|
|
|
|
const auto &room_id
|
|
|
|
{
|
|
|
|
m::room_id(param.at(0))
|
|
|
|
};
|
|
|
|
|
|
|
|
const string_view &server_name
|
|
|
|
{
|
|
|
|
param.at(1)
|
|
|
|
};
|
|
|
|
|
|
|
|
const string_view &key_id
|
|
|
|
{
|
|
|
|
param.at(2)
|
|
|
|
};
|
|
|
|
|
|
|
|
using closure_prototype = bool (const string_view &,
|
|
|
|
std::exception_ptr,
|
|
|
|
const json::array &);
|
|
|
|
|
|
|
|
using prototype = void (const m::room::id &,
|
|
|
|
const m::v1::key::server_key &,
|
|
|
|
const milliseconds &,
|
|
|
|
const std::function<closure_prototype> &);
|
|
|
|
|
2018-09-14 16:39:11 +02:00
|
|
|
static mods::import<prototype> feds__perspective
|
2018-05-14 04:21:31 +02:00
|
|
|
{
|
|
|
|
"federation_federation", "feds__perspective"
|
|
|
|
};
|
|
|
|
|
|
|
|
const m::v1::key::server_key server_key
|
|
|
|
{
|
|
|
|
server_name, key_id
|
|
|
|
};
|
|
|
|
|
|
|
|
feds__perspective(room_id, server_key, out.timeout, [&out]
|
|
|
|
(const string_view &origin, std::exception_ptr eptr, const json::array &keys)
|
|
|
|
{
|
|
|
|
if(eptr)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
for(const json::object &_key : keys)
|
|
|
|
{
|
|
|
|
const m::keys &key{_key};
|
|
|
|
out << key << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
});
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-04-30 17:51:03 +02:00
|
|
|
bool
|
|
|
|
console_cmd__feds__backfill(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
2018-05-01 07:49:29 +02:00
|
|
|
"room_id", "[event_id]", "[limit]"
|
2018-04-30 17:51:03 +02:00
|
|
|
}};
|
|
|
|
|
|
|
|
const auto &room_id
|
|
|
|
{
|
|
|
|
m::room_id(param.at(0))
|
|
|
|
};
|
|
|
|
|
2018-05-01 07:49:29 +02:00
|
|
|
const m::event::id::buf &event_id
|
2018-04-30 17:51:03 +02:00
|
|
|
{
|
2018-05-01 07:49:29 +02:00
|
|
|
param.count() > 1? param.at(1) : head(room_id)
|
2018-04-30 17:51:03 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
const size_t limit
|
|
|
|
{
|
|
|
|
param.at(2, size_t(4))
|
|
|
|
};
|
|
|
|
|
|
|
|
using prototype = void (const m::room::id &,
|
|
|
|
const m::event::id &,
|
|
|
|
const size_t &,
|
|
|
|
std::ostream &);
|
|
|
|
|
2018-09-14 16:39:11 +02:00
|
|
|
static mods::import<prototype> feds__backfill
|
2018-04-30 17:51:03 +02:00
|
|
|
{
|
|
|
|
"federation_federation", "feds__backfill"
|
|
|
|
};
|
|
|
|
|
|
|
|
feds__backfill(room_id, event_id, limit, out);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-04-25 02:43:45 +02:00
|
|
|
bool
|
|
|
|
console_cmd__feds__resend(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"event_id",
|
|
|
|
}};
|
|
|
|
|
|
|
|
const m::event::id event_id
|
|
|
|
{
|
|
|
|
param.at(0)
|
|
|
|
};
|
|
|
|
|
|
|
|
const m::event::fetch event
|
|
|
|
{
|
|
|
|
event_id
|
|
|
|
};
|
|
|
|
|
|
|
|
const m::vm::opts opts;
|
2018-09-06 04:29:41 +02:00
|
|
|
m::vm::accepted a{event, &opts, nullptr, &opts.report};
|
2018-04-25 02:43:45 +02:00
|
|
|
m::vm::accept(a);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-03-26 02:26:39 +02:00
|
|
|
//
|
|
|
|
// fed
|
|
|
|
//
|
|
|
|
|
2018-03-28 10:00:51 +02:00
|
|
|
bool
|
|
|
|
console_cmd__fed__groups(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const m::id::node &node
|
|
|
|
{
|
|
|
|
token(line, ' ', 0)
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto args
|
|
|
|
{
|
|
|
|
tokens_after(line, ' ', 0)
|
|
|
|
};
|
|
|
|
|
|
|
|
m::user::id ids[8];
|
|
|
|
string_view tok[8];
|
|
|
|
const auto count{std::min(tokens(args, ' ', tok), size_t(8))};
|
|
|
|
std::copy(begin(tok), begin(tok) + count, begin(ids));
|
|
|
|
|
|
|
|
const unique_buffer<mutable_buffer> buf
|
|
|
|
{
|
|
|
|
32_KiB
|
|
|
|
};
|
|
|
|
|
|
|
|
m::v1::groups::publicised::opts opts;
|
|
|
|
m::v1::groups::publicised request
|
|
|
|
{
|
|
|
|
node, vector_view<const m::user::id>(ids, count), buf, std::move(opts)
|
|
|
|
};
|
|
|
|
|
2018-04-07 11:01:04 +02:00
|
|
|
request.wait(out.timeout);
|
2018-03-28 10:00:51 +02:00
|
|
|
request.get();
|
2018-04-06 06:19:16 +02:00
|
|
|
|
2018-03-28 10:00:51 +02:00
|
|
|
const json::object response
|
|
|
|
{
|
|
|
|
request.in.content
|
|
|
|
};
|
|
|
|
|
2018-04-08 21:41:08 +02:00
|
|
|
out << string_view{response} << std::endl;
|
2018-03-28 10:00:51 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-03-06 15:43:32 +01:00
|
|
|
bool
|
2018-03-26 09:04:47 +02:00
|
|
|
console_cmd__fed__head(opt &out, const string_view &line)
|
2018-03-06 15:43:32 +01:00
|
|
|
{
|
2018-04-06 05:56:26 +02:00
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"room_id", "remote", "user_id"
|
|
|
|
}};
|
|
|
|
|
2018-04-07 07:04:54 +02:00
|
|
|
const auto &room_id
|
2018-03-06 15:43:32 +01:00
|
|
|
{
|
2018-04-07 07:04:54 +02:00
|
|
|
m::room_id(param.at(0))
|
2018-03-06 15:43:32 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
const net::hostport remote
|
|
|
|
{
|
2018-04-06 05:56:26 +02:00
|
|
|
param.at(1, room_id.host())
|
|
|
|
};
|
|
|
|
|
|
|
|
const m::user::id &user_id
|
|
|
|
{
|
|
|
|
param.at(2, m::me.user_id)
|
2018-03-06 15:43:32 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
thread_local char buf[16_KiB];
|
2018-04-06 05:56:26 +02:00
|
|
|
m::v1::make_join::opts opts;
|
|
|
|
opts.remote = remote;
|
2018-03-06 15:43:32 +01:00
|
|
|
m::v1::make_join request
|
|
|
|
{
|
2018-04-28 01:52:02 +02:00
|
|
|
room_id, user_id, buf, std::move(opts)
|
2018-03-06 15:43:32 +01:00
|
|
|
};
|
|
|
|
|
2018-04-07 11:01:04 +02:00
|
|
|
request.wait(out.timeout);
|
2018-03-06 15:43:32 +01:00
|
|
|
request.get();
|
2018-04-06 05:56:26 +02:00
|
|
|
|
2018-03-06 15:43:32 +01:00
|
|
|
const json::object proto
|
|
|
|
{
|
|
|
|
request.in.content
|
|
|
|
};
|
|
|
|
|
2018-06-09 05:34:00 +02:00
|
|
|
out << "DEPTH "
|
|
|
|
<< proto.get({"event", "depth"})
|
|
|
|
<< std::endl;
|
|
|
|
|
|
|
|
const json::array &prev_events
|
2018-03-06 15:43:32 +01:00
|
|
|
{
|
2018-06-09 05:34:00 +02:00
|
|
|
proto.get({"event", "prev_events"})
|
2018-03-06 15:43:32 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
for(const json::array &prev_event : prev_events)
|
|
|
|
{
|
2018-06-09 05:34:00 +02:00
|
|
|
const m::event::id &id
|
|
|
|
{
|
|
|
|
unquote(prev_event.at(0))
|
|
|
|
};
|
|
|
|
|
|
|
|
out << "PREV "
|
|
|
|
<< id << " "
|
|
|
|
<< string_view{prev_event.at(1)}
|
|
|
|
<< std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
const json::array &auth_events
|
|
|
|
{
|
|
|
|
proto.get({"event", "auth_events"})
|
|
|
|
};
|
|
|
|
|
|
|
|
for(const json::array &auth_event : auth_events)
|
|
|
|
{
|
|
|
|
const m::event::id &id
|
|
|
|
{
|
|
|
|
unquote(auth_event.at(0))
|
|
|
|
};
|
|
|
|
|
|
|
|
out << "AUTH "
|
|
|
|
<< id << " "
|
|
|
|
<< string_view{auth_event.at(1)}
|
|
|
|
<< std::endl;
|
2018-03-06 15:43:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-04-07 06:58:37 +02:00
|
|
|
bool
|
|
|
|
console_cmd__fed__send(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"remote", "event_id",
|
|
|
|
}};
|
|
|
|
|
|
|
|
const net::hostport remote
|
|
|
|
{
|
|
|
|
param.at(0)
|
|
|
|
};
|
|
|
|
|
|
|
|
const m::event::id &event_id
|
|
|
|
{
|
2018-04-07 11:00:08 +02:00
|
|
|
param.at(1)
|
2018-04-07 06:58:37 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
const m::event::fetch event
|
|
|
|
{
|
|
|
|
event_id
|
|
|
|
};
|
|
|
|
|
2018-05-26 03:03:57 +02:00
|
|
|
thread_local char pdubuf[m::event::MAX_SIZE];
|
2018-04-07 06:58:37 +02:00
|
|
|
const json::value pdu
|
|
|
|
{
|
|
|
|
json::stringify(mutable_buffer{pdubuf}, event)
|
|
|
|
};
|
|
|
|
|
|
|
|
const vector_view<const json::value> pdus
|
|
|
|
{
|
|
|
|
&pdu, &pdu + 1
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto txn
|
|
|
|
{
|
|
|
|
m::txn::create(pdus)
|
|
|
|
};
|
|
|
|
|
|
|
|
thread_local char idbuf[128];
|
|
|
|
const auto txnid
|
|
|
|
{
|
|
|
|
m::txn::create_id(idbuf, txn)
|
|
|
|
};
|
|
|
|
|
|
|
|
const unique_buffer<mutable_buffer> bufs
|
|
|
|
{
|
|
|
|
16_KiB
|
|
|
|
};
|
|
|
|
|
|
|
|
m::v1::send::opts opts;
|
|
|
|
opts.remote = remote;
|
|
|
|
m::v1::send request
|
|
|
|
{
|
|
|
|
txnid, const_buffer{txn}, bufs, std::move(opts)
|
|
|
|
};
|
|
|
|
|
2018-04-07 11:01:04 +02:00
|
|
|
request.wait(out.timeout);
|
2018-04-07 06:58:37 +02:00
|
|
|
|
|
|
|
const auto code
|
|
|
|
{
|
|
|
|
request.get()
|
|
|
|
};
|
|
|
|
|
|
|
|
const json::object response
|
|
|
|
{
|
|
|
|
request
|
|
|
|
};
|
|
|
|
|
|
|
|
const m::v1::send::response resp
|
|
|
|
{
|
|
|
|
response
|
|
|
|
};
|
|
|
|
|
|
|
|
resp.for_each_pdu([&]
|
|
|
|
(const m::event::id &event_id, const json::object &error)
|
|
|
|
{
|
|
|
|
out << remote << " ->" << txnid << " " << event_id << " ";
|
|
|
|
if(empty(error))
|
|
|
|
out << http::status(code) << std::endl;
|
|
|
|
else
|
|
|
|
out << string_view{error} << std::endl;
|
|
|
|
});
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-04-06 12:43:31 +02:00
|
|
|
bool
|
|
|
|
console_cmd__fed__sync(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"room_id", "remote", "limit", "event_id", "timeout"
|
|
|
|
}};
|
|
|
|
|
2018-04-07 07:04:54 +02:00
|
|
|
const auto &room_id
|
2018-04-06 12:43:31 +02:00
|
|
|
{
|
2018-04-07 07:04:54 +02:00
|
|
|
m::room_id(param.at(0))
|
2018-04-06 12:43:31 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
const net::hostport remote
|
|
|
|
{
|
|
|
|
param.at(1, room_id.host())
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto &limit
|
|
|
|
{
|
|
|
|
param.at(2, size_t(128))
|
|
|
|
};
|
|
|
|
|
|
|
|
const string_view &event_id
|
|
|
|
{
|
|
|
|
param[3]
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto timeout
|
|
|
|
{
|
2018-04-07 11:01:04 +02:00
|
|
|
param.at(4, out.timeout)
|
2018-04-06 12:43:31 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
// Used for out.head, out.content, in.head, but in.content is dynamic
|
|
|
|
const unique_buffer<mutable_buffer> buf
|
|
|
|
{
|
2018-08-31 04:36:36 +02:00
|
|
|
32_KiB
|
2018-04-06 12:43:31 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
m::v1::state::opts stopts;
|
|
|
|
stopts.remote = remote;
|
|
|
|
stopts.event_id = event_id;
|
|
|
|
const mutable_buffer stbuf
|
|
|
|
{
|
|
|
|
data(buf), size(buf) / 2
|
|
|
|
};
|
|
|
|
|
|
|
|
m::v1::state strequest
|
|
|
|
{
|
|
|
|
room_id, stbuf, std::move(stopts)
|
|
|
|
};
|
|
|
|
|
|
|
|
m::v1::backfill::opts bfopts;
|
|
|
|
bfopts.remote = remote;
|
|
|
|
bfopts.event_id = event_id;
|
|
|
|
bfopts.limit = limit;
|
|
|
|
const mutable_buffer bfbuf
|
|
|
|
{
|
|
|
|
buf + size(stbuf)
|
|
|
|
};
|
|
|
|
|
|
|
|
m::v1::backfill bfrequest
|
|
|
|
{
|
|
|
|
room_id, bfbuf, std::move(bfopts)
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto when
|
|
|
|
{
|
|
|
|
now<steady_point>() + timeout
|
|
|
|
};
|
|
|
|
|
|
|
|
bfrequest.wait_until(when);
|
|
|
|
strequest.wait_until(when);
|
|
|
|
|
|
|
|
bfrequest.get();
|
|
|
|
strequest.get();
|
|
|
|
|
|
|
|
const json::array &auth_chain
|
|
|
|
{
|
|
|
|
json::object{strequest}.get("auth_chain")
|
|
|
|
};
|
|
|
|
|
|
|
|
const json::array &pdus
|
|
|
|
{
|
|
|
|
json::object{strequest}.get("pdus")
|
|
|
|
};
|
|
|
|
|
|
|
|
const json::array &messages
|
|
|
|
{
|
|
|
|
json::object{bfrequest}.get("pdus")
|
|
|
|
};
|
|
|
|
|
|
|
|
std::vector<m::event> events;
|
|
|
|
events.reserve(auth_chain.size() + pdus.size() + messages.size());
|
|
|
|
|
|
|
|
for(const json::object &event : auth_chain)
|
|
|
|
events.emplace_back(event);
|
|
|
|
|
|
|
|
for(const json::object &event : pdus)
|
|
|
|
events.emplace_back(event);
|
|
|
|
|
|
|
|
for(const json::object &event : messages)
|
|
|
|
events.emplace_back(event);
|
|
|
|
|
|
|
|
std::sort(begin(events), end(events));
|
|
|
|
events.erase(std::unique(begin(events), end(events)), end(events));
|
|
|
|
|
|
|
|
m::vm::opts vmopts;
|
|
|
|
vmopts.non_conform.set(m::event::conforms::MISSING_PREV_STATE);
|
|
|
|
vmopts.non_conform.set(m::event::conforms::MISSING_MEMBERSHIP);
|
|
|
|
vmopts.prev_check_exists = false;
|
|
|
|
vmopts.head_must_exist = false;
|
|
|
|
vmopts.history = false;
|
2018-09-05 08:28:31 +02:00
|
|
|
vmopts.verify = false;
|
2018-04-06 12:43:31 +02:00
|
|
|
vmopts.notify = false;
|
|
|
|
vmopts.debuglog_accept = true;
|
2018-04-07 11:00:08 +02:00
|
|
|
vmopts.nothrows = -1;
|
2018-04-06 12:43:31 +02:00
|
|
|
m::vm::eval eval
|
|
|
|
{
|
|
|
|
vmopts
|
|
|
|
};
|
|
|
|
|
|
|
|
for(const auto &event : events)
|
|
|
|
eval(event);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-02-25 08:54:56 +01:00
|
|
|
bool
|
2018-03-26 09:04:47 +02:00
|
|
|
console_cmd__fed__state(opt &out, const string_view &line)
|
2018-02-25 08:54:56 +01:00
|
|
|
{
|
2018-04-06 05:56:26 +02:00
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"room_id", "remote", "event_id|op", "op"
|
|
|
|
}};
|
|
|
|
|
2018-04-07 07:04:54 +02:00
|
|
|
const auto &room_id
|
2018-02-25 08:54:56 +01:00
|
|
|
{
|
2018-04-07 07:04:54 +02:00
|
|
|
m::room_id(param.at(0))
|
2018-02-25 08:54:56 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
const net::hostport remote
|
|
|
|
{
|
2018-04-06 05:56:26 +02:00
|
|
|
param.at(1, room_id.host())
|
2018-02-25 08:54:56 +01:00
|
|
|
};
|
|
|
|
|
2018-03-23 07:17:33 +01:00
|
|
|
string_view event_id
|
2018-02-25 08:54:56 +01:00
|
|
|
{
|
2018-04-06 05:56:26 +02:00
|
|
|
param[2]
|
2018-03-23 07:17:33 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
string_view op
|
|
|
|
{
|
2018-04-06 05:56:26 +02:00
|
|
|
param[3]
|
2018-02-25 08:54:56 +01:00
|
|
|
};
|
|
|
|
|
2018-03-23 07:17:33 +01:00
|
|
|
if(!op && event_id == "eval")
|
|
|
|
std::swap(op, event_id);
|
|
|
|
|
2018-02-27 07:02:47 +01:00
|
|
|
// Used for out.head, out.content, in.head, but in.content is dynamic
|
|
|
|
thread_local char buf[8_KiB];
|
2018-02-25 08:54:56 +01:00
|
|
|
m::v1::state::opts opts;
|
|
|
|
opts.remote = remote;
|
2018-04-03 02:48:36 +02:00
|
|
|
opts.event_id = event_id;
|
2018-02-25 08:54:56 +01:00
|
|
|
m::v1::state request
|
|
|
|
{
|
2018-02-27 07:02:47 +01:00
|
|
|
room_id, buf, std::move(opts)
|
2018-02-25 08:54:56 +01:00
|
|
|
};
|
|
|
|
|
2018-04-07 11:01:04 +02:00
|
|
|
request.wait(out.timeout);
|
2018-04-06 05:56:26 +02:00
|
|
|
request.get();
|
2018-02-25 08:54:56 +01:00
|
|
|
|
|
|
|
const json::object &response
|
|
|
|
{
|
|
|
|
request
|
|
|
|
};
|
|
|
|
|
2018-03-23 07:17:33 +01:00
|
|
|
const json::array &auth_chain
|
|
|
|
{
|
|
|
|
response["auth_chain"]
|
|
|
|
};
|
|
|
|
|
|
|
|
const json::array &pdus
|
|
|
|
{
|
|
|
|
response["pdus"]
|
|
|
|
};
|
|
|
|
|
|
|
|
if(op != "eval")
|
|
|
|
{
|
2018-05-06 07:10:22 +02:00
|
|
|
if(op != "auth")
|
|
|
|
for(const json::object &event : pdus)
|
|
|
|
out << pretty_oneline(m::event{event}) << std::endl;
|
2018-03-23 07:17:33 +01:00
|
|
|
|
2018-05-06 07:11:34 +02:00
|
|
|
out << std::endl;
|
|
|
|
if(op != "state")
|
|
|
|
for(const json::object &event : auth_chain)
|
|
|
|
out << pretty_oneline(m::event{event}) << std::endl;
|
|
|
|
|
2018-03-23 07:17:33 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
m::vm::opts vmopts;
|
|
|
|
vmopts.non_conform.set(m::event::conforms::MISSING_PREV_STATE);
|
|
|
|
vmopts.non_conform.set(m::event::conforms::MISSING_MEMBERSHIP);
|
|
|
|
vmopts.prev_check_exists = false;
|
2018-04-05 07:23:21 +02:00
|
|
|
vmopts.head_must_exist = false;
|
2018-09-05 08:28:31 +02:00
|
|
|
vmopts.verify = false;
|
2018-04-05 07:23:21 +02:00
|
|
|
vmopts.history = false;
|
2018-03-23 07:17:33 +01:00
|
|
|
vmopts.notify = false;
|
|
|
|
m::vm::eval eval
|
|
|
|
{
|
|
|
|
vmopts
|
|
|
|
};
|
|
|
|
|
2018-05-08 01:52:00 +02:00
|
|
|
std::vector<m::event> events;
|
|
|
|
events.reserve(size(pdus) + size(auth_chain));
|
|
|
|
|
2018-03-23 07:17:33 +01:00
|
|
|
for(const json::object &event : auth_chain)
|
2018-05-08 01:52:00 +02:00
|
|
|
events.emplace_back(event);
|
2018-03-23 07:17:33 +01:00
|
|
|
|
|
|
|
for(const json::object &event : pdus)
|
2018-05-08 01:52:00 +02:00
|
|
|
events.emplace_back(event);
|
|
|
|
|
|
|
|
std::sort(begin(events), end(events));
|
|
|
|
events.erase(std::unique(begin(events), end(events)), end(events));
|
|
|
|
for(const auto &event : events)
|
2018-03-23 07:17:33 +01:00
|
|
|
eval(event);
|
|
|
|
|
2018-02-25 08:54:56 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-04-03 02:39:36 +02:00
|
|
|
bool
|
|
|
|
console_cmd__fed__state_ids(opt &out, const string_view &line)
|
|
|
|
{
|
2018-04-06 05:56:26 +02:00
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"room_id", "remote", "event_id"
|
|
|
|
}};
|
|
|
|
|
2018-04-07 07:04:54 +02:00
|
|
|
const auto &room_id
|
2018-04-03 02:39:36 +02:00
|
|
|
{
|
2018-04-07 07:04:54 +02:00
|
|
|
m::room_id(param.at(0))
|
2018-04-03 02:39:36 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
const net::hostport remote
|
|
|
|
{
|
2018-04-06 05:56:26 +02:00
|
|
|
param.at(1, room_id.host())
|
2018-04-03 02:39:36 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
string_view event_id
|
|
|
|
{
|
2018-04-06 05:56:26 +02:00
|
|
|
param[2]
|
2018-04-03 02:39:36 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
// Used for out.head, out.content, in.head, but in.content is dynamic
|
|
|
|
thread_local char buf[8_KiB];
|
|
|
|
m::v1::state::opts opts;
|
|
|
|
opts.remote = remote;
|
|
|
|
opts.event_id = event_id;
|
|
|
|
opts.ids_only = true;
|
|
|
|
m::v1::state request
|
|
|
|
{
|
|
|
|
room_id, buf, std::move(opts)
|
|
|
|
};
|
|
|
|
|
2018-04-07 11:01:04 +02:00
|
|
|
request.wait(out.timeout);
|
2018-04-06 05:56:26 +02:00
|
|
|
request.get();
|
2018-04-03 02:39:36 +02:00
|
|
|
|
|
|
|
const json::object &response
|
|
|
|
{
|
|
|
|
request
|
|
|
|
};
|
|
|
|
|
|
|
|
const json::array &auth_chain
|
|
|
|
{
|
|
|
|
response["auth_chain_ids"]
|
|
|
|
};
|
|
|
|
|
|
|
|
const json::array &pdus
|
|
|
|
{
|
|
|
|
response["pdu_ids"]
|
|
|
|
};
|
|
|
|
|
|
|
|
for(const string_view &event_id : auth_chain)
|
|
|
|
out << unquote(event_id) << std::endl;
|
|
|
|
|
|
|
|
for(const string_view &event_id : pdus)
|
|
|
|
out << unquote(event_id) << std::endl;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-03-09 01:37:33 +01:00
|
|
|
bool
|
2018-03-26 09:04:47 +02:00
|
|
|
console_cmd__fed__backfill(opt &out, const string_view &line)
|
2018-03-09 01:37:33 +01:00
|
|
|
{
|
2018-04-07 07:04:54 +02:00
|
|
|
const auto &room_id
|
2018-03-09 01:37:33 +01:00
|
|
|
{
|
2018-04-07 07:04:54 +02:00
|
|
|
m::room_id(token(line, ' ', 0))
|
2018-03-09 01:37:33 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
const net::hostport remote
|
|
|
|
{
|
|
|
|
token(line, ' ', 1)
|
|
|
|
};
|
|
|
|
|
|
|
|
const string_view &count
|
|
|
|
{
|
|
|
|
token(line, ' ', 2, "32")
|
|
|
|
};
|
|
|
|
|
|
|
|
string_view event_id
|
|
|
|
{
|
|
|
|
token(line, ' ', 3, {})
|
|
|
|
};
|
|
|
|
|
|
|
|
string_view op
|
|
|
|
{
|
|
|
|
token(line, ' ', 4, {})
|
|
|
|
};
|
|
|
|
|
|
|
|
if(!op && event_id == "eval")
|
|
|
|
std::swap(op, event_id);
|
|
|
|
|
|
|
|
// Used for out.head, out.content, in.head, but in.content is dynamic
|
|
|
|
thread_local char buf[16_KiB];
|
|
|
|
m::v1::backfill::opts opts;
|
|
|
|
opts.remote = remote;
|
|
|
|
opts.limit = lex_cast<size_t>(count);
|
|
|
|
if(event_id)
|
|
|
|
opts.event_id = event_id;
|
|
|
|
|
|
|
|
m::v1::backfill request
|
|
|
|
{
|
|
|
|
room_id, buf, std::move(opts)
|
|
|
|
};
|
|
|
|
|
2018-04-07 11:01:04 +02:00
|
|
|
request.wait(out.timeout);
|
2018-04-06 05:56:26 +02:00
|
|
|
request.get();
|
2018-03-09 01:37:33 +01:00
|
|
|
|
|
|
|
const json::object &response
|
|
|
|
{
|
|
|
|
request
|
|
|
|
};
|
|
|
|
|
|
|
|
const json::array &pdus
|
|
|
|
{
|
|
|
|
response["pdus"]
|
|
|
|
};
|
|
|
|
|
|
|
|
if(op != "eval")
|
|
|
|
{
|
|
|
|
for(const json::object &event : pdus)
|
|
|
|
out << pretty_oneline(m::event{event}) << std::endl;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
m::vm::opts vmopts;
|
|
|
|
vmopts.non_conform.set(m::event::conforms::MISSING_PREV_STATE);
|
|
|
|
vmopts.non_conform.set(m::event::conforms::MISSING_MEMBERSHIP);
|
|
|
|
vmopts.prev_check_exists = false;
|
2018-04-05 07:23:21 +02:00
|
|
|
vmopts.head_must_exist = false;
|
|
|
|
vmopts.history = false;
|
2018-09-05 08:28:31 +02:00
|
|
|
vmopts.verify = false;
|
2018-03-09 01:37:33 +01:00
|
|
|
vmopts.notify = false;
|
2018-05-24 01:29:17 +02:00
|
|
|
vmopts.head = false;
|
|
|
|
vmopts.refs = true;
|
2018-03-09 01:37:33 +01:00
|
|
|
m::vm::eval eval
|
|
|
|
{
|
|
|
|
vmopts
|
|
|
|
};
|
|
|
|
|
2018-05-08 01:52:00 +02:00
|
|
|
std::vector<m::event> events;
|
|
|
|
events.reserve(lex_cast<size_t>(count));
|
2018-03-09 01:37:33 +01:00
|
|
|
for(const json::object &event : pdus)
|
2018-05-08 01:52:00 +02:00
|
|
|
events.emplace_back(event);
|
|
|
|
|
|
|
|
std::sort(begin(events), end(events));
|
|
|
|
events.erase(std::unique(begin(events), end(events)), end(events));
|
|
|
|
for(const auto &event : events)
|
2018-03-09 01:37:33 +01:00
|
|
|
eval(event);
|
|
|
|
|
|
|
|
return true;
|
2018-06-04 03:44:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
console_cmd__fed__frontfill(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"room_id", "remote", "earliest", "latest", "[limit]", "[min_depth]"
|
|
|
|
}};
|
|
|
|
|
|
|
|
const auto &room_id
|
|
|
|
{
|
|
|
|
m::room_id(param.at(0))
|
|
|
|
};
|
|
|
|
|
|
|
|
const net::hostport remote
|
|
|
|
{
|
|
|
|
param.at(1, room_id.host())
|
|
|
|
};
|
|
|
|
|
|
|
|
const m::event::id &earliest
|
|
|
|
{
|
|
|
|
param.at(2)
|
|
|
|
};
|
|
|
|
|
|
|
|
const m::event::id::buf &latest
|
|
|
|
{
|
|
|
|
param.at(3, m::head(std::nothrow, room_id))
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto &limit
|
|
|
|
{
|
|
|
|
param.at(4, 32UL)
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto &min_depth
|
|
|
|
{
|
|
|
|
param.at(5, 0UL)
|
|
|
|
};
|
|
|
|
|
|
|
|
m::v1::frontfill::opts opts;
|
|
|
|
opts.remote = remote;
|
|
|
|
opts.limit = limit;
|
|
|
|
opts.min_depth = min_depth;
|
|
|
|
const unique_buffer<mutable_buffer> buf
|
|
|
|
{
|
|
|
|
16_KiB
|
|
|
|
};
|
|
|
|
|
|
|
|
m::v1::frontfill request
|
|
|
|
{
|
|
|
|
room_id, {earliest, latest}, buf, std::move(opts)
|
|
|
|
};
|
|
|
|
|
|
|
|
request.wait(out.timeout);
|
|
|
|
request.get();
|
|
|
|
|
|
|
|
const json::array &response
|
|
|
|
{
|
|
|
|
request
|
|
|
|
};
|
|
|
|
|
|
|
|
for(const json::object &event : response)
|
|
|
|
out << pretty_oneline(m::event{event}) << std::endl;
|
|
|
|
|
|
|
|
return true;
|
2018-03-09 01:37:33 +01:00
|
|
|
}
|
|
|
|
|
2018-02-25 08:54:56 +01:00
|
|
|
bool
|
2018-03-26 09:04:47 +02:00
|
|
|
console_cmd__fed__event(opt &out, const string_view &line)
|
2018-02-25 08:54:56 +01:00
|
|
|
{
|
2018-04-26 08:35:33 +02:00
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"event_id", "remote", "[op]"
|
|
|
|
}};
|
|
|
|
|
2018-02-25 08:54:56 +01:00
|
|
|
const m::event::id &event_id
|
|
|
|
{
|
2018-04-26 08:35:33 +02:00
|
|
|
param.at(0)
|
2018-02-25 08:54:56 +01:00
|
|
|
};
|
|
|
|
|
2018-04-26 08:35:33 +02:00
|
|
|
const net::hostport &remote
|
2018-02-25 08:54:56 +01:00
|
|
|
{
|
2018-04-26 08:35:33 +02:00
|
|
|
param.at(1, event_id.host())
|
2018-02-25 08:54:56 +01:00
|
|
|
};
|
|
|
|
|
2018-04-07 11:00:30 +02:00
|
|
|
const string_view op
|
|
|
|
{
|
2018-04-26 08:35:33 +02:00
|
|
|
param[2]
|
2018-04-07 11:00:30 +02:00
|
|
|
};
|
|
|
|
|
2018-02-25 08:54:56 +01:00
|
|
|
m::v1::event::opts opts;
|
|
|
|
opts.remote = remote;
|
2018-04-07 11:00:08 +02:00
|
|
|
const unique_buffer<mutable_buffer> buf
|
|
|
|
{
|
|
|
|
96_KiB
|
|
|
|
};
|
2018-02-25 08:54:56 +01:00
|
|
|
|
|
|
|
m::v1::event request
|
|
|
|
{
|
2018-02-27 07:02:47 +01:00
|
|
|
event_id, buf, std::move(opts)
|
2018-02-25 08:54:56 +01:00
|
|
|
};
|
|
|
|
|
2018-04-07 11:01:04 +02:00
|
|
|
request.wait(out.timeout);
|
2018-04-06 05:56:26 +02:00
|
|
|
request.get();
|
2018-02-25 08:54:56 +01:00
|
|
|
|
2018-08-29 00:59:08 +02:00
|
|
|
// Use this option to debug from the actual http response
|
|
|
|
// content sent from the remote without any further action.
|
|
|
|
if(has(op, "noparse"))
|
|
|
|
{
|
|
|
|
out << string_view{request.in.content} << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-02-25 08:54:56 +01:00
|
|
|
const json::object &response
|
|
|
|
{
|
|
|
|
request
|
|
|
|
};
|
|
|
|
|
2018-03-23 07:58:51 +01:00
|
|
|
const m::event event
|
|
|
|
{
|
|
|
|
response
|
|
|
|
};
|
|
|
|
|
|
|
|
out << pretty(event) << std::endl;
|
|
|
|
|
2018-06-08 03:37:15 +02:00
|
|
|
try
|
|
|
|
{
|
|
|
|
if(!verify(event))
|
|
|
|
out << "- SIGNATURE FAILED" << std::endl;
|
|
|
|
}
|
|
|
|
catch(const std::exception &e)
|
|
|
|
{
|
|
|
|
out << "- SIGNATURE FAILED: " << e.what() << std::endl;
|
|
|
|
}
|
2018-03-23 07:58:51 +01:00
|
|
|
|
|
|
|
if(!verify_hash(event))
|
|
|
|
out << "- HASH MISMATCH: " << b64encode_unpadded(hash(event)) << std::endl;
|
|
|
|
|
|
|
|
const m::event::conforms conforms
|
|
|
|
{
|
|
|
|
event
|
|
|
|
};
|
|
|
|
|
|
|
|
if(!conforms.clean())
|
|
|
|
out << "- " << conforms << std::endl;
|
|
|
|
|
2018-04-07 11:00:30 +02:00
|
|
|
if(has(op, "raw"))
|
|
|
|
out << string_view{response} << std::endl;
|
|
|
|
|
|
|
|
if(!has(op, "eval"))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
m::vm::opts vmopts;
|
|
|
|
vmopts.non_conform.set(m::event::conforms::MISSING_PREV_STATE);
|
|
|
|
vmopts.non_conform.set(m::event::conforms::MISSING_MEMBERSHIP);
|
|
|
|
vmopts.prev_check_exists = false;
|
|
|
|
vmopts.head_must_exist = false;
|
|
|
|
vmopts.history = false;
|
|
|
|
vmopts.notify = false;
|
2018-06-12 08:51:55 +02:00
|
|
|
vmopts.verify = false;
|
2018-04-07 11:00:30 +02:00
|
|
|
m::vm::eval eval
|
|
|
|
{
|
|
|
|
vmopts
|
|
|
|
};
|
|
|
|
|
|
|
|
eval(event);
|
2018-02-25 08:54:56 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-04-08 22:28:05 +02:00
|
|
|
bool
|
|
|
|
console_cmd__fed__public_rooms(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"remote", "limit", "all_networks", "3pid"
|
|
|
|
}};
|
|
|
|
|
|
|
|
const net::hostport remote
|
|
|
|
{
|
|
|
|
param.at(0)
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto limit
|
|
|
|
{
|
|
|
|
param.at(1, 32)
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto all_nets
|
|
|
|
{
|
|
|
|
param.at(2, false)
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto tpid
|
|
|
|
{
|
|
|
|
param[3]
|
|
|
|
};
|
|
|
|
|
|
|
|
m::v1::public_rooms::opts opts;
|
|
|
|
opts.limit = limit;
|
|
|
|
opts.third_party_instance_id = tpid;
|
|
|
|
opts.include_all_networks = all_nets;
|
|
|
|
const unique_buffer<mutable_buffer> buf
|
|
|
|
{
|
|
|
|
16_KiB
|
|
|
|
};
|
|
|
|
|
|
|
|
m::v1::public_rooms request
|
|
|
|
{
|
|
|
|
remote, buf, std::move(opts)
|
|
|
|
};
|
|
|
|
|
|
|
|
request.wait(out.timeout);
|
|
|
|
request.get();
|
|
|
|
|
|
|
|
const json::object &response
|
|
|
|
{
|
|
|
|
request
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto total_estimate
|
|
|
|
{
|
|
|
|
response.get<size_t>("total_room_count_estimate")
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto next_batch
|
|
|
|
{
|
|
|
|
unquote(response.get("next_batch"))
|
|
|
|
};
|
|
|
|
|
|
|
|
const json::array &rooms
|
|
|
|
{
|
|
|
|
response.get("chunk")
|
|
|
|
};
|
|
|
|
|
|
|
|
for(const json::object &summary : rooms)
|
|
|
|
{
|
|
|
|
for(const auto &member : summary)
|
|
|
|
out << std::setw(24) << member.first << " => " << member.second << std::endl;
|
|
|
|
|
|
|
|
out << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
out << "total: " << total_estimate << std::endl;
|
|
|
|
out << "next: " << next_batch << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-04-08 20:28:40 +02:00
|
|
|
bool
|
|
|
|
console_cmd__fed__event_auth(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"room_id", "event_id", "remote"
|
|
|
|
}};
|
|
|
|
|
|
|
|
const auto room_id
|
|
|
|
{
|
|
|
|
m::room_id(param.at(0))
|
|
|
|
};
|
|
|
|
|
|
|
|
const m::event::id &event_id
|
|
|
|
{
|
|
|
|
param.at(1)
|
|
|
|
};
|
|
|
|
|
|
|
|
const net::hostport remote
|
|
|
|
{
|
|
|
|
param.at(2, event_id.host())
|
|
|
|
};
|
|
|
|
|
|
|
|
m::v1::event_auth::opts opts;
|
|
|
|
opts.remote = remote;
|
|
|
|
const unique_buffer<mutable_buffer> buf
|
|
|
|
{
|
|
|
|
16_KiB
|
|
|
|
};
|
|
|
|
|
|
|
|
m::v1::event_auth request
|
|
|
|
{
|
|
|
|
room_id, event_id, buf, std::move(opts)
|
|
|
|
};
|
|
|
|
|
|
|
|
request.wait(out.timeout);
|
|
|
|
request.get();
|
|
|
|
|
2018-04-08 21:45:05 +02:00
|
|
|
const json::array &auth_chain
|
2018-04-08 20:28:40 +02:00
|
|
|
{
|
|
|
|
request
|
|
|
|
};
|
|
|
|
|
2018-04-08 21:52:27 +02:00
|
|
|
std::vector<m::event> events(size(auth_chain));
|
|
|
|
std::transform(begin(auth_chain), end(auth_chain), begin(events), []
|
|
|
|
(const json::object &event) -> m::event
|
|
|
|
{
|
|
|
|
return event;
|
|
|
|
});
|
|
|
|
|
|
|
|
std::sort(begin(events), end(events));
|
|
|
|
for(const auto &event : events)
|
|
|
|
out << pretty_oneline(event) << std::endl;
|
2018-04-08 21:45:05 +02:00
|
|
|
|
2018-04-08 20:28:40 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-02-25 08:54:56 +01:00
|
|
|
bool
|
2018-03-26 09:04:47 +02:00
|
|
|
console_cmd__fed__query__profile(opt &out, const string_view &line)
|
2018-02-25 08:54:56 +01:00
|
|
|
{
|
|
|
|
const m::user::id &user_id
|
|
|
|
{
|
|
|
|
token(line, ' ', 0)
|
|
|
|
};
|
|
|
|
|
|
|
|
const net::hostport remote
|
|
|
|
{
|
|
|
|
token_count(line, ' ') > 1? token(line, ' ', 1) : user_id.host()
|
|
|
|
};
|
|
|
|
|
|
|
|
m::v1::query::opts opts;
|
|
|
|
opts.remote = remote;
|
|
|
|
|
|
|
|
thread_local char buf[8_KiB];
|
|
|
|
m::v1::query::profile request
|
|
|
|
{
|
2018-02-27 07:02:47 +01:00
|
|
|
user_id, buf, std::move(opts)
|
2018-02-25 08:54:56 +01:00
|
|
|
};
|
|
|
|
|
2018-04-07 11:01:04 +02:00
|
|
|
request.wait(out.timeout);
|
2018-02-25 08:54:56 +01:00
|
|
|
const auto code
|
|
|
|
{
|
|
|
|
request.get()
|
|
|
|
};
|
|
|
|
|
|
|
|
const json::object &response
|
|
|
|
{
|
|
|
|
request
|
|
|
|
};
|
|
|
|
|
|
|
|
out << string_view{response} << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2018-03-26 09:04:47 +02:00
|
|
|
console_cmd__fed__query__directory(opt &out, const string_view &line)
|
2018-02-25 08:54:56 +01:00
|
|
|
{
|
|
|
|
const m::id::room_alias &room_alias
|
|
|
|
{
|
|
|
|
token(line, ' ', 0)
|
|
|
|
};
|
|
|
|
|
|
|
|
const net::hostport remote
|
|
|
|
{
|
|
|
|
token_count(line, ' ') > 1? token(line, ' ', 1) : room_alias.host()
|
|
|
|
};
|
|
|
|
|
|
|
|
m::v1::query::opts opts;
|
|
|
|
opts.remote = remote;
|
|
|
|
|
|
|
|
thread_local char buf[8_KiB];
|
|
|
|
m::v1::query::directory request
|
|
|
|
{
|
2018-02-27 07:02:47 +01:00
|
|
|
room_alias, buf, std::move(opts)
|
2018-02-25 08:54:56 +01:00
|
|
|
};
|
|
|
|
|
2018-04-07 11:01:04 +02:00
|
|
|
request.wait(out.timeout);
|
2018-02-25 08:54:56 +01:00
|
|
|
const auto code
|
|
|
|
{
|
|
|
|
request.get()
|
|
|
|
};
|
|
|
|
|
|
|
|
const json::object &response
|
|
|
|
{
|
|
|
|
request
|
|
|
|
};
|
|
|
|
|
|
|
|
out << string_view{response} << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-03-09 18:39:56 +01:00
|
|
|
bool
|
2018-04-03 03:24:57 +02:00
|
|
|
console_cmd__fed__user__devices(opt &out, const string_view &line)
|
2018-03-09 18:39:56 +01:00
|
|
|
{
|
|
|
|
const m::id::user &user_id
|
|
|
|
{
|
|
|
|
token(line, ' ', 0)
|
|
|
|
};
|
|
|
|
|
|
|
|
const net::hostport remote
|
|
|
|
{
|
|
|
|
token(line, ' ', 1, user_id.host())
|
|
|
|
};
|
|
|
|
|
2018-04-03 03:24:57 +02:00
|
|
|
m::v1::user::devices::opts opts;
|
2018-03-09 18:39:56 +01:00
|
|
|
opts.remote = remote;
|
|
|
|
|
|
|
|
const unique_buffer<mutable_buffer> buf
|
|
|
|
{
|
|
|
|
32_KiB
|
|
|
|
};
|
|
|
|
|
2018-04-03 03:24:57 +02:00
|
|
|
m::v1::user::devices request
|
2018-03-09 18:39:56 +01:00
|
|
|
{
|
|
|
|
user_id, buf, std::move(opts)
|
|
|
|
};
|
|
|
|
|
2018-04-07 11:01:04 +02:00
|
|
|
request.wait(out.timeout);
|
2018-03-09 18:39:56 +01:00
|
|
|
const auto code
|
|
|
|
{
|
|
|
|
request.get()
|
|
|
|
};
|
|
|
|
|
|
|
|
const json::object &response
|
|
|
|
{
|
|
|
|
request
|
|
|
|
};
|
|
|
|
|
2018-04-03 03:24:57 +02:00
|
|
|
const string_view stream_id
|
|
|
|
{
|
|
|
|
unquote(response["stream_id"])
|
|
|
|
};
|
|
|
|
|
|
|
|
const json::array &devices
|
|
|
|
{
|
|
|
|
response["devices"]
|
|
|
|
};
|
|
|
|
|
|
|
|
for(const json::object &device : devices)
|
|
|
|
out << string_view{device} << std::endl;
|
|
|
|
|
|
|
|
out << "-- " << size(devices) << " devices." << std::endl;
|
2018-03-09 18:39:56 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-03-09 18:40:47 +01:00
|
|
|
bool
|
2018-03-26 09:04:47 +02:00
|
|
|
console_cmd__fed__query__client_keys(opt &out, const string_view &line)
|
2018-03-09 18:40:47 +01:00
|
|
|
{
|
|
|
|
const m::id::user &user_id
|
|
|
|
{
|
|
|
|
token(line, ' ', 0)
|
|
|
|
};
|
|
|
|
|
|
|
|
const string_view &device_id
|
|
|
|
{
|
|
|
|
token(line, ' ', 1)
|
|
|
|
};
|
|
|
|
|
|
|
|
const net::hostport remote
|
|
|
|
{
|
|
|
|
token(line, ' ', 2, user_id.host())
|
|
|
|
};
|
|
|
|
|
|
|
|
m::v1::query::opts opts;
|
|
|
|
opts.remote = remote;
|
|
|
|
|
|
|
|
const unique_buffer<mutable_buffer> buf
|
|
|
|
{
|
|
|
|
32_KiB
|
|
|
|
};
|
|
|
|
|
|
|
|
m::v1::query::client_keys request
|
|
|
|
{
|
|
|
|
user_id, device_id, buf, std::move(opts)
|
|
|
|
};
|
|
|
|
|
2018-04-07 11:01:04 +02:00
|
|
|
request.wait(out.timeout);
|
2018-03-09 18:40:47 +01:00
|
|
|
const auto code
|
|
|
|
{
|
|
|
|
request.get()
|
|
|
|
};
|
|
|
|
|
|
|
|
const json::object &response
|
|
|
|
{
|
|
|
|
request
|
|
|
|
};
|
|
|
|
|
|
|
|
out << string_view{response} << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-05-08 00:29:47 +02:00
|
|
|
bool
|
|
|
|
console_cmd__fed__key(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"remote",
|
|
|
|
}};
|
|
|
|
|
|
|
|
const auto &server_name
|
|
|
|
{
|
|
|
|
param.at(0)
|
|
|
|
};
|
|
|
|
|
2018-05-11 11:05:08 +02:00
|
|
|
const auto &key_id
|
|
|
|
{
|
|
|
|
param[1]
|
|
|
|
};
|
|
|
|
|
2018-05-08 00:29:47 +02:00
|
|
|
const unique_buffer<mutable_buffer> buf{16_KiB};
|
|
|
|
m::v1::key::opts opts;
|
|
|
|
m::v1::key::keys request
|
|
|
|
{
|
2018-05-11 11:05:08 +02:00
|
|
|
{server_name, key_id}, buf, std::move(opts)
|
2018-05-08 00:29:47 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
request.wait(out.timeout);
|
|
|
|
const auto code
|
|
|
|
{
|
|
|
|
request.get()
|
|
|
|
};
|
|
|
|
|
|
|
|
const json::object &response
|
|
|
|
{
|
|
|
|
request
|
|
|
|
};
|
|
|
|
|
|
|
|
const m::keys &key{response};
|
|
|
|
out << key << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
console_cmd__fed__key__query(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
2018-05-08 01:30:51 +02:00
|
|
|
"remote", "[server_name,key_id]...",
|
2018-05-08 00:29:47 +02:00
|
|
|
}};
|
|
|
|
|
2018-05-08 01:30:51 +02:00
|
|
|
const auto requests
|
2018-05-08 00:29:47 +02:00
|
|
|
{
|
2018-05-08 01:30:51 +02:00
|
|
|
tokens_after(line, ' ', 0)
|
2018-05-08 00:29:47 +02:00
|
|
|
};
|
|
|
|
|
2018-05-08 01:30:51 +02:00
|
|
|
std::vector<std::pair<string_view, string_view>> r;
|
|
|
|
tokens(requests, ' ', [&r]
|
|
|
|
(const string_view &req)
|
|
|
|
{
|
|
|
|
r.emplace_back(split(req, ','));
|
|
|
|
});
|
|
|
|
|
2018-05-08 00:29:47 +02:00
|
|
|
m::v1::key::opts opts;
|
2018-05-08 01:30:51 +02:00
|
|
|
opts.dynamic = true;
|
2018-05-08 00:29:47 +02:00
|
|
|
opts.remote = net::hostport
|
|
|
|
{
|
2018-05-08 01:30:51 +02:00
|
|
|
param.at(0)
|
2018-05-08 00:29:47 +02:00
|
|
|
};
|
|
|
|
|
2018-05-08 01:30:51 +02:00
|
|
|
const unique_buffer<mutable_buffer> buf{24_KiB};
|
2018-05-08 00:29:47 +02:00
|
|
|
m::v1::key::query request
|
|
|
|
{
|
2018-05-08 01:30:51 +02:00
|
|
|
r, buf, std::move(opts)
|
2018-05-08 00:29:47 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
request.wait(out.timeout);
|
|
|
|
const auto code
|
|
|
|
{
|
|
|
|
request.get()
|
|
|
|
};
|
|
|
|
|
|
|
|
const json::array keys
|
|
|
|
{
|
|
|
|
request
|
|
|
|
};
|
|
|
|
|
|
|
|
for(const json::object &key : keys)
|
|
|
|
{
|
|
|
|
const m::keys &k{key};
|
|
|
|
out << k << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-02-19 23:37:56 +01:00
|
|
|
bool
|
2018-03-26 09:04:47 +02:00
|
|
|
console_cmd__fed__version(opt &out, const string_view &line)
|
2018-02-19 23:37:56 +01:00
|
|
|
{
|
|
|
|
const net::hostport remote
|
|
|
|
{
|
|
|
|
token(line, ' ', 0)
|
|
|
|
};
|
|
|
|
|
|
|
|
m::v1::version::opts opts;
|
|
|
|
opts.remote = remote;
|
|
|
|
|
|
|
|
thread_local char buf[8_KiB];
|
|
|
|
m::v1::version request
|
|
|
|
{
|
2018-02-27 07:02:47 +01:00
|
|
|
buf, std::move(opts)
|
2018-02-19 23:37:56 +01:00
|
|
|
};
|
|
|
|
|
2018-04-07 11:01:04 +02:00
|
|
|
request.wait(out.timeout);
|
2018-02-19 23:37:56 +01:00
|
|
|
const auto code
|
|
|
|
{
|
|
|
|
request.get()
|
|
|
|
};
|
|
|
|
|
|
|
|
const json::object &response
|
|
|
|
{
|
|
|
|
request
|
|
|
|
};
|
|
|
|
|
2018-02-25 08:54:56 +01:00
|
|
|
out << string_view{response} << std::endl;
|
2018-02-19 23:37:56 +01:00
|
|
|
return true;
|
|
|
|
}
|
2018-04-25 02:44:52 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// file
|
|
|
|
//
|
|
|
|
|
|
|
|
bool
|
|
|
|
console_cmd__file__room(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"server|amalgam", "file"
|
|
|
|
}};
|
|
|
|
|
|
|
|
auto server
|
|
|
|
{
|
|
|
|
param.at(0)
|
|
|
|
};
|
|
|
|
|
|
|
|
auto file
|
|
|
|
{
|
|
|
|
param[1]
|
|
|
|
};
|
|
|
|
|
|
|
|
if(empty(file))
|
|
|
|
{
|
|
|
|
const auto s(split(server, '/'));
|
|
|
|
server = s.first;
|
|
|
|
file = s.second;
|
|
|
|
}
|
|
|
|
|
|
|
|
using prototype = m::room::id (m::room::id::buf &,
|
|
|
|
const string_view &server,
|
|
|
|
const string_view &file);
|
|
|
|
|
2018-09-14 16:39:11 +02:00
|
|
|
static mods::import<prototype> file_room_id
|
2018-04-25 02:44:52 +02:00
|
|
|
{
|
|
|
|
"media_media", "file_room_id"
|
|
|
|
};
|
|
|
|
|
|
|
|
m::room::id::buf buf;
|
|
|
|
out << file_room_id(buf, server, file) << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
2018-04-27 23:40:44 +02:00
|
|
|
|
|
|
|
bool
|
|
|
|
console_cmd__file__download(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
const params param{line, " ",
|
|
|
|
{
|
|
|
|
"server|amalgam", "file"
|
|
|
|
}};
|
|
|
|
|
|
|
|
auto server
|
|
|
|
{
|
|
|
|
param.at(0)
|
|
|
|
};
|
|
|
|
|
|
|
|
auto file
|
|
|
|
{
|
|
|
|
param[1]
|
|
|
|
};
|
|
|
|
|
|
|
|
auto remote
|
|
|
|
{
|
|
|
|
has(server, '/')? param[1] : param[2]
|
|
|
|
};
|
|
|
|
|
|
|
|
if(has(server, '/'))
|
|
|
|
{
|
|
|
|
const auto s(split(server, '/'));
|
|
|
|
server = s.first;
|
|
|
|
file = s.second;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!remote)
|
|
|
|
remote = server;
|
|
|
|
|
|
|
|
using prototype = m::room::id::buf (const string_view &server,
|
|
|
|
const string_view &file,
|
2018-04-30 16:30:34 +02:00
|
|
|
const m::user::id &,
|
2018-04-27 23:40:44 +02:00
|
|
|
const net::hostport &remote);
|
|
|
|
|
2018-09-14 16:39:11 +02:00
|
|
|
static mods::import<prototype> download
|
2018-04-27 23:40:44 +02:00
|
|
|
{
|
|
|
|
"media_media", "download"
|
|
|
|
};
|
|
|
|
|
|
|
|
const m::room::id::buf room_id
|
|
|
|
{
|
2018-04-30 16:30:34 +02:00
|
|
|
download(server, file, m::me.user_id, remote)
|
2018-04-27 23:40:44 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
out << room_id << std::endl;
|
|
|
|
return true;
|
|
|
|
}
|
2018-05-08 00:30:08 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// vm
|
|
|
|
//
|
|
|
|
|
|
|
|
bool
|
|
|
|
console_cmd__vm(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
out << "sequence: "
|
|
|
|
<< std::right << std::setw(10) << m::vm::current_sequence
|
|
|
|
<< std::endl;
|
|
|
|
|
|
|
|
out << "eval total: "
|
|
|
|
<< std::right << std::setw(10) << m::vm::eval::id_ctr
|
|
|
|
<< std::endl;
|
|
|
|
|
|
|
|
out << "eval current: "
|
|
|
|
<< std::right << std::setw(10) << size(m::vm::eval::list)
|
|
|
|
<< std::endl;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
console_cmd__vm__eval(opt &out, const string_view &line)
|
|
|
|
{
|
|
|
|
for(const auto *const &eval : m::vm::eval::list)
|
|
|
|
{
|
|
|
|
assert(eval);
|
|
|
|
assert(eval->ctx);
|
|
|
|
|
|
|
|
out << std::setw(9) << std::right << eval->id
|
|
|
|
<< " | " << std::setw(4) << std::right << id(*eval->ctx)
|
|
|
|
<< " | " << std::setw(4) << std::right << eval->sequence
|
|
|
|
<< " | " << std::setw(64) << std::left << eval->event_id
|
|
|
|
;
|
|
|
|
|
|
|
|
out << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|