| 
									
										
										
										
											2011-10-14 02:41:56 +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 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  * -------------------------------------------------------------------------- */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							| 
									
										
										
										
											2011-10-14 11:23:14 +08:00
										 |  |  |  * @file Method.h | 
					
						
							|  |  |  |  * @brief describes and generates code for methods | 
					
						
							|  |  |  |  * @author Frank Dellaert | 
					
						
							| 
									
										
										
										
											2012-07-13 06:28:28 +08:00
										 |  |  |  * @author Richard Roberts | 
					
						
							| 
									
										
										
										
											2011-10-14 02:41:56 +08:00
										 |  |  |  **/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #pragma once
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-29 22:31:29 +08:00
										 |  |  | #include "MethodBase.h"
 | 
					
						
							| 
									
										
										
										
											2011-10-14 02:41:56 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-03 00:43:15 +08:00
										 |  |  | namespace wrap { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-14 11:23:14 +08:00
										 |  |  | /// Method class
 | 
					
						
							| 
									
										
										
										
											2014-11-29 22:31:29 +08:00
										 |  |  | class Method: public MethodBase { | 
					
						
							| 
									
										
										
										
											2014-11-14 06:21:05 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-09 19:26:11 +08:00
										 |  |  | protected: | 
					
						
							| 
									
										
										
										
											2014-11-14 06:21:05 +08:00
										 |  |  |   bool is_const_; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							| 
									
										
										
										
											2011-10-14 02:41:56 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-14 00:34:33 +08:00
										 |  |  |   typedef const std::string& Str; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-14 23:43:53 +08:00
										 |  |  |   bool addOverload(Str name, const ArgumentList& args, | 
					
						
							| 
									
										
										
										
											2014-12-01 16:48:56 +08:00
										 |  |  |       const ReturnValue& retVal, bool is_const, | 
					
						
							|  |  |  |       boost::optional<const Qualified> instName = boost::none, bool verbose = | 
					
						
							|  |  |  |           false); | 
					
						
							| 
									
										
										
										
											2014-11-14 08:12:43 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-14 06:21:05 +08:00
										 |  |  |   virtual bool isStatic() const { | 
					
						
							|  |  |  |     return false; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   virtual bool isConst() const { | 
					
						
							|  |  |  |     return is_const_; | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-12 23:05:10 +08:00
										 |  |  |   bool isSameModifiers(const Method& other) const { | 
					
						
							|  |  |  |       return is_const_ == other.is_const_ && | 
					
						
							|  |  |  |              ((templateArgValue_ && other.templateArgValue_) || | 
					
						
							|  |  |  |               (!templateArgValue_ && !other.templateArgValue_)); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-14 04:11:29 +08:00
										 |  |  |   friend std::ostream& operator<<(std::ostream& os, const Method& m) { | 
					
						
							|  |  |  |     for (size_t i = 0; i < m.nrOverloads(); i++) | 
					
						
							|  |  |  |       os << m.returnVals_[i] << " " << m.name_ << m.argLists_[i]; | 
					
						
							|  |  |  |     return os; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-12 06:14:19 +08:00
										 |  |  |   void emit_cython_pxd(FileWriter& file, const Class& cls) const; | 
					
						
							| 
									
										
										
										
											2016-09-10 06:37:48 +08:00
										 |  |  |   void emit_cython_pyx(FileWriter& file, const Class& cls) const; | 
					
						
							| 
									
										
										
										
											2016-11-20 22:24:43 +08:00
										 |  |  |   void emit_cython_pyx_no_overload(FileWriter& file, const Class& cls) const; | 
					
						
							| 
									
										
										
										
											2016-09-09 19:26:11 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-05 22:05:00 +08:00
										 |  |  | private: | 
					
						
							| 
									
										
										
										
											2014-11-13 08:26:06 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-14 00:28:05 +08:00
										 |  |  |   // Emit method header
 | 
					
						
							|  |  |  |   void proxy_header(FileWriter& proxyFile) const; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-14 00:34:33 +08:00
										 |  |  |   virtual std::string wrapper_call(FileWriter& wrapperFile, Str cppClassName, | 
					
						
							| 
									
										
										
										
											2014-11-30 17:38:24 +08:00
										 |  |  |       Str matlabUniqueName, const ArgumentList& args) const; | 
					
						
							| 
									
										
										
										
											2011-10-14 02:41:56 +08:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-03 00:43:15 +08:00
										 |  |  | } // \namespace wrap
 | 
					
						
							|  |  |  | 
 |