0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-19 15:08:53 +02:00
construct/include/ircd/m/filter.h

91 lines
2.3 KiB
C
Raw Normal View History

2018-02-04 03:22:01 +01:00
// Matrix Construct
//
// Copyright (C) Matrix Construct Developers, Authors & Contributors
// Copyright (C) 2016-2018 Jason Volk <jason@zemos.net>
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
// copyright notice and this permission notice is present in all copies. The
// full license for this software is available in the LICENSE file.
2017-09-25 03:05:42 +02:00
#pragma once
#define HAVE_IRCD_M_FILTER_H
2017-10-25 18:47:03 +02:00
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wsubobject-linkage"
2017-09-25 03:05:42 +02:00
namespace ircd::m
{
struct filter;
struct room_filter;
struct event_filter;
struct room_event_filter;
}
struct ircd::m::event_filter
:json::tuple
<
json::property<name::limit, uint>,
json::property<name::types, json::array>,
json::property<name::senders, json::array>,
json::property<name::not_types, json::array>,
json::property<name::not_senders, json::array>
>
{
using super_type::tuple;
using super_type::operator=;
};
struct ircd::m::room_event_filter
:json::tuple
<
json::property<name::limit, uint>,
json::property<name::types, json::array>,
json::property<name::rooms, json::array>,
json::property<name::senders, json::array>,
json::property<name::not_types, json::array>,
json::property<name::not_rooms, json::array>,
json::property<name::not_senders, json::array>
>
{
using super_type::tuple;
using super_type::operator=;
};
struct ircd::m::room_filter
:json::tuple
<
json::property<name::rooms, json::array>,
json::property<name::not_rooms, json::array>,
json::property<name::state, room_event_filter>,
json::property<name::timeline, room_event_filter>,
json::property<name::ephemeral, room_event_filter>,
json::property<name::account_data, room_event_filter>,
json::property<name::include_leave, bool>
>
{
using super_type::tuple;
using super_type::operator=;
};
struct ircd::m::filter
:json::tuple
<
json::property<name::event_fields, json::array>,
json::property<name::event_format, string_view>,
json::property<name::account_data, event_filter>,
json::property<name::room, room_filter>,
json::property<name::presence, event_filter>
>
{
static room filters;
2017-09-25 03:05:42 +02:00
using super_type::tuple;
using super_type::operator=;
static size_t size(const string_view &filter_id);
filter(const string_view &filter_id, const mutable_buffer &);
2017-09-25 03:05:42 +02:00
};
2017-10-25 18:47:03 +02:00
#pragma GCC diagnostic pop