{% import 'functional.cpp' as functional %} /* * file: {{clss.name}}Bridge.cpp * author: A trusty code generator * date: {{time.strftime("%a, %d %b %Y %H:%M:%S", time.localtime())}} * * This file was autogenerated, do not modify. * See LICENSE for full modification and redistribution details. * Copyright {{time.strftime("%Y", time.localtime())}} The OpenCV Foundation */ #include #include #include #include #include #include using namespace cv; using namespace matlab; using namespace bridge; namespace { typedef std::vector (*)({{clss.name}}&, const std::vector&) MethodSignature; {% for function in clss.methods %} {% if function.constructor %} // wrapper for {{function.name}}() constructor {{ function.clss }} {{function.name}}(const std::vector& inputs) { {{ functional.handleInputs(function) }} {{ functional.compose(function) }} return obj; } {% else %} // wrapper for {{function.name}}() method std::vector {{function.name}}({{clss.name}}& inst, const std::vector& inputs) { std::vector outputs{% if function|noutputs %}({{function|noutputs}}){% endif %}; {{ functional.handleInputs(function) }} {{ functional.composeWithExceptionHandler(function) }} {{ functional.handleOutputs(function) }} return outputs; } {% endif %} {% endfor %} Map createMethodMap() { Map m; {% for function in clss.methods %} m["{{function.name}}"] = &{{function.name}}; {% endfor %} return m; } static const Map methods = createMethodMap(); // map of created {{clss.name}} instances. Don't trust the user to keep them safe... static Map instances; /* * {{ clss.name }} * Gateway routine * nlhs - number of return arguments * plhs - pointers to return arguments * nrhs - number of input arguments * prhs - pointers to input arguments */ void mexFunction(int nlhs, mxArray* plhs[], int nrhs, const mxArray* prhs[]) { // parse the inputs Bridge method_name(prhs[0]); Bridge handle(prhs[1]); std::vector brhs(prhs+2, prhs+nrhs); // retrieve the instance of interest try { {{clss.name}}& inst = instances.at(handle.address()); } catch (const std::out_of_range& e) { mexErrMsgTxt("Invalid object instance provided"); } // invoke the correct method on the data try { std::vector blhs = (*methods.at(method_name))(inst, brhs); } catch (const std::out_of_range& e) { mexErrMsgTxt("Unknown method specified"); } {% block postfun %} {% endblock %} {% block cleanup %} {% endblock %} } } // end namespace