NDArray.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 "NDArray.h"
26 
27 #include <SimoxUtility/meta/type_name.h>
28 
30 {
31  // constructors
33  detail::NDArrayGenerator<type::NDArray, NDArray>(
34  "NDArray",
35  "NDArray",
36  simox::meta::get_type_name<data::dto::NDArray>(),
37  simox::meta::get_type_name<type::dto::NDArray>(),
38  n)
39  {
40  }
41 
42  std::pair<std::vector<std::pair<std::string, std::string>>, bool>
43  NDArray::getCtorInitializers(const std::string&) const
44  {
45  return {{}, false};
46  }
47 
49  NDArray::getResetSoftBlock(const std::string& cppAccessor) const
50  {
51  CppBlockPtr block_if_data = std::make_shared<CppBlock>();
52  block_if_data->addLine(cppAccessor + " = " + this->getFullInstantiatedCppTypename() +
53  "();");
54  return resolveMaybeResetSoftBlock(block_if_data, cppAccessor);
55  }
56 
58  NDArray::getWriteTypeBlock(const std::string&,
59  const std::string&,
60  const Path& p,
61  std::string&) const
62  {
63  CppBlockPtr b = std::make_shared<CppBlock>();
64  return b;
65  }
66 
68  NDArray::getWriteBlock(const std::string& cppAccessor, const Path& p, std::string&) const
69  {
70  CppBlockPtr b = std::make_shared<CppBlock>();
71  return b;
72  }
73 
75  NDArray::getReadBlock(const std::string& cppAccessor, const std::string&) const
76  {
77  CppBlockPtr b = std::make_shared<CppBlock>();
78  return b;
79  }
80 } // namespace armarx::aron::codegenerator::cpp::generator
armarx::aron::codegenerator::cpp::Generator::getFullInstantiatedCppTypename
std::string getFullInstantiatedCppTypename() const
Definition: Generator.cpp:116
armarx::aron::codegenerator::cpp::generator::NDArray::getCtorInitializers
std::pair< std::vector< std::pair< std::string, std::string > >, bool > getCtorInitializers(const std::string &) const final
Definition: NDArray.cpp:43
armarx::aron::type::NDArray
The NDArray class.
Definition: NDArray.h:38
detail
Definition: OpenCVUtil.cpp:127
armarx::CppBlockPtr
std::shared_ptr< CppBlock > CppBlockPtr
Definition: CppBlock.h:35
armarx::aron::Path
The Path class.
Definition: Path.h:36
armarx::aron::codegenerator::cpp::generator::NDArray
Definition: NDArray.h:33
NDArray.h
data
uint8_t data[1]
Definition: EtherCATFrame.h:68
armarx::aron::codegenerator::cpp::generator::NDArray::getWriteTypeBlock
CppBlockPtr getWriteTypeBlock(const std::string &typeAccessor, const std::string &cppAccessor, const Path &, std::string &variantAccessor) const final
Definition: NDArray.cpp:58
armarx::aron::codegenerator::cpp::generator::NDArray::getResetSoftBlock
CppBlockPtr getResetSoftBlock(const std::string &cppAccessor) const final
Definition: NDArray.cpp:49
armarx::aron::codegenerator::cpp::generator::NDArray::getWriteBlock
CppBlockPtr getWriteBlock(const std::string &cppAccessor, const Path &, std::string &variantAccessor) const final
Definition: NDArray.cpp:68
armarx::aron::codegenerator::cpp::generator
Definition: AnyObject.cpp:29
armarx::aron::codegenerator::cpp::generator::NDArray::getReadBlock
CppBlockPtr getReadBlock(const std::string &cppAccessor, const std::string &variantAccessor) const final
Definition: NDArray.cpp:75
armarx::aron::codegenerator::cpp::Generator::resolveMaybeResetSoftBlock
CppBlockPtr resolveMaybeResetSoftBlock(const CppBlockPtr &, const std::string &) const
Definition: Generator.cpp:677
simox
Definition: Impl.cpp:40
armarx::aron::codegenerator::cpp::generator::NDArray::NDArray
NDArray(const type::NDArray &)
Definition: NDArray.cpp:32