| 
									
										
										
										
											2012-07-23 22:09:40 +08:00
										 |  |  | /**
 | 
					
						
							|  |  |  |  * @file GlobalFunction.cpp | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @date Jul 22, 2012 | 
					
						
							|  |  |  |  * @author Alex Cunningham | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "GlobalFunction.h"
 | 
					
						
							| 
									
										
										
										
											2012-07-24 02:24:35 +08:00
										 |  |  | #include "utilities.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <boost/foreach.hpp>
 | 
					
						
							|  |  |  | #include <boost/lexical_cast.hpp>
 | 
					
						
							| 
									
										
										
										
											2012-07-23 22:09:40 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | namespace wrap { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-24 02:24:35 +08:00
										 |  |  | using namespace std; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-23 22:09:40 +08:00
										 |  |  | /* ************************************************************************* */ | 
					
						
							|  |  |  | void GlobalFunction::addOverload(bool verbose, const std::string& name, | 
					
						
							| 
									
										
										
										
											2014-05-26 04:01:30 +08:00
										 |  |  |     const ArgumentList& args, const ReturnValue& retVal, | 
					
						
							|  |  |  |     const StrVec& ns_stack) { | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  |   this->verbose_ = verbose; | 
					
						
							|  |  |  |   this->name = name; | 
					
						
							|  |  |  |   this->argLists.push_back(args); | 
					
						
							|  |  |  |   this->returnVals.push_back(retVal); | 
					
						
							|  |  |  |   this->namespaces.push_back(ns_stack); | 
					
						
							| 
									
										
										
										
											2012-07-23 22:09:40 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-24 02:24:35 +08:00
										 |  |  | /* ************************************************************************* */ | 
					
						
							| 
									
										
										
										
											2014-05-26 04:01:30 +08:00
										 |  |  | void GlobalFunction::matlab_proxy(const std::string& toolboxPath, | 
					
						
							|  |  |  |     const std::string& wrapperName, const TypeAttributesTable& typeAttributes, | 
					
						
							|  |  |  |     FileWriter& file, std::vector<std::string>& functionNames) const { | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   // cluster overloads with same namespace
 | 
					
						
							|  |  |  |   // create new GlobalFunction structures around namespaces - same namespaces and names are overloads
 | 
					
						
							|  |  |  |   // map of namespace to global function
 | 
					
						
							|  |  |  |   typedef map<string, GlobalFunction> GlobalFunctionMap; | 
					
						
							|  |  |  |   GlobalFunctionMap grouped_functions; | 
					
						
							| 
									
										
										
										
											2014-05-26 04:01:30 +08:00
										 |  |  |   for (size_t i = 0; i < namespaces.size(); ++i) { | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  |     StrVec ns = namespaces.at(i); | 
					
						
							|  |  |  |     string str_ns = qualifiedName("", ns, ""); | 
					
						
							|  |  |  |     ReturnValue ret = returnVals.at(i); | 
					
						
							|  |  |  |     ArgumentList args = argLists.at(i); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!grouped_functions.count(str_ns)) | 
					
						
							|  |  |  |       grouped_functions[str_ns] = GlobalFunction(name, verbose_); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     grouped_functions[str_ns].argLists.push_back(args); | 
					
						
							|  |  |  |     grouped_functions[str_ns].returnVals.push_back(ret); | 
					
						
							|  |  |  |     grouped_functions[str_ns].namespaces.push_back(ns); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   size_t lastcheck = grouped_functions.size(); | 
					
						
							|  |  |  |   BOOST_FOREACH(const GlobalFunctionMap::value_type& p, grouped_functions) { | 
					
						
							| 
									
										
										
										
											2014-05-26 04:01:30 +08:00
										 |  |  |     p.second.generateSingleFunction(toolboxPath, wrapperName, typeAttributes, | 
					
						
							|  |  |  |         file, functionNames); | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  |     if (--lastcheck != 0) | 
					
						
							| 
									
										
										
										
											2014-05-26 04:01:30 +08:00
										 |  |  |       file.oss << endl; | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  |   } | 
					
						
							| 
									
										
										
										
											2012-07-24 02:24:35 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* ************************************************************************* */ | 
					
						
							| 
									
										
										
										
											2014-05-26 04:01:30 +08:00
										 |  |  | void GlobalFunction::generateSingleFunction(const std::string& toolboxPath, | 
					
						
							|  |  |  |     const std::string& wrapperName, const TypeAttributesTable& typeAttributes, | 
					
						
							|  |  |  |     FileWriter& file, std::vector<std::string>& functionNames) const { | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   // create the folder for the namespace
 | 
					
						
							|  |  |  |   const StrVec& ns = namespaces.front(); | 
					
						
							|  |  |  |   createNamespaceStructure(ns, toolboxPath); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   // open destination mfunctionFileName
 | 
					
						
							|  |  |  |   string mfunctionFileName = toolboxPath; | 
					
						
							| 
									
										
										
										
											2014-05-26 04:01:30 +08:00
										 |  |  |   if (!ns.empty()) | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  |     mfunctionFileName += "/+" + wrap::qualifiedName("/+", ns); | 
					
						
							|  |  |  |   mfunctionFileName += "/" + name + ".m"; | 
					
						
							|  |  |  |   FileWriter mfunctionFile(mfunctionFileName, verbose_, "%"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   // get the name of actual matlab object
 | 
					
						
							| 
									
										
										
										
											2014-05-26 04:01:30 +08:00
										 |  |  |   const string matlabQualName = qualifiedName(".", ns, name), matlabUniqueName = | 
					
						
							|  |  |  |       qualifiedName("", ns, name), cppName = qualifiedName("::", ns, name); | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   mfunctionFile.oss << "function varargout = " << name << "(varargin)\n"; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-26 04:01:30 +08:00
										 |  |  |   for (size_t overload = 0; overload < argLists.size(); ++overload) { | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  |     const ArgumentList& args = argLists[overload]; | 
					
						
							|  |  |  |     const ReturnValue& returnVal = returnVals[overload]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     const int id = functionNames.size(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // Output proxy matlab code
 | 
					
						
							| 
									
										
										
										
											2014-05-26 04:28:39 +08:00
										 |  |  |     mfunctionFile.oss << "      " << (overload == 0 ? "" : "else"); | 
					
						
							|  |  |  |     argLists[overload].emit_conditional_call(mfunctionFile, | 
					
						
							|  |  |  |         returnVals[overload], wrapperName, id, true); // true omits "this"
 | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // Output C++ wrapper code
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-26 04:01:30 +08:00
										 |  |  |     const string wrapFunctionName = matlabUniqueName + "_" | 
					
						
							|  |  |  |         + boost::lexical_cast<string>(id); | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // call
 | 
					
						
							| 
									
										
										
										
											2014-05-26 04:01:30 +08:00
										 |  |  |     file.oss << "void " << wrapFunctionName | 
					
						
							|  |  |  |         << "(int nargout, mxArray *out[], int nargin, const mxArray *in[])\n"; | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  |     // start
 | 
					
						
							| 
									
										
										
										
											2014-05-26 04:01:30 +08:00
										 |  |  |     file.oss << "{\n"; | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-26 04:01:30 +08:00
										 |  |  |     returnVal.wrapTypeUnwrap(file); | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // check arguments
 | 
					
						
							|  |  |  |     // NOTE: for static functions, there is no object passed
 | 
					
						
							| 
									
										
										
										
											2014-05-26 04:01:30 +08:00
										 |  |  |     file.oss << "  checkArguments(\"" << matlabUniqueName | 
					
						
							|  |  |  |         << "\",nargout,nargin," << args.size() << ");\n"; | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // unwrap arguments, see Argument.cpp
 | 
					
						
							| 
									
										
										
										
											2014-05-26 04:01:30 +08:00
										 |  |  |     args.matlab_unwrap(file, 0); // We start at 0 because there is no self object
 | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // call method with default type and wrap result
 | 
					
						
							| 
									
										
										
										
											2014-05-26 04:01:30 +08:00
										 |  |  |     if (returnVal.type1 != "void") | 
					
						
							|  |  |  |       returnVal.wrap_result(cppName + "(" + args.names() + ")", file, | 
					
						
							|  |  |  |           typeAttributes); | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  |     else | 
					
						
							| 
									
										
										
										
											2014-05-26 04:01:30 +08:00
										 |  |  |       file.oss << cppName + "(" + args.names() + ");\n"; | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // finish
 | 
					
						
							| 
									
										
										
										
											2014-05-26 04:01:30 +08:00
										 |  |  |     file.oss << "}\n"; | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // Add to function list
 | 
					
						
							|  |  |  |     functionNames.push_back(wrapFunctionName); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-26 04:28:39 +08:00
										 |  |  |   mfunctionFile.oss << "      else\n"; | 
					
						
							| 
									
										
										
										
											2014-05-26 04:01:30 +08:00
										 |  |  |   mfunctionFile.oss | 
					
						
							| 
									
										
										
										
											2014-05-26 04:28:39 +08:00
										 |  |  |       << "        error('Arguments do not match any overload of function " | 
					
						
							| 
									
										
										
										
											2014-05-26 04:01:30 +08:00
										 |  |  |       << matlabQualName << "');" << endl; | 
					
						
							| 
									
										
										
										
											2014-05-26 04:28:39 +08:00
										 |  |  |   mfunctionFile.oss << "      end" << endl; | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   // Close file
 | 
					
						
							|  |  |  |   mfunctionFile.emit(true); | 
					
						
							| 
									
										
										
										
											2012-07-24 02:24:35 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-23 22:09:40 +08:00
										 |  |  | /* ************************************************************************* */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } // \namespace wrap
 | 
					
						
							|  |  |  | 
 |