Leosac  0.8.0
Open Source Access Control
GPIOSerializer.cpp
Go to the documentation of this file.
1 /*
2  Copyright (C) 2014-2017 Leosac
3 
4  This file is part of Leosac.
5 
6  Leosac is free software: you can redistribute it and/or modify
7  it under the terms of the GNU Affero General Public License as published by
8  the Free Software Foundation, either version 3 of the License, or
9  (at your option) any later version.
10 
11  Leosac is distributed in the hope that it will be useful,
12  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  GNU Affero General Public License for more details.
15 
16  You should have received a copy of the GNU Affero General Public License
17  along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19 
20 
23 #include "tools/JSONUtils.hpp"
24 #include "tools/log.hpp"
25 
26 namespace Leosac
27 {
28 namespace Hardware
29 {
31 {
32  json serialized = DeviceSerializer::serialize(in, sc);
33  ASSERT_LOG(serialized.at("type").is_string(),
34  "Base device serialization did something unexpected.");
35 
36  // Override object type
37  serialized["type"] = "gpio";
38 
39  // Add GPIO specific attributes
40  serialized["attributes"]["number"] = in.number();
41  serialized["attributes"]["direction"] = in.direction();
42  serialized["attributes"]["default-value"] = in.default_value();
43 
44  return serialized;
45 }
46 
48  const SecurityContext &sc)
49 {
50  using namespace JSONUtil;
51  DeviceSerializer::unserialize(out, in, sc);
52 
53  out.number(extract_with_default(in, "number", out.number()));
54  out.direction(extract_with_default(in, "direction", out.direction()));
55  out.default_value(
56  extract_with_default(in, "default-value", out.default_value()));
57 }
58 }
59 }
Leosac::json
nlohmann::json json
Definition: AuditSerializer.hpp:29
Leosac::JSONUtil::extract_with_default
std::chrono::system_clock::time_point extract_with_default(const nlohmann::json &obj, const std::string &key, const std::chrono::system_clock::time_point &tp)
Extract an ISO 8601 datetime string from a json object.
Definition: JSONUtils.cpp:45
ASSERT_LOG
#define ASSERT_LOG(cond, msg)
Definition: log.hpp:190
Leosac::Hardware::GPIO::number
uint16_t number() const
Definition: GPIO.cpp:36
GPIOSerializer.hpp
Leosac::Hardware::GPIO::default_value
bool default_value() const
Definition: GPIO.cpp:56
Leosac
This is the header file for a generated source file, GitSHA1.cpp.
Definition: APIStatusCode.hpp:22
Leosac::Hardware::GPIOSerializer::serialize
static json serialize(const Hardware::GPIO &in, const SecurityContext &sc)
Definition: GPIOSerializer.cpp:30
Leosac::Hardware::GPIO::direction
Direction direction() const
Definition: GPIO.cpp:46
JSONUtils.hpp
log.hpp
Leosac::Hardware::GPIOSerializer::unserialize
static void unserialize(Hardware::GPIO &out, const json &in, const SecurityContext &sc)
Definition: GPIOSerializer.cpp:47
Leosac::Hardware::DeviceSerializer::serialize
static json serialize(const Hardware::Device &in, const SecurityContext &sc)
Definition: DeviceSerializer.cpp:28
Leosac::Hardware::DeviceSerializer::unserialize
static void unserialize(Hardware::Device &out, const json &in, const SecurityContext &sc)
Definition: DeviceSerializer.cpp:40
DeviceSerializer.hpp
Leosac::SecurityContext
A SecurityContext is used to query permission while doing an operation.
Definition: SecurityContext.hpp:40
Leosac::Hardware::GPIO
Abstraction of a GPIO device attributes.
Definition: GPIO.hpp:41