/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 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 . * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ /*! \class RuleEngine \brief The Engine that evaluates \l{Rule}{Rules} and finds \l{Action}{Actions} to be executed. \ingroup rules \inmodule server You can add, remove and update rules and query the engine for actions to be executed for a given \l{Event} described by an \l{EventDescriptor}. \sa Event, EventDescriptor, Rule, Action */ /*! \fn void RuleEngine::ruleAdded(const RuleId &ruleId) Will be emitted whenever a new \l{Rule} is added to this Engine. \a ruleId holds the id of the new rule.*/ /*! \fn void RuleEngine::ruleRemoved(const RuleId &ruleId) Will be emitted whenever a \l{Rule} is removed from this Engine. \a ruleId holds the id of the removed rule. You should remove any references or copies you hold for this rule.*/ /*! \enum RuleEngine::RuleError \value RuleErrorNoError No error happened. Everything is fine. \value RuleErrorInvalidRuleId The given RuleId is not valid. \value RuleErrorRuleNotFound Couldn't find a \l{Rule} with the given id. \value RuleErrorDeviceNotFound Couldn't find a \l{Device} with the given id. \value RuleErrorEventTypeNotFound Couldn't find a \l{EventType} with the given id. \value RuleErrorActionTypeNotFound Couldn't find a \l{ActionType} with the given id. \value RuleErrorInvalidParameter The given \l{Param} is not valid. \value RuleErrorMissingParameter One of the given \l{Param}s is missing. */ /*! \enum RuleEngine::RemovePolicy \value RemovePolicyCascade Remove the whole Rule. \value RemovePolicyUpdate Remove a \l{Device} from a rule. */ #include "ruleengine.h" #include "types/paramdescriptor.h" #include "types/eventdescriptor.h" #include "guhcore.h" #include "devicemanager.h" #include "plugin/device.h" #include #include #include #include #include /*! Constructs the RuleEngine with the given \a parent. Although it wouldn't harm to have multiple RuleEngines, there is one instance available from \l{GuhCore}. This one should be used instead of creating multiple ones. */ RuleEngine::RuleEngine(QObject *parent) : QObject(parent) { m_settingsFile = QCoreApplication::instance()->organizationName() + "/rules"; QSettings settings(m_settingsFile); qDebug() << "laoding rules from" << settings.fileName(); foreach (const QString &idString, settings.childGroups()) { qDebug() << "found rule" << idString; settings.beginGroup(idString); bool enabled = settings.value("enabled", true).toBool(); QList eventDescriptorList; settings.beginGroup("events"); foreach (QString eventGroupName, settings.childGroups()) { if (eventGroupName.startsWith("EventDescriptor-")) { settings.beginGroup(eventGroupName); EventTypeId eventTypeId(settings.value("eventTypeId").toString()); DeviceId deviceId(settings.value("deviceId").toString()); QList params; foreach (QString groupName, settings.childGroups()) { if (groupName.startsWith("ParamDescriptor-")) { settings.beginGroup(groupName); ParamDescriptor paramDescriptor(groupName.remove(QRegExp("^ParamDescriptor-")), settings.value("value")); paramDescriptor.setOperatorType((Types::ValueOperator)settings.value("operator").toInt()); params.append(paramDescriptor); settings.endGroup(); } } EventDescriptor eventDescriptor(eventTypeId, deviceId, params); eventDescriptorList.append(eventDescriptor); settings.endGroup(); } } settings.endGroup(); StateEvaluator stateEvaluator = StateEvaluator::loadFromSettings(settings, "stateEvaluator"); settings.beginGroup("actions"); QList actions; foreach (const QString &actionIdString, settings.childGroups()) { settings.beginGroup(actionIdString); Action action = Action(ActionTypeId(settings.value("actionTypeId").toString()), DeviceId(settings.value("deviceId").toString())); ParamList params; foreach (QString paramNameString, settings.childGroups()) { if (paramNameString.startsWith("Param-")) { settings.beginGroup(paramNameString); Param param(paramNameString.remove(QRegExp("^Param-")), settings.value("value")); params.append(param); settings.endGroup(); } } action.setParams(params); settings.endGroup(); actions.append(action); } settings.endGroup(); settings.endGroup(); Rule rule = Rule(RuleId(idString), eventDescriptorList, stateEvaluator, actions); rule.setEnabled(enabled); appendRule(rule); } } /*! Ask the Engine to evaluate all the rules for the given \a event. This will search all the \l{Rule}{Rules} triggered by the given \a event and evaluate their states in the system. It will return a list of all \l{Rule}{Rules} that are triggered or change its active state because of this \a event. */ QList RuleEngine::evaluateEvent(const Event &event) { Device *device = GuhCore::instance()->findConfiguredDevice(event.deviceId()); qDebug() << "got event:" << event << device->name() << event.eventTypeId(); QList rules; foreach (const RuleId &id, m_ruleIds) { Rule rule = m_rules.value(id); if (!rule.enabled()) { continue; } if (rule.eventDescriptors().isEmpty()) { // This rule seems to have only states, check on state changed if (containsState(rule.stateEvaluator(), event)) { if (rule.stateEvaluator().evaluate()) { if (m_activeRules.contains(rule.id())) { qDebug() << "Rule" << rule.id() << "still in active state."; } else { qDebug() << "Rule" << rule.id() << "entered active state."; rule.setActive(true); m_rules[rule.id()] = rule; m_activeRules.append(rule.id()); rules.append(rule); } } else { qDebug() << "Rule" << rule.id() << "left active state."; m_rules[rule.id()].setActive(false); m_activeRules.removeAll(rule.id()); } } } else { if (containsEvent(rule, event)) { if (rule.stateEvaluator().evaluate()) { qDebug() << "Rule" << rule.id() << "contains event" << event.eventId() << "and all states match."; rules.append(rule); } } } } return rules; } /*! Add a new \l{Rule} with the given \a ruleId , \a eventDescriptorList and \a actions to the engine. For convenience, this creates a Rule without any \l{State} comparison. */ RuleEngine::RuleError RuleEngine::addRule(const RuleId &ruleId, const QList &eventDescriptorList, const QList &actions, bool enabled) { return addRule(ruleId, eventDescriptorList, StateEvaluator(), actions, enabled); } /*! Add a new \l{Rule} with the given \a ruleId , \a eventDescriptorList, \a stateEvaluator and list of \a actions to the engine.*/ RuleEngine::RuleError RuleEngine::addRule(const RuleId &ruleId, const QList &eventDescriptorList, const StateEvaluator &stateEvaluator, const QList &actions) { if (ruleId.isNull()) { return RuleErrorInvalidRuleId; } if (!findRule(ruleId).id().isNull()) { qWarning() << "Already have a rule with this id!"; return RuleErrorInvalidRuleId; } foreach (const EventDescriptor &eventDescriptor, eventDescriptorList) { Device *device = GuhCore::instance()->findConfiguredDevice(eventDescriptor.deviceId()); if (!device) { qWarning() << "Cannot create rule. No configured device for eventTypeId" << eventDescriptor.eventTypeId(); return RuleErrorDeviceNotFound; } DeviceClass deviceClass = GuhCore::instance()->findDeviceClass(device->deviceClassId()); bool eventTypeFound = false; foreach (const EventType &eventType, deviceClass.eventTypes()) { if (eventType.id() == eventDescriptor.eventTypeId()) { eventTypeFound = true; } } if (!eventTypeFound) { qWarning() << "Cannot create rule. Device " + device->name() + " has no event type:" << eventDescriptor.eventTypeId(); return RuleErrorEventTypeNotFound; } } foreach (const Action &action, actions) { Device *device = GuhCore::instance()->findConfiguredDevice(action.deviceId()); if (!device) { qWarning() << "Cannot create rule. No configured device for actionTypeId" << action.actionTypeId(); return RuleErrorDeviceNotFound; } DeviceClass deviceClass = GuhCore::instance()->findDeviceClass(device->deviceClassId()); bool actionTypeFound = false; foreach (const ActionType &actionType, deviceClass.actionTypes()) { if (actionType.id() == action.actionTypeId()) { actionTypeFound = true; } } if (!actionTypeFound) { qWarning() << "Cannot create rule. Device " + device->name() + " has no action type:" << action.actionTypeId(); return RuleErrorActionTypeNotFound; } } if (actions.count() > 0) { qDebug() << "***** actions" << actions.last().actionTypeId() << actions.last().params(); } Rule rule = Rule(ruleId, eventDescriptorList, stateEvaluator, actions); rule.setEnabled(enabled); appendRule(rule); emit ruleAdded(rule.id()); QSettings settings(m_settingsFile); settings.beginGroup(rule.id().toString()); settings.setValue("enabled", enabled); settings.beginGroup("events"); for (int i = 0; i < eventDescriptorList.count(); i++) { const EventDescriptor &eventDescriptor = eventDescriptorList.at(i); settings.beginGroup("EventDescriptor-" + QString::number(i)); settings.setValue("deviceId", eventDescriptor.deviceId().toString()); settings.setValue("eventTypeId", eventDescriptor.eventTypeId()); foreach (const ParamDescriptor ¶mDescriptor, eventDescriptor.paramDescriptors()) { settings.beginGroup("ParamDescriptor-" + paramDescriptor.name()); settings.setValue("value", paramDescriptor.value()); settings.setValue("operator", paramDescriptor.operatorType()); settings.endGroup(); } settings.endGroup(); } settings.endGroup(); stateEvaluator.dumpToSettings(settings, "stateEvaluator"); settings.beginGroup("actions"); foreach (const Action &action, rule.actions()) { settings.beginGroup(action.actionTypeId().toString()); settings.setValue("deviceId", action.deviceId()); settings.setValue("actionTypeId", action.actionTypeId()); foreach (const Param ¶m, action.params()) { settings.beginGroup("Param-" + param.name()); settings.setValue("value", param.value()); settings.endGroup(); } settings.endGroup(); } settings.endGroup(); return RuleErrorNoError; } /*! Returns a list of all \l{Rule}{Rules} loaded in this Engine. Be aware that this does not necessarily reflect the order of the rules in the engine. Use ruleIds() if you need the correct order. */ QList RuleEngine::rules() const { return m_rules.values(); } /*! Returns a list of all ruleIds loaded in this Engine. */ QList RuleEngine::ruleIds() const { return m_ruleIds; } /*! Removes the \l{Rule} with the given \a ruleId from the Engine. Returns \l{RuleError} which describes whether the operation was successful or not. */ RuleEngine::RuleError RuleEngine::removeRule(const RuleId &ruleId) { int index = m_ruleIds.indexOf(ruleId); if (index < 0) { return RuleErrorRuleNotFound; } m_ruleIds.takeAt(index); m_rules.remove(ruleId); QSettings settings(m_settingsFile); settings.beginGroup(ruleId.toString()); settings.remove(""); settings.endGroup(); emit ruleRemoved(ruleId); return RuleErrorNoError; } /*! Returns the \l{Rule} with the given \a ruleId. If the \l{Rule} does not exist, it will return \l{Rule::Rule()} */ Rule RuleEngine::findRule(const RuleId &ruleId) { foreach (const Rule &rule, m_rules) { if (rule.id() == ruleId) { return rule; } } return Rule(); } /*! Returns a list of all \l{Rule}{Rules} loaded in this Engine, which contains a \l{Device} with the given \a deviceId. */ QList RuleEngine::findRules(const DeviceId &deviceId) { // Find all offending rules QList offendingRules; foreach (const Rule &rule, m_rules) { bool offending = false; foreach (const EventDescriptor &eventDescriptor, rule.eventDescriptors()) { if (eventDescriptor.deviceId() == deviceId) { offending = true; break; } } if (!offending && rule.stateEvaluator().containsDevice(deviceId)) { offending = true; } if (!offending) { foreach (const Action &action, rule.actions()) { if (action.deviceId() == deviceId) { offending = true; break; } } } if (offending) { offendingRules.append(rule.id()); } } return offendingRules; } /*! Removes a \l{Device} from a \l{Rule} with the given \a id and \a deviceId. */ void RuleEngine::removeDeviceFromRule(const RuleId &id, const DeviceId &deviceId) { if (!m_rules.contains(id)) { return; } Rule rule = m_rules.value(id); QList eventDescriptors = rule.eventDescriptors(); QList removeIndexes; for (int i = 0; i < eventDescriptors.count(); i++) { if (eventDescriptors.at(i).deviceId() == deviceId) { removeIndexes.append(i); } } while (removeIndexes.count() > 0) { eventDescriptors.takeAt(removeIndexes.takeLast()); } StateEvaluator stateEvalatuator = rule.stateEvaluator(); stateEvalatuator.removeDevice(deviceId); QList actions = rule.actions(); for (int i = 0; i < actions.count(); i++) { if (actions.at(i).deviceId() == deviceId) { removeIndexes.append(i); } } while (removeIndexes.count() > 0) { actions.takeAt(removeIndexes.takeLast()); } Rule newRule(id, eventDescriptors, stateEvalatuator, actions); m_rules[id] = newRule; } bool RuleEngine::containsEvent(const Rule &rule, const Event &event) { foreach (const EventDescriptor &eventDescriptor, rule.eventDescriptors()) { if (eventDescriptor == event) { return true; } } return false; } bool RuleEngine::containsState(const StateEvaluator &stateEvaluator, const Event &stateChangeEvent) { if (stateEvaluator.stateDescriptor().isValid() && stateEvaluator.stateDescriptor().stateTypeId().toString() == stateChangeEvent.eventTypeId().toString()) { return true; } foreach (const StateEvaluator &childEvaluator, stateEvaluator.childEvaluators()) { if (containsState(childEvaluator, stateChangeEvent)) { return true; } } return false; } void RuleEngine::appendRule(const Rule &rule) { m_rules.insert(rule.id(), rule); m_ruleIds.append(rule.id()); }