-
Notifications
You must be signed in to change notification settings - Fork 1
/
consumer.cpp
94 lines (81 loc) · 2.74 KB
/
consumer.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
/*
* Copyright (c) 2013-2018 Regents of the University of California.
*
* This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
*
* ndn-cxx library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software
* Foundation, either version 3 of the License, or (at your option) any later version.
*
* ndn-cxx library is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
* PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
*
* You should have received copies of the GNU General Public License and GNU Lesser
* General Public License along with ndn-cxx, e.g., in COPYING.md file. If not, see
* <http://www.gnu.org/licenses/>.
*
* See AUTHORS.md for complete list of ndn-cxx authors and contributors.
*
* @author Alexander Afanasyev <http://lasr.cs.ucla.edu/afanasyev/index.html>
*/
#include <ndn-cxx/face.hpp>
#include <iostream>
// Enclosing code in ndn simplifies coding (can also use `using namespace ndn`)
namespace ndn {
// Additional nested namespaces can be used to prevent/limit name conflicts
namespace examples {
class Consumer : noncopyable
{
public:
void
run()
{
// Interest interest(Name("/exec/OCR/192.168.10.233/pic1531905916597.jpg"));
// interest.setInterestLifetime(50_s); // 2 seconds
Interest interest(Name("/exec/testApp/input_2.png"));
interest.setInterestLifetime(2_s); // 2 seconds
interest.setMustBeFresh(true);
m_face.expressInterest(interest,
bind(&Consumer::onData, this, _1, _2),
bind(&Consumer::onNack, this, _1, _2),
bind(&Consumer::onTimeout, this, _1));
std::cout << "Sending " << interest << std::endl;
// processEvents will block until the requested data received or timeout occurs
m_face.processEvents();
}
private:
void
onData(const Interest& interest, const Data& data)
{
std::cout << data << std::endl;
}
void
onNack(const Interest& interest, const lp::Nack& nack)
{
std::cout << "received Nack with reason " << nack.getReason()
<< " for interest " << interest << std::endl;
}
void
onTimeout(const Interest& interest)
{
std::cout << "Timeout " << interest << std::endl;
}
private:
Face m_face;
};
} // namespace examples
} // namespace ndn
int
main(int argc, char** argv)
{
ndn::examples::Consumer consumer;
try {
consumer.run();
}
catch (const std::exception& e) {
std::cerr << "ERROR: " << e.what() << std::endl;
}
return 0;
}