Leosac  0.8.0
Open Source Access Control
RFIDReaderSerializer.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  const SecurityContext &sc)
32 {
33  json serialized = DeviceSerializer::serialize(in, sc);
34  ASSERT_LOG(serialized.at("type").is_string(),
35  "Base device serialization did something unexpected.");
36 
37  // Override object type
38  serialized["type"] = "rfid-reader";
39  return serialized;
40 }
41 
43  const SecurityContext &sc)
44 {
45  using namespace JSONUtil;
46  DeviceSerializer::unserialize(out, in, sc);
47 }
48 }
49 }
RFIDReaderSerializer.hpp
Leosac::json
nlohmann::json json
Definition: AuditSerializer.hpp:29
ASSERT_LOG
#define ASSERT_LOG(cond, msg)
Definition: log.hpp:190
Leosac
This is the header file for a generated source file, GitSHA1.cpp.
Definition: APIStatusCode.hpp:22
JSONUtils.hpp
Leosac::Hardware::RFIDReaderSerializer::unserialize
static void unserialize(Hardware::RFIDReader &out, const json &in, const SecurityContext &sc)
Definition: RFIDReaderSerializer.cpp:42
log.hpp
Leosac::Hardware::RFIDReader
Abstraction of a RFID Reader device.
Definition: RFIDReader.hpp:42
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::Hardware::RFIDReaderSerializer::serialize
static json serialize(const Hardware::RFIDReader &in, const SecurityContext &sc)
Definition: RFIDReaderSerializer.cpp:30
Leosac::SecurityContext
A SecurityContext is used to query permission while doing an operation.
Definition: SecurityContext.hpp:40