/** * (C) 2016 - 2017 KISTLER INSTRUMENTE AG, Winterthur, Switzerland * (C) 2016 - 2019 Stanislav Angelovic * * @file Connection.h * * Created on: Nov 8, 2016 * 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 . */ #ifndef SDBUS_CXX_INTERNAL_CONNECTION_H_ #define SDBUS_CXX_INTERNAL_CONNECTION_H_ #include #include #include "IConnection.h" #include "ScopeGuard.h" #include "ISdBus.h" #include #include #include namespace sdbus { namespace internal { class Connection : public sdbus::IConnection // External, public interface , public sdbus::internal::IConnection // Internal, private interface { public: enum class BusType { eSystem, eSession }; Connection(BusType type, std::unique_ptr&& interface); ~Connection() override; void requestName(const std::string& name) override; void releaseName(const std::string& name) override; void enterProcessingLoop() override; void enterProcessingLoopAsync() override; void leaveProcessingLoop() override; void addObjectManager(const std::string& objectPath) override; SlotPtr addObjectManager(const std::string& objectPath, void* /*dummy*/) override; const ISdBus& getSdBusInterface() const override; ISdBus& getSdBusInterface() override; SlotPtr addObjectVTable( const std::string& objectPath , const std::string& interfaceName , const sd_bus_vtable* vtable , void* userData ) override; MethodCall createMethodCall( const std::string& destination , const std::string& objectPath , const std::string& interfaceName , const std::string& methodName ) const override; Signal createSignal( const std::string& objectPath , const std::string& interfaceName , const std::string& signalName ) const override; void emitPropertiesChangedSignal( const std::string& objectPath , const std::string& interfaceName , const std::vector& propNames ) override; void emitInterfacesAddedSignal(const std::string& objectPath) override; void emitInterfacesAddedSignal( const std::string& objectPath , const std::vector& interfaces ) override; void emitInterfacesRemovedSignal(const std::string& objectPath) override; void emitInterfacesRemovedSignal( const std::string& objectPath , const std::vector& interfaces ) override; SlotPtr registerSignalHandler( const std::string& objectPath , const std::string& interfaceName , const std::string& signalName , sd_bus_message_handler_t callback , void* userData ) override; private: sd_bus* openBus(Connection::BusType type); void finishHandshake(sd_bus* bus); static int createProcessingLoopExitDescriptor(); static void closeProcessingLoopExitDescriptor(int fd); bool processPendingRequest(); bool waitForNextRequest(); static std::string composeSignalMatchFilter( const std::string& objectPath , const std::string& interfaceName , const std::string& signalName ); void notifyProcessingLoopToExit(); void clearExitNotification(); void joinWithProcessingLoop(); private: std::unique_ptr iface_; std::unique_ptr> bus_ {nullptr, [this](sd_bus* bus) { return iface_->sd_bus_flush_close_unref(bus); }}; BusType busType_; std::thread asyncLoopThread_; int loopExitFd_{-1}; }; }} #endif /* SDBUS_CXX_INTERNAL_CONNECTION_H_ */