forked from Kistler-Group/sdbus-cpp
123 lines
4.9 KiB
C++
123 lines
4.9 KiB
C++
/**
|
|
* (C) 2016 - 2017 KISTLER INSTRUMENTE AG, Winterthur, Switzerland
|
|
* (C) 2016 - 2019 Stanislav Angelovic <angelovic.s@gmail.com>
|
|
*
|
|
* @file TestAdaptor.h
|
|
*
|
|
* Created on: Jan 2, 2017
|
|
* Project: sdbus-c++
|
|
* Description: High-level D-Bus IPC C++ library based on sd-bus
|
|
*
|
|
* This file is part of sdbus-c++.
|
|
*
|
|
* sdbus-c++ 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.
|
|
*
|
|
* sdbus-c++ 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 sdbus-c++. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef SDBUS_CPP_INTEGRATIONTESTS_TESTPROXY_H_
|
|
#define SDBUS_CPP_INTEGRATIONTESTS_TESTPROXY_H_
|
|
|
|
#include "integrationtests-proxy.h"
|
|
#include "Defs.h"
|
|
#include <thread>
|
|
#include <chrono>
|
|
#include <atomic>
|
|
|
|
namespace sdbus { namespace test {
|
|
|
|
class ObjectManagerTestProxy final : public sdbus::ProxyInterfaces< sdbus::ObjectManager_proxy >
|
|
{
|
|
public:
|
|
ObjectManagerTestProxy(sdbus::IConnection& connection, std::string destination, std::string objectPath)
|
|
: ProxyInterfaces(connection, std::move(destination), std::move(objectPath))
|
|
{
|
|
registerProxy();
|
|
}
|
|
|
|
~ObjectManagerTestProxy()
|
|
{
|
|
unregisterProxy();
|
|
}
|
|
protected:
|
|
void onInterfacesAdded(const sdbus::ObjectPath& objectPath, const std::map<std::string, std::map<std::string, sdbus::Variant>>& interfacesAndProperties) override
|
|
{
|
|
if (m_onInterfacesAddedHandler)
|
|
m_onInterfacesAddedHandler(objectPath, interfacesAndProperties);
|
|
}
|
|
|
|
void onInterfacesRemoved(const sdbus::ObjectPath& objectPath, const std::vector<std::string>& interfaces) override
|
|
{
|
|
if (m_onInterfacesRemovedHandler)
|
|
m_onInterfacesRemovedHandler(objectPath, interfaces);
|
|
}
|
|
|
|
public: // for tests
|
|
std::function<void(const sdbus::ObjectPath&, const std::map<std::string, std::map<std::string, sdbus::Variant>>&)> m_onInterfacesAddedHandler;
|
|
std::function<void(const sdbus::ObjectPath&, const std::vector<std::string>&)> m_onInterfacesRemovedHandler;
|
|
};
|
|
|
|
class TestProxy final : public sdbus::ProxyInterfaces< org::sdbuscpp::integrationtests_proxy
|
|
, sdbus::Peer_proxy
|
|
, sdbus::Introspectable_proxy
|
|
, sdbus::Properties_proxy >
|
|
{
|
|
public:
|
|
TestProxy(std::string destination, std::string objectPath);
|
|
TestProxy(sdbus::IConnection& connection, std::string destination, std::string objectPath);
|
|
~TestProxy();
|
|
|
|
protected:
|
|
void onSimpleSignal() override;
|
|
void onSignalWithMap(const std::map<int32_t, std::string>& aMap) override;
|
|
void onSignalWithVariant(const sdbus::Variant& aVariant) override;
|
|
|
|
void onSignalWithoutRegistration(const sdbus::Struct<std::string, sdbus::Struct<sdbus::Signature>>& s);
|
|
void onDoOperationReply(uint32_t returnValue, const sdbus::Error* error);
|
|
|
|
// Signals of standard D-Bus interfaces
|
|
void onPropertiesChanged( const std::string& interfaceName
|
|
, const std::map<std::string, sdbus::Variant>& changedProperties
|
|
, const std::vector<std::string>& invalidatedProperties ) override;
|
|
|
|
public:
|
|
void installDoOperationClientSideAsyncReplyHandler(std::function<void(uint32_t res, const sdbus::Error* err)> handler);
|
|
uint32_t doOperationWith500msTimeout(uint32_t param);
|
|
sdbus::PendingAsyncCall doOperationClientSideAsync(uint32_t param);
|
|
void doErroneousOperationClientSideAsync();
|
|
void doOperationClientSideAsyncWith500msTimeout(uint32_t param);
|
|
int32_t callNonexistentMethod();
|
|
int32_t callMethodOnNonexistentInterface();
|
|
void setStateProperty(const std::string& value);
|
|
|
|
//private:
|
|
public: // for tests
|
|
int m_SimpleSignals = 0;
|
|
std::atomic<bool> m_gotSimpleSignal{false};
|
|
std::atomic<bool> m_gotSignalWithMap{false};
|
|
std::map<int32_t, std::string> m_mapFromSignal;
|
|
std::atomic<bool> m_gotSignalWithVariant{false};
|
|
double m_variantFromSignal;
|
|
std::atomic<bool> m_gotSignalWithSignature{false};
|
|
std::map<std::string, std::string> m_signatureFromSignal;
|
|
|
|
std::function<void(uint32_t res, const sdbus::Error* err)> m_DoOperationClientSideAsyncReplyHandler;
|
|
std::function<void(const std::string&, const std::map<std::string, sdbus::Variant>&, const std::vector<std::string>&)> m_onPropertiesChangedHandler;
|
|
|
|
const Message* m_signalMsg{};
|
|
std::string m_signalMemberName;
|
|
};
|
|
|
|
}}
|
|
|
|
#endif /* SDBUS_CPP_INTEGRATIONTESTS_TESTPROXY_H_ */
|