2019-01-04 02:21:02 +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.
|
|
|
|
|
|
|
|
ircd::mapi::header
|
|
|
|
IRCD_MODULE
|
|
|
|
{
|
|
|
|
"Client Sync :Presence"
|
|
|
|
};
|
|
|
|
|
|
|
|
namespace ircd::m::sync
|
|
|
|
{
|
2019-02-24 20:59:53 +01:00
|
|
|
static bool presence_polylog(data &);
|
|
|
|
static bool presence_linear(data &);
|
2019-01-10 05:39:12 +01:00
|
|
|
|
2019-01-04 02:21:02 +01:00
|
|
|
extern item presence;
|
|
|
|
}
|
|
|
|
|
|
|
|
decltype(ircd::m::sync::presence)
|
|
|
|
ircd::m::sync::presence
|
|
|
|
{
|
|
|
|
"presence",
|
2019-01-04 23:47:01 +01:00
|
|
|
presence_polylog,
|
|
|
|
presence_linear,
|
2019-01-04 02:21:02 +01:00
|
|
|
};
|
|
|
|
|
2019-02-24 20:59:53 +01:00
|
|
|
bool
|
2019-01-04 23:47:01 +01:00
|
|
|
ircd::m::sync::presence_linear(data &data)
|
2019-01-04 02:21:02 +01:00
|
|
|
{
|
2019-02-28 03:24:12 +01:00
|
|
|
if(!data.event_idx)
|
|
|
|
return false;
|
|
|
|
|
2019-01-10 05:39:12 +01:00
|
|
|
assert(data.event);
|
2019-02-27 00:50:58 +01:00
|
|
|
const m::event &event{*data.event};
|
2019-01-10 05:39:12 +01:00
|
|
|
if(json::get<"type"_>(event) != "ircd.presence")
|
2019-02-24 20:59:53 +01:00
|
|
|
return false;
|
2019-01-10 05:39:12 +01:00
|
|
|
|
2019-02-27 00:50:58 +01:00
|
|
|
if(!my_host(json::get<"origin"_>(event)))
|
2019-02-24 20:59:53 +01:00
|
|
|
return false;
|
2019-01-10 05:39:12 +01:00
|
|
|
|
2019-03-08 22:42:54 +01:00
|
|
|
json::stack::object presence
|
|
|
|
{
|
|
|
|
*data.out, "presence"
|
|
|
|
};
|
|
|
|
|
2019-02-27 00:50:58 +01:00
|
|
|
json::stack::array array
|
|
|
|
{
|
|
|
|
*data.out, "events"
|
|
|
|
};
|
|
|
|
|
|
|
|
json::stack::object object
|
|
|
|
{
|
|
|
|
*data.out
|
|
|
|
};
|
|
|
|
|
2019-01-04 23:47:01 +01:00
|
|
|
// sender
|
|
|
|
json::stack::member
|
|
|
|
{
|
2019-02-27 00:50:58 +01:00
|
|
|
*data.out, "sender", unquote(at<"content"_>(event).get("user_id"))
|
2019-01-04 23:47:01 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
// type
|
|
|
|
json::stack::member
|
|
|
|
{
|
2019-02-27 00:50:58 +01:00
|
|
|
*data.out, "type", json::value{"m.presence"}
|
2019-01-04 23:47:01 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
// content
|
|
|
|
json::stack::member
|
|
|
|
{
|
2019-02-27 00:50:58 +01:00
|
|
|
*data.out, "content", at<"content"_>(event)
|
2019-01-04 23:47:01 +01:00
|
|
|
};
|
|
|
|
|
2019-02-24 20:59:53 +01:00
|
|
|
return true;
|
2019-01-04 23:47:01 +01:00
|
|
|
}
|
2019-01-04 02:21:02 +01:00
|
|
|
|
2019-02-24 20:59:53 +01:00
|
|
|
bool
|
2019-01-04 02:21:02 +01:00
|
|
|
ircd::m::sync::presence_polylog(data &data)
|
2019-01-09 00:10:06 +01:00
|
|
|
{
|
|
|
|
json::stack::array array
|
2019-01-04 02:21:02 +01:00
|
|
|
{
|
2019-02-27 00:50:58 +01:00
|
|
|
*data.out, "events"
|
2019-01-04 02:21:02 +01:00
|
|
|
};
|
|
|
|
|
2019-02-24 20:59:53 +01:00
|
|
|
bool ret{false};
|
2019-01-04 02:21:02 +01:00
|
|
|
ctx::mutex mutex;
|
2019-02-24 20:59:53 +01:00
|
|
|
const auto append_event{[&data, &array, &mutex, &ret]
|
2019-01-04 02:21:02 +01:00
|
|
|
(const json::object &event)
|
|
|
|
{
|
|
|
|
// Lock the json::stack for the append operations. This mutex will only be
|
|
|
|
// contended during a json::stack flush to the client; not during database
|
|
|
|
// queries leading to this.
|
2019-03-02 21:33:32 +01:00
|
|
|
const std::lock_guard l{mutex};
|
2019-02-24 20:59:53 +01:00
|
|
|
ret = true;
|
2019-01-10 05:39:12 +01:00
|
|
|
|
2019-01-09 00:10:06 +01:00
|
|
|
json::stack::object object
|
|
|
|
{
|
|
|
|
array
|
|
|
|
};
|
2019-01-04 02:21:02 +01:00
|
|
|
|
|
|
|
// sender
|
|
|
|
json::stack::member
|
|
|
|
{
|
|
|
|
object, "sender", unquote(event.get("user_id"))
|
|
|
|
};
|
|
|
|
|
|
|
|
// type
|
|
|
|
json::stack::member
|
|
|
|
{
|
|
|
|
object, "type", json::value{"m.presence"}
|
|
|
|
};
|
|
|
|
|
|
|
|
// content
|
|
|
|
json::stack::member
|
|
|
|
{
|
|
|
|
object, "content", event
|
|
|
|
};
|
|
|
|
}};
|
|
|
|
|
2019-01-12 02:41:23 +01:00
|
|
|
// Setup for parallelization.
|
|
|
|
static const size_t fibers(64); //TODO: conf
|
|
|
|
using buffer = std::array<char[m::id::MAX_SIZE+1], fibers>;
|
|
|
|
const auto buf(std::make_unique<buffer>());
|
2019-01-09 00:10:06 +01:00
|
|
|
std::array<string_view, fibers> q;
|
2019-01-04 02:21:02 +01:00
|
|
|
ctx::parallel<string_view> parallel
|
|
|
|
{
|
2019-01-12 02:41:23 +01:00
|
|
|
m::sync::pool, q, [&data, &append_event]
|
2019-01-21 20:53:57 +01:00
|
|
|
(const m::user::id user_id)
|
2019-01-09 00:10:06 +01:00
|
|
|
{
|
2019-01-27 00:24:29 +01:00
|
|
|
const event::idx event_idx
|
|
|
|
{
|
|
|
|
m::presence::get(std::nothrow, user_id)
|
|
|
|
};
|
|
|
|
|
|
|
|
if(apropos(data, event_idx))
|
|
|
|
m::get(std::nothrow, event_idx, "content", append_event);
|
2019-01-09 00:10:06 +01:00
|
|
|
}
|
2019-01-04 02:21:02 +01:00
|
|
|
};
|
|
|
|
|
2019-01-12 02:41:23 +01:00
|
|
|
// Iterate all of the users visible to our user in joined rooms.
|
2019-01-09 00:10:06 +01:00
|
|
|
const m::user::mitsein mitsein{data.user};
|
|
|
|
mitsein.for_each("join", [¶llel, &q, &buf]
|
|
|
|
(const m::user &user)
|
2019-01-04 02:21:02 +01:00
|
|
|
{
|
2019-01-12 02:41:23 +01:00
|
|
|
// Manual copy of the user_id string to the buffer and assignment
|
|
|
|
// of q at the next position. parallel.snd is the position in q
|
|
|
|
// which ctx::parallel wants us to store the next data at. The
|
|
|
|
// parallel() call doesn't return (blocks this context) until there's
|
|
|
|
// a next position available; propagating flow-control for the iter.
|
2019-01-21 20:53:57 +01:00
|
|
|
const auto pos(parallel.nextpos());
|
|
|
|
q[pos] = strlcpy(buf->at(pos), user.user_id);
|
2019-01-04 02:21:02 +01:00
|
|
|
parallel();
|
2019-01-09 00:10:06 +01:00
|
|
|
});
|
2019-02-24 20:59:53 +01:00
|
|
|
|
2019-03-04 01:23:10 +01:00
|
|
|
parallel.wait_done();
|
2019-02-24 20:59:53 +01:00
|
|
|
return ret;
|
2019-01-04 02:21:02 +01:00
|
|
|
}
|