2022-09-29 11:12:09 -04:00
|
|
|
// Copyright 2022 The Matrix.org Foundation C.I.C.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
#![feature(test)]
|
2023-01-31 08:00:07 -05:00
|
|
|
use std::collections::BTreeSet;
|
2022-09-29 11:12:09 -04:00
|
|
|
use synapse::push::{
|
2023-02-14 14:02:19 -05:00
|
|
|
evaluator::PushRuleEvaluator, Condition, EventMatchCondition, FilteredPushRules, JsonValue,
|
|
|
|
PushRules, SimpleJsonValue,
|
2022-09-29 11:12:09 -04:00
|
|
|
};
|
|
|
|
use test::Bencher;
|
|
|
|
|
|
|
|
extern crate test;
|
|
|
|
|
|
|
|
#[bench]
|
|
|
|
fn bench_match_exact(b: &mut Bencher) {
|
|
|
|
let flattened_keys = [
|
2023-02-10 12:37:07 -05:00
|
|
|
(
|
|
|
|
"type".to_string(),
|
2023-02-14 14:02:19 -05:00
|
|
|
JsonValue::Value(SimpleJsonValue::Str("m.text".to_string())),
|
2023-02-10 12:37:07 -05:00
|
|
|
),
|
|
|
|
(
|
|
|
|
"room_id".to_string(),
|
2023-02-14 14:02:19 -05:00
|
|
|
JsonValue::Value(SimpleJsonValue::Str("!room:server".to_string())),
|
2023-02-10 12:37:07 -05:00
|
|
|
),
|
|
|
|
(
|
|
|
|
"content.body".to_string(),
|
2023-02-14 14:02:19 -05:00
|
|
|
JsonValue::Value(SimpleJsonValue::Str("test message".to_string())),
|
2023-02-10 12:37:07 -05:00
|
|
|
),
|
2022-09-29 11:12:09 -04:00
|
|
|
]
|
|
|
|
.into_iter()
|
|
|
|
.collect();
|
|
|
|
|
|
|
|
let eval = PushRuleEvaluator::py_new(
|
|
|
|
flattened_keys,
|
2023-02-03 11:28:20 -05:00
|
|
|
false,
|
2022-09-29 11:12:09 -04:00
|
|
|
10,
|
2022-12-02 13:04:28 -05:00
|
|
|
Some(0),
|
2022-09-29 11:12:09 -04:00
|
|
|
Default::default(),
|
|
|
|
Default::default(),
|
|
|
|
true,
|
2022-12-02 13:04:28 -05:00
|
|
|
vec![],
|
|
|
|
false,
|
2023-02-10 12:37:07 -05:00
|
|
|
false,
|
2023-02-14 14:02:19 -05:00
|
|
|
false,
|
2022-09-29 11:12:09 -04:00
|
|
|
)
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
let condition = Condition::Known(synapse::push::KnownCondition::EventMatch(
|
|
|
|
EventMatchCondition {
|
|
|
|
key: "room_id".into(),
|
2023-02-28 10:11:20 -05:00
|
|
|
pattern: "!room:server".into(),
|
2022-09-29 11:12:09 -04:00
|
|
|
},
|
|
|
|
));
|
|
|
|
|
|
|
|
let matched = eval.match_condition(&condition, None, None).unwrap();
|
|
|
|
assert!(matched, "Didn't match");
|
|
|
|
|
|
|
|
b.iter(|| eval.match_condition(&condition, None, None).unwrap());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[bench]
|
|
|
|
fn bench_match_word(b: &mut Bencher) {
|
|
|
|
let flattened_keys = [
|
2023-02-10 12:37:07 -05:00
|
|
|
(
|
|
|
|
"type".to_string(),
|
2023-02-14 14:02:19 -05:00
|
|
|
JsonValue::Value(SimpleJsonValue::Str("m.text".to_string())),
|
2023-02-10 12:37:07 -05:00
|
|
|
),
|
|
|
|
(
|
|
|
|
"room_id".to_string(),
|
2023-02-14 14:02:19 -05:00
|
|
|
JsonValue::Value(SimpleJsonValue::Str("!room:server".to_string())),
|
2023-02-10 12:37:07 -05:00
|
|
|
),
|
|
|
|
(
|
|
|
|
"content.body".to_string(),
|
2023-02-14 14:02:19 -05:00
|
|
|
JsonValue::Value(SimpleJsonValue::Str("test message".to_string())),
|
2023-02-10 12:37:07 -05:00
|
|
|
),
|
2022-09-29 11:12:09 -04:00
|
|
|
]
|
|
|
|
.into_iter()
|
|
|
|
.collect();
|
|
|
|
|
|
|
|
let eval = PushRuleEvaluator::py_new(
|
|
|
|
flattened_keys,
|
2023-02-03 11:28:20 -05:00
|
|
|
false,
|
2022-09-29 11:12:09 -04:00
|
|
|
10,
|
2022-12-02 13:04:28 -05:00
|
|
|
Some(0),
|
2022-09-29 11:12:09 -04:00
|
|
|
Default::default(),
|
|
|
|
Default::default(),
|
|
|
|
true,
|
2022-12-02 13:04:28 -05:00
|
|
|
vec![],
|
|
|
|
false,
|
2023-02-10 12:37:07 -05:00
|
|
|
false,
|
2023-02-14 14:02:19 -05:00
|
|
|
false,
|
2022-09-29 11:12:09 -04:00
|
|
|
)
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
let condition = Condition::Known(synapse::push::KnownCondition::EventMatch(
|
|
|
|
EventMatchCondition {
|
|
|
|
key: "content.body".into(),
|
2023-02-28 10:11:20 -05:00
|
|
|
pattern: "test".into(),
|
2022-09-29 11:12:09 -04:00
|
|
|
},
|
|
|
|
));
|
|
|
|
|
|
|
|
let matched = eval.match_condition(&condition, None, None).unwrap();
|
|
|
|
assert!(matched, "Didn't match");
|
|
|
|
|
|
|
|
b.iter(|| eval.match_condition(&condition, None, None).unwrap());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[bench]
|
|
|
|
fn bench_match_word_miss(b: &mut Bencher) {
|
|
|
|
let flattened_keys = [
|
2023-02-10 12:37:07 -05:00
|
|
|
(
|
|
|
|
"type".to_string(),
|
2023-02-14 14:02:19 -05:00
|
|
|
JsonValue::Value(SimpleJsonValue::Str("m.text".to_string())),
|
2023-02-10 12:37:07 -05:00
|
|
|
),
|
|
|
|
(
|
|
|
|
"room_id".to_string(),
|
2023-02-14 14:02:19 -05:00
|
|
|
JsonValue::Value(SimpleJsonValue::Str("!room:server".to_string())),
|
2023-02-10 12:37:07 -05:00
|
|
|
),
|
|
|
|
(
|
|
|
|
"content.body".to_string(),
|
2023-02-14 14:02:19 -05:00
|
|
|
JsonValue::Value(SimpleJsonValue::Str("test message".to_string())),
|
2023-02-10 12:37:07 -05:00
|
|
|
),
|
2022-09-29 11:12:09 -04:00
|
|
|
]
|
|
|
|
.into_iter()
|
|
|
|
.collect();
|
|
|
|
|
|
|
|
let eval = PushRuleEvaluator::py_new(
|
|
|
|
flattened_keys,
|
2023-02-03 11:28:20 -05:00
|
|
|
false,
|
2022-09-29 11:12:09 -04:00
|
|
|
10,
|
2022-12-02 13:04:28 -05:00
|
|
|
Some(0),
|
2022-09-29 11:12:09 -04:00
|
|
|
Default::default(),
|
|
|
|
Default::default(),
|
|
|
|
true,
|
2022-12-02 13:04:28 -05:00
|
|
|
vec![],
|
|
|
|
false,
|
2023-02-10 12:37:07 -05:00
|
|
|
false,
|
2023-02-14 14:02:19 -05:00
|
|
|
false,
|
2022-09-29 11:12:09 -04:00
|
|
|
)
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
let condition = Condition::Known(synapse::push::KnownCondition::EventMatch(
|
|
|
|
EventMatchCondition {
|
|
|
|
key: "content.body".into(),
|
2023-02-28 10:11:20 -05:00
|
|
|
pattern: "foobar".into(),
|
2022-09-29 11:12:09 -04:00
|
|
|
},
|
|
|
|
));
|
|
|
|
|
|
|
|
let matched = eval.match_condition(&condition, None, None).unwrap();
|
|
|
|
assert!(!matched, "Didn't match");
|
|
|
|
|
|
|
|
b.iter(|| eval.match_condition(&condition, None, None).unwrap());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[bench]
|
|
|
|
fn bench_eval_message(b: &mut Bencher) {
|
|
|
|
let flattened_keys = [
|
2023-02-10 12:37:07 -05:00
|
|
|
(
|
|
|
|
"type".to_string(),
|
2023-02-14 14:02:19 -05:00
|
|
|
JsonValue::Value(SimpleJsonValue::Str("m.text".to_string())),
|
2023-02-10 12:37:07 -05:00
|
|
|
),
|
|
|
|
(
|
|
|
|
"room_id".to_string(),
|
2023-02-14 14:02:19 -05:00
|
|
|
JsonValue::Value(SimpleJsonValue::Str("!room:server".to_string())),
|
2023-02-10 12:37:07 -05:00
|
|
|
),
|
|
|
|
(
|
|
|
|
"content.body".to_string(),
|
2023-02-14 14:02:19 -05:00
|
|
|
JsonValue::Value(SimpleJsonValue::Str("test message".to_string())),
|
2023-02-10 12:37:07 -05:00
|
|
|
),
|
2022-09-29 11:12:09 -04:00
|
|
|
]
|
|
|
|
.into_iter()
|
|
|
|
.collect();
|
|
|
|
|
|
|
|
let eval = PushRuleEvaluator::py_new(
|
|
|
|
flattened_keys,
|
2023-02-03 11:28:20 -05:00
|
|
|
false,
|
2022-09-29 11:12:09 -04:00
|
|
|
10,
|
2022-12-02 13:04:28 -05:00
|
|
|
Some(0),
|
2022-09-29 11:12:09 -04:00
|
|
|
Default::default(),
|
|
|
|
Default::default(),
|
|
|
|
true,
|
2022-12-02 13:04:28 -05:00
|
|
|
vec![],
|
|
|
|
false,
|
2023-02-10 12:37:07 -05:00
|
|
|
false,
|
2023-02-14 14:02:19 -05:00
|
|
|
false,
|
2022-09-29 11:12:09 -04:00
|
|
|
)
|
|
|
|
.unwrap();
|
|
|
|
|
2023-01-19 07:47:10 -05:00
|
|
|
let rules = FilteredPushRules::py_new(
|
|
|
|
PushRules::new(Vec::new()),
|
|
|
|
Default::default(),
|
|
|
|
false,
|
|
|
|
false,
|
|
|
|
false,
|
2023-01-31 08:00:07 -05:00
|
|
|
false,
|
2023-02-03 14:31:14 -05:00
|
|
|
false,
|
2023-01-19 07:47:10 -05:00
|
|
|
);
|
2022-09-29 11:12:09 -04:00
|
|
|
|
|
|
|
b.iter(|| eval.run(&rules, Some("bob"), Some("person")));
|
|
|
|
}
|