123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428 |
- //-----------------------------------------------------------------------------
- // Copyright (c) 2004-2021 Basler AG
- // Section: Vision Components
- // Project: GenApi
- //-----------------------------------------------------------------------------
- /*!
- \file
- \brief Interface to the PylonUsb Stream Grabber parameters
- */
- //-----------------------------------------------------------------------------
- // This file is generated automatically
- // Do not modify!
- //-----------------------------------------------------------------------------
- #ifndef Basler_UsbStreamParams_PARAMS_H
- #define Basler_UsbStreamParams_PARAMS_H
- #include <GenApi/IEnumerationT.h>
- #include <GenApi/NodeMapRef.h>
- #include <GenApi/DLLLoad.h>
- // common node types
- #include <GenApi/IBoolean.h>
- #include <GenApi/ICategory.h>
- #include <GenApi/ICommand.h>
- #include <GenApi/IEnumeration.h>
- #include <GenApi/IEnumEntry.h>
- #include <GenApi/IFloat.h>
- #include <GenApi/IInteger.h>
- #include <GenApi/IString.h>
- #include <GenApi/IRegister.h>
- #ifdef __GNUC__
- # undef GCC_VERSION
- # define GCC_VERSION (__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__)
- # undef GCC_DIAGNOSTIC_AWARE
- # define GCC_DIAGNOSTIC_AWARE (GCC_VERSION >= 40200)
- # undef GCC_DIAGNOSTIC_PUSH_POP_AWARE
- # define GCC_DIAGNOSTIC_PUSH_POP_AWARE (GCC_VERSION >= 40600)
- #else
- # undef GCC_DIAGNOSTIC_AWARE
- # define GCC_DIAGNOSTIC_AWARE 0
- #endif
- #ifdef __GNUC__
- // GCC_DIAGNOSTIC_AWARE ensures that the internal deprecated warnings can be ignored by gcc.
- // As a result older gcc will not generate warnings about really used deprecated features.
- # if GCC_DIAGNOSTIC_AWARE
- # define GENAPI_DEPRECATED_FEATURE __attribute__((deprecated))
- # else
- # define GENAPI_DEPRECATED_FEATURE
- # endif
- #elif defined(_MSC_VER)
- # define GENAPI_DEPRECATED_FEATURE __declspec(deprecated)
- #else
- # define GENAPI_DEPRECATED_FEATURE
- #endif
- #if GCC_DIAGNOSTIC_AWARE
- # if GCC_DIAGNOSTIC_PUSH_POP_AWARE
- # pragma GCC diagnostic push
- # endif
- # pragma GCC diagnostic ignored "-Wdeprecated-declarations"
- #endif
- //! The namespace containing the device's control interface and related enumeration types
- namespace Basler_UsbStreamParams
- {
- //**************************************************************************************************
- // Enumerations
- //**************************************************************************************************
- //! Valid values for Status
- enum StatusEnums
- {
- Status_Closed, //!<The stream grabber is closed.
- Status_Open, //!<The stream grabber is open.
- Status_Grabbing //!<The stream grabber is grabbing.
- };
- //**************************************************************************************************
- // Parameter class
- //**************************************************************************************************
- //! Interface to the PylonUsb Stream Grabber parameters
- class CUsbStreamParams_Params
- {
- //----------------------------------------------------------------------------------------------------------------
- // Implementation
- //----------------------------------------------------------------------------------------------------------------
- protected:
- // If you want to show the following methods in the help file
- // add the string HIDE_CLASS_METHODS to the ENABLED_SECTIONS tag in the doxygen file
- //! \cond HIDE_CLASS_METHODS
- //! Constructor
- CUsbStreamParams_Params( void );
- //! Destructor
- ~CUsbStreamParams_Params( void );
- //! Initializes the references
- void _Initialize( GENAPI_NAMESPACE::INodeMap* );
- //! Return the vendor of the camera
- const char* _GetVendorName( void );
- //! Returns the camera model name
- const char* _GetModelName( void );
- //! \endcond
- //----------------------------------------------------------------------------------------------------------------
- // References to features
- //----------------------------------------------------------------------------------------------------------------
- public:
- //! \name Root - Interface to the USB-specific stream parameters.
- //@{
- /*!
- \brief Maximum number of buffers that can be used simultaneously for grabbing images.
- \b Visibility = Expert
- */
- GENAPI_NAMESPACE::IInteger& MaxNumBuffer;
- //@}
- //! \name Root - Interface to the USB-specific stream parameters.
- //@{
- /*!
- \brief Maximum size (in bytes) of a buffer used for grabbing images.
- \b Visibility = Expert
- */
- GENAPI_NAMESPACE::IInteger& MaxBufferSize;
- //@}
- //! \name Root - Interface to the USB-specific stream parameters.
- //@{
- /*!
- \brief Maximum USB data transfer size in bytes.
- The default value is appropriate for most applications.
- Reducing the value may cause a higher CPU load. USB host adapter drivers may require
- to decrease the value in case the application fails to receive the image stream. The maximum value
- for the Maximum Transfer Size depends on the operating system version and may be limited by the host adapter drivers.
- \b Visibility = Guru
- */
- GENAPI_NAMESPACE::IInteger& MaxTransferSize;
- //@}
- //! \name Root - Interface to the USB-specific stream parameters.
- //@{
- /*!
- \brief Maximum number of USB request blocks (URBs) to be enqueued simultaneously.
- \b Visibility = Guru
- */
- GENAPI_NAMESPACE::IInteger& NumMaxQueuedUrbs;
- //@}
- //! \name Root - Interface to the USB-specific stream parameters.
- //@{
- /*!
- \brief Priority of the thread that handles USB requests from the stream interface.
- \b Visibility = Guru
- */
- GENAPI_NAMESPACE::IInteger& TransferLoopThreadPriority;
- //@}
- //! \name Root - Interface to the USB-specific stream parameters.
- //@{
- /*!
- \brief Timeout for payload and trailer transfers in milliseconds.
- Timeout for payload and trailer transfers in milliseconds.
- \b Visibility = Invisible
- */
- GENAPI_NAMESPACE::IInteger& TransferTimeout;
- //@}
- //! \name Statistic - Statistical data.
- //@{
- /*!
- \brief GigE cameras: Number of frames received. Other cameras: Number of buffers processed.
- \b Visibility = Expert
- */
- GENAPI_NAMESPACE::IInteger& Statistic_Total_Buffer_Count;
- //@}
- //! \name Statistic - Statistical data.
- //@{
- /*!
- \brief GigE cameras: Number of buffers with at least one failed packet. A packet is considered failed if its status is not 'success'. Other cameras: Number of buffers that returned with an error status.
- \b Visibility = Expert
- */
- GENAPI_NAMESPACE::IInteger& Statistic_Failed_Buffer_Count;
- //@}
- //! \name Statistic - Statistical data.
- //@{
- /*!
- \brief Status code of the last failed buffer.
- \b Visibility = Expert
- */
- GENAPI_NAMESPACE::IInteger& Statistic_Last_Failed_Buffer_Status;
- //@}
- //! \name Statistic - Statistical data.
- //@{
- /*!
- \brief Status code of the last failed buffer.
- \b Visibility = Expert
- */
- GENAPI_NAMESPACE::IString& Statistic_Last_Failed_Buffer_Status_Text;
- //@}
- //! \name Statistic - Statistical data.
- //@{
- /*!
- \brief Number of corrupt or lost frames between successfully grabbed images.
- \b Visibility = Expert
- */
- GENAPI_NAMESPACE::IInteger& Statistic_Missed_Frame_Count;
- //@}
- //! \name Statistic - Statistical data.
- //@{
- /*!
- \brief Number of stream resynchronizations.
- \b Visibility = Expert
- */
- GENAPI_NAMESPACE::IInteger& Statistic_Resynchronization_Count;
- //@}
- //! \name Statistic - Statistical data.
- //@{
- /*!
- \brief Last grabbed block ID.
- \b Visibility = Expert
- */
- GENAPI_NAMESPACE::IInteger& Statistic_Last_Block_Id;
- //@}
- private:
- //! \cond HIDE_CLASS_METHODS
- //! not implemented copy constructor
- CUsbStreamParams_Params( CUsbStreamParams_Params& );
- //! not implemented assignment operator
- CUsbStreamParams_Params& operator=( CUsbStreamParams_Params& );
- //! \endcond
- };
- //**************************************************************************************************
- // Parameter class implementation
- //**************************************************************************************************
- //! \cond HIDE_CLASS_METHODS
- inline CUsbStreamParams_Params::CUsbStreamParams_Params( void )
- : MaxNumBuffer( *new GENAPI_NAMESPACE::CIntegerRef() )
- , MaxBufferSize( *new GENAPI_NAMESPACE::CIntegerRef() )
- , MaxTransferSize( *new GENAPI_NAMESPACE::CIntegerRef() )
- , NumMaxQueuedUrbs( *new GENAPI_NAMESPACE::CIntegerRef() )
- , TransferLoopThreadPriority( *new GENAPI_NAMESPACE::CIntegerRef() )
- , TransferTimeout( *new GENAPI_NAMESPACE::CIntegerRef() )
- , Statistic_Total_Buffer_Count( *new GENAPI_NAMESPACE::CIntegerRef() )
- , Statistic_Failed_Buffer_Count( *new GENAPI_NAMESPACE::CIntegerRef() )
- , Statistic_Last_Failed_Buffer_Status( *new GENAPI_NAMESPACE::CIntegerRef() )
- , Statistic_Last_Failed_Buffer_Status_Text( *new GENAPI_NAMESPACE::CStringRef() )
- , Statistic_Missed_Frame_Count( *new GENAPI_NAMESPACE::CIntegerRef() )
- , Statistic_Resynchronization_Count( *new GENAPI_NAMESPACE::CIntegerRef() )
- , Statistic_Last_Block_Id( *new GENAPI_NAMESPACE::CIntegerRef() )
- {
- }
- inline CUsbStreamParams_Params::~CUsbStreamParams_Params( void )
- {
- delete static_cast <GENAPI_NAMESPACE::CIntegerRef*> (&MaxNumBuffer);
- delete static_cast <GENAPI_NAMESPACE::CIntegerRef*> (&MaxBufferSize);
- delete static_cast <GENAPI_NAMESPACE::CIntegerRef*> (&MaxTransferSize);
- delete static_cast <GENAPI_NAMESPACE::CIntegerRef*> (&NumMaxQueuedUrbs);
- delete static_cast <GENAPI_NAMESPACE::CIntegerRef*> (&TransferLoopThreadPriority);
- delete static_cast <GENAPI_NAMESPACE::CIntegerRef*> (&TransferTimeout);
- delete static_cast <GENAPI_NAMESPACE::CIntegerRef*> (&Statistic_Total_Buffer_Count);
- delete static_cast <GENAPI_NAMESPACE::CIntegerRef*> (&Statistic_Failed_Buffer_Count);
- delete static_cast <GENAPI_NAMESPACE::CIntegerRef*> (&Statistic_Last_Failed_Buffer_Status);
- delete static_cast <GENAPI_NAMESPACE::CStringRef*> (&Statistic_Last_Failed_Buffer_Status_Text);
- delete static_cast <GENAPI_NAMESPACE::CIntegerRef*> (&Statistic_Missed_Frame_Count);
- delete static_cast <GENAPI_NAMESPACE::CIntegerRef*> (&Statistic_Resynchronization_Count);
- delete static_cast <GENAPI_NAMESPACE::CIntegerRef*> (&Statistic_Last_Block_Id);
- }
- inline void CUsbStreamParams_Params::_Initialize( GENAPI_NAMESPACE::INodeMap* _Ptr )
- {
- static_cast<GENAPI_NAMESPACE::CIntegerRef*> (&MaxNumBuffer)->SetReference( _Ptr->GetNode( "MaxNumBuffer" ) );
- static_cast<GENAPI_NAMESPACE::CIntegerRef*> (&MaxBufferSize)->SetReference( _Ptr->GetNode( "MaxBufferSize" ) );
- static_cast<GENAPI_NAMESPACE::CIntegerRef*> (&MaxTransferSize)->SetReference( _Ptr->GetNode( "MaxTransferSize" ) );
- static_cast<GENAPI_NAMESPACE::CIntegerRef*> (&NumMaxQueuedUrbs)->SetReference( _Ptr->GetNode( "NumMaxQueuedUrbs" ) );
- static_cast<GENAPI_NAMESPACE::CIntegerRef*> (&TransferLoopThreadPriority)->SetReference( _Ptr->GetNode( "TransferLoopThreadPriority" ) );
- static_cast<GENAPI_NAMESPACE::CIntegerRef*> (&TransferTimeout)->SetReference( _Ptr->GetNode( "TransferTimeout" ) );
- static_cast<GENAPI_NAMESPACE::CIntegerRef*> (&Statistic_Total_Buffer_Count)->SetReference( _Ptr->GetNode( "Statistic_Total_Buffer_Count" ) );
- static_cast<GENAPI_NAMESPACE::CIntegerRef*> (&Statistic_Failed_Buffer_Count)->SetReference( _Ptr->GetNode( "Statistic_Failed_Buffer_Count" ) );
- static_cast<GENAPI_NAMESPACE::CIntegerRef*> (&Statistic_Last_Failed_Buffer_Status)->SetReference( _Ptr->GetNode( "Statistic_Last_Failed_Buffer_Status" ) );
- static_cast<GENAPI_NAMESPACE::CStringRef*> (&Statistic_Last_Failed_Buffer_Status_Text)->SetReference( _Ptr->GetNode( "Statistic_Last_Failed_Buffer_Status_Text" ) );
- static_cast<GENAPI_NAMESPACE::CIntegerRef*> (&Statistic_Missed_Frame_Count)->SetReference( _Ptr->GetNode( "Statistic_Missed_Frame_Count" ) );
- static_cast<GENAPI_NAMESPACE::CIntegerRef*> (&Statistic_Resynchronization_Count)->SetReference( _Ptr->GetNode( "Statistic_Resynchronization_Count" ) );
- static_cast<GENAPI_NAMESPACE::CIntegerRef*> (&Statistic_Last_Block_Id)->SetReference( _Ptr->GetNode( "Statistic_Last_Block_Id" ) );
- }
- inline const char* CUsbStreamParams_Params::_GetVendorName( void )
- {
- return "Basler";
- }
- inline const char* CUsbStreamParams_Params::_GetModelName( void )
- {
- return "UsbStreamParams";
- }
- //! \endcond
- } // namespace Basler_UsbStreamParams
- #if GCC_DIAGNOSTIC_AWARE
- # if GCC_DIAGNOSTIC_PUSH_POP_AWARE
- # pragma GCC diagnostic pop
- # else
- # pragma GCC diagnostic warning "-Wdeprecated-declarations"
- # endif
- #endif
- #undef GENAPI_DEPRECATED_FEATURE
- #endif // Basler_UsbStreamParams_PARAMS_H
|