blob: 57eb0f0c93688ad8bdaa2e971b31ec7cda0ca95e [file] [log] [blame]
Junxiao Shi05dd4442017-02-06 22:50:07 +00001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
3 * Copyright (c) 2014-2017, Regents of the University of California,
4 * 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
73 /** \brief find face by FaceQueryFilter
74 * \pre execute has not been invoked
75 */
76 Code
77 execute(const FaceQueryFilter& filter, bool allowMulti = false);
78
79 /** \return face status for all results
80 */
81 const std::vector<FaceStatus>&
82 getResults() const
83 {
84 return m_results;
85 }
86
87 /** \return a single face status
88 * \pre getResults().size() == 1
89 */
90 const FaceStatus&
91 getFaceStatus() const;
92
93 uint64_t
94 getFaceId() const
95 {
96 return this->getFaceStatus().getFaceId();
97 }
98
99 const std::string&
100 getErrorReason() const
101 {
102 return m_errorReason;
103 }
104
105 /** \brief print results for disambiguation
106 */
107 void
108 printDisambiguation(std::ostream& os, DisambiguationStyle style) const;
109
110private:
111 /** \brief canonize FaceUri
112 * \return canonical FaceUri if canonization succeeds, input if canonization is unsupported
113 * \retval nullopt canonization fails; m_errorReason describes the failure
114 */
115 ndn::optional<FaceUri>
116 canonize(const std::string& fieldName, const FaceUri& input);
117
118 /** \brief retrieve FaceStatus from filter
119 * \post m_res == Code::OK and m_results is populated if retrieval succeeds
120 * \post m_res == Code::ERROR and m_errorReason is set if retrieval fails
121 */
122 void
123 query();
124
125private:
126 ExecuteContext& m_ctx;
127 FaceQueryFilter m_filter;
128 Code m_res = Code::NOT_STARTED;
129 std::vector<FaceStatus> m_results;
130 std::string m_errorReason;
131};
132
133} // namespace nfdc
134} // namespace tools
135} // namespace nfd
136
137#endif // NFD_TOOLS_NFDC_FIND_FACE_HPP