blob: ee1c521e4cb0ca2e0f364df98425c6aa564cfb0b [file] [log] [blame]
Junxiao Shi05dd4442017-02-06 22:50:07 +00001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesavento87fc0f82018-04-11 23:43:51 -04002/*
Davide Pesaventob7bfcb92022-05-22 23:55:23 -04003 * Copyright (c) 2014-2022, Regents of the University of California,
Junxiao Shi05dd4442017-02-06 22:50:07 +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
26#ifndef NFD_TOOLS_NFDC_FIND_FACE_HPP
27#define NFD_TOOLS_NFDC_FIND_FACE_HPP
28
29#include "execute-command.hpp"
30
31namespace nfd {
32namespace tools {
33namespace nfdc {
34
35using ndn::nfd::FaceQueryFilter;
36using ndn::nfd::FaceStatus;
37
38/** \brief procedure to find a face
39 */
40class FindFace : noncopyable
41{
42public:
43 enum class Code {
44 OK = 0, ///< found exactly one face, or found multiple faces when allowMulti is true
45 ERROR = 1, ///< unspecified error
46 NOT_FOUND = 3, ///< found zero face
47 CANONIZE_ERROR = 4, ///< error during FaceUri canonization
48 AMBIGUOUS = 5, ///< found multiple faces and allowMulti is false
49 NOT_STARTED = -1, ///< for internal use
50 IN_PROGRESS = -2, ///< for internal use
51 };
52
53 enum class DisambiguationStyle
54 {
55 LOCAL_URI = 1 ///< print FaceId and LocalUri
56 };
57
58 explicit
59 FindFace(ExecuteContext& ctx);
60
61 /** \brief find face by FaceUri
62 * \pre execute has not been invoked
63 */
64 Code
65 execute(const FaceUri& faceUri, bool allowMulti = false);
66
67 /** \brief find face by FaceId
68 * \pre execute has not been invoked
69 */
70 Code
71 execute(uint64_t faceId);
72
Junxiao Shi918e5d42017-02-25 03:58:21 +000073 /** \brief find face by FaceId or FaceUri
Davide Pesaventob7bfcb92022-05-22 23:55:23 -040074 * \param faceIdOrUri either a FaceId (uint64_t) or a FaceUri
Junxiao Shi084b7952017-02-26 22:00:53 +000075 * \param allowMulti effective only if \p faceIdOrUri contains a FaceUri
Davide Pesavento8b663a92018-11-21 22:57:20 -050076 * \throw ndn::bad_any_cast faceIdOrUri is neither uint64_t nor FaceUri
Junxiao Shi918e5d42017-02-25 03:58:21 +000077 */
78 Code
Davide Pesaventob7bfcb92022-05-22 23:55:23 -040079 execute(const std::any& faceIdOrUri, bool allowMulti = false);
Junxiao Shi918e5d42017-02-25 03:58:21 +000080
Junxiao Shi05dd4442017-02-06 22:50:07 +000081 /** \brief find face by FaceQueryFilter
82 * \pre execute has not been invoked
83 */
84 Code
85 execute(const FaceQueryFilter& filter, bool allowMulti = false);
86
87 /** \return face status for all results
88 */
89 const std::vector<FaceStatus>&
90 getResults() const
91 {
92 return m_results;
93 }
94
Junxiao Shi1d62e622017-03-08 22:39:28 +000095 /** \return FaceId for all results
96 */
97 std::set<uint64_t>
98 getFaceIds() const;
99
Junxiao Shi05dd4442017-02-06 22:50:07 +0000100 /** \return a single face status
101 * \pre getResults().size() == 1
102 */
103 const FaceStatus&
104 getFaceStatus() const;
105
106 uint64_t
107 getFaceId() const
108 {
109 return this->getFaceStatus().getFaceId();
110 }
111
112 const std::string&
113 getErrorReason() const
114 {
115 return m_errorReason;
116 }
117
118 /** \brief print results for disambiguation
119 */
120 void
121 printDisambiguation(std::ostream& os, DisambiguationStyle style) const;
122
123private:
Davide Pesaventob7bfcb92022-05-22 23:55:23 -0400124 std::optional<FaceUri>
Eric Newberryd656aff2020-04-03 00:30:38 -0700125 canonize(const std::string& fieldName, const FaceUri& uri);
Junxiao Shi05dd4442017-02-06 22:50:07 +0000126
127 /** \brief retrieve FaceStatus from filter
128 * \post m_res == Code::OK and m_results is populated if retrieval succeeds
129 * \post m_res == Code::ERROR and m_errorReason is set if retrieval fails
130 */
131 void
132 query();
133
134private:
135 ExecuteContext& m_ctx;
136 FaceQueryFilter m_filter;
137 Code m_res = Code::NOT_STARTED;
138 std::vector<FaceStatus> m_results;
139 std::string m_errorReason;
140};
141
142} // namespace nfdc
143} // namespace tools
144} // namespace nfd
145
146#endif // NFD_TOOLS_NFDC_FIND_FACE_HPP