/* class_handle.hpp A C++ class interface for Matlab/Octave Copyright (c) 2012, Oliver Woodford All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "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 COPYRIGHT OWNER 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. */ #ifndef __CLASS_HANDLE_HPP__ #define __CLASS_HANDLE_HPP__ #include #include #include #include #include "mex.h" #define CLASS_HANDLE_SIGNATURE 0xFF00F0A5 template class class_handle { public: class_handle(base *ptr) : ptr_m(ptr), name_m(typeid(base).name()) { signature_m = CLASS_HANDLE_SIGNATURE; } ~class_handle() { signature_m = 0; delete ptr_m; } bool isValid() { return ((signature_m == CLASS_HANDLE_SIGNATURE) && !strcmp(name_m.c_str(), typeid(base).name())); } base *ptr() { return ptr_m; } private: uint32_t signature_m; std::string name_m; base *ptr_m; }; template inline mxArray *convertPtr2Mat(base *ptr) { mexLock(); mxArray *out = mxCreateNumericMatrix(1, 1, mxUINT64_CLASS, mxREAL); *((uint64_t *)mxGetData(out)) = reinterpret_cast(new class_handle(ptr)); return out; } template inline class_handle *convertMat2HandlePtr(const mxArray *in) { if (mxGetNumberOfElements(in) != 1 || mxGetClassID(in) != mxUINT64_CLASS || mxIsComplex(in)) mexErrMsgTxt("Input must be a real uint64 scalar."); class_handle *ptr = reinterpret_cast *>(*((uint64_t *)mxGetData(in))); if (!ptr->isValid()) mexErrMsgTxt("Handle not valid."); return ptr; } template inline base *convertMat2Ptr(const mxArray *in) { return convertMat2HandlePtr(in)->ptr(); } template inline void destroyObject(const mxArray *in) { delete convertMat2HandlePtr(in); mexUnlock(); } #endif // __CLASS_HANDLE_HPP__