2019-05-29 22:28:15 +02:00
/**
2022-07-05 17:08:35 +02:00
* (C) 2016 - 2021 KISTLER INSTRUMENTE AG, Winterthur, Switzerland
* (C) 2016 - 2022 Stanislav Angelovic <stanislav.angelovic@protonmail.com>
2019-05-29 22:28:15 +02:00
*
* @file StandardInterfaces.h
*
* Created on: Dec 13, 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 <http://www.gnu.org/licenses/>.
*/
# ifndef SDBUS_CXX_STANDARDINTERFACES_H_
# define SDBUS_CXX_STANDARDINTERFACES_H_
# include <sdbus-c++/IObject.h>
# include <sdbus-c++/IProxy.h>
# include <sdbus-c++/Types.h>
# include <string>
# include <map>
# include <vector>
namespace sdbus {
// Proxy for peer
class Peer_proxy
{
static constexpr const char * INTERFACE_NAME = " org.freedesktop.DBus.Peer " ;
protected :
Peer_proxy ( sdbus : : IProxy & proxy )
2022-09-01 11:04:45 +02:00
: proxy_ ( & proxy )
2019-05-29 22:28:15 +02:00
{
}
2022-09-01 11:04:45 +02:00
Peer_proxy ( const Peer_proxy & ) = delete ;
Peer_proxy & operator = ( const Peer_proxy & ) = delete ;
Peer_proxy ( Peer_proxy & & ) = default ;
Peer_proxy & operator = ( Peer_proxy & & ) = default ;
2019-06-10 22:54:16 +02:00
~ Peer_proxy ( ) = default ;
2023-12-30 18:57:10 +01:00
void registerProxy ( )
{
}
2019-05-29 22:28:15 +02:00
public :
void Ping ( )
{
2022-09-01 11:04:45 +02:00
proxy_ - > callMethod ( " Ping " ) . onInterface ( INTERFACE_NAME ) ;
2019-05-29 22:28:15 +02:00
}
std : : string GetMachineId ( )
{
std : : string machineUUID ;
2022-09-01 11:04:45 +02:00
proxy_ - > callMethod ( " GetMachineId " ) . onInterface ( INTERFACE_NAME ) . storeResultsTo ( machineUUID ) ;
2019-05-29 22:28:15 +02:00
return machineUUID ;
}
private :
2022-09-01 11:04:45 +02:00
sdbus : : IProxy * proxy_ ;
2019-05-29 22:28:15 +02:00
} ;
// Proxy for introspection
class Introspectable_proxy
{
static constexpr const char * INTERFACE_NAME = " org.freedesktop.DBus.Introspectable " ;
protected :
Introspectable_proxy ( sdbus : : IProxy & proxy )
2022-09-01 11:04:45 +02:00
: proxy_ ( & proxy )
2019-05-29 22:28:15 +02:00
{
}
2022-09-01 11:04:45 +02:00
Introspectable_proxy ( const Introspectable_proxy & ) = delete ;
Introspectable_proxy & operator = ( const Introspectable_proxy & ) = delete ;
Introspectable_proxy ( Introspectable_proxy & & ) = default ;
Introspectable_proxy & operator = ( Introspectable_proxy & & ) = default ;
2019-06-10 22:54:16 +02:00
~ Introspectable_proxy ( ) = default ;
2023-12-30 18:57:10 +01:00
void registerProxy ( )
{
}
2019-05-29 22:28:15 +02:00
public :
std : : string Introspect ( )
{
std : : string xml ;
2022-09-01 11:04:45 +02:00
proxy_ - > callMethod ( " Introspect " ) . onInterface ( INTERFACE_NAME ) . storeResultsTo ( xml ) ;
2019-05-29 22:28:15 +02:00
return xml ;
}
private :
2022-09-01 11:04:45 +02:00
sdbus : : IProxy * proxy_ ;
2019-05-29 22:28:15 +02:00
} ;
// Proxy for properties
class Properties_proxy
{
static constexpr const char * INTERFACE_NAME = " org.freedesktop.DBus.Properties " ;
protected :
Properties_proxy ( sdbus : : IProxy & proxy )
2022-09-01 11:04:45 +02:00
: proxy_ ( & proxy )
2023-12-30 18:57:10 +01:00
{
}
Properties_proxy ( const Properties_proxy & ) = delete ;
Properties_proxy & operator = ( const Properties_proxy & ) = delete ;
Properties_proxy ( Properties_proxy & & ) = default ;
Properties_proxy & operator = ( Properties_proxy & & ) = default ;
~ Properties_proxy ( ) = default ;
void registerProxy ( )
2019-05-29 22:28:15 +02:00
{
proxy_
2022-09-01 11:04:45 +02:00
- > uponSignal ( " PropertiesChanged " )
2019-05-29 22:28:15 +02:00
. onInterface ( INTERFACE_NAME )
. call ( [ this ] ( const std : : string & interfaceName
, const std : : map < std : : string , sdbus : : Variant > & changedProperties
, const std : : vector < std : : string > & invalidatedProperties )
{
this - > onPropertiesChanged ( interfaceName , changedProperties , invalidatedProperties ) ;
} ) ;
}
virtual void onPropertiesChanged ( const std : : string & interfaceName
, const std : : map < std : : string , sdbus : : Variant > & changedProperties
, const std : : vector < std : : string > & invalidatedProperties ) = 0 ;
public :
sdbus : : Variant Get ( const std : : string & interfaceName , const std : : string & propertyName )
{
2022-09-01 11:04:45 +02:00
return proxy_ - > getProperty ( propertyName ) . onInterface ( interfaceName ) ;
2019-05-29 22:28:15 +02:00
}
2023-09-14 10:54:57 +02:00
template < typename _Function >
PendingAsyncCall GetAsync ( const std : : string & interfaceName , const std : : string & propertyName , _Function & & callback )
{
return proxy_ - > getPropertyAsync ( propertyName ) . onInterface ( interfaceName ) . uponReplyInvoke ( std : : forward < _Function > ( callback ) ) ;
}
std : : future < sdbus : : Variant > GetAsync ( const std : : string & interfaceName , const std : : string & propertyName , with_future_t )
{
return proxy_ - > getPropertyAsync ( propertyName ) . onInterface ( interfaceName ) . getResultAsFuture ( ) ;
}
2019-05-29 22:28:15 +02:00
void Set ( const std : : string & interfaceName , const std : : string & propertyName , const sdbus : : Variant & value )
{
2022-09-01 11:04:45 +02:00
proxy_ - > setProperty ( propertyName ) . onInterface ( interfaceName ) . toValue ( value ) ;
2019-05-29 22:28:15 +02:00
}
2023-09-14 10:54:57 +02:00
void Set ( const std : : string & interfaceName , const std : : string & propertyName , const sdbus : : Variant & value , dont_expect_reply_t )
{
proxy_ - > setProperty ( propertyName ) . onInterface ( interfaceName ) . toValue ( value , dont_expect_reply ) ;
}
template < typename _Function >
PendingAsyncCall SetAsync ( const std : : string & interfaceName , const std : : string & propertyName , const sdbus : : Variant & value , _Function & & callback )
{
return proxy_ - > setPropertyAsync ( propertyName ) . onInterface ( interfaceName ) . toValue ( value ) . uponReplyInvoke ( std : : forward < _Function > ( callback ) ) ;
}
std : : future < void > SetAsync ( const std : : string & interfaceName , const std : : string & propertyName , const sdbus : : Variant & value , with_future_t )
{
return proxy_ - > setPropertyAsync ( propertyName ) . onInterface ( interfaceName ) . toValue ( value ) . getResultAsFuture ( ) ;
}
2019-05-29 22:28:15 +02:00
std : : map < std : : string , sdbus : : Variant > GetAll ( const std : : string & interfaceName )
{
2023-09-14 10:54:57 +02:00
return proxy_ - > getAllProperties ( ) . onInterface ( interfaceName ) ;
}
template < typename _Function >
PendingAsyncCall GetAllAsync ( const std : : string & interfaceName , _Function & & callback )
{
return proxy_ - > getAllPropertiesAsync ( ) . onInterface ( interfaceName ) . uponReplyInvoke ( std : : forward < _Function > ( callback ) ) ;
}
std : : future < std : : map < std : : string , sdbus : : Variant > > GetAllAsync ( const std : : string & interfaceName , with_future_t )
{
return proxy_ - > getAllPropertiesAsync ( ) . onInterface ( interfaceName ) . getResultAsFuture ( ) ;
2019-05-29 22:28:15 +02:00
}
private :
2022-09-01 11:04:45 +02:00
sdbus : : IProxy * proxy_ ;
2019-05-29 22:28:15 +02:00
} ;
// Proxy for object manager
class ObjectManager_proxy
{
static constexpr const char * INTERFACE_NAME = " org.freedesktop.DBus.ObjectManager " ;
protected :
ObjectManager_proxy ( sdbus : : IProxy & proxy )
2022-09-01 11:04:45 +02:00
: proxy_ ( & proxy )
2023-12-30 18:57:10 +01:00
{
}
ObjectManager_proxy ( const ObjectManager_proxy & ) = delete ;
ObjectManager_proxy & operator = ( const ObjectManager_proxy & ) = delete ;
ObjectManager_proxy ( ObjectManager_proxy & & ) = default ;
ObjectManager_proxy & operator = ( ObjectManager_proxy & & ) = default ;
~ ObjectManager_proxy ( ) = default ;
void registerProxy ( )
2019-05-29 22:28:15 +02:00
{
proxy_
2022-09-01 11:04:45 +02:00
- > uponSignal ( " InterfacesAdded " )
2019-05-29 22:28:15 +02:00
. onInterface ( INTERFACE_NAME )
. call ( [ this ] ( const sdbus : : ObjectPath & objectPath
, const std : : map < std : : string , std : : map < std : : string , sdbus : : Variant > > & interfacesAndProperties )
{
this - > onInterfacesAdded ( objectPath , interfacesAndProperties ) ;
} ) ;
2022-09-01 11:04:45 +02:00
proxy_ - > uponSignal ( " InterfacesRemoved " )
2019-05-29 22:28:15 +02:00
. onInterface ( INTERFACE_NAME )
. call ( [ this ] ( const sdbus : : ObjectPath & objectPath
, const std : : vector < std : : string > & interfaces )
{
this - > onInterfacesRemoved ( objectPath , interfaces ) ;
} ) ;
}
virtual void onInterfacesAdded ( const sdbus : : ObjectPath & objectPath
, const std : : map < std : : string , std : : map < std : : string , sdbus : : Variant > > & interfacesAndProperties ) = 0 ;
virtual void onInterfacesRemoved ( const sdbus : : ObjectPath & objectPath
, const std : : vector < std : : string > & interfaces ) = 0 ;
public :
std : : map < sdbus : : ObjectPath , std : : map < std : : string , std : : map < std : : string , sdbus : : Variant > > > GetManagedObjects ( )
{
std : : map < sdbus : : ObjectPath , std : : map < std : : string , std : : map < std : : string , sdbus : : Variant > > > objectsInterfacesAndProperties ;
2022-09-01 11:04:45 +02:00
proxy_ - > callMethod ( " GetManagedObjects " ) . onInterface ( INTERFACE_NAME ) . storeResultsTo ( objectsInterfacesAndProperties ) ;
2019-05-29 22:28:15 +02:00
return objectsInterfacesAndProperties ;
}
private :
2022-09-01 11:04:45 +02:00
sdbus : : IProxy * proxy_ ;
2019-05-29 22:28:15 +02:00
} ;
// Adaptors for the above-listed standard D-Bus interfaces are not necessary because the functionality
2021-10-14 15:53:51 +02:00
// is provided by underlying libsystemd implementation. The exception is Properties_adaptor,
// ObjectManager_adaptor and ManagedObject_adaptor, which provide convenience functionality to emit signals.
2019-06-03 22:02:15 +02:00
2019-06-03 23:47:27 +02:00
// Adaptor for properties
2019-06-03 22:02:15 +02:00
class Properties_adaptor
{
static constexpr const char * INTERFACE_NAME = " org.freedesktop.DBus.Properties " ;
protected :
2023-12-30 18:40:38 +01:00
Properties_adaptor ( sdbus : : IObject & object ) : object_ ( & object )
2019-06-03 22:02:15 +02:00
{
}
2022-09-01 11:04:45 +02:00
Properties_adaptor ( const Properties_adaptor & ) = delete ;
Properties_adaptor & operator = ( const Properties_adaptor & ) = delete ;
Properties_adaptor ( Properties_adaptor & & ) = default ;
Properties_adaptor & operator = ( Properties_adaptor & & ) = default ;
2019-06-10 22:54:16 +02:00
~ Properties_adaptor ( ) = default ;
2023-12-30 18:40:38 +01:00
void registerAdaptor ( )
{
}
2019-06-03 22:02:15 +02:00
public :
void emitPropertiesChangedSignal ( const std : : string & interfaceName , const std : : vector < std : : string > & properties )
{
2022-09-01 11:04:45 +02:00
object_ - > emitPropertiesChangedSignal ( interfaceName , properties ) ;
2019-06-03 22:02:15 +02:00
}
void emitPropertiesChangedSignal ( const std : : string & interfaceName )
{
2022-09-01 11:04:45 +02:00
object_ - > emitPropertiesChangedSignal ( interfaceName ) ;
2019-06-03 22:02:15 +02:00
}
private :
2022-09-01 11:04:45 +02:00
sdbus : : IObject * object_ ;
2019-06-03 22:02:15 +02:00
} ;
2021-10-14 15:53:51 +02:00
/*!
* @brief Object Manager Convenience Adaptor
*
* Adding this class as _Interfaces.. template parameter of class AdaptorInterfaces
* implements the *GetManagedObjects()* method of the [org.freedesktop.DBus.ObjectManager.GetManagedObjects](https://dbus.freedesktop.org/doc/dbus-specification.html#standard-interfaces-objectmanager)
* interface.
*
* Note that there can be multiple object managers in a path hierarchy. InterfacesAdded/InterfacesRemoved
* signals are sent from the closest object manager at either the same path or the closest parent path of an object.
*/
2019-06-03 23:47:27 +02:00
class ObjectManager_adaptor
{
static constexpr const char * INTERFACE_NAME = " org.freedesktop.DBus.ObjectManager " ;
protected :
2023-12-30 18:40:38 +01:00
explicit ObjectManager_adaptor ( sdbus : : IObject & object ) : object_ ( & object )
2019-06-03 23:47:27 +02:00
{
}
2022-09-01 11:04:45 +02:00
ObjectManager_adaptor ( const ObjectManager_adaptor & ) = delete ;
ObjectManager_adaptor & operator = ( const ObjectManager_adaptor & ) = delete ;
ObjectManager_adaptor ( ObjectManager_adaptor & & ) = default ;
ObjectManager_adaptor & operator = ( ObjectManager_adaptor & & ) = default ;
2019-06-10 22:54:16 +02:00
~ ObjectManager_adaptor ( ) = default ;
2023-12-30 18:40:38 +01:00
void registerAdaptor ( )
{
object_ - > addObjectManager ( ) ;
}
2021-10-14 15:53:51 +02:00
private :
2022-09-01 11:04:45 +02:00
sdbus : : IObject * object_ ;
2021-10-14 15:53:51 +02:00
} ;
/*!
* @brief Managed Object Convenience Adaptor
*
* Adding this class as _Interfaces.. template parameter of class AdaptorInterfaces
* will extend the resulting object adaptor with emitInterfacesAddedSignal()/emitInterfacesRemovedSignal()
* according to org.freedesktop.DBus.ObjectManager.InterfacesAdded/.InterfacesRemoved.
*
* Note that objects which implement this adaptor require an object manager (e.g via ObjectManager_adaptor) to be
* instantiated on one of it's parent object paths or the same path. InterfacesAdded/InterfacesRemoved
* signals are sent from the closest object manager at either the same path or the closest parent path of an object.
*/
class ManagedObject_adaptor
{
protected :
2022-09-01 11:04:45 +02:00
explicit ManagedObject_adaptor ( sdbus : : IObject & object )
: object_ ( & object )
2021-10-14 15:53:51 +02:00
{
}
2022-09-01 11:04:45 +02:00
ManagedObject_adaptor ( const ManagedObject_adaptor & ) = delete ;
ManagedObject_adaptor & operator = ( const ManagedObject_adaptor & ) = delete ;
ManagedObject_adaptor ( ManagedObject_adaptor & & ) = default ;
ManagedObject_adaptor & operator = ( ManagedObject_adaptor & & ) = default ;
2021-10-14 15:53:51 +02:00
~ ManagedObject_adaptor ( ) = default ;
2023-12-30 18:40:38 +01:00
void registerAdaptor ( )
{
}
2019-06-03 23:47:27 +02:00
public :
2021-10-14 15:53:51 +02:00
/*!
* @brief Emits InterfacesAdded signal for this object path
*
* See IObject::emitInterfacesAddedSignal().
*/
2019-06-03 23:47:27 +02:00
void emitInterfacesAddedSignal ( )
{
2022-09-01 11:04:45 +02:00
object_ - > emitInterfacesAddedSignal ( ) ;
2019-06-03 23:47:27 +02:00
}
2021-10-14 15:53:51 +02:00
/*!
* @brief Emits InterfacesAdded signal for this object path
*
* See IObject::emitInterfacesAddedSignal().
*/
2019-06-03 23:47:27 +02:00
void emitInterfacesAddedSignal ( const std : : vector < std : : string > & interfaces )
{
2022-09-01 11:04:45 +02:00
object_ - > emitInterfacesAddedSignal ( interfaces ) ;
2019-06-03 23:47:27 +02:00
}
2021-10-14 15:53:51 +02:00
/*!
* @brief Emits InterfacesRemoved signal for this object path
*
* See IObject::emitInterfacesRemovedSignal().
*/
2019-06-03 23:47:27 +02:00
void emitInterfacesRemovedSignal ( )
{
2022-09-01 11:04:45 +02:00
object_ - > emitInterfacesRemovedSignal ( ) ;
2019-06-03 23:47:27 +02:00
}
2021-10-14 15:53:51 +02:00
/*!
* @brief Emits InterfacesRemoved signal for this object path
*
* See IObject::emitInterfacesRemovedSignal().
*/
2019-06-03 23:47:27 +02:00
void emitInterfacesRemovedSignal ( const std : : vector < std : : string > & interfaces )
{
2022-09-01 11:04:45 +02:00
object_ - > emitInterfacesRemovedSignal ( interfaces ) ;
2019-06-03 23:47:27 +02:00
}
private :
2022-09-01 11:04:45 +02:00
sdbus : : IObject * object_ ;
2019-06-03 23:47:27 +02:00
} ;
2019-05-29 22:28:15 +02:00
}
# endif /* SDBUS_CXX_STANDARDINTERFACES_H_ */