blob: d2f9e7e007cbd5d01250b821404a838831258058 [file] [log] [blame]
Suyong Won19fba4d2020-05-09 13:39:46 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
3 * Copyright (c) 2017-2020, Regents of the University of California.
4 *
5 * This file is part of ndncert, a certificate management system based on NDN.
6 *
7 * ndncert is free software: you can redistribute it and/or modify it under the terms
8 * of the GNU General Public License as published by the Free Software Foundation, either
9 * version 3 of the License, or (at your option) any later version.
10 *
11 * ndncert is distributed in the hope that it will be useful, but WITHOUT ANY
12 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
13 * PARTICULAR PURPOSE. See the GNU General Public License for more details.
14 *
15 * You should have received copies of the GNU General Public License along with
16 * ndncert, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
17 *
18 * See AUTHORS.md for complete list of ndncert authors and contributors.
19 */
20
21#include "probe.hpp"
Zhiyi Zhang3e8ca252020-09-30 17:18:38 -070022
Suyong Won19fba4d2020-05-09 13:39:46 -070023namespace ndn {
24namespace ndncert {
25
Suyong Won19fba4d2020-05-09 13:39:46 -070026Block
Zhiyi Zhang9829da92020-09-30 16:19:34 -070027PROBE::encodeApplicationParameters(std::vector<std::tuple<std::string, std::string>>&& parameters)
Suyong Won19fba4d2020-05-09 13:39:46 -070028{
29 auto content = makeEmptyBlock(tlv::ApplicationParameters);
Zhiyi Zhang9829da92020-09-30 16:19:34 -070030 for (size_t i = 0; i < parameters.size(); ++i) {
31 content.push_back(makeStringBlock(tlv_parameter_key, std::get<0>(parameters[i])));
32 content.push_back(makeStringBlock(tlv_parameter_value, std::get<1>(parameters[i])));
Suyong Won19fba4d2020-05-09 13:39:46 -070033 }
Suyong Won44d0cce2020-05-10 04:07:43 -070034 content.encode();
Suyong Won19fba4d2020-05-09 13:39:46 -070035 return content;
36}
37
Zhiyi Zhang3e8ca252020-09-30 17:18:38 -070038std::vector<std::tuple<std::string, std::string>>
39PROBE::decodeApplicationParameters(const Block& block)
40{
41 std::vector<std::tuple<std::string, std::string>> result;
42 block.parse();
43 for (size_t i = 0; i < block.elements().size() - 1; ++i) {
44 if (block.elements().at(i).type() == tlv_parameter_key && block.elements().at(i + 1).type() == tlv_parameter_value) {
45 result.push_back(std::make_tuple(readString(block.elements().at(i)), readString(block.elements().at(i + 1))));
46 }
47 }
48 return result;
49}
50
Suyong Won19fba4d2020-05-09 13:39:46 -070051Block
Zhiyi Zhange537dd52020-10-01 18:02:24 -070052PROBE::encodeDataContent(const std::vector<Name>& identifiers, boost::optional<size_t> maxSuffixLength,
53 boost::optional<std::vector<std::shared_ptr<security::v2::Certificate>>> redirectionItems)
Suyong Won19fba4d2020-05-09 13:39:46 -070054{
Suyong Won19fba4d2020-05-09 13:39:46 -070055 Block content = makeEmptyBlock(tlv::Content);
Zhiyi Zhang9829da92020-09-30 16:19:34 -070056 for (const auto& name : identifiers) {
57 content.push_back(makeNestedBlock(tlv_probe_response, name));
58 }
59 if (maxSuffixLength) {
60 content.push_back(makeNonNegativeIntegerBlock(tlv_max_suffix_length, *maxSuffixLength));
61 }
Zhiyi Zhange537dd52020-10-01 18:02:24 -070062 if (redirectionItems) {
63 for (const auto& item : *redirectionItems) {
64 content.push_back(makeNestedBlock(tlv_probe_redirect, item->getFullName()));
65 }
66 }
Suyong Won44d0cce2020-05-10 04:07:43 -070067 content.encode();
Suyong Won19fba4d2020-05-09 13:39:46 -070068 return content;
69}
70
Zhiyi Zhange537dd52020-10-01 18:02:24 -070071void
72PROBE::decodeDataContent(const Block& block,
73 std::vector<Name>& availableNames,
74 std::vector<Name>& availableRedirection)
Zhiyi Zhang3e8ca252020-09-30 17:18:38 -070075{
Zhiyi Zhang3e8ca252020-09-30 17:18:38 -070076 block.parse();
77 for (const auto& item : block.elements()) {
78 if (item.type() == tlv_probe_response) {
Zhiyi Zhange537dd52020-10-01 18:02:24 -070079 availableNames.push_back(Name(item.blockFromValue()));
80 }
81 if (item.type() == tlv_probe_redirect) {
82 availableRedirection.push_back(Name(item.blockFromValue()));
Zhiyi Zhang3e8ca252020-09-30 17:18:38 -070083 }
84 }
Zhiyi Zhang3e8ca252020-09-30 17:18:38 -070085}
86
Suyong Won19fba4d2020-05-09 13:39:46 -070087} // namespace ndncert
88} // namespace ndn