2011-10-14 02:41:56 +08:00
|
|
|
/* ----------------------------------------------------------------------------
|
|
|
|
|
2019-02-11 22:39:48 +08:00
|
|
|
* GTSAM Copyright 2010, Georgia Tech Research Corporation,
|
2011-10-14 02:41:56 +08:00
|
|
|
* 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 Constructor.h
|
|
|
|
* @brief class describing a constructor + code generation
|
|
|
|
* @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-14 23:43:53 +08:00
|
|
|
#include "OverloadedFunction.h"
|
2014-11-30 17:38:24 +08:00
|
|
|
#include <boost/optional.hpp>
|
2011-10-14 02:41:56 +08:00
|
|
|
#include <string>
|
2011-12-09 23:44:35 +08:00
|
|
|
#include <vector>
|
2011-10-14 02:41:56 +08:00
|
|
|
|
2011-12-03 00:43:15 +08:00
|
|
|
namespace wrap {
|
|
|
|
|
2016-09-10 03:52:44 +08:00
|
|
|
// Forward declaration
|
|
|
|
class Class;
|
|
|
|
|
2011-10-14 02:41:56 +08:00
|
|
|
// Constructor class
|
2014-11-14 23:43:53 +08:00
|
|
|
struct Constructor: public OverloadedFunction {
|
2011-10-14 02:41:56 +08:00
|
|
|
|
2014-11-15 00:47:25 +08:00
|
|
|
typedef const std::string& Str;
|
|
|
|
|
2012-10-02 22:40:07 +08:00
|
|
|
/// Constructor creates an empty class
|
2014-11-14 23:43:53 +08:00
|
|
|
Constructor(bool verbose = false) {
|
|
|
|
verbose_ = verbose;
|
2012-10-02 22:40:07 +08:00
|
|
|
}
|
2011-10-14 02:41:56 +08:00
|
|
|
|
2014-11-14 04:34:59 +08:00
|
|
|
Constructor expandTemplate(const TemplateSubstitution& ts) const {
|
|
|
|
Constructor inst = *this;
|
|
|
|
inst.argLists_ = expandArgumentListsTemplate(ts);
|
2014-11-14 23:43:53 +08:00
|
|
|
inst.name_ = ts.expandedClassName();
|
2014-11-14 04:34:59 +08:00
|
|
|
return inst;
|
|
|
|
}
|
2014-11-13 19:52:41 +08:00
|
|
|
|
2016-09-11 07:44:53 +08:00
|
|
|
/// return true if the default constructor exists
|
|
|
|
bool hasDefaultConstructor() const;
|
|
|
|
|
2012-10-02 22:40:07 +08:00
|
|
|
// MATLAB code generation
|
|
|
|
// toolboxPath is main toolbox directory, e.g., ../matlab
|
|
|
|
// classFile is class proxy file, e.g., ../matlab/@Point2/Point2.m
|
|
|
|
|
|
|
|
/// wrapper name
|
2014-11-15 00:47:25 +08:00
|
|
|
std::string matlab_wrapper_name(Str className) const;
|
2012-10-02 22:40:07 +08:00
|
|
|
|
2014-11-14 04:34:59 +08:00
|
|
|
void comment_fragment(FileWriter& proxyFile) const {
|
|
|
|
if (nrOverloads() > 0)
|
|
|
|
proxyFile.oss << "%\n%-------Constructors-------\n";
|
|
|
|
for (size_t i = 0; i < nrOverloads(); i++) {
|
|
|
|
proxyFile.oss << "%";
|
2014-11-14 23:43:53 +08:00
|
|
|
argumentList(i).emit_prototype(proxyFile, name_);
|
2014-11-14 04:34:59 +08:00
|
|
|
proxyFile.oss << "\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-02 22:40:07 +08:00
|
|
|
/**
|
|
|
|
* Create fragment to select constructor in proxy class, e.g.,
|
|
|
|
* if nargin == 2, obj.self = new_Pose3_RP(varargin{1},varargin{2}); end
|
|
|
|
*/
|
2014-11-15 00:47:25 +08:00
|
|
|
void proxy_fragment(FileWriter& file, Str wrapperName, bool hasParent,
|
|
|
|
const int id, const ArgumentList args) const;
|
2012-10-02 22:40:07 +08:00
|
|
|
|
|
|
|
/// cpp wrapper
|
2014-11-15 00:47:25 +08:00
|
|
|
std::string wrapper_fragment(FileWriter& file, Str cppClassName,
|
2014-11-30 17:38:24 +08:00
|
|
|
Str matlabUniqueName, boost::optional<std::string> cppBaseClassName, int id,
|
2014-05-26 01:26:14 +08:00
|
|
|
const ArgumentList& al) const;
|
2012-10-02 22:40:07 +08:00
|
|
|
|
|
|
|
/// constructor function
|
2014-11-15 00:47:25 +08:00
|
|
|
void generate_construct(FileWriter& file, Str cppClassName,
|
2014-05-26 01:26:14 +08:00
|
|
|
std::vector<ArgumentList>& args_list) const;
|
2011-10-14 02:41:56 +08:00
|
|
|
|
2014-11-15 00:47:25 +08:00
|
|
|
// emit python wrapper
|
|
|
|
void python_wrapper(FileWriter& wrapperFile, Str className) const;
|
|
|
|
|
2016-09-09 01:33:32 +08:00
|
|
|
// emit cython wrapper
|
2016-12-16 13:23:45 +08:00
|
|
|
void emit_cython_pxd(FileWriter& pxdFile, const Class& cls) const;
|
2016-09-10 03:52:44 +08:00
|
|
|
void emit_cython_pyx(FileWriter& pyxFile, const Class& cls) const;
|
2016-09-09 01:33:32 +08:00
|
|
|
|
2014-11-14 04:34:59 +08:00
|
|
|
friend std::ostream& operator<<(std::ostream& os, const Constructor& m) {
|
|
|
|
for (size_t i = 0; i < m.nrOverloads(); i++)
|
2014-11-14 23:43:53 +08:00
|
|
|
os << m.name_ << m.argLists_[i];
|
2014-11-14 04:34:59 +08:00
|
|
|
return os;
|
|
|
|
}
|
|
|
|
|
2014-05-26 01:26:14 +08:00
|
|
|
};
|
2011-12-03 00:43:15 +08:00
|
|
|
|
2012-06-27 02:52:27 +08:00
|
|
|
} // \namespace wrap
|