/**************************************************************************** * * * This file is part of guh. * * * * Guh is free software: you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation, version 2 of the License. * * * * Guh is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with guh. If not, see . * * * ***************************************************************************/ #ifndef RULEENGINE_H #define RULEENGINE_H #include "rule.h" #include "types/event.h" #include #include #include class RuleEngine : public QObject { Q_OBJECT public: enum RuleError { RuleErrorNoError, RuleErrorRuleNotFound, RuleErrorDeviceNotFound, RuleErrorEventTypeNotFound }; explicit RuleEngine(QObject *parent = 0); QList evaluateEvent(const Event &event); RuleError addRule(const Event &event, const QList &actions); RuleError addRule(const Event &event, const QList &states, const QList &actions); QList rules() const; RuleError removeRule(const QUuid &ruleId); signals: void ruleAdded(const QUuid &ruleId); void ruleRemoved(const QUuid &ruleId); private: QString m_settingsFile; QList m_rules; }; #endif // RULEENGINE_H