Skip to content

File EventPort.h

File List > GenApiNet > EventPort.h

Go to the documentation of this file

//-----------------------------------------------------------------------------
//  (c) 2007 by STEMMER IMAGING
//  Author:  Sascha Dorenbeck
//  $Header:
//
//  License: This file is published under the license of the EMVA GenICam  Standard Group.
//  A text file describing the legal terms is included in  your installation as 'GenICam_license.pdf'.
//  If for some reason you are missing  this file please contact the EMVA or visit the website
//  (http://www.genicam.org) for a full copy.
//
//  THIS SOFTWARE IS PROVIDED BY THE EMVA GENICAM STANDARD GROUP "AS IS"
//  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
//  THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
//  PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE EMVA GENICAM STANDARD  GROUP
//  OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,  SPECIAL,
//  EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT  LIMITED TO,
//  PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,  DATA, OR PROFITS;
//  OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY  THEORY OF LIABILITY,
//  WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT  (INCLUDING NEGLIGENCE OR OTHERWISE)
//  ARISING IN ANY WAY OUT OF THE USE  OF THIS SOFTWARE, EVEN IF ADVISED OF THE
//  POSSIBILITY OF SUCH DAMAGE.
//-----------------------------------------------------------------------------

#pragma once

#include "Port.h"
namespace Spinnaker
{
    namespace GenApi
    {
        class CEventPort;
    }
}

namespace SpinnakerNET
{
    namespace GenApi
    {
        interface class INode;

        public ref class EventPort
            : public SpinnakerNET::GenApi::Port
        {
#pragma region Ctor/Dtor
            public:
                __clrcall EventPort(void);

                __clrcall EventPort(SpinnakerNET::GenApi::INode ^node);

                virtual __clrcall ~EventPort(void);

                __clrcall !EventPort(void);

                static EventPort ^ __clrcall FromHandle(IntPtr handle);

            protected:
                __clrcall EventPort(IntPtr handle);

#pragma endregion

#pragma region IPort Methods
            public:
                virtual void __clrcall Read(IntPtr buffer, __int64 address, __int64 length) override;

                virtual void __clrcall Write(IntPtr buffer, __int64 address, __int64 length) override;

                virtual void Read(__int64 address, array<::System::Byte> ^buffer) override;

                virtual void Write(__int64 address, array<::System::Byte> ^buffer) override;
#pragma endregion

#pragma region EventPort Methods
            public:
                void __clrcall AttachEvent(array<Byte> ^data);

                void __clrcall AttachEvent(IntPtr baseAddress, int length);

                bool __clrcall AttachNode(SpinnakerNET::GenApi::INode ^node);

                bool __clrcall CheckEventID(array<Byte> ^eventID);

                void __clrcall DetachEvent();

                void __clrcall DetachNode();

                property int EventIDLength
                {
                    int __clrcall get(void);
                }

                void __clrcall Invalidate();
#pragma endregion

#pragma region Internal Methods
            protected:
                void __clrcall CheckStatus();
#pragma endregion

#pragma region Member Fields
            private:
                ::Spinnaker::GenApi::CEventPort * eventPortHandle;

                bool managed;

                SpinnakerNET::GenApi::INode ^attachedNode;
#pragma endregion
        };
    }
}