Alexander Afanasyev | 4abdbf1 | 2014-08-11 12:48:54 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Davide Pesavento | 74daf74 | 2018-11-23 18:14:13 -0500 | [diff] [blame] | 2 | /* |
Davide Pesavento | 923ba44 | 2019-02-12 22:00:38 -0500 | [diff] [blame] | 3 | * Copyright (c) 2014-2019 Regents of the University of California, |
Davide Pesavento | b5f8bcc | 2017-02-05 17:58:05 -0500 | [diff] [blame] | 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. |
Alexander Afanasyev | 4abdbf1 | 2014-08-11 12:48:54 -0700 | [diff] [blame] | 10 | * |
| 11 | * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions). |
| 12 | * |
| 13 | * ndn-cxx library is free software: you can redistribute it and/or modify it under the |
| 14 | * terms of the GNU Lesser General Public License as published by the Free Software |
| 15 | * Foundation, either version 3 of the License, or (at your option) any later version. |
| 16 | * |
| 17 | * ndn-cxx library is distributed in the hope that it will be useful, but WITHOUT ANY |
| 18 | * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A |
| 19 | * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. |
| 20 | * |
| 21 | * You should have received copies of the GNU General Public License and GNU Lesser |
| 22 | * General Public License along with ndn-cxx, e.g., in COPYING.md file. If not, see |
| 23 | * <http://www.gnu.org/licenses/>. |
| 24 | * |
| 25 | * See AUTHORS.md for complete list of ndn-cxx authors and contributors. |
| 26 | */ |
| 27 | |
Davide Pesavento | 7e78064 | 2018-11-24 15:51:34 -0500 | [diff] [blame] | 28 | #ifndef NDN_TESTS_UNIT_UTIL_SIMPLE_NOTIFICATION_HPP |
| 29 | #define NDN_TESTS_UNIT_UTIL_SIMPLE_NOTIFICATION_HPP |
Alexander Afanasyev | 4abdbf1 | 2014-08-11 12:48:54 -0700 | [diff] [blame] | 30 | |
Davide Pesavento | 7e78064 | 2018-11-24 15:51:34 -0500 | [diff] [blame] | 31 | #include "ndn-cxx/encoding/encoding-buffer.hpp" |
Alexander Afanasyev | 4abdbf1 | 2014-08-11 12:48:54 -0700 | [diff] [blame] | 32 | |
| 33 | namespace ndn { |
Junxiao Shi | a60d936 | 2014-11-12 09:38:21 -0700 | [diff] [blame] | 34 | namespace util { |
Alexander Afanasyev | 4abdbf1 | 2014-08-11 12:48:54 -0700 | [diff] [blame] | 35 | namespace tests { |
| 36 | |
| 37 | class SimpleNotification |
| 38 | { |
| 39 | public: |
Davide Pesavento | eee3e82 | 2016-11-26 19:19:34 +0100 | [diff] [blame] | 40 | SimpleNotification() = default; |
Alexander Afanasyev | 4abdbf1 | 2014-08-11 12:48:54 -0700 | [diff] [blame] | 41 | |
| 42 | explicit |
| 43 | SimpleNotification(const Block& block) |
| 44 | { |
| 45 | wireDecode(block); |
| 46 | } |
| 47 | |
| 48 | SimpleNotification(const std::string& message) |
| 49 | : m_message(message) |
| 50 | { |
| 51 | } |
| 52 | |
Alexander Afanasyev | 4abdbf1 | 2014-08-11 12:48:54 -0700 | [diff] [blame] | 53 | Block |
| 54 | wireEncode() const |
| 55 | { |
| 56 | ndn::EncodingBuffer buffer; |
Alexander Afanasyev | 7463389 | 2015-02-08 18:08:46 -0800 | [diff] [blame] | 57 | buffer.prependByteArrayBlock(0x8888, |
| 58 | reinterpret_cast<const uint8_t*>(m_message.c_str()), |
| 59 | m_message.size()); |
Alexander Afanasyev | 4abdbf1 | 2014-08-11 12:48:54 -0700 | [diff] [blame] | 60 | return buffer.block(); |
| 61 | } |
| 62 | |
| 63 | void |
| 64 | wireDecode(const Block& block) |
| 65 | { |
| 66 | m_message.assign(reinterpret_cast<const char*>(block.value()), |
| 67 | block.value_size()); |
| 68 | |
| 69 | // error for testing |
| 70 | if (!m_message.empty() && m_message[0] == '\x07') |
Davide Pesavento | 923ba44 | 2019-02-12 22:00:38 -0500 | [diff] [blame] | 71 | NDN_THROW(tlv::Error("0x07 error")); |
Alexander Afanasyev | 4abdbf1 | 2014-08-11 12:48:54 -0700 | [diff] [blame] | 72 | } |
| 73 | |
Alexander Afanasyev | 4abdbf1 | 2014-08-11 12:48:54 -0700 | [diff] [blame] | 74 | const std::string& |
| 75 | getMessage() const |
| 76 | { |
| 77 | return m_message; |
| 78 | } |
| 79 | |
| 80 | void |
| 81 | setMessage(const std::string& message) |
| 82 | { |
| 83 | m_message = message; |
| 84 | } |
| 85 | |
| 86 | private: |
| 87 | std::string m_message; |
| 88 | }; |
| 89 | |
| 90 | } // namespace tests |
Junxiao Shi | a60d936 | 2014-11-12 09:38:21 -0700 | [diff] [blame] | 91 | } // namespace util |
Alexander Afanasyev | 4abdbf1 | 2014-08-11 12:48:54 -0700 | [diff] [blame] | 92 | } // namespace ndn |
| 93 | |
Davide Pesavento | 7e78064 | 2018-11-24 15:51:34 -0500 | [diff] [blame] | 94 | #endif // NDN_TESTS_UNIT_UTIL_SIMPLE_NOTIFICATION_HPP |