Matrix.cpp
Go to the documentation of this file.
1 /*
2  * This file is part of ArmarX.
3  *
4  * Copyright (C) 2012-2016, High Performance Humanoid Technologies (H2T),
5  * Karlsruhe Institute of Technology (KIT), all rights reserved.
6  *
7  * ArmarX is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License version 2 as
9  * published by the Free Software Foundation.
10  *
11  * ArmarX is distributed in the hope that it will be useful, but
12  * WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program. If not, see <http://www.gnu.org/licenses/>.
18  *
19  * @author Fabian Peller-Konrad (fabian dot peller-konrad at kit dot edu)
20  * @copyright http://www.gnu.org/licenses/gpl-2.0.txt
21  * GNU General Public License
22  */
23 
24 // Header
25 #include "Matrix.h"
26 
27 #include <SimoxUtility/meta/type_name.h>
28 
30 
32 {
33  const std::map<type::matrix::ElementType, std::tuple<std::string, int, std::string>>
35  {type::matrix::UINT8,
37  sizeof(unsigned char),
38  "::armarx::aron::type::matrix::UINT8"}},
39  {type::matrix::UINT16,
41  sizeof(unsigned short),
42  "::armarx::aron::type::matrix::UINT16"}},
43  {type::matrix::INT8,
44  {TypeName<char>::Get(), sizeof(char), "::armarx::aron::type::matrix::INT8"}},
45  {type::matrix::INT16,
46  {TypeName<short>::Get(), sizeof(short), "::armarx::aron::type::matrix::INT16"}},
47  {type::matrix::INT32,
48  {TypeName<int>::Get(), sizeof(int), "::armarx::aron::type::matrix::INT32"}},
49  {type::matrix::INT64,
50  {TypeName<long>::Get(), sizeof(long), "::armarx::aron::type::matrix::INT64"}},
51  {type::matrix::FLOAT32,
52  {TypeName<float>::Get(), sizeof(float), "::armarx::aron::type::matrix::FLOAT32"}},
53  {type::matrix::FLOAT64,
54  {TypeName<double>::Get(), sizeof(double), "::armarx::aron::type::matrix::FLOAT64"}}};
55 
56  // constructors
58  detail::NDArrayGenerator<type::Matrix, Matrix>(
59  "Eigen::Matrix<" + std::get<0>(ElementType2Cpp.at(n.getElementType())) + ", " +
60  (n.getRows() == -1 ? "Eigen::Dynamic" : std::to_string(n.getRows())) + ", " +
61  (n.getCols() == -1 ? "Eigen::Dynamic" : std::to_string(n.getCols())) +
62  (n.getCols() != 1 ? ", Eigen::RowMajor>" : ">"),
63  "Eigen::Matrix<" + std::get<0>(ElementType2Cpp.at(n.getElementType())) + ", " +
64  (n.getRows() == -1 ? "Eigen::Dynamic" : std::to_string(n.getRows())) + ", " +
65  (n.getCols() == -1 ? "Eigen::Dynamic" : std::to_string(n.getCols())) +
66  (n.getCols() != 1 ? ", Eigen::RowMajor>" : ">"),
67  simox::meta::get_type_name<data::dto::NDArray>(),
68  simox::meta::get_type_name<type::dto::Matrix>(),
69  n)
70  {
71  }
72 
73  std::vector<std::string>
75  {
76  return {"<RobotAPI/libraries/aron/common/rw/eigen.h>"};
77  }
78 
79  std::pair<std::vector<std::pair<std::string, std::string>>, bool>
80  Matrix::getCtorInitializers(const std::string& name) const
81  {
82  if (type.getCols() == -1 || type.getRows() == -1)
83  {
84  return {{}, false};
85  }
86  else if (type.getDefaultValue() == aron::type::matrix::default_value::IDENTITY)
87  {
88  return {{{name, getInstantiatedCppTypename() + "::Identity()"}}, true};
89  }
90  else if (type.getDefaultValue() == aron::type::matrix::default_value::DEFAULT ||
91  type.getDefaultValue() == aron::type::matrix::default_value::ZEROS)
92  {
93  return {{{name, getInstantiatedCppTypename() + "::Zero()"}}, true};
94  }
95  else if (type.getDefaultValue() == aron::type::matrix::default_value::ONES)
96  {
97  return {{{name, getInstantiatedCppTypename() + "::One()"}}, true};
98  }
99  else
100  {
101  // try to parse num. We ensure from typereader that defaultValue is valid number
102  return {{{name, getInstantiatedCppTypename() + "::One() * " + type.getDefaultValue()}},
103  true};
104  }
105  }
106 
108  Matrix::getResetHardBlock(const std::string& cppAccessor) const
109  {
110  CppBlockPtr block_if_data = std::make_shared<CppBlock>();
111 
112  if (type.getCols() == -1 || type.getRows() == -1)
113  {
114  block_if_data->addLine(cppAccessor + " = " + getInstantiatedCppTypename() + "();");
115  }
116 
117  else if (type.getDefaultValue() == aron::type::matrix::default_value::IDENTITY)
118  {
119  block_if_data->addLine(cppAccessor + " = " + getInstantiatedCppTypename() +
120  "::Identity();");
121  }
122  else if (type.getDefaultValue() == aron::type::matrix::default_value::DEFAULT ||
123  type.getDefaultValue() == aron::type::matrix::default_value::ZEROS)
124  {
125  block_if_data->addLine(cppAccessor + " = " + getInstantiatedCppTypename() +
126  "::Zero();");
127  }
128  else if (type.getDefaultValue() == aron::type::matrix::default_value::ONES)
129  {
130  block_if_data->addLine(cppAccessor + " = " + getInstantiatedCppTypename() + "::One();");
131  }
132  else if (not type.getDefaultValue().empty())
133  {
134  // try to parse num. We ensure from typereader that defaultValue is valid number
135  block_if_data->addLine(cppAccessor + " = " + getInstantiatedCppTypename() +
136  "::One() * " + type.getDefaultValue() + ";");
137  }
138  return resolveMaybeResetHardBlock(block_if_data, cppAccessor);
139  }
140 
142  Matrix::getResetSoftBlock(const std::string& cppAccessor) const
143  {
144  CppBlockPtr block_if_data = std::make_shared<CppBlock>();
145  block_if_data->addLine(cppAccessor + nextEl() + "setZero();");
146  return this->resolveMaybeResetSoftBlock(block_if_data, cppAccessor);
147  }
148 
150  Matrix::getWriteTypeBlock(const std::string& typeAccessor,
151  const std::string& cppAccessor,
152  const Path& p,
153  std::string& variantAccessor) const
154  {
155  CppBlockPtr b = std::make_shared<CppBlock>();
156  std::string escaped_accessor = EscapeAccessor(cppAccessor);
157  variantAccessor = ARON_VARIANT_RETURN_ACCESSOR + "_" + escaped_accessor;
158  b->addLine("auto " + variantAccessor + " = " + ARON_WRITER_ACCESSOR +
159  ".writeMatrix(static_cast<int>( " + std::to_string(type.getRows()) + "), " +
160  "static_cast<int>( " + std::to_string(type.getCols()) + "), " +
161  std::get<2>(ElementType2Cpp.at(type.getElementType())) + ", " + "\"" +
162  type.getDefaultValue() + "\", " +
163  conversion::Maybe2CppString.at(type.getMaybe()) + ", " + "armarx::aron::Path(" +
164  ARON_PATH_ACCESSOR + ", {" + simox::alg::join(p.getPath(), ", ") +
165  "})); // of " + cppAccessor);
166 
167  return b;
168  }
169 
171  Matrix::getWriteBlock(const std::string& cppAccessor,
172  const Path& p,
173  std::string& variantAccessor) const
174  {
175  CppBlockPtr block_if_data = std::make_shared<CppBlock>();
176  std::string escaped_accessor = EscapeAccessor(cppAccessor);
177  std::string resolved_accessor = resolveMaybeAccessor(cppAccessor);
178  variantAccessor = ARON_VARIANT_RETURN_ACCESSOR + "_" + escaped_accessor;
179 
180  block_if_data->addLine("armarx::aron::write(" + ARON_WRITER_ACCESSOR + ", " +
181  resolved_accessor + ", " + variantAccessor + ", " +
182  "armarx::aron::Path(" + ARON_PATH_ACCESSOR + ", {" +
183  simox::alg::join(p.getPath(), ", ") + "})); // of " + cppAccessor);
184 
185  return resolveMaybeWriteBlock(block_if_data, cppAccessor);
186  }
187 
189  Matrix::getReadBlock(const std::string& cppAccessor, const std::string& variantAccessor) const
190  {
191  CppBlockPtr block_if_data = std::make_shared<CppBlock>();
192  std::string escaped_accessor = EscapeAccessor(cppAccessor);
193  std::string resolved_accessor = resolveMaybeAccessor(cppAccessor);
194 
195  if (const auto reset = resolveMaybeGeneratorWithSetter(cppAccessor); !reset.empty())
196  {
197  block_if_data->addLine(reset);
198  }
199 
200  block_if_data->addLine("armarx::aron::read(" + ARON_READER_ACCESSOR + ", " +
201  variantAccessor + ", " + resolved_accessor + "); // of " +
202  cppAccessor);
203 
204  return resolveMaybeReadBlock(block_if_data, cppAccessor, variantAccessor);
205  }
206 
208  Matrix::getEqualsBlock(const std::string& accessor,
209  const std::string& otherInstanceAccessor) const
210  {
211  CppBlockPtr block_if_data = std::make_shared<CppBlock>();
212  block_if_data->addLine("if (not (" + accessor + nextEl() + "isApprox(" +
213  resolveMaybeAccessor(otherInstanceAccessor) + ")))");
214  block_if_data->addLineAsBlock("return false;");
215  return resolveMaybeEqualsBlock(block_if_data, accessor, otherInstanceAccessor);
216  }
217 } // namespace armarx::aron::codegenerator::cpp::generator
armarx::aron::codegenerator::cpp::generator::Matrix::getWriteTypeBlock
CppBlockPtr getWriteTypeBlock(const std::string &typeAccessor, const std::string &cppAccessor, const Path &, std::string &variantAccessor) const final
Definition: Matrix.cpp:150
armarx::aron::codegenerator::cpp::Generator::ARON_VARIANT_RETURN_ACCESSOR
static const std::string ARON_VARIANT_RETURN_ACCESSOR
Definition: Generator.h:167
armarx::aron::codegenerator::cpp::generator::Matrix::getRequiredIncludes
std::vector< std::string > getRequiredIncludes() const final
Definition: Matrix.cpp:74
armarx::aron::type::detail::SpecializedVariantBase::getMaybe
type::Maybe getMaybe() const override
get the maybe type
Definition: SpecializedVariant.h:87
armarx::aron::codegenerator::cpp::Generator::EscapeAccessor
static std::string EscapeAccessor(const std::string &)
Definition: Generator.cpp:53
armarx::aron::codegenerator::cpp::Generator::resolveMaybeGeneratorWithSetter
std::string resolveMaybeGeneratorWithSetter(const std::string &, const std::string &args="") const
Definition: Generator.cpp:602
detail
Definition: OpenCVUtil.cpp:128
armarx::aron::codegenerator::cpp::Generator::resolveMaybeAccessor
std::string resolveMaybeAccessor(const std::string &) const
Definition: Generator.cpp:563
armarx::CppBlockPtr
std::shared_ptr< CppBlock > CppBlockPtr
Definition: CppBlock.h:37
armarx::aron::codegenerator::cpp::Generator::ARON_WRITER_ACCESSOR
static const std::string ARON_WRITER_ACCESSOR
Definition: Generator.h:165
armarx::aron::codegenerator::cpp::generator::Matrix::Matrix
Matrix(const type::Matrix &)
Definition: Matrix.cpp:57
Matrix.h
armarx::aron::codegenerator::cpp::Generator::ARON_PATH_ACCESSOR
static const std::string ARON_PATH_ACCESSOR
Definition: Generator.h:163
armarx::aron::type::Matrix::getCols
int getCols() const
Definition: Matrix.cpp:64
armarx::aron::codegenerator::cpp::generator::Matrix::getReadBlock
CppBlockPtr getReadBlock(const std::string &cppAccessor, const std::string &variantAccessor) const final
Definition: Matrix.cpp:189
armarx::aron::Path
The Path class.
Definition: Path.h:35
armarx::aron::codegenerator::cpp::generator::NDArray
Definition: NDArray.h:33
data
uint8_t data[1]
Definition: EtherCATFrame.h:68
armarx::aron::codegenerator::cpp::generator::detail::SpecializedGeneratorBase< type::Matrix, Matrix >::type
type::Matrix type
Definition: SpecializedGenerator.h:59
armarx::aron::codegenerator::cpp::generator::Matrix::getResetHardBlock
CppBlockPtr getResetHardBlock(const std::string &cppAccessor) const final
Definition: Matrix.cpp:108
armarx::aron::codegenerator::cpp::generator::ElementType2Cpp
const std::map< type::matrix::ElementType, std::tuple< std::string, int, std::string > > ElementType2Cpp
Definition: Matrix.cpp:34
armarx::aron::codegenerator::cpp::generator::Matrix
Definition: Matrix.h:34
armarx::aron::codegenerator::cpp::Generator::resolveMaybeReadBlock
CppBlockPtr resolveMaybeReadBlock(const CppBlockPtr &, const std::string &, const std::string &) const
Definition: Generator.cpp:711
armarx::to_string
const std::string & to_string(const std::string &s)
Definition: StringHelpers.h:41
TypeName.h
armarx::aron::codegenerator::cpp::generator
Definition: AnyObject.cpp:28
armarx::aron::type::Matrix::getElementType
type::matrix::ElementType getElementType() const
Definition: Matrix.cpp:92
armarx::aron::codegenerator::cpp::Generator::resolveMaybeResetHardBlock
CppBlockPtr resolveMaybeResetHardBlock(const CppBlockPtr &, const std::string &) const
Definition: Generator.cpp:655
armarx::aron::codegenerator::cpp::Generator::resolveMaybeEqualsBlock
CppBlockPtr resolveMaybeEqualsBlock(const CppBlockPtr &, const std::string &, const std::string &) const
Definition: Generator.cpp:735
armarx::aron::codegenerator::cpp::generator::Matrix::getResetSoftBlock
CppBlockPtr getResetSoftBlock(const std::string &cppAccessor) const final
Definition: Matrix.cpp:142
float
#define float
Definition: 16_Level.h:22
std
Definition: Application.h:66
armarx::aron::codegenerator::cpp::generator::Matrix::getWriteBlock
CppBlockPtr getWriteBlock(const std::string &cppAccessor, const Path &, std::string &variantAccessor) const final
Definition: Matrix.cpp:171
armarx::aron::codegenerator::cpp::generator::Matrix::getCtorInitializers
std::pair< std::vector< std::pair< std::string, std::string > >, bool > getCtorInitializers(const std::string &) const final
Definition: Matrix.cpp:80
armarx::aron::codegenerator::cpp::Generator::nextEl
std::string nextEl() const
Definition: Generator.cpp:613
armarx::aron::codegenerator::cpp::Generator::resolveMaybeResetSoftBlock
CppBlockPtr resolveMaybeResetSoftBlock(const CppBlockPtr &, const std::string &) const
Definition: Generator.cpp:677
armarx::aron::type::detail::NDArrayVariant::getDefaultValue
std::string getDefaultValue() const
Definition: NDArrayVariant.h:68
armarx::aron::codegenerator::cpp::Generator::ARON_READER_ACCESSOR
static const std::string ARON_READER_ACCESSOR
Definition: Generator.h:164
armarx::aron::codegenerator::cpp::Generator::getInstantiatedCppTypename
std::string getInstantiatedCppTypename() const
Definition: Generator.cpp:110
simox
Definition: Impl.cpp:40
armarx::aron::type::Matrix::getRows
int getRows() const
Definition: Matrix.cpp:58
armarx::aron::codegenerator::cpp::Generator::resolveMaybeWriteBlock
CppBlockPtr resolveMaybeWriteBlock(const CppBlockPtr &, const std::string &) const
Definition: Generator.cpp:694
armarx::aron::codegenerator::cpp::conversion::Maybe2CppString
const std::map< type::Maybe, std::string > Maybe2CppString
Definition: Generator.h:48
armarx::aron::codegenerator::cpp::generator::Matrix::getEqualsBlock
CppBlockPtr getEqualsBlock(const std::string &, const std::string &) const final
Definition: Matrix.cpp:208
armarx::aron::Path::getPath
std::vector< std::string > getPath() const
Definition: Path.cpp:87
armarx::aron::type::Matrix
The Matrix class.
Definition: Matrix.h:39
armarx::aron::TypeName::Get
static const char * Get()
Definition: TypeName.h:14