blob: 45c3f1ed3a5285d1775ddae2100a07555839716a [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
Junxiao Shi918e5d42017-02-25 03:58:21 +000073 /** \brief find face by FaceId or FaceUri
74 * \param faceIdOrUri a boost::any that contains uint64_t or FaceUri
75 * \note allowMulti will be set to false
76 * \throw boost::bad_any_cast faceIdOrUri is neither uint64_t nor FaceUri
77 */
78 Code
79 execute(const boost::any& faceIdOrUri);
80
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
95 /** \return a single face status
96 * \pre getResults().size() == 1
97 */
98 const FaceStatus&
99 getFaceStatus() const;
100
101 uint64_t
102 getFaceId() const
103 {
104 return this->getFaceStatus().getFaceId();
105 }
106
107 const std::string&
108 getErrorReason() const
109 {
110 return m_errorReason;
111 }
112
113 /** \brief print results for disambiguation
114 */
115 void
116 printDisambiguation(std::ostream& os, DisambiguationStyle style) const;
117
118private:
119 /** \brief canonize FaceUri
120 * \return canonical FaceUri if canonization succeeds, input if canonization is unsupported
121 * \retval nullopt canonization fails; m_errorReason describes the failure
122 */
123 ndn::optional<FaceUri>
124 canonize(const std::string& fieldName, const FaceUri& input);
125
126 /** \brief retrieve FaceStatus from filter
127 * \post m_res == Code::OK and m_results is populated if retrieval succeeds
128 * \post m_res == Code::ERROR and m_errorReason is set if retrieval fails
129 */
130 void
131 query();
132
133private:
134 ExecuteContext& m_ctx;
135 FaceQueryFilter m_filter;
136 Code m_res = Code::NOT_STARTED;
137 std::vector<FaceStatus> m_results;
138 std::string m_errorReason;
139};
140
141} // namespace nfdc
142} // namespace tools
143} // namespace nfd
144
145#endif // NFD_TOOLS_NFDC_FIND_FACE_HPP