summaryrefslogtreecommitdiffstats
path: root/common/eventpreprocessor.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/eventpreprocessor.h')
-rw-r--r--common/eventpreprocessor.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/common/eventpreprocessor.h b/common/eventpreprocessor.h
new file mode 100644
index 0000000..3fde8b2
--- /dev/null
+++ b/common/eventpreprocessor.h
@@ -0,0 +1,35 @@
1/*
2 * Copyright (C) 2018 Christian Mollekopf <chrigi_1@fastmail.fm>
3 * Copyright (C) 2018 Rémi Nicole <minijackson@riseup.net>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the
17 * Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 */
20
21#include "pipeline.h"
22#include "sink_export.h"
23
24class SINK_EXPORT EventPropertyExtractor : public Sink::EntityPreprocessor<Sink::ApplicationDomain::Event>
25{
26 using Event = Sink::ApplicationDomain::Event;
27
28public:
29 virtual ~EventPropertyExtractor() {}
30 virtual void newEntity(Event &event) Q_DECL_OVERRIDE;
31 virtual void modifiedEntity(const Event &oldEvent, Event &newEvent) Q_DECL_OVERRIDE;
32
33private:
34 static void updatedIndexedProperties(Event &event, const QByteArray &rawIcal);
35};