blob: ae5ecdcaaed6803491169463e3a2616826ec8867 [file] [log] [blame]
Junxiao Shi38f4ce92016-08-04 10:01:52 +00001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Junxiao Shib347b7f2017-07-23 14:01:58 +00002/*
Davide Pesavento264af772021-02-09 21:48:24 -05003 * Copyright (c) 2014-2021, Regents of the University of California,
Junxiao Shi38f4ce92016-08-04 10:01:52 +00004 * Arizona Board of Regents,
5 * Colorado State University,
6 * University Pierre & Marie Curie, Sorbonne University,
7 * Washington University in St. Louis,
8 * Beijing Institute of Technology,
9 * The University of Memphis.
10 *
11 * This file is part of NFD (Named Data Networking Forwarding Daemon).
12 * See AUTHORS.md for complete list of NFD authors and contributors.
13 *
14 * NFD is free software: you can redistribute it and/or modify it under the terms
15 * of the GNU General Public License as published by the Free Software Foundation,
16 * either version 3 of the License, or (at your option) any later version.
17 *
18 * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
19 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
20 * PURPOSE. See the GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License along with
23 * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
24 */
25
Junxiao Shi331ade72016-08-19 14:07:19 +000026#ifndef NFD_TOOLS_NFDC_STATUS_REPORT_HPP
27#define NFD_TOOLS_NFDC_STATUS_REPORT_HPP
Junxiao Shi38f4ce92016-08-04 10:01:52 +000028
29#include "module.hpp"
Davide Pesavento264af772021-02-09 21:48:24 -050030
Junxiao Shib347b7f2017-07-23 14:01:58 +000031#include <ndn-cxx/face.hpp>
32#include <ndn-cxx/security/key-chain.hpp>
Alexander Afanasyeva1583702020-06-03 13:55:45 -040033#include <ndn-cxx/security/validator.hpp>
Junxiao Shi38f4ce92016-08-04 10:01:52 +000034
35namespace nfd {
36namespace tools {
Junxiao Shi331ade72016-08-19 14:07:19 +000037namespace nfdc {
Junxiao Shi38f4ce92016-08-04 10:01:52 +000038
39using ndn::Face;
Junxiao Shi16a3adf2017-05-26 17:38:51 +000040using ndn::KeyChain;
Alexander Afanasyeva1583702020-06-03 13:55:45 -040041using ndn::security::Validator;
Junxiao Shi38f4ce92016-08-04 10:01:52 +000042
Junxiao Shi8c39bf02016-08-28 23:54:13 +000043enum class ReportFormat {
44 XML = 1,
45 TEXT = 2
46};
47
48ReportFormat
49parseReportFormat(const std::string& s);
50
51std::ostream&
52operator<<(std::ostream& os, ReportFormat fmt);
53
Junxiao Shi38f4ce92016-08-04 10:01:52 +000054/** \brief collects and prints NFD status report
55 */
56class StatusReport : noncopyable
57{
58public:
Davide Pesavento264af772021-02-09 21:48:24 -050059#ifdef NFD_WITH_TESTS
Junxiao Shi38f4ce92016-08-04 10:01:52 +000060 virtual
61 ~StatusReport() = default;
62#endif
63
64 /** \brief collect status via chosen \p sections
65 *
66 * This function is blocking. It has exclusive use of \p face.
67 *
68 * \return if status has been fetched successfully, 0;
69 * otherwise, error code from any failed section, plus 1000000 * section index
70 */
71 uint32_t
72 collect(Face& face, KeyChain& keyChain, Validator& validator, const CommandOptions& options);
73
74 /** \brief print an XML report
75 * \param os output stream
76 */
77 void
78 formatXml(std::ostream& os) const;
79
80 /** \brief print a text report
81 * \param os output stream
82 */
83 void
84 formatText(std::ostream& os) const;
85
86private:
Davide Pesavento264af772021-02-09 21:48:24 -050087 NFD_VIRTUAL_WITH_TESTS void
Junxiao Shi38f4ce92016-08-04 10:01:52 +000088 processEvents(Face& face);
89
90public:
91 /** \brief modules through which status is collected
92 */
93 std::vector<unique_ptr<Module>> sections;
94};
95
Junxiao Shi331ade72016-08-19 14:07:19 +000096} // namespace nfdc
Junxiao Shi38f4ce92016-08-04 10:01:52 +000097} // namespace tools
98} // namespace nfd
99
Junxiao Shi331ade72016-08-19 14:07:19 +0000100#endif // NFD_TOOLS_NFDC_STATUS_REPORT_HPP