//------------------------------------------------------------------------------ // Basler pylon SDK // Copyright (c) 2018-2021 Basler AG // http://www.baslerweb.com //------------------------------------------------------------------------------ /*! \file \brief Contains the class CEnumParameter used to simplify access to %GenApi parameters. */ #ifndef INCLUDED_BASLER_PYLON_CENUMPARAMETER_H #define INCLUDED_BASLER_PYLON_CENUMPARAMETER_H #pragma once #include #include #include #ifdef _MSC_VER # pragma pack(push, PYLON_PACKING) #endif /* _MSC_VER */ #ifdef _MSC_VER # pragma warning( push ) # pragma warning( disable : 4275 ) // Class needs to have a dll interface to be used by clients of the class. # pragma warning( disable : 4250 ) // warning C4250: 'Pylon::CXYZParameter': inherits 'Pylon::CParameter::Pylon::CParameter::ZYX' via dominance #endif namespace Pylon { /*! \brief Extends the GenApi::IEnumeration interface with convenience methods. */ interface IEnumerationEx : virtual public GenApi::IEnumeration, virtual public IValueEx { using GenApi::IEnumeration::operator=; /*! \brief Gets the value of the parameter if the parameter is readable. Otherwise returns the default value. \return Returns the parameter value if the parameter is readable. Otherwise returns the default value. \param[in] defaultValue The default value returned if the parameter is not readable. \threading The method accesses the parameter multiple times. These accesses are not synchronized by a lock. \error Can throw exceptions if reading the value fails. */ virtual String_t GetValueOrDefault( const String_t& defaultValue ) = 0; /*! \brief Sets the value of the parameter if the parameter is writable and the value is contained in the set of settable enumeration values. \return Returns false if the parameter is not writable or the value is not contained in the set of settable enumeration values. \param[in] value The value to set. \threading The method accesses the parameter multiple times. These accesses are not synchronized by a lock. \error- Can throw exceptions if the preconditions are not met or if writing the value fails. */ virtual bool TrySetValue( const String_t& value ) = 0; /*! \brief Sets the value of the parameter to the first valid value in a list of values. Example: \code CEnumParameter pixelFormat(nodemap, "PixelFormat"); const char* list[] = { "BayerGR8", "BayerRG8", "BayerGB8", "BayerBG8", "Mono8", NULL }; pixelFormat.SetValue(list); \endcode \param[in] nullTerminatedList The list of possible values to set. The list is terminated by a NULL value. \pre
  • The parameter must be writable.
  • At least one value within the list passed must be contained in the set of settable enumeration values.
\threading The method accesses the parameter multiple times. These accesses are not synchronized by a lock. \error Can throw exceptions if the parameter is not writable, no value \c nullTerminatedList is settable, or writing the value fails. */ virtual void SetValue( const char** nullTerminatedList ) = 0; /*! \brief If the parameter is writable, sets the value of the parameter to the first valid value in a list of values. Example: \code CEnumParameter pixelFormat(nodemap, "PixelFormat"); const char* list[] = { "BayerGR8", "BayerRG8", "BayerGB8", "BayerBG8", "Mono8", NULL }; pixelFormat.TrySetValue(list); \endcode \param[in] nullTerminatedList The list of possible values to set. The list is terminated by a NULL value. \return Returns false if the parameter is not writable. \pre At least one value within the passed list must be contained in the set of settable enumeration values. \threading The method accesses the parameter multiple times. These accesses are not synchronized by a lock. \error Can throw exceptions if the parameter is not writable, no value \c nullTerminatedList is settable, or writing the value fails. */ virtual bool TrySetValue( const char** nullTerminatedList ) = 0; /*! \brief Indicates whether the given value can be set. \return Returns true if the value can be set, otherwise false. \param[in] value The value to be checked. \threading The method accesses the parameter multiple times. These accesses are not synchronized by a lock. \error Does not throw exceptions. */ virtual bool CanSetValue( const String_t& value ) = 0; /*! \brief Sets the value of the parameter. Calls FromString(). \param[in] value The value to set. \pre The value must be contained in the set of settable enumeration values. \threading The method accesses the parameter multiple times. These accesses are not synchronized by a lock. \error Can throw exceptions if the parameter is not writable, no value is valid, or writing the value fails. */ virtual void SetValue( const String_t& value ) = 0; /*! \brief Gets the value of the parameter. \return Returns the current parameter value. \pre The parameter must be readable. \threading The method accesses the parameter multiple times. These accesses are not synchronized by a lock. \error Can throw exceptions if the parameter is not readable or if reading the value fails. */ virtual String_t GetValue() = 0; /*! \brief Gets a list of all values of the enumeration that are currently settable. \param[out] values Returns a list of all values of the enumeration that are currently settable. \pre The parameter must be readable. \threading The method accesses the parameter multiple times. These accesses are not synchronized by a lock. \error Can throw exceptions. */ virtual void GetSettableValues( GenApi::StringList_t& values ) = 0; /*! \brief Gets a list of all values of the enumeration including the values that are currently not settable. \param[out] values Returns a list of all values of the enumeration including the values that are currently not settable. \pre The parameter must be readable. \threading The method accesses the parameter multiple times. These accesses are not synchronized by a lock. \error Can throw exceptions. */ virtual void GetAllValues( GenApi::StringList_t& values ) = 0; /*! \brief Gets an enumeration entry by its symbolic name. The entry is returned as a CParameter. This method can be used to access information about the enumeration value represented by the entry using CParameter::GetInfo(). \param[in] value The symbolic name of the enumeration entry, e.g., "Testimage1". \pre The parameter must be readable. \threading The method accesses the parameter multiple times. These accesses are not synchronized by a lock. \error Can throw exceptions. */ virtual CParameter GetEntryByNameAsParameter( const GenICam::gcstring& value ) = 0; /*! \brief Gets the currently selected entry of an enumeration. The entry is returned as a CParameter. This method can be used to access information about the enumeration value represented by the entry using CParameter::GetInfo(). \pre The parameter must be readable. \threading The method accesses the parameter multiple times. These accesses are not synchronized by a lock. \error Can throw exceptions. */ virtual CParameter GetCurrentEntryAsParameter() = 0; }; /*! \brief CEnumParameter class used to simplify access to %GenApi parameters. */ class PYLONBASE_API CEnumParameter : virtual public IEnumerationEx, public CParameter { public: /*! \brief Creates an empty CEnumParameter object. \error Does not throw C++ exceptions. */ CEnumParameter(); /*! \brief Creates a CEnumParameter object and attaches it to a node, typically retrieved for a nodemap calling GetNode(). \param[in] pNode The node to attach. \post
  • If the passed node does not match the parameter type, the parameter will be empty, see IsValid().
  • If the passed node does match the parameter type, it is attached and the parameter object can be used to access the node's functionality.
  • The parameter object must not be used to access the node's functionality if the source of the attached \c pNode has been destroyed. In this case, call Release() or attach a new node.
\error Does not throw C++ exceptions. */ explicit CEnumParameter( GenApi::INode* pNode ); /*! \brief Creates a CEnumParameter object and attaches it to a node of a matching type. \param[in] pEnumeration The node to attach. \post The parameter object must not be used to access the node's functionality if the source of the attached \c pEnumeration has been destroyed. In this case, call Release() or attach a new node. \error Does not throw C++ exceptions. */ explicit CEnumParameter( GenApi::IEnumeration* pEnumeration ); /*! \brief Creates a CEnumParameter object and attaches it to a node retrieved from the provided node map. \param[in] pNodeMap The node map. The source of the parameter. \param[in] pName The name of the parameter to attach. \post
  • If \c pNodeMap or \c name is NULL, the parameter will be empty, see IsValid().
  • If the node does not match the parameter type, the parameter will be empty, see IsValid().
  • If the node does match the parameter type, it is attached and the parameter object can be used to access the node's functionality.
  • The parameter object must not be used to access the node's functionality if the provided node map has been destroyed. In this case, call Release() or attach a new node.
\error The call to GenApi::INodeMap::GetNode can throw C++ exceptions. */ CEnumParameter( GenApi::INodeMap* pNodeMap, const char* pName ); /*! \brief Creates a CEnumParameter object and attaches it to a node retrieved from the provided node map. \param[in] nodeMap The node map. The source of the parameter. \param[in] pName The name of the parameter to attach. \post
  • If \c name is NULL, the parameter will be empty, see IsValid().
  • If the node does not match the parameter type, the parameter will be empty, see IsValid().
  • If the node does match the parameter type, it is attached and the parameter object can be used to access the node's functionality.
  • The parameter object must not be used to access the node's functionality if the provided node map has been destroyed. In this case, call Release() or attach a new node.
\error The call to GenApi::INodeMap::GetNode can throw C++ exceptions. */ CEnumParameter( GenApi::INodeMap& nodeMap, const char* pName ); /*! \brief Copies a CEnumParameter object. \param[in] rhs The object to copy. \error Does not throw C++ exceptions. */ CEnumParameter( const CEnumParameter& rhs ); /*! \brief Destroys the CEnumParameter object. Does not access the attached node. \error Does not throw C++ exceptions. */ virtual ~CEnumParameter(); /*! \brief Attaches a node retrieved from the provided node map. \param[in] pNodeMap The node map. The source of the parameter. \param[in] pName The name of the parameter to attach. \return Returns true if the node has been attached. \post
  • If \c pNodeMap or \c name is NULL, the parameter will be empty, see IsValid().
  • If the node does not match the parameter type, the parameter will be empty, see IsValid().
  • If the node does match the parameter type, it is attached and the parameter object can be used to access the node's functionality.
  • The parameter object must not be used to access the node's functionality if the provided node map has been destroyed. In this case, call Release() or attach a new node.
\error The call to GenApi::INodeMap::GetNode can throw C++ exceptions. */ virtual bool Attach( GenApi::INodeMap* pNodeMap, const char* pName ); /*! \brief Attaches a node retrieved from the provided node map. \param[in] nodeMap The node map. The source of the parameter. \param[in] pName The name of the parameter to attach. \return Returns true if the node has been attached. \post
  • If \c name is NULL the parameter will be empty, see IsValid().
  • If the node does not match the parameter type, the parameter will be empty, see IsValid().
  • If the node does match the parameter type, it is attached and the parameter object can be used to access the node's functionality.
  • The parameter object must not be used to access the node's functionality if the provided node map has been destroyed. In this case, call Release() or attach a new node.
\error The call to GenApi::INodeMap::GetNode can throw C++ exceptions. */ virtual bool Attach( GenApi::INodeMap& nodeMap, const char* pName ); /*! \brief Attaches a node, typically retrieved for a nodemap calling GetNode(). \param[in] pNode The node to assign. \return Returns true if the node has been attached. \post
  • If the node does not match the parameter type, the parameter will be empty, see IsValid().
  • If the node does match the parameter type, it is attached and the parameter object can be used to access the node's functionality.
  • The parameter object must not be used to access the node's functionality if the source of the attached \c pNode has been destroyed. In this case, call Release() or attach a new node.
\error Does not throw C++ exceptions. */ virtual bool Attach( GenApi::INode* pNode ); /*! \brief Assigns a node of the same type to the parameter object. \param[in] pEnumeration The node to assign. \return Returns true if the node has been attached. \error Does not throw C++ exceptions. */ virtual bool Attach( GenApi::IEnumeration* pEnumeration ); /*! \brief Assigns a CEnumParameter object. \param[in] rhs The object to assign. \error Does not throw C++ exceptions. */ CEnumParameter& operator=( const CEnumParameter& rhs ); /*! \brief Returns true if the same nodes are attached or both parameters are empty. \param[in] rhs The object to compare to. \return Returns true if the same nodes are attached or both parameters are empty. \error Does not throw C++ exceptions. */ virtual bool Equals( const CEnumParameter& rhs ) const; /*! \brief Returns true if the attached node pointer is equal. \param[in] pNode The node to compare to. \return Returns true if the attached node pointer is equal. \error Does not throw C++ exceptions. */ virtual bool Equals( const GenApi::INode* pNode ) const; /*! \brief Returns true if the attached node pointer is equal. \param[in] pEnumeration The node to compare to. \return Returns true if the attached node pointer is equal. \error Does not throw C++ exceptions. */ virtual bool Equals( const GenApi::IEnumeration* pEnumeration ) const; /*! \brief Releases the attached node. \error Does not throw C++ exceptions. */ virtual void Release(); // Implements IValueEx virtual bool IsValid() const; // Implements GenApi::IEnumeration virtual void GetSymbolics( GenApi::StringList_t& symbolics ); // Implements GenApi::IEnumeration virtual void GetEntries( GenApi::NodeList_t& entries ); // Implements GenApi::IEnumeration virtual GenApi::IEnumeration& operator=( const GenICam::gcstring& valueStr ); // Implements GenApi::IEnumeration virtual void SetIntValue( int64_t value, bool verify = true ); // Implements GenApi::IEnumeration virtual GenICam::gcstring operator*(); // Implements GenApi::IEnumeration virtual int64_t GetIntValue( bool verify = false, bool ignoreCache = false ); // Implements GenApi::IEnumeration virtual GenApi::IEnumEntry* GetEntryByName( const GenICam::gcstring& symbolic ); // Implements GenApi::IEnumeration virtual GenApi::IEnumEntry* GetEntry( const int64_t intValue ); // Implements GenApi::IEnumeration virtual GenApi::IEnumEntry* GetCurrentEntry( bool verify = false, bool ignoreCache = false ); // Implements IEnumerationEx virtual String_t GetValueOrDefault( const String_t& defaultValue ); // Implements IEnumerationEx virtual bool TrySetValue( const String_t& value ); // Implements IEnumerationEx virtual void SetValue( const char** nullTerminatedList ); // Implements IEnumerationEx virtual bool TrySetValue( const char** nullTerminatedList ); // Implements IEnumerationEx virtual bool CanSetValue( const String_t& value ); // Implements IEnumerationEx virtual void SetValue( const String_t& value ); // Implements IEnumerationEx virtual String_t GetValue(); // Implements IEnumerationEx virtual void GetSettableValues( GenApi::StringList_t& values ); // Implements IEnumerationEx virtual void GetAllValues( GenApi::StringList_t& values ); // Implements IEnumerationEx virtual CParameter GetEntryByNameAsParameter( const GenICam::gcstring& value ); // Implements IEnumerationEx virtual CParameter GetCurrentEntryAsParameter(); public: // Start - For using C++ enums instead of strings as enumeration values (native parameter access) class TableItem_t { public: TableItem_t() : m_szName( "" ) , m_sizeOfName( 0 ) { } TableItem_t( const char* name, size_t size ) : m_szName( name ) , m_sizeOfName( size ) { } inline const char* GetName() const { return m_szName; } inline size_t GetSizeOfName() const { return m_sizeOfName; } private: const char* m_szName; size_t m_sizeOfName; }; class Table_t { public: Table_t() : m_items( 0 ) , m_tableSize( 0 ) { } Table_t( const TableItem_t* items, size_t tableSize ) : m_items( items ) , m_tableSize( tableSize ) { } inline const TableItem_t* GetItems() const { return m_items; } inline size_t GetSizeOfTable() const { return m_tableSize; } private: const TableItem_t* m_items; size_t m_tableSize; }; protected: void SetValue( const Table_t& table, size_t index, bool verify ); size_t /*index*/ GetValue( const Table_t& table, bool verify, bool ignoreCache ); GenApi::IEnumEntry* GetEntry( const Table_t& table, size_t index ); bool CanSetValue( const Table_t& table, size_t index ); // End - For using C++ enums instead of strings as enumeration values (native parameter access) protected: GenApi::IEnumeration* m_pFeature; }; } #ifdef _MSC_VER # pragma warning( pop ) #endif #ifdef _MSC_VER # pragma pack(pop) #endif /* _MSC_VER */ #endif /* INCLUDED_BASLER_PYLON_CENUMPARAMETER_H */