/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Copyright (C) 2017-2018 Simon Stürz * * * * This file is part of nymea. * * * * 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 "loggingcategories.h" #include "platform/platform.h" #include "platform/platformzeroconfcontroller.h" #include "hardwaremanagerimplementation.h" #include "hardware/plugintimermanagerimplementation.h" #include "hardware/network/upnp/upnpdiscoveryimplementation.h" #include "hardware/network/networkaccessmanagerimpl.h" #include "hardware/radio433/radio433brennenstuhl.h" #include "hardware/bluetoothlowenergy/bluetoothlowenergymanagerimplementation.h" #include "hardware/network/mqtt/mqttproviderimplementation.h" namespace nymeaserver { HardwareManagerImplementation::HardwareManagerImplementation(Platform *platform, MqttBroker *mqttBroker, QObject *parent) : HardwareManager(parent), m_platform(platform) { // Create network access manager for all resources, centralized // Note: configuration and proxy settings could be implemented here m_networkAccessManager = new QNetworkAccessManager(this); // Init hardware resources m_pluginTimerManager = new PluginTimerManagerImplementation(this); // Radio 433 MHz m_radio433 = new Radio433Brennenstuhl(this); // Network manager m_networkManager = new NetworkAccessManagerImpl(m_networkAccessManager, this); // UPnP discovery m_upnpDiscovery = new UpnpDiscoveryImplementation(m_networkAccessManager, this); // Bluetooth LE m_bluetoothLowEnergyManager = new BluetoothLowEnergyManagerImplementation(m_pluginTimerManager->registerTimer(10), this); qCDebug(dcHardware()) << "Hardware manager initialized successfully"; // Enable all the resources setResourceEnabled(m_pluginTimerManager, true); setResourceEnabled(m_radio433, true); if (m_networkManager->available()) setResourceEnabled(m_networkManager, true); if (m_upnpDiscovery->available()) setResourceEnabled(m_upnpDiscovery, true); if (m_platform->zeroConfController()->available()) setResourceEnabled(m_platform->zeroConfController(), true); if (m_bluetoothLowEnergyManager->available()) setResourceEnabled(m_bluetoothLowEnergyManager, true); m_mqttProvider = new MqttProviderImplementation(mqttBroker, this); } HardwareManagerImplementation::~HardwareManagerImplementation() { } Radio433 *HardwareManagerImplementation::radio433() { return m_radio433; } PluginTimerManager *HardwareManagerImplementation::pluginTimerManager() { return m_pluginTimerManager; } NetworkAccessManager *HardwareManagerImplementation::networkManager() { return m_networkManager; } UpnpDiscovery *HardwareManagerImplementation::upnpDiscovery() { return m_upnpDiscovery; } PlatformZeroConfController *HardwareManagerImplementation::zeroConfController() { return m_platform->zeroConfController(); } BluetoothLowEnergyManager *HardwareManagerImplementation::bluetoothLowEnergyManager() { return m_bluetoothLowEnergyManager; } MqttProvider *HardwareManagerImplementation::mqttProvider() { return m_mqttProvider; } }