-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Vitalii Arteev
committed
Oct 21, 2020
1 parent
63e4de6
commit fa68d46
Showing
5 changed files
with
207 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,116 @@ | ||
/********************************************************************** | ||
** | ||
** Copyright (C) 2020 Luxoft Sweden AB | ||
** | ||
** This file is part of the FaceLift project | ||
** | ||
** Permission is hereby granted, freIPCServiceAdapterBasee of charge, to any person | ||
** obtaining a copy of this software and associated documentation files | ||
** (the "Software"), to deal in the Software without restriction, | ||
** including without limitation the rights to use, copy, modify, merge, | ||
** publish, distribute, sublicense, and/or sell copies of the Software, | ||
** and to permit persons to whom the Software is furnished to do so, | ||
** subject to the following conditions: | ||
** | ||
** The above copyright notice and this permission notice shall be | ||
** included in all copies or substantial portions of the Software. | ||
** | ||
** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | ||
** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | ||
** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND | ||
** NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS | ||
** BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN | ||
** ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN | ||
** CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
** SOFTWARE. | ||
** | ||
** SPDX-License-Identifier: MIT | ||
** | ||
**********************************************************************/ | ||
|
||
#pragma once | ||
|
||
#include <memory> | ||
#include <QVector> | ||
#include <QObject> | ||
|
||
namespace facelift { | ||
|
||
class IObserver : public QObject | ||
{ | ||
Q_OBJECT | ||
public: | ||
virtual void IsReadyObserver(const std::shared_ptr<QMetaObject::Connection> &connection) = 0; | ||
}; | ||
|
||
class IsReadyObserver: public QObject | ||
{ | ||
Q_OBJECT | ||
QVector< QPointer<IObserver> > m_observers{}; | ||
|
||
public: | ||
IsReadyObserver() {} | ||
|
||
template<typename T, typename F> | ||
void watch(T const *object, F signal) | ||
{ | ||
QObject::connect(object, std::move(signal), this, &IsReadyObserver::readyChanged); | ||
} | ||
|
||
// Set observers | ||
void setObservers(const QVector< QPointer<IObserver> > &observers) { | ||
m_observers.clear(); | ||
for (auto observer: observers) { | ||
Q_ASSERT (observer != nullptr); | ||
m_observers.push_back(observer); | ||
auto connection = std::make_shared<QMetaObject::Connection>(); | ||
*connection = QObject::connect(this, &IsReadyObserver::readyChanged, observer, [observer, connection](){ | ||
observer->IsReadyObserver( connection ); | ||
}); | ||
} | ||
} | ||
|
||
// Get observers | ||
const QVector< QPointer<IObserver> > &getObservers() const { | ||
return m_observers; | ||
} | ||
|
||
Q_SIGNAL void readyChanged(); | ||
|
||
void onReadyChanged() { | ||
emit readyChanged(); | ||
} | ||
}; | ||
|
||
// Single-time observer which will unregister itself when done | ||
template<typename T> | ||
class SingleTimeObserver : public IObserver | ||
{ | ||
T m_function; | ||
|
||
public: | ||
explicit SingleTimeObserver(T function) : m_function{function} {} | ||
~SingleTimeObserver() = default; | ||
|
||
void IsReadyObserver(const std::shared_ptr<QMetaObject::Connection> &connection) override { | ||
m_function(); | ||
QObject::disconnect(*connection); | ||
} | ||
}; | ||
|
||
// Standard observer which will work for each signal | ||
template<typename T> | ||
class StandartObserver : public IObserver | ||
{ | ||
T m_function; | ||
|
||
public: | ||
explicit StandartObserver(T function) : m_function{function} {} | ||
~StandartObserver() = default; | ||
|
||
void IsReadyObserver(const std::shared_ptr<QMetaObject::Connection> &) override { | ||
m_function(); | ||
} | ||
}; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
#include <gtest/gtest.h> | ||
#include "IPCProxyBase.h" | ||
#include "InterfaceBase.h" | ||
#include <QSignalSpy> | ||
#include "observer.h" | ||
|
||
namespace { | ||
|
||
using namespace facelift; | ||
|
||
class Counter | ||
{ | ||
public: | ||
Counter() { m_value = 0; } | ||
|
||
void incValue() { | ||
++m_value; | ||
} | ||
int getValue() const { | ||
return m_value; | ||
} | ||
private: | ||
int m_value; | ||
}; | ||
|
||
class IPCProxyBaseTest : public ::testing::Test | ||
{ | ||
public: | ||
Counter c1; | ||
Counter c2; | ||
|
||
StandartObserver < std::function<void()> > obs1 { std::bind(&Counter::incValue, &c1) }; | ||
SingleTimeObserver< std::function<void()> > obs2 { std::bind(&Counter::incValue, &c2) }; | ||
|
||
IPCProxyBase<InterfaceBase> proxyBase{nullptr}; | ||
IsReadyObserver readyObserver{}; | ||
|
||
~IPCProxyBaseTest() {} | ||
}; | ||
|
||
TEST_F(IPCProxyBaseTest, testObservers) | ||
{ | ||
// Setup an object to watch out for: address and signal | ||
readyObserver.watch( &proxyBase, &IPCProxyBase<InterfaceBase>::readyChanged ); | ||
// Set observers | ||
const auto expected = QVector< QPointer<IObserver> >{ &obs1, &obs2 }; | ||
readyObserver.setObservers(expected); | ||
|
||
// Check values before calling a signal | ||
ASSERT_EQ(c1.getValue(), 0); // for StandartObserver | ||
ASSERT_EQ(c2.getValue(), 0); // for SingleTimeObserver | ||
|
||
// Check handle of signal | ||
QSignalSpy spy(&readyObserver, &IsReadyObserver::readyChanged ); | ||
ASSERT_EQ( spy.isValid(), true); | ||
spy.clear(); | ||
|
||
// Generate signal | ||
ASSERT_EQ(spy.count(), 0); | ||
proxyBase.readyChanged(); | ||
proxyBase.readyChanged(); | ||
proxyBase.readyChanged(); | ||
ASSERT_EQ(spy.count(), 3); | ||
|
||
// Check values after signal call | ||
ASSERT_EQ(c1.getValue(), 3); // for StandartObserver | ||
ASSERT_EQ(c2.getValue(), 1); // for SingleTimeObserver | ||
} | ||
|
||
} // end namespace |