json_conversions.cpp
Go to the documentation of this file.
1 #include "json_conversions.h"
2 
3 #include <IceUtil/Time.h>
4 
7 
8 namespace armarx::core
9 {
10 
11  void
12  time::to_json(simox::json::json& j, const ClockType& bo)
13  {
14  j = ClockTypeNames.to_name(bo);
15  }
16 
17  void
18  time::from_json(const simox::json::json& j, ClockType& bo)
19  {
20  bo = ClockTypeNames.from_name(j);
21  }
22 
23  void
24  time::to_json(simox::json::json& j, const Duration& bo)
25  {
26  j["microSeconds"] = bo.toMicroSeconds();
27  j["humanReadable"] = bo.toDurationString();
28  }
29 
30  void
31  time::from_json(const simox::json::json& j, Duration& bo)
32  {
33  bo = Duration::MicroSeconds(j.at("microSeconds"));
34  }
35 
36  void
37  time::to_json(simox::json::json& j, const Frequency& bo)
38  {
39  j["cycleDuration"] = bo.toCycleDuration();
40  j["hertz"] = bo.toHertzDouble();
41  }
42 
43  void
44  time::from_json(const simox::json::json& j, Frequency& bo)
45  {
46  bo = Frequency(j.at("cycleDuration").get<Duration>());
47  }
48 
49  void
50  time::to_json(simox::json::json& j, const DateTime& bo)
51  {
52  j["durationSinceEpoch"] = bo.toDurationSinceEpoch();
53  j["clockType"] = bo.clockType();
54  j["hostname"] = bo.hostname();
55  j["humanReadable"] = bo.toDateTimeString();
56  }
57 
58  void
59  time::from_json(const simox::json::json& j, DateTime& bo)
60  {
61  bo = DateTime(j.at("durationSinceEpoch").get<Duration>(),
62  j.at("clockType").get<ClockType>(),
63  j.at("hostname").get<std::string>());
64  }
65 
66 } // namespace armarx::core
armarx::core::time::to_json
void to_json(simox::json::json &j, const ClockType &bo)
Definition: json_conversions.cpp:12
armarx::core::time::ClockTypeNames
const simox::meta::EnumNames< ClockType > ClockTypeNames
Definition: ClockTypeNames.cpp:6
armarx::core::time::Frequency
Represents a frequency.
Definition: Frequency.h:16
ClockTypeNames.h
armarx::core
Definition: conversions.cpp:3
armarx::core::time::ClockType
ClockType
Describes the type of clock.
Definition: ClockType.h:9
armarx::core::time::from_json
void from_json(const simox::json::json &j, ClockType &bo)
Definition: json_conversions.cpp:18
armarx::core::time::DateTime
Represents a point in time.
Definition: DateTime.h:24
armarx::core::time::Duration
Represents a duration.
Definition: Duration.h:16
json_conversions.h
time_minimal.h
armarx::core::time::Duration::MicroSeconds
static Duration MicroSeconds(std::int64_t microSeconds)
Constructs a duration in microseconds.
Definition: Duration.cpp:24
armarx::aron::bo
const std::optional< BoT > & bo
Definition: aron_conversions.h:174