| 
									
										
										
										
											2012-03-30 13:34:23 +08:00
										 |  |  | /* ----------------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  * GTSAM Copyright 2010, Georgia Tech Research Corporation,  | 
					
						
							|  |  |  |  * Atlanta, Georgia 30332-0415 | 
					
						
							|  |  |  |  * All Rights Reserved | 
					
						
							|  |  |  |  * Authors: Frank Dellaert, et al. (see THANKS for the full author list) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  * See LICENSE for the license information | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  * -------------------------------------------------------------------------- */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * @file Deconstructor.ccp | 
					
						
							|  |  |  |  * @author Frank Dellaert | 
					
						
							|  |  |  |  * @author Andrew Melim | 
					
						
							| 
									
										
										
										
											2012-07-13 06:28:28 +08:00
										 |  |  |  * @author Richard Roberts | 
					
						
							| 
									
										
										
										
											2012-03-30 13:34:23 +08:00
										 |  |  |  **/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <iostream>
 | 
					
						
							|  |  |  | #include <fstream>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-05 22:04:36 +08:00
										 |  |  | #include <boost/lexical_cast.hpp>
 | 
					
						
							| 
									
										
										
										
											2012-03-30 13:34:23 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include "utilities.h"
 | 
					
						
							|  |  |  | #include "Deconstructor.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | using namespace std; | 
					
						
							|  |  |  | using namespace wrap; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* ************************************************************************* */ | 
					
						
							|  |  |  | string Deconstructor::matlab_wrapper_name(const string& className) const { | 
					
						
							|  |  |  |   string str = "delete_" + className; | 
					
						
							|  |  |  |   return str; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* ************************************************************************* */ | 
					
						
							| 
									
										
										
										
											2012-07-05 22:04:36 +08:00
										 |  |  | void Deconstructor::proxy_fragment(FileWriter& file, | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  |     const std::string& wrapperName, | 
					
						
							|  |  |  |     const std::string& matlabUniqueName, int id) const { | 
					
						
							| 
									
										
										
										
											2012-03-30 13:34:23 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  |   file.oss << "    function delete(obj)\n"; | 
					
						
							|  |  |  |   file.oss << "      " << wrapperName << "(" << id << ", obj.ptr_" << matlabUniqueName << ");\n"; | 
					
						
							|  |  |  |   file.oss << "    end\n"; | 
					
						
							| 
									
										
										
										
											2012-03-30 13:34:23 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* ************************************************************************* */ | 
					
						
							| 
									
										
										
										
											2012-07-05 22:04:36 +08:00
										 |  |  | string Deconstructor::wrapper_fragment(FileWriter& file, | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  |          const string& cppClassName, | 
					
						
							|  |  |  |          const string& matlabUniqueName, | 
					
						
							|  |  |  |          int id) const { | 
					
						
							| 
									
										
										
										
											2012-07-05 22:04:36 +08:00
										 |  |  |    | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  |   const string matlabName = matlab_wrapper_name(matlabUniqueName); | 
					
						
							| 
									
										
										
										
											2012-03-30 13:34:23 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  |   const string wrapFunctionName = matlabUniqueName + "_deconstructor_" + boost::lexical_cast<string>(id); | 
					
						
							| 
									
										
										
										
											2012-03-30 13:34:23 +08:00
										 |  |  |      | 
					
						
							| 
									
										
										
										
											2012-07-05 22:04:36 +08:00
										 |  |  |   file.oss << "void " << wrapFunctionName << "(int nargout, mxArray *out[], int nargin, const mxArray *in[])" << endl; | 
					
						
							| 
									
										
										
										
											2012-03-30 13:34:23 +08:00
										 |  |  |   file.oss << "{" << endl; | 
					
						
							| 
									
										
										
										
											2012-07-05 22:04:36 +08:00
										 |  |  |   file.oss << "  typedef boost::shared_ptr<"  << cppClassName  << "> Shared;" << endl; | 
					
						
							| 
									
										
										
										
											2012-03-30 13:34:23 +08:00
										 |  |  |   //Deconstructor takes 1 arg, the mxArray obj
 | 
					
						
							|  |  |  |   file.oss << "  checkArguments(\"" << matlabName << "\",nargout,nargin," << "1" << ");" << endl; | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  |   file.oss << "  Shared *self = *reinterpret_cast<Shared**>(mxGetData(in[0]));\n"; | 
					
						
							|  |  |  |   file.oss << "  Collector_" << matlabUniqueName << "::iterator item;\n"; | 
					
						
							|  |  |  |   file.oss << "  item = collector_" << matlabUniqueName << ".find(self);\n"; | 
					
						
							|  |  |  |   file.oss << "  if(item != collector_" << matlabUniqueName << ".end()) {\n"; | 
					
						
							| 
									
										
										
										
											2012-07-05 22:04:36 +08:00
										 |  |  |   file.oss << "    delete self;\n"; | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  |   file.oss << "    collector_" << matlabUniqueName << ".erase(item);\n"; | 
					
						
							|  |  |  |   file.oss << "  }\n"; | 
					
						
							| 
									
										
										
										
											2012-03-30 13:34:23 +08:00
										 |  |  |   file.oss << "}" << endl; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  |   return wrapFunctionName; | 
					
						
							| 
									
										
										
										
											2012-03-30 13:34:23 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* ************************************************************************* */ |