Reader.h
Go to the documentation of this file.
1 /**
2  * This file is part of ArmarX.
3  *
4  * ArmarX is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License version 2 as
6  * published by the Free Software Foundation.
7  *
8  * ArmarX is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11  * GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program. If not, see <http://www.gnu.org/licenses/>.
15  *
16  * @author Fabian Reister ( fabian dot reister at kit dot edu )
17  * @date 2021
18  * @copyright http://www.gnu.org/licenses/gpl-2.0.txt
19  * GNU General Public License
20  */
21 
22 #pragma once
23 
24 #include <string>
25 
27 
31 
33 
35 {
36 
38  {
39  public:
41 
42  struct Query
43  {
45  std::string clientID;
46  };
47 
49  {
51 
52  enum Status
53  {
57  } status;
58 
59  std::string errorMessage = "";
60 
61  operator bool() const noexcept
62  {
63  return status == Status::Success;
64  }
65  };
66 
68  {
70 
71  enum Status
72  {
76  } status;
77 
78  std::string errorMessage = "";
79 
80  operator bool() const noexcept
81  {
82  return status == Status::Success;
83  }
84  };
85 
86  GlobalPlannerResult queryGlobalPlannerResult(const Query& query);
87  LocalPlannerResult queryLocalPlannerResult(const Query& query);
88 
89  std::string propertyPrefix() const override;
90  Properties defaultProperties() const override;
91 
92  protected:
93  private:
95  asLocalPlannerResult(const armem::wm::ProviderSegment& providerSegment);
96 
98  asGlobalPlannerResult(const armem::wm::ProviderSegment& providerSegment);
99 
101  buildLocalPlannerResultQuery(const Query& query) const;
102 
104  buildGlobalPlannerResultQuery(const Query& query) const;
105  };
106 } // namespace armarx::navigation::memory::client::stack_result
armarx::navigation::core::GlobalTrajectory
Definition: Trajectory.h:70
armarx::navigation::memory::client::stack_result::Reader::Query::clientID
std::string clientID
Definition: Reader.h:45
armarx::navigation::memory::client::stack_result::Reader::LocalPlannerResult::trajectory
armarx::navigation::core::LocalTrajectory trajectory
Definition: Reader.h:50
armarx::armem::wm::ProviderSegment
Client-side working memory provider segment.
Definition: memory_definitions.h:105
armarx::navigation::memory::client::stack_result::Reader::Query::timestamp
DateTime timestamp
Definition: Reader.h:44
armarx::navigation::memory::client::stack_result::Reader::GlobalPlannerResult::Error
@ Error
Definition: Reader.h:75
DateTime.h
armarx::navigation::memory::client::stack_result::Reader::LocalPlannerResult::Error
@ Error
Definition: Reader.h:56
armarx::navigation::memory::client::stack_result::Reader::LocalPlannerResult::Success
@ Success
Definition: Reader.h:54
armarx::navigation::memory::client::stack_result::Reader::LocalPlannerResult::status
enum armarx::navigation::memory::client::stack_result::Reader::LocalPlannerResult::Status status
armarx::navigation::memory::client::stack_result::Reader::GlobalPlannerResult::errorMessage
std::string errorMessage
Definition: Reader.h:78
armarx::navigation::memory::client::stack_result
This file is part of ArmarX.
Definition: Reader.cpp:19
Query.h
armarx::navigation::memory::client::stack_result::Reader::LocalPlannerResult::NoData
@ NoData
Definition: Reader.h:55
armarx::navigation::memory::client::stack_result::Reader::LocalPlannerResult::Status
Status
Definition: Reader.h:52
armarx::navigation::memory::client::stack_result::Reader::GlobalPlannerResult::Status
Status
Definition: Reader.h:71
armarx::navigation::memory::client::stack_result::Reader::Query
Definition: Reader.h:42
armarx::navigation::memory::client::stack_result::Reader::LocalPlannerResult::errorMessage
std::string errorMessage
Definition: Reader.h:59
armarx::status
status
Definition: FiniteStateMachine.h:244
armarx::navigation::memory::client::stack_result::Reader::queryGlobalPlannerResult
GlobalPlannerResult queryGlobalPlannerResult(const Query &query)
armarx::navigation::memory::client::stack_result::Reader::GlobalPlannerResult::status
enum armarx::navigation::memory::client::stack_result::Reader::GlobalPlannerResult::Status status
armarx::navigation::memory::client::stack_result::Reader::GlobalPlannerResult::Success
@ Success
Definition: Reader.h:73
armarx::navigation::memory::client::stack_result::Reader::GlobalPlannerResult::trajectory
armarx::navigation::core::GlobalTrajectory trajectory
Definition: Reader.h:69
armarx::navigation::core::LocalTrajectory
Definition: Trajectory.h:170
memory_definitions.h
armarx::navigation::memory::client::stack_result::Reader::defaultProperties
Properties defaultProperties() const override
Definition: Reader.cpp:79
armarx::core::time::DateTime
Represents a point in time.
Definition: DateTime.h:24
armarx::navigation::memory::client::stack_result::Reader::GlobalPlannerResult
Definition: Reader.h:67
armarx::armem::client::util::SimpleReaderBase::SimpleReaderBase
SimpleReaderBase()
Definition: SimpleReaderBase.cpp:9
armarx::armem::client::query::Builder
The query::Builder class provides a fluent-style specification of hierarchical queries.
Definition: Builder.h:21
armarx::navigation::memory::client::stack_result::Reader
Definition: Reader.h:37
armarx::navigation::memory::client::stack_result::Reader::LocalPlannerResult
Definition: Reader.h:48
armarx::navigation::memory::client::stack_result::Reader::queryLocalPlannerResult
LocalPlannerResult queryLocalPlannerResult(const Query &query)
Definition: Reader.cpp:22
Trajectory.h
armarx::navigation::memory::client::stack_result::Reader::GlobalPlannerResult::NoData
@ NoData
Definition: Reader.h:74
SimpleReaderBase.h
armarx::navigation::memory::client::stack_result::Reader::propertyPrefix
std::string propertyPrefix() const override
Definition: Reader.cpp:73
armarx::armem::client::util::SimpleReaderBase
Definition: SimpleReaderBase.h:38