/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Copyright (C) 2015 Simon Stuerz * * * * This file is part of nymea:app. * * * * nymea:app 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 3 of the License. * * * * nymea:app 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 nymea:app. If not, see . * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ #include "discoverymodel.h" #include "discoverydevice.h" DiscoveryModel::DiscoveryModel(QObject *parent) : QAbstractListModel(parent) { } int DiscoveryModel::rowCount(const QModelIndex &parent) const { Q_UNUSED(parent) return m_devices.count(); } QVariant DiscoveryModel::data(const QModelIndex &index, int role) const { if (index.row() < 0 || index.row() >= m_devices.count()) return QVariant(); DiscoveryDevice *device = m_devices.at(index.row()); switch (role) { case UuidRole: return device->uuid(); case NameRole: return device->name(); case VersionRole: return device->version(); } return QVariant(); } void DiscoveryModel::addDevice(DiscoveryDevice *device) { for (int i = 0; i < m_devices.count(); i++) { if (m_devices.at(i)->uuid() == device->uuid()) { qWarning() << "Device already added. Update existing device instead."; return; } } device->setParent(this); beginInsertRows(QModelIndex(), m_devices.count(), m_devices.count()); m_devices.append(device); endInsertRows(); emit countChanged(); } void DiscoveryModel::removeDevice(DiscoveryDevice *device) { int idx = m_devices.indexOf(device); if (idx == -1) { qWarning() << "Cannot remove DiscoveryDevice" << device << "as its nit in the model"; return; } beginRemoveRows(QModelIndex(), idx, idx); m_devices.takeAt(idx); endRemoveRows(); emit countChanged(); } DiscoveryDevice *DiscoveryModel::get(int index) const { if (index < 0 || index >= m_devices.count()) { return nullptr; } return m_devices.at(index); } DiscoveryDevice *DiscoveryModel::find(const QUuid &uuid) { foreach (DiscoveryDevice *dev, m_devices) { if (dev->uuid() == uuid) { return dev; } } return nullptr; } void DiscoveryModel::clearModel() { beginResetModel(); m_devices.clear(); endResetModel(); emit countChanged(); } QHash DiscoveryModel::roleNames() const { QHash roles; roles[UuidRole] = "uuid"; roles[NameRole] = "name"; roles[VersionRole] = "version"; return roles; }