DynExp
Highly flexible laboratory automation for dynamically changing experiments.
DynExpHardware::gRPCHardwareAdapter< gRPCStub > Class Template Reference

This template class provides basic functionality to design hardware adapters for instruments which communicate via gRPC. Derive from this abstract class to design respective hardware adapters. More...

+ Inheritance diagram for DynExpHardware::gRPCHardwareAdapter< gRPCStub >:

Public Types

using ParamsType = gRPCHardwareAdapterParams< gRPCStub >
 Type of the parameter class belonging to this Object type. Declare this alias in every derived class with the respective parameter class accompanying the derived Object. More...
 
using ConfigType = gRPCHardwareAdapterConfigurator< gRPCStub >
 Type of the configurator class belonging to this Object type. Declare this alias in every derived class with the respective configurator class accompanying the derived Object. More...
 
using gRPCStubType = gRPCStub
 gRPCStub gRPC stub class which is used to transfer data. More...
 
- Public Types inherited from DynExp::HardwareAdapterBase
using ParamsType = HardwareAdapterParamsBase
 Type of the parameter class belonging to this Object type. Declare this alias in every derived class with the respective parameter class accompanying the derived Object. More...
 
using ConfigType = HardwareAdapterConfiguratorBase
 Type of the configurator class belonging to this Object type. Declare this alias in every derived class with the respective configurator class accompanying the derived Object. More...
 
- Public Types inherited from DynExp::Object
using ParamsType = ParamsBase
 Type of the parameter class belonging to this Object type. Declare this alias in every derived class with the respective parameter class accompanying the derived Object. More...
 
using ParamsTypeSyncPtrType = Util::SynchronizedPointer< ParamsType >
 Alias for the return type of Object::GetParams(). Parameters wrapped into Util::SynchronizedPointer can be accessed in a thread-safe way. More...
 
using ParamsConstTypeSyncPtrType = Util::SynchronizedPointer< const ParamsType >
 Alias for the return type of Object::GetParams() const. Parameters wrapped into Util::SynchronizedPointer can be accessed in a thread-safe way. More...
 
using ConfigType = ConfiguratorBase
 Type of the configurator class belonging to this Object type. Declare this alias in every derived class with the respective configurator class accompanying the derived Object. More...
 
using ParamsGetterType = Util::CallableMemberWrapper< Object, decltype(&Object::GetParams)>
 Invoking an instance of this alias is supposed to call Object::GetParams() of the instance the Util::CallableMemberWrapper has been constructed with. More...
 

Public Member Functions

 gRPCHardwareAdapter (const std::thread::id OwnerThreadID, DynExp::ParamsBasePtrType &&Params)
 
virtual ~gRPCHardwareAdapter ()
 
virtual std::string GetName () const override
 Returns the name of this Object type. More...
 
virtual std::string GetCategory () const override
 Returns the category of this Object type. More...
 
- Public Member Functions inherited from DynExp::HardwareAdapterBase
 HardwareAdapterBase (const std::thread::id OwnerThreadID, ParamsBasePtrType &&Params)
 Constructs a hardware adapter instance. More...
 
virtual ~HardwareAdapterBase ()=0
 
void ResetException () const
 Sets LastException to nullptr in a thread-safe way. More...
 
bool IsConnected () const noexcept
 Determines the connection status of the hardware interface. More...
 
- Public Member Functions inherited from Util::INonCopyable
 INonCopyable (const INonCopyable &)=delete
 
INonCopyableoperator= (const INonCopyable &)=delete
 
- Public Member Functions inherited from DynExp::Object
ItemIDType GetID () const noexcept
 Returns the ID of this Object instance. Thread-safe since ID is const. More...
 
std::string GetCategoryAndName () const
 Builds a string from an Object's category and name to allow the user to identify an Object's type. More...
 
void EnsureReadyState (bool IsAutomaticStartup)
 Ensures that this Object instance is ready by possibly starting its worker thread or by opening connections to hardware devices. More...
 
void CheckLinkedObjectStates () const
 Checks whether Object instances this instance uses are in a ready state. Override CheckLinkedObjectStatesChild() to implement this behavior. More...
 
void Reset ()
 Resets this Object instance (including all its derived classes) by calling ResetImpl(). A reset implies that the derived classes reload all their parameters from Params and that all LinkedObjectWrapper instances owned by this Object instance become invalidated. More...
 
void BlockIfUnused (const std::chrono::milliseconds Timeout=Util::ILockable::DefaultTimeout)
 Blocks this Object instance setting Object::IsBlocked to true. Refer to Object::IsBlocked for the consequences. More...
 
ParamsConstTypeSyncPtrType GetParams (const std::chrono::milliseconds Timeout=GetParamsTimeoutDefault) const
 Locks the mutex of the parameter class instance Params assigned to this Object instance and returns a pointer to the locked Params. More...
 
ParamsTypeSyncPtrType GetParams (const std::chrono::milliseconds Timeout=GetParamsTimeoutDefault)
 Locks the mutex of the parameter class instance Params assigned to this Object instance and returns a pointer to the locked Params. More...
 
auto GetObjectName (const std::chrono::milliseconds Timeout=GetParamsTimeoutDefault) const
 Returns the name of this Object instance. More...
 
bool IsSharedUsageEnabled (const std::chrono::milliseconds Timeout=GetParamsTimeoutDefault) const
 Returns whether shared usage has been enabled for this Object instance. Refer to ParamsBase::UsageType. More...
 
void SetWarning (std::string Description, int ErrorCode) const
 Setter for Object::Warning. Sets the warning by a description and an error code. More...
 
void SetWarning (const Util::Exception &e) const
 Setter for Object::Warning. Sets the warning by retrieving the warning data from an exception e. More...
 
void ClearWarning () const
 Resets Object::Warning. More...
 
auto GetWarning () const
 Returns Object::Warning in a thread-safe way by copying its internal data. More...
 
std::exception_ptr GetException (const std::chrono::milliseconds Timeout=Util::ILockable::DefaultTimeout) const
 Returns a pointer to the exception which has caused this Object instance to fail. More...
 
bool IsReady () const
 Returns wheter this Object instance is ready (e.g. it is running or connected to a hardware device) and not blocked (refer to Object::IsBlocked). More...
 
auto GetUseCount (const std::chrono::milliseconds Timeout=Util::ILockable::DefaultTimeout) const
 Counts the registered useres in a thread-safe way. More...
 
bool IsUnused (const std::chrono::milliseconds Timeout=Util::ILockable::DefaultTimeout) const
 Returns whether this Object instance is used by other instances. More...
 
auto GetUserIDs (const std::chrono::milliseconds Timeout=Util::ILockable::DefaultTimeout) const
 Returns a list of the IDs of the registered users in a thread-safe way. More...
 
auto GetUserNamesString (const std::chrono::milliseconds Timeout=Util::ILockable::DefaultTimeout) const
 Builds a string describing which users are registered containing their object names, categories and type names in a thread-safe way. More...
 

Static Public Member Functions

constexpr static auto Name () noexcept
 Every derived class has to redefine this function. More...
 
constexpr static auto Category () noexcept
 Every derived class has to redefine this function. More...
 
- Static Public Member Functions inherited from DynExp::HardwareAdapterBase
constexpr static auto Category () noexcept
 Every derived class has to redefine this function. More...
 
- Static Public Member Functions inherited from DynExp::Object
static std::string CategoryAndNameToStr (const std::string &Category, const std::string &Name)
 Builds a string from an Object's category and name to allow the user to identify an Object's type. More...
 

Private Member Functions

void ResetImpl (dispatch_tag< HardwareAdapterBase >) override final
 
virtual void ResetImpl (dispatch_tag< gRPCHardwareAdapter >)
 
void EnsureReadyStateChild () override final
 Ensures that this Object instance is ready by possibly starting its worker thread or by opening connections to hardware devices. More...
 
bool IsReadyChild () const override final
 Returns wheter this Object instance is ready (e.g. it is running or connected to a hardware device) and not blocked (refer to Object::IsBlocked). More...
 
bool IsConnectedChild () const noexcept override final
 Determines the connection status of the hardware interface. More...
 
Override

Override by derived class.

virtual void OpenUnsafeChild ()
 Override to add additional initialization steps. Gets executed after the gRPC connection has been established. More...
 
virtual void CloseUnsafeChild ()
 Override to add additional termination steps. Gets executed before the gRPC connection is disconnected. More...
 

Private Attributes

std::unique_ptr< typename gRPCStub::Stub > StubPtr
 Pointer to the gRPC stub. More...
 

Not thread-safe

These functions must be called by a function calling AcquireLock() before.

gRPCStub::Stub & GetStubUnsafe () const
 Getter for the gRPC stub. More...
 
void CheckError (const grpc::Status Result, const std::source_location Location=std::source_location::current()) const
 Checks whether Result denotes an error state. If this is the case, a respective gRPCException is constructed from Result and thrown. More...
 
bool IsOpenedUnsafe () const noexcept
 Checks whether the gRPCHardwareAdapter is connected to a server. More...
 
void OpenUnsafe ()
 Establishes the connection to a gRPC server creating a new gRPC stub, which is stored in StubPtr. More...
 
void CloseUnsafe ()
 Closes the connection to a gRPC server. StubPtr becomes nullptr. More...
 

Additional Inherited Members

- Public Attributes inherited from DynExp::Object
LinkedObjectWrapperOnlyType LinkedObjectWrapperOnly
 Allow exclusive access to some of Object's private methods to any LinkedObjectWrapper<T>. More...
 
- Static Public Attributes inherited from DynExp::HardwareAdapterBase
static constexpr auto ShortTimeoutDefault = std::chrono::milliseconds(10)
 Default timeout e.g. used as a default for calls to Object::GetException(). More...
 
static constexpr auto HardwareOperationTimeout = std::chrono::milliseconds(100)
 Default timeout used to lock the mutex provided by the base class Util::ILockable to synchronize access to the hardware interface in between multiple instrument threads. More...
 
- Static Public Attributes inherited from Util::ILockable
static constexpr std::chrono::milliseconds DefaultTimeout = std::chrono::milliseconds(10)
 Duration which is used as a default timeout within all methods of this class if no different duration is passed to them. More...
 
- Static Public Attributes inherited from DynExp::Object
static constexpr std::chrono::milliseconds GetParamsTimeoutDefault = std::chrono::milliseconds(100)
 Default timeout used by Object::GetParams() to lock the mutex of the parameter instance assigned to this Object instance. More...
 
- Protected Types inherited from Util::ILockable
using MutexType = std::timed_mutex
 
using LockType = std::unique_lock< MutexType >
 
- Protected Member Functions inherited from DynExp::HardwareAdapterBase
void ThrowException (std::exception_ptr Exception) const
 Stores Exception in LastException, wraps it in a Util::ForwardedException and throws the wrapped excetion by calling Util::ForwardException(). More...
 
void ThrowExceptionUnsafe (std::exception_ptr Exception) const
 Stores Exception in LastException, wraps it in a Util::ForwardedException and throws the wrapped excetion by calling Util::ForwardException(). More...
 
void SetExceptionUnsafe (std::exception_ptr Exception) const
 Stores Exception in LastException. More...
 
auto GetExceptionUnsafe () const
 Getter for LastException. More...
 
- Protected Member Functions inherited from Util::ILockable
 ILockable ()=default
 
 ~ILockable ()=default
 
LockType AcquireLock (const std::chrono::milliseconds Timeout=DefaultTimeout) const
 Locks the internal mutex. Blocks until the mutex is locked or until the timeout duration is exceeded. More...
 
- Protected Member Functions inherited from Util::INonCopyable
constexpr INonCopyable ()=default
 
 ~INonCopyable ()=default
 
- Protected Member Functions inherited from DynExp::Object
 Object (const std::thread::id OwnerThreadID, ParamsBasePtrType &&Params)
 Constructs an Object instance. More...
 
virtual ~Object ()=0
 
void EnsureCallFromOwningThread () const
 Asserts that the call to this function is performed from the thread which constructed this Object instance (the thread with the id stored in Object::OwnerThreadID). More...
 
ParamsTypeSyncPtrType GetNonConstParams (const std::chrono::milliseconds Timeout=GetParamsTimeoutDefault) const
 Allows derived Objects to edit their own parameters - even in const task functions (for instruments) or event functions (for modules). More...
 
auto LockUserList (const std::chrono::milliseconds Timeout=Util::ILockable::DefaultTimeout)
 Locks the user list for thread-safe manipulation. More...
 
void DeregisterAllUnsafe ()
 Deregisters all users and notifies them that they need to check the states of their used linked objects. More...
 
auto GetUseCountUnsafe ()
 
auto GetUserNamesStringUnsafe () const
 
bool IsUnusedUnsafe ()
 Returns whether this Object instance is used by other instances (not thread-safe). More...
 

Detailed Description

template<typename gRPCStub>
class DynExpHardware::gRPCHardwareAdapter< gRPCStub >

This template class provides basic functionality to design hardware adapters for instruments which communicate via gRPC. Derive from this abstract class to design respective hardware adapters.

Template Parameters
gRPCStubgRPC stub class which is used to transfer data.

Definition at line 89 of file HardwareAdaptergRPC.h.

Member Typedef Documentation

◆ ConfigType

template<typename gRPCStub >
using DynExpHardware::gRPCHardwareAdapter< gRPCStub >::ConfigType = gRPCHardwareAdapterConfigurator<gRPCStub>

Type of the configurator class belonging to this Object type. Declare this alias in every derived class with the respective configurator class accompanying the derived Object.

Definition at line 93 of file HardwareAdaptergRPC.h.

◆ gRPCStubType

template<typename gRPCStub >
using DynExpHardware::gRPCHardwareAdapter< gRPCStub >::gRPCStubType = gRPCStub

gRPCStub gRPC stub class which is used to transfer data.

Definition at line 94 of file HardwareAdaptergRPC.h.

◆ ParamsType

template<typename gRPCStub >
using DynExpHardware::gRPCHardwareAdapter< gRPCStub >::ParamsType = gRPCHardwareAdapterParams<gRPCStub>

Type of the parameter class belonging to this Object type. Declare this alias in every derived class with the respective parameter class accompanying the derived Object.

Definition at line 92 of file HardwareAdaptergRPC.h.

Constructor & Destructor Documentation

◆ gRPCHardwareAdapter()

template<typename gRPCStub >
DynExpHardware::gRPCHardwareAdapter< gRPCStub >::gRPCHardwareAdapter ( const std::thread::id  OwnerThreadID,
DynExp::ParamsBasePtrType &&  Params 
)
inline
Parameters
Params
OwnerThreadIDThread id of the thread owning the Object instance to be constructed.
ParamsParameter class instance to be assigned to the Object instance to be constructed.
Exceptions
Util::InvalidArgExceptionis thrown if OwnerThreadID is an invalid thread id or if Params is nullptr.

Definition at line 99 of file HardwareAdaptergRPC.h.

◆ ~gRPCHardwareAdapter()

template<typename gRPCStub >
DynExpHardware::gRPCHardwareAdapter< gRPCStub >::~gRPCHardwareAdapter
virtual

Definition at line 177 of file HardwareAdaptergRPC.h.

Member Function Documentation

◆ Category()

template<typename gRPCStub >
constexpr static auto DynExpHardware::gRPCHardwareAdapter< gRPCStub >::Category ( )
inlinestaticconstexprnoexcept

Every derived class has to redefine this function.

Returns
Returns the category of this hardware adapter type.

Definition at line 97 of file HardwareAdaptergRPC.h.

◆ CheckError()

template<typename gRPCStub >
void DynExpHardware::gRPCHardwareAdapter< gRPCStub >::CheckError ( const grpc::Status  Result,
const std::source_location  Location = std::source_location::current() 
) const
protected

Checks whether Result denotes an error state. If this is the case, a respective gRPCException is constructed from Result and thrown.

Parameters
ResultgRPC status code. Refer to gRPC documentation.
LocationLocation from which this function is called. Do not pass anything.

Definition at line 193 of file HardwareAdaptergRPC.h.

◆ CloseUnsafe()

template<typename gRPCStub >
void DynExpHardware::gRPCHardwareAdapter< gRPCStub >::CloseUnsafe
private

Closes the connection to a gRPC server. StubPtr becomes nullptr.

Definition at line 262 of file HardwareAdaptergRPC.h.

◆ CloseUnsafeChild()

template<typename gRPCStub >
virtual void DynExpHardware::gRPCHardwareAdapter< gRPCStub >::CloseUnsafeChild ( )
inlineprivatevirtual

Override to add additional termination steps. Gets executed before the gRPC connection is disconnected.

Definition at line 170 of file HardwareAdaptergRPC.h.

◆ EnsureReadyStateChild()

template<typename gRPCStub >
void DynExpHardware::gRPCHardwareAdapter< gRPCStub >::EnsureReadyStateChild ( )
finaloverrideprivatevirtual

Ensures that this Object instance is ready by possibly starting its worker thread or by opening connections to hardware devices.

Implements DynExp::HardwareAdapterBase.

Definition at line 214 of file HardwareAdaptergRPC.h.

◆ GetCategory()

template<typename gRPCStub >
virtual std::string DynExpHardware::gRPCHardwareAdapter< gRPCStub >::GetCategory ( ) const
inlineoverridevirtual

Returns the category of this Object type.

Reimplemented from DynExp::HardwareAdapterBase.

Reimplemented in DynExpHardware::SIPulseStreamerHardwareAdapter.

Definition at line 104 of file HardwareAdaptergRPC.h.

◆ GetName()

template<typename gRPCStub >
virtual std::string DynExpHardware::gRPCHardwareAdapter< gRPCStub >::GetName ( ) const
inlineoverridevirtual

Returns the name of this Object type.

Implements DynExp::Object.

Reimplemented in DynExpHardware::SIPulseStreamerHardwareAdapter.

Definition at line 103 of file HardwareAdaptergRPC.h.

◆ GetStubUnsafe()

template<typename gRPCStub >
gRPCStub::Stub & DynExpHardware::gRPCHardwareAdapter< gRPCStub >::GetStubUnsafe
protected

Getter for the gRPC stub.

Returns
Returns the dereferenced StubPtr.
Exceptions
Util::NotAvailableExceptionis thrown if IsOpenedUnsafe() returns false.

Definition at line 184 of file HardwareAdaptergRPC.h.

◆ IsConnectedChild()

template<typename gRPCStub >
bool DynExpHardware::gRPCHardwareAdapter< gRPCStub >::IsConnectedChild ( ) const
finaloverrideprivatevirtualnoexcept

Determines the connection status of the hardware interface.

Returns
Returns true when the hardware adapter is connected to the physical hardware device, false otherwise.

Implements DynExp::HardwareAdapterBase.

Definition at line 233 of file HardwareAdaptergRPC.h.

◆ IsOpenedUnsafe()

template<typename gRPCStub >
bool DynExpHardware::gRPCHardwareAdapter< gRPCStub >::IsOpenedUnsafe ( ) const
inlineprotectednoexcept

Checks whether the gRPCHardwareAdapter is connected to a server.

Returns
Returns false if StubPtr is nullptr, true otherwise.

Definition at line 130 of file HardwareAdaptergRPC.h.

◆ IsReadyChild()

template<typename gRPCStub >
bool DynExpHardware::gRPCHardwareAdapter< gRPCStub >::IsReadyChild ( ) const
finaloverrideprivatevirtual

Returns wheter this Object instance is ready (e.g. it is running or connected to a hardware device) and not blocked (refer to Object::IsBlocked).

Returns
Returns true if this Object instance is ready, false otherwise.

Implements DynExp::Object.

Definition at line 222 of file HardwareAdaptergRPC.h.

◆ Name()

template<typename gRPCStub >
constexpr static auto DynExpHardware::gRPCHardwareAdapter< gRPCStub >::Name ( )
inlinestaticconstexprnoexcept

Every derived class has to redefine this function.

Returns
Returns the name of this DynExp object type.

Definition at line 96 of file HardwareAdaptergRPC.h.

◆ OpenUnsafe()

template<typename gRPCStub >
void DynExpHardware::gRPCHardwareAdapter< gRPCStub >::OpenUnsafe
private

Establishes the connection to a gRPC server creating a new gRPC stub, which is stored in StubPtr.

Definition at line 248 of file HardwareAdaptergRPC.h.

◆ OpenUnsafeChild()

template<typename gRPCStub >
virtual void DynExpHardware::gRPCHardwareAdapter< gRPCStub >::OpenUnsafeChild ( )
inlineprivatevirtual

Override to add additional initialization steps. Gets executed after the gRPC connection has been established.

Reimplemented in DynExpHardware::SIPulseStreamerHardwareAdapter.

Definition at line 165 of file HardwareAdaptergRPC.h.

◆ ResetImpl() [1/2]

template<typename gRPCStub >
virtual void DynExpHardware::gRPCHardwareAdapter< gRPCStub >::ResetImpl ( dispatch_tag< gRPCHardwareAdapter< gRPCStub > >  )
inlineprivatevirtual

Reimplemented in DynExpHardware::SIPulseStreamerHardwareAdapter.

Definition at line 135 of file HardwareAdaptergRPC.h.

◆ ResetImpl() [2/2]

template<typename gRPCStub >
void DynExpHardware::gRPCHardwareAdapter< gRPCStub >::ResetImpl ( dispatch_tag< HardwareAdapterBase )
finaloverrideprivate

Definition at line 203 of file HardwareAdaptergRPC.h.

Member Data Documentation

◆ StubPtr

template<typename gRPCStub >
std::unique_ptr<typename gRPCStub::Stub> DynExpHardware::gRPCHardwareAdapter< gRPCStub >::StubPtr
private

Pointer to the gRPC stub.

Definition at line 173 of file HardwareAdaptergRPC.h.


The documentation for this class was generated from the following file: