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
26
#include <
ArmarXCore/core/time/DateTime.h
>
27
28
#include <
RobotAPI/libraries/armem/client/Query.h
>
29
#include <
RobotAPI/libraries/armem/client/util/SimpleReaderBase.h
>
30
#include <
RobotAPI/libraries/armem/core/wm/memory_definitions.h
>
31
32
#include <
armarx/navigation/core/Trajectory.h
>
33
34
namespace
armarx::navigation::memory::client::stack_result
35
{
36
37
class
Reader
:
virtual
public
armem::client::util::SimpleReaderBase
38
{
39
public
:
40
using
armem::client::util::SimpleReaderBase::SimpleReaderBase
;
41
42
struct
Query
43
{
44
DateTime
timestamp
;
45
std::string
clientID
;
46
};
47
48
struct
LocalPlannerResult
49
{
50
armarx::navigation::core::LocalTrajectory
trajectory
;
51
52
enum
Status
53
{
54
Success
,
55
NoData
,
56
Error
57
}
status
;
58
59
std::string
errorMessage
=
""
;
60
61
operator
bool() const noexcept
62
{
63
return
status
== Status::Success;
64
}
65
};
66
67
struct
GlobalPlannerResult
68
{
69
armarx::navigation::core::GlobalTrajectory
trajectory
;
70
71
enum
Status
72
{
73
Success
,
74
NoData
,
75
Error
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
:
94
armarx::navigation::core::LocalTrajectory
95
asLocalPlannerResult(
const
armem::wm::ProviderSegment
& providerSegment);
96
97
armarx::navigation::core::GlobalTrajectory
98
asGlobalPlannerResult(
const
armem::wm::ProviderSegment
& providerSegment);
99
100
armarx::armem::client::query::Builder
101
buildLocalPlannerResultQuery(
const
Query& query)
const
;
102
103
armarx::armem::client::query::Builder
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
armarx
navigation
memory
client
stack_result
Reader.h
Generated on Sat Mar 29 2025 09:17:27 for armarx_documentation by
1.8.17