/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Copyright (C) 2017 Simon Stuerz * * * * This file is part of nymea:app * * * * This library is free software; you can redistribute it and/or * * modify it under the terms of the GNU Lesser General Public * * License as published by the Free Software Foundation; either * * version 2.1 of the License, or (at your option) any later version. * * * * This library 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 * * Lesser General Public License for more details. * * * * You should have received a copy of the GNU Lesser General Public * * License along with this library; If not, see * * . * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ #include "devicesproxy.h" #include "engine.h" #include "tagsmanager.h" DevicesProxy::DevicesProxy(QObject *parent) : QSortFilterProxyModel(parent) { connect(Engine::instance()->tagsManager()->tags(), &Tags::countChanged, this, &DevicesProxy::invalidateFilter); } QAbstractItemModel *DevicesProxy::devices() const { return m_devices; } void DevicesProxy::setDevices(QAbstractItemModel *devices) { if (m_devices != devices) { m_devices = devices; setSourceModel(devices); setSortRole(Devices::RoleName); sort(0); connect(devices, SIGNAL(countChanged()), this, SIGNAL(countChanged())); connect(devices, &QAbstractItemModel::dataChanged, this, [this]() { invalidateFilter(); emit countChanged(); }); emit devicesChanged(); emit countChanged(); } } QString DevicesProxy::filterTagId() const { return m_filterTagId; } void DevicesProxy::setFilterTagId(const QString &filterTag) { if (m_filterTagId != filterTagId()) { m_filterTagId = filterTag; emit filterTagIdChanged(); invalidateFilter(); emit countChanged(); } } QStringList DevicesProxy::shownInterfaces() const { return m_shownInterfaces; } void DevicesProxy::setShownInterfaces(const QStringList &shownInterfaces) { if (m_shownInterfaces != shownInterfaces) { m_shownInterfaces = shownInterfaces; emit shownInterfacesChanged(); invalidateFilter(); emit countChanged(); } } QStringList DevicesProxy::hiddenInterfaces() const { return m_hiddenInterfaces; } void DevicesProxy::setHiddenInterfaces(const QStringList &hiddenInterfaces) { if (m_hiddenInterfaces != hiddenInterfaces) { m_hiddenInterfaces = hiddenInterfaces; emit hiddenInterfacesChanged(); invalidateFilter(); emit countChanged(); } } bool DevicesProxy::filterBatteryCritical() const { return m_filterBatteryCritical; } void DevicesProxy::setFilterBatteryCritical(bool filterBatteryCritical) { if (m_filterBatteryCritical != filterBatteryCritical) { m_filterBatteryCritical = filterBatteryCritical; emit filterBatteryCriticalChanged(); invalidateFilter(); emit countChanged(); } } bool DevicesProxy::filterDisconnected() const { return m_filterDisconnected; } void DevicesProxy::setFilterDisconnected(bool filterDisconnected) { if (m_filterDisconnected != filterDisconnected) { m_filterDisconnected = filterDisconnected; emit filterDisconnectedChanged(); invalidateFilter(); emit countChanged(); } } bool DevicesProxy::groupByInterface() const { return m_groupByInterface; } void DevicesProxy::setGroupByInterface(bool groupByInterface) { if (m_groupByInterface != groupByInterface) { m_groupByInterface = groupByInterface; emit groupByInterfaceChanged(); invalidate(); } } Device *DevicesProxy::get(int index) const { return getInternal(mapToSource(this->index(index, 0)).row()); } Device *DevicesProxy::getInternal(int source_index) const { Devices* d = qobject_cast(m_devices); if (d) { return d->get(source_index); } DevicesProxy *dp = qobject_cast(m_devices); if (dp) { return dp->get(source_index); } return nullptr; } bool DevicesProxy::lessThan(const QModelIndex &left, const QModelIndex &right) const { if (m_groupByInterface) { QString leftBaseInterface = sourceModel()->data(left, Devices::RoleBaseInterface).toString(); QString rightBaseInterface = sourceModel()->data(right, Devices::RoleBaseInterface).toString(); if (leftBaseInterface != rightBaseInterface) { return QString::localeAwareCompare(leftBaseInterface, rightBaseInterface) < 0; } } QString leftName = sourceModel()->data(left, Devices::RoleName).toString(); QString rightName = sourceModel()->data(right, Devices::RoleName).toString(); return QString::localeAwareCompare(leftName, rightName) < 0; } bool DevicesProxy::filterAcceptsRow(int source_row, const QModelIndex &source_parent) const { Device *device = getInternal(source_row); if (!m_filterTagId.isEmpty()) { if (!Engine::instance()->tagsManager()->tags()->findDeviceTag(device->id().toString(), m_filterTagId)) { return false; } } DeviceClass *deviceClass = Engine::instance()->deviceManager()->deviceClasses()->getDeviceClass(device->deviceClassId()); if (!m_shownInterfaces.isEmpty()) { bool foundMatch = false; foreach (const QString &filterInterface, m_shownInterfaces) { if (deviceClass->interfaces().contains(filterInterface)) { foundMatch = true; continue; } } if (!foundMatch) { return false; } } if (!m_hiddenInterfaces.isEmpty()) { foreach (const QString &filterInterface, m_hiddenInterfaces) { if (deviceClass->interfaces().contains(filterInterface)) { return false; } } } if (m_filterBatteryCritical) { if (!deviceClass->interfaces().contains("battery") || device->stateValue(deviceClass->stateTypes()->findByName("batteryCritical")->id()).toBool() == false) { return false; } } if (m_filterDisconnected) { if (!deviceClass->interfaces().contains("connectable") || device->stateValue(deviceClass->stateTypes()->findByName("connected")->id()).toBool() == true) { return false; } } return QSortFilterProxyModel::filterAcceptsRow(source_row, source_parent); }