mirror of https://github.com/nymea/nymea.git
111 lines
4.6 KiB
C++
111 lines
4.6 KiB
C++
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
* *
|
|
* Copyright (C) 2015 Simon Stuerz <simon.stuerz@guh.guru> *
|
|
* Copyright (C) 2014 Michael Zanetti <michael_zanetti@gmx.net> *
|
|
* *
|
|
* 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 <http://www.gnu.org/licenses/>. *
|
|
* *
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
/*!
|
|
\page wifidetector.html
|
|
\title WiFi Detector
|
|
|
|
\ingroup plugins
|
|
\ingroup network
|
|
|
|
This plugin allows to find and monitor network devices in your local network by using the MAC address.
|
|
|
|
\underline{NOTE}: the application \c nmap has to be installed.
|
|
|
|
\chapter Plugin properties
|
|
Following JSON file contains the definition and the description of all available \l{DeviceClass}{DeviceClasses}
|
|
and \l{Vendor}{Vendors} of this \l{DevicePlugin}.
|
|
|
|
Each \l{DeviceClass} has a list of \l{ParamType}{paramTypes}, \l{ActionType}{actionTypes}, \l{StateType}{stateTypes}
|
|
and \l{EventType}{eventTypes}. The \l{DeviceClass::CreateMethod}{createMethods} parameter describes how the \l{Device}
|
|
will be created in the system. A device can have more than one \l{DeviceClass::CreateMethod}{CreateMethod}.
|
|
The \l{DeviceClass::SetupMethod}{setupMethod} describes the setup method of the \l{Device}.
|
|
The detailed implementation of each \l{DeviceClass} can be found in the source code.
|
|
|
|
\note If a \l{StateType} has the parameter \tt{"writable": true}, an \l{ActionType} with the same uuid and \l{ParamType}{ParamTypes}
|
|
will be created automatically.
|
|
|
|
\quotefile plugins/deviceplugins/wifidetector/devicepluginwifidetector.json
|
|
*/
|
|
|
|
|
|
#include "devicepluginwifidetector.h"
|
|
|
|
#include "plugin/device.h"
|
|
#include "devicemanager.h"
|
|
#include "plugininfo.h"
|
|
|
|
#include <QDebug>
|
|
#include <QStringList>
|
|
|
|
DevicePluginWifiDetector::DevicePluginWifiDetector()
|
|
{
|
|
}
|
|
|
|
DeviceManager::HardwareResources DevicePluginWifiDetector::requiredHardware() const
|
|
{
|
|
return DeviceManager::HardwareResourceTimer;
|
|
}
|
|
|
|
void DevicePluginWifiDetector::guhTimer()
|
|
{
|
|
QProcess *p = new QProcess(this);
|
|
connect(p, SIGNAL(finished(int,QProcess::ExitStatus)), this, SLOT(processFinished(int,QProcess::ExitStatus)));
|
|
p->start(QStringLiteral("sudo"), QStringList() << "nmap" << "-sP" << "10.10.10.0/24");
|
|
}
|
|
|
|
void DevicePluginWifiDetector::processFinished(int exitCode, QProcess::ExitStatus exitStatus)
|
|
{
|
|
QProcess *p = static_cast<QProcess*>(sender());
|
|
p->deleteLater();
|
|
|
|
if (exitCode != 0 || exitStatus != QProcess::NormalExit) {
|
|
qWarning() << "error performing network scan:";
|
|
qWarning() << p->readAllStandardError();
|
|
return;
|
|
}
|
|
|
|
QList<Device*> watchedDevices = deviceManager()->findConfiguredDevices(supportedDevices().first().id());
|
|
if (watchedDevices.isEmpty()) {
|
|
return;
|
|
}
|
|
|
|
QStringList foundDevices;
|
|
while(p->canReadLine()) {
|
|
QString result = QString::fromLatin1(p->readLine());
|
|
if (result.startsWith("MAC Address:")) {
|
|
QStringList lineParts = result.split(' ');
|
|
if (lineParts.count() > 3) {
|
|
QString addr = lineParts.at(2);
|
|
foundDevices << addr.toLower();
|
|
}
|
|
}
|
|
}
|
|
|
|
foreach (Device *device, watchedDevices) {
|
|
bool wasInRange = device->stateValue(inRangeStateTypeId).toBool();
|
|
bool wasFound = foundDevices.contains(device->paramValue("mac").toString().toLower());
|
|
if (wasInRange != wasFound) {
|
|
device->setStateValue(inRangeStateTypeId, wasFound);
|
|
}
|
|
}
|
|
}
|