2018-02-04 03:22:01 +01:00
|
|
|
// Matrix Construct
|
|
|
|
//
|
|
|
|
// Copyright (C) Matrix Construct Developers, Authors & Contributors
|
|
|
|
// Copyright (C) 2016-2018 Jason Volk <jason@zemos.net>
|
|
|
|
//
|
|
|
|
// Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
// purpose with or without fee is hereby granted, provided that the above
|
|
|
|
// copyright notice and this permission notice is present in all copies. The
|
|
|
|
// full license for this software is available in the LICENSE file.
|
2017-12-12 21:33:14 +01:00
|
|
|
|
|
|
|
#include <ircd/m/m.h>
|
|
|
|
|
2018-02-20 04:37:09 +01:00
|
|
|
uint64_t
|
2018-02-09 05:59:48 +01:00
|
|
|
ircd::m::depth(const id::room &room_id)
|
|
|
|
{
|
2018-02-20 04:37:09 +01:00
|
|
|
uint64_t depth;
|
2018-02-09 05:59:48 +01:00
|
|
|
head(room_id, depth);
|
|
|
|
return depth;
|
|
|
|
}
|
|
|
|
|
2018-02-20 04:37:09 +01:00
|
|
|
int64_t
|
|
|
|
ircd::m::depth(std::nothrow_t,
|
|
|
|
const id::room &room_id)
|
|
|
|
{
|
|
|
|
int64_t depth;
|
|
|
|
head(std::nothrow, room_id, depth);
|
|
|
|
return depth;
|
|
|
|
}
|
|
|
|
|
2018-02-09 05:59:48 +01:00
|
|
|
ircd::m::id::event::buf
|
|
|
|
ircd::m::head(const id::room &room_id)
|
|
|
|
{
|
2018-02-20 04:37:09 +01:00
|
|
|
uint64_t depth;
|
2018-02-09 05:59:48 +01:00
|
|
|
return head(room_id, depth);
|
|
|
|
}
|
|
|
|
|
2018-02-20 04:37:09 +01:00
|
|
|
ircd::m::id::event::buf
|
|
|
|
ircd::m::head(std::nothrow_t,
|
|
|
|
const id::room &room_id)
|
|
|
|
{
|
|
|
|
int64_t depth;
|
|
|
|
return head(std::nothrow, room_id, depth);
|
|
|
|
}
|
|
|
|
|
2018-02-09 05:59:48 +01:00
|
|
|
ircd::m::id::event::buf
|
|
|
|
ircd::m::head(const id::room &room_id,
|
2018-02-20 04:37:09 +01:00
|
|
|
uint64_t &depth)
|
|
|
|
{
|
|
|
|
const auto ret
|
|
|
|
{
|
|
|
|
head(std::nothrow, room_id, reinterpret_cast<int64_t &>(depth))
|
|
|
|
};
|
|
|
|
|
2018-02-21 00:00:22 +01:00
|
|
|
if(depth == uint64_t(-1))
|
2018-02-20 04:37:09 +01:00
|
|
|
throw m::NOT_FOUND{};
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
ircd::m::id::event::buf
|
|
|
|
ircd::m::head(std::nothrow_t,
|
|
|
|
const id::room &room_id,
|
2018-02-09 05:59:48 +01:00
|
|
|
int64_t &depth)
|
|
|
|
{
|
|
|
|
const auto it
|
|
|
|
{
|
|
|
|
dbs::room_events.begin(room_id)
|
|
|
|
};
|
|
|
|
|
|
|
|
if(!it)
|
|
|
|
{
|
|
|
|
depth = -1;
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
const auto &key{it->first};
|
|
|
|
const auto part
|
|
|
|
{
|
|
|
|
dbs::room_events_key(key)
|
|
|
|
};
|
|
|
|
|
|
|
|
depth = std::get<0>(part);
|
|
|
|
return std::get<1>(part);
|
|
|
|
}
|
|
|
|
|
2017-12-12 21:33:14 +01:00
|
|
|
bool
|
|
|
|
ircd::m::exists(const id::room &room_id)
|
|
|
|
{
|
2018-02-09 06:01:26 +01:00
|
|
|
const auto it
|
2017-12-12 21:33:14 +01:00
|
|
|
{
|
2018-02-09 06:01:26 +01:00
|
|
|
dbs::room_events.begin(room_id)
|
2017-12-12 21:33:14 +01:00
|
|
|
};
|
|
|
|
|
2018-02-09 06:01:26 +01:00
|
|
|
return bool(it);
|
2017-12-12 21:33:14 +01:00
|
|
|
}
|
|
|
|
|
2018-03-08 20:38:29 +01:00
|
|
|
bool
|
|
|
|
ircd::m::exists(const room &room)
|
|
|
|
{
|
|
|
|
return exists(room.room_id);
|
|
|
|
}
|
|
|
|
|
2017-12-12 21:33:14 +01:00
|
|
|
bool
|
|
|
|
ircd::m::my(const room &room)
|
|
|
|
{
|
|
|
|
return my(room.room_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// room
|
|
|
|
//
|
|
|
|
|
|
|
|
bool
|
|
|
|
ircd::m::room::membership(const m::id::user &user_id,
|
|
|
|
const string_view &membership)
|
|
|
|
const
|
|
|
|
{
|
2018-03-01 06:05:09 +01:00
|
|
|
char buf[64];
|
|
|
|
return this->membership(buf, user_id) == membership;
|
|
|
|
}
|
|
|
|
|
|
|
|
ircd::string_view
|
|
|
|
ircd::m::room::membership(const mutable_buffer &out,
|
|
|
|
const m::id::user &user_id)
|
|
|
|
const
|
|
|
|
{
|
|
|
|
string_view ret;
|
2018-02-13 23:23:56 +01:00
|
|
|
const state state{*this};
|
2018-03-01 06:05:09 +01:00
|
|
|
state.get(std::nothrow, "m.room.member"_sv, user_id, [&out, &ret]
|
2018-02-10 09:25:20 +01:00
|
|
|
(const m::event &event)
|
2018-02-09 20:33:48 +01:00
|
|
|
{
|
|
|
|
assert(json::get<"type"_>(event) == "m.room.member");
|
2018-03-01 06:05:09 +01:00
|
|
|
ret = { data(out), copy(out, unquote(at<"membership"_>(event))) };
|
2018-02-09 20:33:48 +01:00
|
|
|
});
|
2017-12-12 21:33:14 +01:00
|
|
|
|
2018-02-09 20:33:48 +01:00
|
|
|
return ret;
|
2017-12-12 21:33:14 +01:00
|
|
|
}
|
|
|
|
|
2018-02-16 04:17:09 +01:00
|
|
|
bool
|
|
|
|
ircd::m::room::has(const string_view &type)
|
|
|
|
const
|
|
|
|
{
|
|
|
|
return get(std::nothrow, type, nullptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ircd::m::room::get(const string_view &type,
|
|
|
|
const event::closure &closure)
|
|
|
|
const
|
|
|
|
{
|
|
|
|
if(!get(std::nothrow, type, closure))
|
|
|
|
throw m::NOT_FOUND
|
|
|
|
{
|
|
|
|
"No events of type '%s' found in '%s'",
|
|
|
|
type,
|
|
|
|
room_id
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
ircd::m::room::get(std::nothrow_t,
|
|
|
|
const string_view &type,
|
|
|
|
const event::closure &closure)
|
|
|
|
const
|
|
|
|
{
|
|
|
|
static constexpr auto idx
|
|
|
|
{
|
|
|
|
json::indexof<event, "type"_>()
|
|
|
|
};
|
|
|
|
|
|
|
|
auto &column
|
|
|
|
{
|
|
|
|
dbs::event_column.at(idx)
|
|
|
|
};
|
|
|
|
|
|
|
|
bool ret{false};
|
|
|
|
messages it{*this};
|
2018-02-16 22:18:14 +01:00
|
|
|
for(; it; --it)
|
2018-02-16 04:17:09 +01:00
|
|
|
{
|
|
|
|
const auto &event_id{it.event_id()};
|
|
|
|
column(event_id, [&ret, &type](const string_view &value)
|
|
|
|
{
|
|
|
|
ret = value == type;
|
|
|
|
});
|
2018-02-16 22:18:14 +01:00
|
|
|
|
|
|
|
if(ret)
|
|
|
|
break;
|
2018-02-16 04:17:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if(ret && closure)
|
|
|
|
closure(*it);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2018-02-10 09:25:20 +01:00
|
|
|
void
|
2018-02-11 04:50:53 +01:00
|
|
|
ircd::m::room::get(const string_view &type,
|
|
|
|
const string_view &state_key,
|
|
|
|
const event::closure &closure)
|
|
|
|
const
|
|
|
|
{
|
|
|
|
const state state{*this};
|
|
|
|
state.get(type, state_key, closure);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
ircd::m::room::get(std::nothrow_t,
|
|
|
|
const string_view &type,
|
|
|
|
const string_view &state_key,
|
|
|
|
const event::closure &closure)
|
|
|
|
const
|
|
|
|
{
|
|
|
|
const state state{*this};
|
|
|
|
return state.get(std::nothrow, type, state_key, closure);
|
|
|
|
}
|
|
|
|
|
2018-02-11 06:42:16 +01:00
|
|
|
bool
|
|
|
|
ircd::m::room::has(const string_view &type,
|
|
|
|
const string_view &state_key)
|
|
|
|
const
|
|
|
|
{
|
|
|
|
const state state{*this};
|
|
|
|
return state.has(type, state_key);
|
|
|
|
}
|
|
|
|
|
2018-02-11 04:50:53 +01:00
|
|
|
//
|
|
|
|
// room::messages
|
|
|
|
//
|
|
|
|
|
2018-02-13 23:25:01 +01:00
|
|
|
ircd::m::room::messages::messages(const m::room &room)
|
|
|
|
:room{room}
|
2018-02-11 04:50:53 +01:00
|
|
|
{
|
2018-02-13 23:25:01 +01:00
|
|
|
seek();
|
2018-02-11 04:50:53 +01:00
|
|
|
}
|
|
|
|
|
2018-02-13 23:25:01 +01:00
|
|
|
ircd::m::room::messages::messages(const m::room &room,
|
|
|
|
const event::id &event_id)
|
|
|
|
:room{room}
|
2018-02-11 04:50:53 +01:00
|
|
|
{
|
2018-02-13 23:25:01 +01:00
|
|
|
seek(event_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
ircd::m::room::messages::messages(const m::room &room,
|
|
|
|
const uint64_t &depth)
|
|
|
|
:room{room}
|
|
|
|
{
|
|
|
|
seek(depth);
|
|
|
|
}
|
|
|
|
|
|
|
|
const ircd::m::event &
|
|
|
|
ircd::m::room::messages::operator*()
|
|
|
|
{
|
|
|
|
return fetch(std::nothrow);
|
|
|
|
};
|
|
|
|
|
|
|
|
bool
|
|
|
|
ircd::m::room::messages::seek()
|
|
|
|
{
|
|
|
|
this->it = dbs::room_events.begin(room.room_id);
|
|
|
|
return bool(*this);
|
2018-02-11 04:50:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2018-02-13 23:25:01 +01:00
|
|
|
ircd::m::room::messages::seek(const event::id &event_id)
|
2018-02-11 04:50:53 +01:00
|
|
|
{
|
2018-02-13 23:25:01 +01:00
|
|
|
static constexpr auto idx
|
|
|
|
{
|
|
|
|
json::indexof<event, "depth"_>()
|
|
|
|
};
|
|
|
|
|
|
|
|
auto &column
|
2018-02-11 04:50:53 +01:00
|
|
|
{
|
2018-02-13 23:25:01 +01:00
|
|
|
dbs::event_column.at(idx)
|
|
|
|
};
|
|
|
|
|
|
|
|
uint64_t depth;
|
|
|
|
column(event_id, [&](const string_view &binary)
|
|
|
|
{
|
|
|
|
assert(size(binary) == sizeof(depth));
|
|
|
|
depth = byte_view<uint64_t>(binary);
|
|
|
|
});
|
|
|
|
|
|
|
|
char buf[m::state::KEY_MAX_SZ];
|
|
|
|
const auto seek_key
|
|
|
|
{
|
|
|
|
dbs::room_events_key(buf, room.room_id, depth, event_id)
|
|
|
|
};
|
2018-02-11 04:50:53 +01:00
|
|
|
|
2018-02-13 23:25:01 +01:00
|
|
|
this->it = dbs::room_events.begin(seek_key);
|
|
|
|
return bool(*this);
|
2018-02-11 04:50:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2018-02-13 23:25:01 +01:00
|
|
|
ircd::m::room::messages::seek(const uint64_t &depth)
|
2018-02-10 09:25:20 +01:00
|
|
|
{
|
2018-02-13 23:25:01 +01:00
|
|
|
char buf[m::state::KEY_MAX_SZ];
|
|
|
|
const auto seek_key
|
2018-02-10 09:25:20 +01:00
|
|
|
{
|
2018-02-13 23:25:01 +01:00
|
|
|
dbs::room_events_key(buf, room.room_id, depth)
|
2018-02-10 09:25:20 +01:00
|
|
|
};
|
|
|
|
|
2018-02-13 23:25:01 +01:00
|
|
|
this->it = dbs::room_events.begin(seek_key);
|
|
|
|
return bool(*this);
|
|
|
|
}
|
2018-02-10 09:25:20 +01:00
|
|
|
|
2018-03-09 04:01:38 +01:00
|
|
|
ircd::m::room::messages::operator
|
|
|
|
const m::event::id &()
|
|
|
|
{
|
|
|
|
return event_id();
|
|
|
|
}
|
|
|
|
|
2018-02-13 23:25:01 +01:00
|
|
|
const ircd::m::event::id &
|
|
|
|
ircd::m::room::messages::event_id()
|
|
|
|
{
|
|
|
|
assert(bool(*this));
|
|
|
|
const auto &key{it->first};
|
|
|
|
const auto part{dbs::room_events_key(key)};
|
|
|
|
_event_id = std::get<1>(part);
|
|
|
|
return _event_id;
|
|
|
|
}
|
2018-02-10 09:25:20 +01:00
|
|
|
|
2018-02-13 23:25:01 +01:00
|
|
|
const ircd::m::event &
|
|
|
|
ircd::m::room::messages::fetch()
|
|
|
|
{
|
|
|
|
m::seek(_event, event_id());
|
|
|
|
return _event;
|
|
|
|
}
|
|
|
|
|
|
|
|
const ircd::m::event &
|
|
|
|
ircd::m::room::messages::fetch(std::nothrow_t)
|
|
|
|
{
|
|
|
|
if(!m::seek(_event, event_id(), std::nothrow))
|
|
|
|
_event = m::event::fetch{};
|
2018-02-11 02:57:22 +01:00
|
|
|
|
2018-02-13 23:25:01 +01:00
|
|
|
return _event;
|
2018-02-09 20:22:46 +01:00
|
|
|
}
|
2017-12-12 21:33:14 +01:00
|
|
|
|
2018-02-10 09:25:20 +01:00
|
|
|
//
|
|
|
|
// room::state
|
|
|
|
//
|
|
|
|
|
2018-02-11 02:34:16 +01:00
|
|
|
ircd::m::room::state::state(const m::room &room)
|
2018-03-04 09:12:13 +01:00
|
|
|
:state
|
|
|
|
{
|
|
|
|
room, opts{}
|
|
|
|
}
|
2018-02-11 02:34:16 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-03-04 09:12:13 +01:00
|
|
|
ircd::m::room::state::state(const m::room &room,
|
|
|
|
const opts &opts)
|
|
|
|
:room_id
|
|
|
|
{
|
|
|
|
room.room_id
|
|
|
|
}
|
|
|
|
,event_id
|
|
|
|
{
|
|
|
|
room.event_id?
|
|
|
|
event::id::buf{room.event_id}:
|
|
|
|
opts.snapshot?
|
|
|
|
head(room_id):
|
|
|
|
event::id::buf{}
|
|
|
|
}
|
|
|
|
,root_id
|
|
|
|
{
|
|
|
|
event_id?
|
|
|
|
dbs::state_root(root_id_buf, room_id, event_id):
|
|
|
|
m::state::id{}
|
|
|
|
}
|
2018-02-11 02:34:16 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-02-10 09:25:20 +01:00
|
|
|
void
|
|
|
|
ircd::m::room::state::get(const string_view &type,
|
|
|
|
const string_view &state_key,
|
|
|
|
const event::closure &closure)
|
2017-12-12 21:33:14 +01:00
|
|
|
const
|
|
|
|
{
|
2018-02-10 09:25:20 +01:00
|
|
|
get(type, state_key, event::id::closure{[&closure]
|
|
|
|
(const event::id &event_id)
|
2017-12-12 21:33:14 +01:00
|
|
|
{
|
2018-02-10 09:25:20 +01:00
|
|
|
event::fetch event
|
2018-02-09 08:18:42 +01:00
|
|
|
{
|
2018-02-10 09:25:20 +01:00
|
|
|
event_id
|
2018-02-09 08:18:42 +01:00
|
|
|
};
|
|
|
|
|
2018-02-10 09:25:20 +01:00
|
|
|
if(event.valid(event_id))
|
|
|
|
closure(event);
|
|
|
|
}});
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ircd::m::room::state::get(const string_view &type,
|
|
|
|
const string_view &state_key,
|
|
|
|
const event::id::closure &closure)
|
|
|
|
const
|
|
|
|
{
|
2018-03-04 09:12:13 +01:00
|
|
|
if(root_id)
|
|
|
|
return m::state::get(root_id, type, state_key, [&closure]
|
|
|
|
(const string_view &event_id)
|
|
|
|
{
|
|
|
|
closure(unquote(event_id));
|
|
|
|
});
|
|
|
|
|
|
|
|
char key[768];
|
|
|
|
auto &column{dbs::room_state};
|
|
|
|
return column(dbs::room_state_key(key, room_id, type, state_key), closure);
|
2018-02-10 09:25:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
ircd::m::room::state::get(std::nothrow_t,
|
|
|
|
const string_view &type,
|
|
|
|
const string_view &state_key,
|
|
|
|
const event::closure &closure)
|
|
|
|
const
|
|
|
|
{
|
|
|
|
return get(std::nothrow, type, state_key, event::id::closure{[&closure]
|
|
|
|
(const event::id &event_id)
|
|
|
|
{
|
|
|
|
event::fetch event
|
2018-02-09 08:18:42 +01:00
|
|
|
{
|
2018-02-10 09:25:20 +01:00
|
|
|
event_id, std::nothrow
|
2018-02-09 08:18:42 +01:00
|
|
|
};
|
|
|
|
|
2018-02-10 09:25:20 +01:00
|
|
|
if(event.valid(event_id))
|
2018-02-09 20:22:46 +01:00
|
|
|
closure(event);
|
2018-02-10 09:25:20 +01:00
|
|
|
}});
|
2017-12-12 21:33:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2018-02-10 09:25:20 +01:00
|
|
|
ircd::m::room::state::get(std::nothrow_t,
|
|
|
|
const string_view &type,
|
|
|
|
const string_view &state_key,
|
|
|
|
const event::id::closure &closure)
|
2017-12-12 21:33:14 +01:00
|
|
|
const
|
|
|
|
{
|
2018-03-04 09:12:13 +01:00
|
|
|
if(root_id)
|
|
|
|
return m::state::get(std::nothrow, root_id, type, state_key, [&closure]
|
|
|
|
(const string_view &event_id)
|
|
|
|
{
|
|
|
|
closure(unquote(event_id));
|
|
|
|
});
|
|
|
|
|
|
|
|
char key[768];
|
|
|
|
auto &column{dbs::room_state};
|
|
|
|
return column(dbs::room_state_key(key, room_id, type, state_key), std::nothrow, closure);
|
2017-12-12 21:33:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2018-02-10 09:25:20 +01:00
|
|
|
ircd::m::room::state::has(const string_view &type)
|
2017-12-12 21:33:14 +01:00
|
|
|
const
|
|
|
|
{
|
2018-02-10 09:25:20 +01:00
|
|
|
return test(type, event::id::closure_bool{[](const m::event::id &)
|
2018-02-09 06:03:25 +01:00
|
|
|
{
|
2018-02-10 09:25:20 +01:00
|
|
|
return true;
|
|
|
|
}});
|
|
|
|
}
|
2018-02-09 06:03:25 +01:00
|
|
|
|
2018-02-10 09:25:20 +01:00
|
|
|
bool
|
|
|
|
ircd::m::room::state::has(const string_view &type,
|
|
|
|
const string_view &state_key)
|
|
|
|
const
|
|
|
|
{
|
2018-03-04 09:12:13 +01:00
|
|
|
if(root_id)
|
|
|
|
return m::state::get(std::nothrow, root_id, type, state_key, []
|
|
|
|
(const string_view &event_id)
|
|
|
|
{});
|
|
|
|
|
|
|
|
char key[768];
|
|
|
|
auto &column{dbs::room_state};
|
|
|
|
return db::has(column, dbs::room_state_key(key, room_id, type, state_key));
|
2017-12-12 21:33:14 +01:00
|
|
|
}
|
|
|
|
|
2018-02-25 04:52:02 +01:00
|
|
|
size_t
|
|
|
|
ircd::m::room::state::count()
|
|
|
|
const
|
|
|
|
{
|
2018-03-04 09:12:13 +01:00
|
|
|
if(root_id)
|
|
|
|
return m::state::count(root_id);
|
|
|
|
|
|
|
|
size_t ret{0};
|
|
|
|
auto &column{dbs::room_state};
|
|
|
|
for(auto it{column.begin(room_id)}; bool(it); ++it)
|
|
|
|
++ret;
|
|
|
|
|
|
|
|
return ret;
|
2018-02-25 04:52:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
size_t
|
|
|
|
ircd::m::room::state::count(const string_view &type)
|
|
|
|
const
|
|
|
|
{
|
2018-03-04 09:12:13 +01:00
|
|
|
if(root_id)
|
|
|
|
return m::state::count(root_id, type);
|
|
|
|
|
|
|
|
char keybuf[768];
|
|
|
|
const auto &key
|
|
|
|
{
|
|
|
|
dbs::room_state_key(keybuf, room_id, type)
|
|
|
|
};
|
|
|
|
|
|
|
|
size_t ret{0};
|
|
|
|
auto &column{dbs::room_state};
|
|
|
|
for(auto it{column.begin(key)}; bool(it); ++it)
|
|
|
|
if(std::get<0>(dbs::room_state_key(it->first)) == type)
|
|
|
|
++ret;
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
|
|
|
|
return ret;
|
2018-02-25 04:52:02 +01:00
|
|
|
}
|
|
|
|
|
2017-12-12 21:33:14 +01:00
|
|
|
bool
|
2018-02-10 09:25:20 +01:00
|
|
|
ircd::m::room::state::test(const event::closure_bool &closure)
|
2017-12-12 21:33:14 +01:00
|
|
|
const
|
|
|
|
{
|
2018-02-10 09:25:20 +01:00
|
|
|
event::fetch event;
|
|
|
|
return test(event::id::closure_bool{[&event, &closure]
|
|
|
|
(const event::id &event_id)
|
2018-02-09 21:10:34 +01:00
|
|
|
{
|
2018-02-10 09:25:20 +01:00
|
|
|
if(seek(event, unquote(event_id), std::nothrow))
|
|
|
|
if(closure(event))
|
|
|
|
return true;
|
2018-02-09 21:10:34 +01:00
|
|
|
|
|
|
|
return false;
|
2018-02-10 09:25:20 +01:00
|
|
|
}});
|
2017-12-12 21:33:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2018-02-10 09:25:20 +01:00
|
|
|
ircd::m::room::state::test(const event::id::closure_bool &closure)
|
2017-12-12 21:33:14 +01:00
|
|
|
const
|
|
|
|
{
|
2018-03-04 09:12:13 +01:00
|
|
|
if(root_id)
|
|
|
|
return m::state::test(root_id, [&closure]
|
|
|
|
(const json::array &key, const string_view &event_id)
|
|
|
|
{
|
|
|
|
return closure(unquote(event_id));
|
|
|
|
});
|
|
|
|
|
|
|
|
auto &column{dbs::room_state};
|
|
|
|
for(auto it{column.begin(room_id)}; bool(it); ++it)
|
|
|
|
if(closure(it->second))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
2018-02-10 09:25:20 +01:00
|
|
|
}
|
2018-02-09 20:57:19 +01:00
|
|
|
|
2018-02-10 09:25:20 +01:00
|
|
|
bool
|
|
|
|
ircd::m::room::state::test(const string_view &type,
|
|
|
|
const event::closure_bool &closure)
|
|
|
|
const
|
|
|
|
{
|
|
|
|
event::fetch event;
|
|
|
|
return test(type, event::id::closure_bool{[&event, &closure]
|
|
|
|
(const event::id &event_id)
|
2018-02-09 20:57:19 +01:00
|
|
|
{
|
2018-02-10 09:25:20 +01:00
|
|
|
if(seek(event, unquote(event_id), std::nothrow))
|
|
|
|
if(closure(event))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}});
|
2018-02-09 22:08:41 +01:00
|
|
|
}
|
2017-12-12 21:33:14 +01:00
|
|
|
|
2018-02-09 22:08:41 +01:00
|
|
|
bool
|
2018-02-10 09:25:20 +01:00
|
|
|
ircd::m::room::state::test(const string_view &type,
|
|
|
|
const event::id::closure_bool &closure)
|
2018-02-09 22:08:41 +01:00
|
|
|
const
|
|
|
|
{
|
2018-03-04 09:12:13 +01:00
|
|
|
if(root_id)
|
|
|
|
return m::state::test(root_id, type, [&closure]
|
|
|
|
(const json::array &key, const string_view &event_id)
|
|
|
|
{
|
|
|
|
return closure(unquote(event_id));
|
|
|
|
});
|
|
|
|
|
|
|
|
char keybuf[768];
|
|
|
|
const auto &key
|
2018-02-09 20:57:19 +01:00
|
|
|
{
|
2018-03-04 09:12:13 +01:00
|
|
|
dbs::room_state_key(keybuf, room_id, type)
|
|
|
|
};
|
|
|
|
|
|
|
|
auto &column{dbs::room_state};
|
|
|
|
for(auto it{column.begin(key)}; bool(it); ++it)
|
|
|
|
if(std::get<0>(dbs::room_state_key(it->first)) == type)
|
|
|
|
{
|
|
|
|
if(closure(it->second))
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else break;
|
|
|
|
|
|
|
|
return false;
|
2018-02-10 09:25:20 +01:00
|
|
|
}
|
2018-02-09 20:57:19 +01:00
|
|
|
|
2018-02-24 04:38:56 +01:00
|
|
|
bool
|
|
|
|
ircd::m::room::state::test(const string_view &type,
|
|
|
|
const string_view &state_key_lb,
|
|
|
|
const event::closure_bool &closure)
|
|
|
|
const
|
|
|
|
{
|
|
|
|
event::fetch event;
|
|
|
|
return test(type, state_key_lb, event::id::closure_bool{[&event, &closure]
|
|
|
|
(const event::id &event_id)
|
|
|
|
{
|
|
|
|
if(seek(event, unquote(event_id), std::nothrow))
|
|
|
|
if(closure(event))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}});
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
ircd::m::room::state::test(const string_view &type,
|
|
|
|
const string_view &state_key_lb,
|
|
|
|
const event::id::closure_bool &closure)
|
|
|
|
const
|
|
|
|
{
|
2018-03-04 09:12:13 +01:00
|
|
|
if(root_id)
|
|
|
|
return m::state::test(root_id, type, state_key_lb, [&closure]
|
|
|
|
(const json::array &key, const string_view &event_id)
|
|
|
|
{
|
|
|
|
return closure(unquote(event_id));
|
|
|
|
});
|
|
|
|
|
|
|
|
char keybuf[768];
|
|
|
|
const auto &key
|
2018-02-24 04:38:56 +01:00
|
|
|
{
|
2018-03-04 09:12:13 +01:00
|
|
|
dbs::room_state_key(keybuf, room_id, type, state_key_lb)
|
|
|
|
};
|
|
|
|
|
|
|
|
auto &column{dbs::room_state};
|
|
|
|
for(auto it{column.begin(key)}; bool(it); ++it)
|
|
|
|
if(std::get<0>(dbs::room_state_key(it->first)) == type)
|
|
|
|
{
|
|
|
|
if(closure(it->second))
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else break;
|
|
|
|
|
|
|
|
return false;
|
2018-02-24 04:38:56 +01:00
|
|
|
}
|
|
|
|
|
2018-02-10 09:25:20 +01:00
|
|
|
void
|
|
|
|
ircd::m::room::state::for_each(const event::closure &closure)
|
|
|
|
const
|
|
|
|
{
|
2018-02-09 22:08:41 +01:00
|
|
|
event::fetch event;
|
2018-02-10 09:25:20 +01:00
|
|
|
for_each(event::id::closure{[&event, &closure]
|
|
|
|
(const event::id &event_id)
|
2018-02-09 20:57:19 +01:00
|
|
|
{
|
2018-02-13 23:23:56 +01:00
|
|
|
if(seek(event, event_id, std::nothrow))
|
2018-02-10 09:25:20 +01:00
|
|
|
closure(event);
|
|
|
|
}});
|
|
|
|
}
|
2018-02-09 22:08:41 +01:00
|
|
|
|
2018-02-10 09:25:20 +01:00
|
|
|
void
|
|
|
|
ircd::m::room::state::for_each(const event::id::closure &closure)
|
|
|
|
const
|
|
|
|
{
|
2018-03-04 09:12:13 +01:00
|
|
|
if(root_id)
|
|
|
|
return m::state::for_each(root_id, [&closure]
|
|
|
|
(const json::array &key, const string_view &event_id)
|
|
|
|
{
|
|
|
|
closure(unquote(event_id));
|
|
|
|
});
|
|
|
|
|
|
|
|
auto &column{dbs::room_state};
|
|
|
|
for(auto it{column.begin(room_id)}; bool(it); ++it)
|
|
|
|
closure(it->second);
|
2017-12-12 21:33:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2018-02-10 09:25:20 +01:00
|
|
|
ircd::m::room::state::for_each(const string_view &type,
|
|
|
|
const event::closure &closure)
|
2017-12-12 21:33:14 +01:00
|
|
|
const
|
|
|
|
{
|
2018-02-10 09:25:20 +01:00
|
|
|
event::fetch event;
|
|
|
|
for_each(type, event::id::closure{[&event, &closure]
|
|
|
|
(const event::id &event_id)
|
2017-12-12 21:33:14 +01:00
|
|
|
{
|
2018-02-13 23:23:56 +01:00
|
|
|
if(seek(event, event_id, std::nothrow))
|
2018-02-10 09:25:20 +01:00
|
|
|
closure(event);
|
|
|
|
}});
|
|
|
|
}
|
2017-12-12 21:33:14 +01:00
|
|
|
|
2018-02-10 09:25:20 +01:00
|
|
|
void
|
|
|
|
ircd::m::room::state::for_each(const string_view &type,
|
|
|
|
const event::id::closure &closure)
|
|
|
|
const
|
|
|
|
{
|
2018-03-04 09:12:13 +01:00
|
|
|
if(root_id)
|
|
|
|
return m::state::for_each(root_id, type, [&closure]
|
|
|
|
(const json::array &key, const string_view &event_id)
|
|
|
|
{
|
|
|
|
closure(unquote(event_id));
|
|
|
|
});
|
|
|
|
|
|
|
|
char keybuf[768];
|
|
|
|
const auto &key
|
2018-02-09 21:10:34 +01:00
|
|
|
{
|
2018-03-04 09:12:13 +01:00
|
|
|
dbs::room_state_key(keybuf, room_id, type)
|
|
|
|
};
|
|
|
|
|
|
|
|
auto &column{dbs::room_state};
|
|
|
|
for(auto it{column.begin(key)}; bool(it); ++it)
|
|
|
|
if(std::get<0>(dbs::room_state_key(it->first)) == type)
|
|
|
|
closure(it->second);
|
|
|
|
else
|
|
|
|
break;
|
2017-12-12 21:33:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// room::members
|
|
|
|
//
|
|
|
|
|
2018-02-10 22:03:13 +01:00
|
|
|
void
|
|
|
|
ircd::m::room::members::for_each(const event::closure &view)
|
|
|
|
const
|
|
|
|
{
|
|
|
|
test([&view](const m::event &event)
|
|
|
|
{
|
|
|
|
view(event);
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ircd::m::room::members::for_each(const string_view &membership,
|
|
|
|
const event::closure &view)
|
|
|
|
const
|
|
|
|
{
|
|
|
|
test(membership, [&view](const m::event &event)
|
|
|
|
{
|
|
|
|
view(event);
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-12-12 21:33:14 +01:00
|
|
|
bool
|
2018-02-10 22:03:13 +01:00
|
|
|
ircd::m::room::members::test(const event::closure_bool &view)
|
2017-12-12 21:33:14 +01:00
|
|
|
const
|
|
|
|
{
|
2018-02-10 09:25:20 +01:00
|
|
|
const room::state state
|
2018-02-09 08:18:42 +01:00
|
|
|
{
|
2018-02-10 09:25:20 +01:00
|
|
|
room
|
2018-02-09 08:18:42 +01:00
|
|
|
};
|
|
|
|
|
2018-03-03 19:01:28 +01:00
|
|
|
return state.test("m.room.member", event::closure_bool{[&view]
|
2018-02-10 09:25:20 +01:00
|
|
|
(const m::event &event)
|
2018-02-09 08:18:42 +01:00
|
|
|
{
|
2018-02-10 22:03:13 +01:00
|
|
|
return view(event);
|
2018-02-10 09:25:20 +01:00
|
|
|
}});
|
2017-12-12 21:33:14 +01:00
|
|
|
}
|
|
|
|
|
2018-02-09 09:03:08 +01:00
|
|
|
bool
|
2018-02-10 22:03:13 +01:00
|
|
|
ircd::m::room::members::test(const string_view &membership,
|
|
|
|
const event::closure_bool &view)
|
2018-02-09 09:03:08 +01:00
|
|
|
const
|
|
|
|
{
|
2018-03-03 15:21:59 +01:00
|
|
|
// joined members optimization. Only possible when seeking
|
|
|
|
// membership="join" on the present state of the room.
|
|
|
|
if(!room.event_id && membership == "join")
|
|
|
|
{
|
|
|
|
const room::state state{room};
|
|
|
|
const room::origins origins{room};
|
|
|
|
return origins._test_([&view, &state]
|
|
|
|
(const string_view &key)
|
|
|
|
{
|
|
|
|
const string_view &member
|
|
|
|
{
|
2018-03-04 09:08:30 +01:00
|
|
|
std::get<1>(dbs::room_origins_key(key))
|
2018-03-03 15:21:59 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
bool ret{false};
|
2018-03-03 19:01:28 +01:00
|
|
|
state.get("m.room.member", member, [&view, &ret]
|
2018-03-03 15:21:59 +01:00
|
|
|
(const m::event &event)
|
|
|
|
{
|
|
|
|
ret = view(event);
|
|
|
|
});
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-02-10 22:03:13 +01:00
|
|
|
return test([&membership, &view](const event &event)
|
2018-02-09 09:03:08 +01:00
|
|
|
{
|
|
|
|
if(at<"membership"_>(event) == membership)
|
2018-02-10 22:03:13 +01:00
|
|
|
if(view(event))
|
|
|
|
return true;
|
2018-02-09 09:03:08 +01:00
|
|
|
|
2018-02-10 22:03:13 +01:00
|
|
|
return false;
|
2018-02-09 09:03:08 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-03-03 15:21:18 +01:00
|
|
|
size_t
|
|
|
|
ircd::m::room::members::count(const string_view &membership)
|
|
|
|
const
|
|
|
|
{
|
|
|
|
// joined members optimization. Only possible when seeking
|
|
|
|
// membership="join" on the present state of the room.
|
|
|
|
if(!room.event_id && membership == "join")
|
|
|
|
{
|
|
|
|
size_t ret{0};
|
|
|
|
const room::origins origins{room};
|
|
|
|
origins._test_([&ret](const string_view &)
|
|
|
|
{
|
|
|
|
++ret;
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
const room::state state
|
|
|
|
{
|
|
|
|
room
|
|
|
|
};
|
|
|
|
|
|
|
|
size_t ret{0};
|
2018-03-03 19:01:28 +01:00
|
|
|
state.for_each("m.room.member", event::closure{[&ret, &membership]
|
2018-03-03 15:21:18 +01:00
|
|
|
(const m::event &event)
|
|
|
|
{
|
|
|
|
ret += m::membership(event) == membership;
|
|
|
|
}});
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t
|
|
|
|
ircd::m::room::members::count()
|
|
|
|
const
|
|
|
|
{
|
|
|
|
const room::state state
|
|
|
|
{
|
|
|
|
room
|
|
|
|
};
|
|
|
|
|
2018-03-03 19:01:28 +01:00
|
|
|
return state.count("m.room.member");
|
2018-03-03 15:21:18 +01:00
|
|
|
}
|
|
|
|
|
2017-12-12 21:33:14 +01:00
|
|
|
//
|
2018-02-10 09:25:20 +01:00
|
|
|
// room::origins
|
2017-12-12 21:33:14 +01:00
|
|
|
//
|
|
|
|
|
2018-03-03 14:56:42 +01:00
|
|
|
size_t
|
|
|
|
ircd::m::room::origins::count()
|
|
|
|
const
|
|
|
|
{
|
|
|
|
size_t ret{0};
|
|
|
|
for_each([&ret](const string_view &)
|
|
|
|
{
|
|
|
|
++ret;
|
|
|
|
});
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2018-02-10 22:03:13 +01:00
|
|
|
void
|
|
|
|
ircd::m::room::origins::for_each(const closure &view)
|
|
|
|
const
|
|
|
|
{
|
|
|
|
test([&view](const string_view &origin)
|
|
|
|
{
|
|
|
|
view(origin);
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-12-12 21:33:14 +01:00
|
|
|
bool
|
2018-02-10 22:03:13 +01:00
|
|
|
ircd::m::room::origins::test(const closure_bool &view)
|
2017-12-12 21:33:14 +01:00
|
|
|
const
|
2018-03-03 15:06:15 +01:00
|
|
|
{
|
|
|
|
string_view last;
|
|
|
|
char lastbuf[256];
|
|
|
|
return _test_([&last, &lastbuf, &view]
|
|
|
|
(const string_view &key)
|
|
|
|
{
|
2018-03-04 09:08:30 +01:00
|
|
|
const string_view &origin
|
2018-03-03 15:06:15 +01:00
|
|
|
{
|
2018-03-04 09:08:30 +01:00
|
|
|
std::get<0>(dbs::room_origins_key(key))
|
2018-03-03 15:06:15 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
if(origin == last)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if(view(origin))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
last = { lastbuf, copy(lastbuf, origin) };
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
ircd::m::room::origins::_test_(const closure_bool &view)
|
|
|
|
const
|
2017-12-12 21:33:14 +01:00
|
|
|
{
|
2018-03-03 07:03:06 +01:00
|
|
|
db::index &index
|
2017-12-12 21:33:14 +01:00
|
|
|
{
|
2018-03-03 07:03:06 +01:00
|
|
|
dbs::room_origins
|
2017-12-12 21:33:14 +01:00
|
|
|
};
|
|
|
|
|
2018-03-03 14:40:53 +01:00
|
|
|
auto it
|
|
|
|
{
|
|
|
|
index.begin(room.room_id)
|
|
|
|
};
|
|
|
|
|
2017-12-12 21:33:14 +01:00
|
|
|
for(; bool(it); ++it)
|
|
|
|
{
|
2018-03-04 09:25:27 +01:00
|
|
|
const string_view &key
|
2018-03-03 14:40:53 +01:00
|
|
|
{
|
2018-03-04 09:25:27 +01:00
|
|
|
lstrip(it->first, "\0"_sv)
|
2018-03-03 14:40:53 +01:00
|
|
|
};
|
|
|
|
|
2018-03-03 15:06:15 +01:00
|
|
|
if(view(key))
|
2018-02-10 22:03:13 +01:00
|
|
|
return true;
|
2017-12-12 21:33:14 +01:00
|
|
|
}
|
|
|
|
|
2018-02-10 22:03:13 +01:00
|
|
|
return false;
|
2017-12-12 21:33:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
2018-02-10 09:25:20 +01:00
|
|
|
// room::state::tuple
|
2017-12-12 21:33:14 +01:00
|
|
|
//
|
|
|
|
|
2018-02-10 09:25:20 +01:00
|
|
|
ircd::m::room::state::tuple::tuple(const m::room &room,
|
|
|
|
const mutable_buffer &buf)
|
2017-12-12 21:33:14 +01:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2018-02-10 09:25:20 +01:00
|
|
|
ircd::m::room::state::tuple::tuple(const json::array &pdus)
|
2017-12-12 21:33:14 +01:00
|
|
|
{
|
|
|
|
for(const json::object &pdu : pdus)
|
|
|
|
{
|
|
|
|
const m::event &event{pdu};
|
|
|
|
json::set(*this, at<"type"_>(event), event);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string
|
2018-02-10 09:25:20 +01:00
|
|
|
ircd::m::pretty(const room::state::tuple &state)
|
2017-12-12 21:33:14 +01:00
|
|
|
{
|
|
|
|
std::string ret;
|
|
|
|
std::stringstream s;
|
|
|
|
pubsetbuf(s, ret, 2048);
|
|
|
|
|
|
|
|
const auto out{[&s]
|
|
|
|
(const string_view &key, const auto &event)
|
|
|
|
{
|
|
|
|
if(!json::get<"event_id"_>(event))
|
|
|
|
return;
|
|
|
|
|
|
|
|
s << std::setw(28) << std::right << key
|
|
|
|
<< " : " << at<"event_id"_>(event)
|
|
|
|
<< " " << json::get<"sender"_>(event)
|
|
|
|
<< " " << json::get<"depth"_>(event)
|
|
|
|
<< " " << pretty_oneline(event::prev{event})
|
|
|
|
<< std::endl;
|
|
|
|
}};
|
|
|
|
|
|
|
|
json::for_each(state, out);
|
|
|
|
resizebuf(s, ret);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string
|
2018-02-10 09:25:20 +01:00
|
|
|
ircd::m::pretty_oneline(const room::state::tuple &state)
|
2017-12-12 21:33:14 +01:00
|
|
|
{
|
|
|
|
std::string ret;
|
|
|
|
std::stringstream s;
|
|
|
|
pubsetbuf(s, ret, 1024);
|
|
|
|
|
|
|
|
const auto out{[&s]
|
|
|
|
(const string_view &key, const auto &event)
|
|
|
|
{
|
|
|
|
if(!json::get<"event_id"_>(event))
|
|
|
|
return;
|
|
|
|
|
|
|
|
s << key << " ";
|
|
|
|
}};
|
|
|
|
|
|
|
|
json::for_each(state, out);
|
|
|
|
resizebuf(s, ret);
|
|
|
|
return ret;
|
|
|
|
}
|