00001 //----------------------------------------------------------------------------- 00002 // (c) 2006 by Basler Vision Technologies 00003 // Section: Vision Components 00004 // Project: GenApi 00005 // Author: Margret Albrecht 00006 // $Header$ 00007 // 00008 // License: This file is published under the license of the EMVA GenICam Standard Group. 00009 // A text file describing the legal terms is included in your installation as 'GenICam_license.pdf'. 00010 // If for some reason you are missing this file please contact the EMVA or visit the website 00011 // (http://www.genicam.org) for a full copy. 00012 // 00013 // THIS SOFTWARE IS PROVIDED BY THE EMVA GENICAM STANDARD GROUP "AS IS" 00014 // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, 00015 // THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 00016 // PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE EMVA GENICAM STANDARD GROUP 00017 // OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 00018 // EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 00019 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; 00020 // OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 00021 // WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 00022 // ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 00023 // POSSIBILITY OF SUCH DAMAGE. 00024 //----------------------------------------------------------------------------- 00031 #ifndef GENAPI_IPORT_H 00032 #define GENAPI_IPORT_H 00033 00034 #include <Base/GCException.h> 00035 #include <GenApi/GenApiDll.h> 00036 #include <GenApi/Types.h> 00037 #include <GenApi/IBase.h> 00038 00039 #pragma warning ( push ) 00040 #pragma warning ( disable : 4251 ) // XXX needs to have dll-interface to be used by clients of class YYY 00041 00042 namespace GENAPI_NAMESPACE 00043 { 00044 //************************************************************* 00045 // IPort interface 00046 //************************************************************* 00047 00052 interface GENAPI_DECL_ABSTRACT IPort : virtual public IBase 00053 { 00055 virtual void Read(void *pBuffer, int64_t Address, int64_t Length) = 0; 00056 00058 virtual void Write(const void *pBuffer, int64_t Address, int64_t Length) = 0; 00059 }; 00060 00061 //************************************************************* 00062 // CPortRef class 00063 //************************************************************* 00064 00065 #ifndef DOXYGEN_IGNORE 00066 00072 template <class T> 00073 class CPortRefT : public CBaseRefT<T> 00074 { 00075 typedef CBaseRefT<T> ref; 00076 00077 public: 00078 /*--------------------------------------------------------*/ 00079 // IPort 00080 /*--------------------------------------------------------*/ 00081 00083 virtual void Read(void *pBuffer, int64_t Address, int64_t Length) 00084 { 00085 if(ref::m_Ptr) 00086 return ref::m_Ptr->Read(pBuffer, Address, Length); 00087 else 00088 throw ACCESS_EXCEPTION("Feature not present (reference not valid)"); 00089 } 00090 00092 virtual void Write(const void *pBuffer, int64_t Address, int64_t Length) 00093 { 00094 if(ref::m_Ptr) 00095 return ref::m_Ptr->Write(pBuffer, Address, Length); 00096 else 00097 throw ACCESS_EXCEPTION("Feature not present (reference not valid)"); 00098 } 00099 00100 }; 00101 00104 typedef CPortRefT<IPort> CPortRef; 00105 00106 #endif 00107 00108 } 00109 00110 #pragma warning ( pop ) 00111 00112 #endif // ifndef GENAPI_IPORT_H