blob: 8ba70880c70f10fbd0524fe4f8d7640f953a42be [file] [log] [blame]
Alexander Afanasyevc169a812014-05-20 20:37:29 -04001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesaventocdcde902017-08-23 15:40:22 -04002/*
Davide Pesavento3fdb02f2023-04-12 02:32:38 -04003 * Copyright (c) 2013-2023 Regents of the University of California.
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -07004 *
5 * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -07006 *
Alexander Afanasyevc169a812014-05-20 20:37:29 -04007 * ndn-cxx library is free software: you can redistribute it and/or modify it under the
8 * terms of the GNU Lesser General Public License as published by the Free Software
9 * Foundation, either version 3 of the License, or (at your option) any later version.
10 *
11 * ndn-cxx library is distributed in the hope that it will be useful, but WITHOUT ANY
12 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
13 * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
14 *
15 * You should have received copies of the GNU General Public License and GNU Lesser
16 * General Public License along with ndn-cxx, e.g., in COPYING.md file. If not, see
17 * <http://www.gnu.org/licenses/>.
18 *
19 * See AUTHORS.md for complete list of ndn-cxx authors and contributors.
Alexander Afanasyevc4b75982014-01-09 14:51:45 -080020 */
21
Davide Pesavento19442812018-11-23 14:00:04 -050022#include <ndn-cxx/face.hpp>
23#include <ndn-cxx/security/key-chain.hpp>
Zhiyi Zhang8b0344d2019-06-22 16:53:58 -070024#include <ndn-cxx/security/signing-helpers.hpp>
Alexander Afanasyevc4b75982014-01-09 14:51:45 -080025
Davide Pesaventocdcde902017-08-23 15:40:22 -040026#include <iostream>
27
Alexander Afanasyev151a8552014-04-11 00:54:43 -070028// Enclosing code in ndn simplifies coding (can also use `using namespace ndn`)
29namespace ndn {
Zhiyi Zhang8b0344d2019-06-22 16:53:58 -070030// Additional nested namespaces should be used to prevent/limit name conflicts
Alexander Afanasyev151a8552014-04-11 00:54:43 -070031namespace examples {
Alexander Afanasyevc4b75982014-01-09 14:51:45 -080032
Zhiyi Zhang8b0344d2019-06-22 16:53:58 -070033class Producer
Alexander Afanasyevc4b75982014-01-09 14:51:45 -080034{
35public:
Alexander Afanasyevc4b75982014-01-09 14:51:45 -080036 void
Steve DiBenedetto9fcc24f2015-01-05 12:16:16 -070037 run()
38 {
Alexander Afanasyevd1b6f952021-07-13 15:05:43 -040039 m_face.setInterestFilter("/example/testApp/randomData",
Davide Pesavento152ef442023-04-22 02:02:29 -040040 std::bind(&Producer::onInterest, this, _2),
Zhiyi Zhang8b0344d2019-06-22 16:53:58 -070041 nullptr, // RegisterPrefixSuccessCallback is optional
Davide Pesavento2e481fc2021-07-02 18:20:03 -040042 std::bind(&Producer::onRegisterFailed, this, _1, _2));
Alexander Afanasyevd1b6f952021-07-13 15:05:43 -040043
44 auto cert = m_keyChain.getPib().getDefaultIdentity().getDefaultKey().getDefaultCertificate();
45 m_certServeHandle = m_face.setInterestFilter(security::extractIdentityFromCertName(cert.getName()),
Davide Pesavento152ef442023-04-22 02:02:29 -040046 [this, cert] (auto&&...) {
47 m_face.put(cert);
48 },
49 std::bind(&Producer::onRegisterFailed, this, _1, _2));
Steve DiBenedetto9fcc24f2015-01-05 12:16:16 -070050 m_face.processEvents();
51 }
52
53private:
54 void
Davide Pesavento152ef442023-04-22 02:02:29 -040055 onInterest(const Interest& interest)
Alexander Afanasyevc4b75982014-01-09 14:51:45 -080056 {
Zhiyi Zhang8b0344d2019-06-22 16:53:58 -070057 std::cout << ">> I: " << interest << std::endl;
Alexander Afanasyevb1db7c62014-04-03 14:57:25 -070058
Alexander Afanasyev151a8552014-04-11 00:54:43 -070059 // Create Data packet
Davide Pesavento152ef442023-04-22 02:02:29 -040060 auto data = std::make_shared<Data>();
61 data->setName(interest.getName());
Zhiyi Zhang8b0344d2019-06-22 16:53:58 -070062 data->setFreshnessPeriod(10_s);
Davide Pesavento296c3a12023-05-04 21:40:40 -040063 data->setContent("Hello, world!");
Davide Pesavento152ef442023-04-22 02:02:29 -040064
65 // In order for the consumer application to be able to validate the packet, you need to setup
Alexander Afanasyevd1b6f952021-07-13 15:05:43 -040066 // the following keys:
67 // 1. Generate example trust anchor
68 //
69 // ndnsec key-gen /example
70 // ndnsec cert-dump -i /example > example-trust-anchor.cert
71 //
72 // 2. Create a key for the producer and sign it with the example trust anchor
73 //
74 // ndnsec key-gen /example/testApp
75 // ndnsec sign-req /example/testApp | ndnsec cert-gen -s /example -i example | ndnsec cert-install -
76
Alexander Afanasyev151a8552014-04-11 00:54:43 -070077 // Sign Data packet with default identity
Steve DiBenedetto9fcc24f2015-01-05 12:16:16 -070078 m_keyChain.sign(*data);
Zhiyi Zhang8b0344d2019-06-22 16:53:58 -070079 // m_keyChain.sign(*data, signingByIdentity(<identityName>));
80 // m_keyChain.sign(*data, signingByKey(<keyName>));
81 // m_keyChain.sign(*data, signingByCertificate(<certName>));
82 // m_keyChain.sign(*data, signingWithSha256());
Alexander Afanasyev151a8552014-04-11 00:54:43 -070083
84 // Return Data packet to the requester
Zhiyi Zhang8b0344d2019-06-22 16:53:58 -070085 std::cout << "<< D: " << *data << std::endl;
Steve DiBenedetto9fcc24f2015-01-05 12:16:16 -070086 m_face.put(*data);
Alexander Afanasyevc4b75982014-01-09 14:51:45 -080087 }
88
89 void
Steve DiBenedetto9fcc24f2015-01-05 12:16:16 -070090 onRegisterFailed(const Name& prefix, const std::string& reason)
Alexander Afanasyevc4b75982014-01-09 14:51:45 -080091 {
Zhiyi Zhang8b0344d2019-06-22 16:53:58 -070092 std::cerr << "ERROR: Failed to register prefix '" << prefix
Davide Pesavento152ef442023-04-22 02:02:29 -040093 << "' with the local forwarder (" << reason << ")\n";
Alexander Afanasyev151a8552014-04-11 00:54:43 -070094 m_face.shutdown();
Alexander Afanasyevc4b75982014-01-09 14:51:45 -080095 }
Alexander Afanasyevb1db7c62014-04-03 14:57:25 -070096
Alexander Afanasyevc4b75982014-01-09 14:51:45 -080097private:
Alexander Afanasyev151a8552014-04-11 00:54:43 -070098 Face m_face;
99 KeyChain m_keyChain;
Alexander Afanasyevd1b6f952021-07-13 15:05:43 -0400100 ScopedRegisteredPrefixHandle m_certServeHandle;
Alexander Afanasyevc4b75982014-01-09 14:51:45 -0800101};
102
Alexander Afanasyev151a8552014-04-11 00:54:43 -0700103} // namespace examples
104} // namespace ndn
105
106int
107main(int argc, char** argv)
Alexander Afanasyevc4b75982014-01-09 14:51:45 -0800108{
109 try {
Zhiyi Zhang8b0344d2019-06-22 16:53:58 -0700110 ndn::examples::Producer producer;
Alexander Afanasyev151a8552014-04-11 00:54:43 -0700111 producer.run();
Zhiyi Zhang8b0344d2019-06-22 16:53:58 -0700112 return 0;
Alexander Afanasyevc4b75982014-01-09 14:51:45 -0800113 }
Steve DiBenedetto9fcc24f2015-01-05 12:16:16 -0700114 catch (const std::exception& e) {
Alexander Afanasyevc4b75982014-01-09 14:51:45 -0800115 std::cerr << "ERROR: " << e.what() << std::endl;
Zhiyi Zhang8b0344d2019-06-22 16:53:58 -0700116 return 1;
Alexander Afanasyevc4b75982014-01-09 14:51:45 -0800117 }
Alexander Afanasyevc4b75982014-01-09 14:51:45 -0800118}