1
0
Fork 0
mirror of https://git.jami.net/savoirfairelinux/jami-client-qt.git synced 2025-08-02 05:45:59 +02:00
jami-client-qt/src/connectivitymonitor.cpp
FuchtelJockel 8871db4986 build: fix includes, add glib and gio to CMakeLists.txt
First I added glib to cmake this fixed the glib.h not found error.
Then I got build errors from the missing GIO include as seen in the linked issue.
After adding the #include <gio/gio.h> the linker failed to find the gio library.
After adding the gio check to cmake all build issues were solved.

GitLab: #504
Change-Id: Iac537e10261f2e9dfa61029c4591e000851a378c
2021-08-30 11:07:08 -04:00

243 lines
6.4 KiB
C++

/*
* Copyright (C) 2019-2020 by Savoir-faire Linux
* Author: Andreas Traczyk <andreas.traczyk@savoirfairelinux.com>
*
* This program 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; either version 3 of the License, or
* (at your option) any later version.
*
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _WIN32
#include <glib.h>
#include <gio/gio.h>
#ifdef USE_LIBNM
#include <NetworkManager.h>
#endif
#endif
#include "connectivitymonitor.h"
#include <QDebug>
#ifdef Q_OS_WIN
#include <atlbase.h>
#include <netlistmgr.h>
class NetworkEventHandler : public INetworkListManagerEvents
{
public:
NetworkEventHandler()
: m_lRefCnt(1) {};
virtual ~NetworkEventHandler() {};
HRESULT STDMETHODCALLTYPE QueryInterface(REFIID riid, void** ppvObject)
{
HRESULT hr = S_OK;
if (IsEqualIID(riid, IID_IUnknown)) {
*ppvObject = (IUnknown*) this;
} else if (IsEqualIID(riid, IID_INetworkListManagerEvents)) {
*ppvObject = (INetworkListManagerEvents*) this;
} else {
hr = E_NOINTERFACE;
}
return hr;
};
ULONG STDMETHODCALLTYPE AddRef()
{
return (ULONG) InterlockedIncrement(&m_lRefCnt);
};
ULONG STDMETHODCALLTYPE Release()
{
LONG res = InterlockedDecrement(&m_lRefCnt);
if (res == 0) {
delete this;
}
return (ULONG) res;
};
virtual HRESULT STDMETHODCALLTYPE ConnectivityChanged(NLM_CONNECTIVITY newConnectivity)
{
qDebug() << "connectivity changed: " << newConnectivity;
if (connectivityChangedCb_) {
connectivityChangedCb_();
}
return S_OK;
};
void setOnConnectivityChangedCallBack(std::function<void()>&& cb)
{
connectivityChangedCb_ = cb;
};
private:
LONG m_lRefCnt;
std::function<void()> connectivityChangedCb_;
};
ConnectivityMonitor::ConnectivityMonitor(QObject* parent)
: QObject(parent)
{
CoInitialize(NULL);
IUnknown* pUnknown = NULL;
HRESULT hr = CoCreateInstance(CLSID_NetworkListManager,
NULL,
CLSCTX_ALL,
IID_IUnknown,
(void**) &pUnknown);
if (FAILED(hr)) {
return;
}
pNetworkListManager_ = NULL;
hr = pUnknown->QueryInterface(IID_INetworkListManager, (void**) &pNetworkListManager_);
if (FAILED(hr)) {
destroy();
pUnknown->Release();
return;
}
pCPContainer_ = NULL;
hr = pNetworkListManager_->QueryInterface(IID_IConnectionPointContainer,
(void**) &pCPContainer_);
if (FAILED(hr)) {
destroy();
pUnknown->Release();
return;
}
pConnectPoint_ = NULL;
hr = pCPContainer_->FindConnectionPoint(IID_INetworkListManagerEvents, &pConnectPoint_);
if (SUCCEEDED(hr)) {
cookie_ = NULL;
netEventHandler_ = new NetworkEventHandler;
netEventHandler_->setOnConnectivityChangedCallBack([this] { Q_EMIT connectivityChanged(); });
hr = pConnectPoint_->Advise((IUnknown*) netEventHandler_, &cookie_);
} else {
destroy();
}
pUnknown->Release();
}
bool
ConnectivityMonitor::isOnline()
{
if (!pNetworkListManager_) {
return false;
}
VARIANT_BOOL IsConnect = VARIANT_FALSE;
HRESULT hr = pNetworkListManager_->get_IsConnectedToInternet(&IsConnect);
if (SUCCEEDED(hr)) {
return IsConnect == VARIANT_TRUE;
}
return false;
}
void
ConnectivityMonitor::destroy()
{
if (pConnectPoint_) {
pConnectPoint_->Unadvise(cookie_);
pConnectPoint_->Release();
}
if (pCPContainer_) {
pCPContainer_->Release();
}
if (pNetworkListManager_) {
pNetworkListManager_->Release();
pNetworkListManager_ = NULL;
}
}
ConnectivityMonitor::~ConnectivityMonitor()
{
destroy();
CoUninitialize();
}
#else
#ifdef USE_LIBNM
static void
logConnectionInfo(NMActiveConnection *connection)
{
if (connection) {
qDebug() << "primary network connection:"
<< nm_active_connection_get_uuid(connection)
<< "default: "
<< (nm_active_connection_get_default(connection) ? "yes" : "no");
} else {
qWarning() << "no primary network connection detected, check network settings";
}
}
static void
primaryConnectionChanged(NMClient *nm, GParamSpec*, ConnectivityMonitor * cm)
{
auto connection = nm_client_get_primary_connection(nm);
logConnectionInfo(connection);
cm->connectivityChanged();
}
static void
nmClientCallback(G_GNUC_UNUSED GObject *source_object,
GAsyncResult *result,
ConnectivityMonitor * cm)
{
GError* error = nullptr;
if (auto nm_client = nm_client_new_finish(result, &error)) {
qDebug() << "NetworkManager client initialized, version: "
<< nm_client_get_version(nm_client)
<< ", daemon running:"
<< (nm_client_get_nm_running(nm_client) ? "yes" : "no")
<< ", networking enabled:"
<< (nm_client_networking_get_enabled(nm_client) ? "yes" : "no");
auto connection = nm_client_get_primary_connection(nm_client);
logConnectionInfo(connection);
g_signal_connect(nm_client, "notify::active-connections",
G_CALLBACK(primaryConnectionChanged), cm);
} else {
qWarning() << "error initializing NetworkManager client: "
<< error->message;
g_clear_error(&error);
}
}
#endif
ConnectivityMonitor::ConnectivityMonitor(QObject* parent)
: QObject(parent)
{
GCancellable * cancellable = g_cancellable_new();
#ifdef USE_LIBNM
nm_client_new_async(cancellable, (GAsyncReadyCallback)nmClientCallback, this);
#endif
}
ConnectivityMonitor::~ConnectivityMonitor()
{
qDebug() << "Destroying connectivity monitor";
}
bool
ConnectivityMonitor::isOnline()
{
return false;
}
#endif // Q_OS_WIN