List.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 "List.h"
26 
27 #include <SimoxUtility/meta/type_name.h>
28 
30 {
31  // constructors
32  List::List(const type::List& e) :
33  detail::ContainerGenerator<type::List, List>(
34  "std::vector<" + FromAronType(*e.getAcceptedType())->getFullInstantiatedCppTypename() +
35  ">",
36  "std::vector<" + FromAronType(*e.getAcceptedType())->getFullInstantiatedCppTypename() +
37  ">",
38  simox::meta::get_type_name<data::dto::List>(),
39  simox::meta::get_type_name<type::dto::List>(),
40  e)
41  {
42  }
43 
44  std::vector<std::string>
46  {
48  return c->getRequiredIncludes();
49  }
50 
52  List::getResetSoftBlock(const std::string& cppAccessor) const
53  {
54  CppBlockPtr block_if_data = std::make_shared<CppBlock>();
55  block_if_data->addLine(cppAccessor + nextEl() + "clear();");
56  return this->resolveMaybeResetSoftBlock(block_if_data, cppAccessor);
57  }
58 
60  List::getWriteTypeBlock(const std::string& typeAccessor,
61  const std::string& cppAccessor,
62  const Path& p,
63  std::string& variantAccessor) const
64  {
65  CppBlockPtr b = std::make_shared<CppBlock>();
66  std::string escaped_accessor = EscapeAccessor(cppAccessor);
67  variantAccessor = ARON_VARIANT_RETURN_ACCESSOR + "_" + escaped_accessor;
68 
69  auto type_s = FromAronType(*type.getAcceptedType());
70  std::string nextVariantAccessor;
71  Path nextPath = p.withAcceptedType(true);
72  CppBlockPtr b2 = type_s->getWriteTypeBlock(type_s->getInstantiatedCppTypename(),
73  cppAccessor + nextEl() + "accepted_type",
74  nextPath,
75  nextVariantAccessor);
76  b->appendBlock(b2);
77 
78  b->addLine("auto " + variantAccessor + " = " + ARON_WRITER_ACCESSOR + ".writeList(" +
79  nextVariantAccessor + ", " + conversion::Maybe2CppString.at(type.getMaybe()) +
80  ", " + "armarx::aron::Path(" + ARON_PATH_ACCESSOR + ", {" +
81  simox::alg::join(p.getPath(), ", ") + "})); // of " + cppAccessor);
82  return b;
83  }
84 
86  List::getWriteBlock(const std::string& cppAccessor,
87  const Path& p,
88  std::string& variantAccessor) const
89  {
90  CppBlockPtr block_if_data = std::make_shared<CppBlock>();
91  std::string escaped_accessor = EscapeAccessor(cppAccessor);
92  variantAccessor = ARON_VARIANT_RETURN_ACCESSOR + "_" + escaped_accessor;
93 
94  const std::string elementsAccessor = variantAccessor + "_listElements";
95  block_if_data->addLine("std::vector<_Aron_T> " + elementsAccessor + ";");
96 
97  std::string accessor_iterator = ARON_VARIABLE_PREFIX + "_" + escaped_accessor + "_it";
98 
99  auto type_s = FromAronType(*type.getAcceptedType());
100  block_if_data->addLine("for(unsigned int " + accessor_iterator + " = 0; " +
101  accessor_iterator + " < " + cppAccessor + nextEl() + "size(); ++" +
102  accessor_iterator + ")");
103  {
104  std::string nextVariantAccessor;
105  auto for_loop = std::make_shared<CppBlock>();
106  Path nextPath = p.withElement("std::to_string(" + accessor_iterator + ")");
107  auto child_b =
108  type_s->getWriteBlock(cppAccessor + nextEl() + "at(" + accessor_iterator + ")",
109  nextPath,
110  nextVariantAccessor);
111  for_loop->addLine("auto " + nextVariantAccessor + " = " + ARON_WRITER_ACCESSOR +
112  ".writeNull();");
113  for_loop->appendBlock(child_b);
114  for_loop->addLine(elementsAccessor + ".push_back(" + nextVariantAccessor + ");");
115  block_if_data->addBlock(for_loop);
116  }
117 
118  Path path = this->type.getPath();
119  block_if_data->addLine(variantAccessor + " = " + ARON_WRITER_ACCESSOR + ".writeList(" +
120  elementsAccessor + ", " + "armarx::aron::Path(" +
121  ARON_PATH_ACCESSOR + ", {" + simox::alg::join(p.getPath(), ", ") +
122  "})); // of " + cppAccessor);
123 
124  return resolveMaybeWriteBlock(block_if_data, cppAccessor);
125  }
126 
128  List::getReadBlock(const std::string& cppAccessor, const std::string& variantAccessor) const
129  {
130  CppBlockPtr block_if_data = std::make_shared<CppBlock>();
131  std::string escaped_accessor = EscapeAccessor(cppAccessor);
132  std::string elements_accessor =
133  ARON_VARIABLE_PREFIX + "_" + escaped_accessor + "_listElements";
134  std::string accessor_iterator_value =
135  ARON_VARIABLE_PREFIX + "_" + escaped_accessor + "_listValue";
136 
137  block_if_data->addLine("std::vector<_Aron_TNonConst> " + elements_accessor + ";");
138  block_if_data->addLine("" + ARON_READER_ACCESSOR + ".readList(" + variantAccessor + ", " +
139  elements_accessor + ");");
140  block_if_data->addLine("for (const auto& " + accessor_iterator_value + " : " +
141  elements_accessor + ")");
142  {
143  CppBlockPtr for_loop = std::make_shared<CppBlock>();
144 
145  auto type_s = FromAronType(*type.getAcceptedType());
146 
147  std::string accessor_iterator_tmp =
148  ARON_VARIABLE_PREFIX + "_" + escaped_accessor + "_listTmp";
149  for_loop->addLine(type_s->getFullInstantiatedCppTypename() + " " +
150  accessor_iterator_tmp + ";");
151  for_loop->appendBlock(
152  type_s->getReadBlock(accessor_iterator_tmp, accessor_iterator_value));
153  for_loop->addLine(cppAccessor + nextEl() + "push_back(" + accessor_iterator_tmp + ");");
154  block_if_data->addBlock(for_loop);
155  }
156  return resolveMaybeReadBlock(block_if_data, cppAccessor, variantAccessor);
157  }
158 } // namespace armarx::aron::codegenerator::cpp::generator
armarx::aron::Path::withElement
Path withElement(const std::string &, bool escape=false) const
Definition: Path.cpp:163
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::List::getReadBlock
CppBlockPtr getReadBlock(const std::string &cppAccessor, const std::string &variantAccessor) const final
Definition: List.cpp:128
armarx::aron::type::detail::SpecializedVariantBase::getMaybe
type::Maybe getMaybe() const override
get the maybe type
Definition: SpecializedVariant.h:87
armarx::aron::codegenerator::cpp::Generator::FromAronType
static std::unique_ptr< Generator > FromAronType(const type::Variant &)
Definition: Generator.cpp:91
armarx::aron::codegenerator::cpp::Generator::EscapeAccessor
static std::string EscapeAccessor(const std::string &)
Definition: Generator.cpp:53
armarx::aron::type::List
The List class.
Definition: List.h:39
armarx::aron::codegenerator::cpp::Generator::ARON_VARIABLE_PREFIX
static const std::string ARON_VARIABLE_PREFIX
Definition: Generator.h:160
armarx::aron::codegenerator::cpp::generator::List::List
List(const type::List &)
Definition: List.cpp:32
detail
Definition: OpenCVUtil.cpp:128
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
c
constexpr T c
Definition: UnscentedKalmanFilterTest.cpp:46
armarx::aron::codegenerator::cpp::generator::List::getResetSoftBlock
CppBlockPtr getResetSoftBlock(const std::string &cppAccessor) const final
Definition: List.cpp:52
armarx::aron::codegenerator::cpp::Generator::ARON_PATH_ACCESSOR
static const std::string ARON_PATH_ACCESSOR
Definition: Generator.h:163
List.h
armarx::aron::Path
The Path class.
Definition: Path.h:35
armarx::aron::codegenerator::cpp::generator::List::getWriteTypeBlock
CppBlockPtr getWriteTypeBlock(const std::string &typeAccessor, const std::string &cppAccessor, const Path &, std::string &variantAccessor) const final
Definition: List.cpp:60
armarx::aron::codegenerator::cpp::generator::List
Definition: List.h:31
data
uint8_t data[1]
Definition: EtherCATFrame.h:68
armarx::aron::codegenerator::cpp::generator::List::getRequiredIncludes
std::vector< std::string > getRequiredIncludes() const final
Definition: List.cpp:45
armarx::aron::codegenerator::cpp::generator::detail::SpecializedGeneratorBase< type::List, List >::type
type::List type
Definition: SpecializedGenerator.h:59
armarx::aron::codegenerator::cpp::Generator::resolveMaybeReadBlock
CppBlockPtr resolveMaybeReadBlock(const CppBlockPtr &, const std::string &, const std::string &) const
Definition: Generator.cpp:711
armarx::aron::type::List::getAcceptedType
VariantPtr getAcceptedType() const
Definition: List.cpp:43
armarx::aron::codegenerator::cpp::generator
Definition: AnyObject.cpp:28
armarx::aron::Path::withAcceptedType
Path withAcceptedType(bool escape=false) const
Definition: Path.cpp:174
armarx::aron::codegenerator::cpp::generator::List::getWriteBlock
CppBlockPtr getWriteBlock(const std::string &cppAccessor, const Path &, std::string &variantAccessor) const final
Definition: List.cpp:86
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::codegenerator::cpp::Generator::ARON_READER_ACCESSOR
static const std::string ARON_READER_ACCESSOR
Definition: Generator.h:164
simox
Definition: Impl.cpp:40
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::Path::getPath
std::vector< std::string > getPath() const
Definition: Path.cpp:87
armarx::aron::type::Variant::getPath
Path getPath() const
Definition: Variant.cpp:68