NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.5: NDN, CCN, CCNx, content centric networks
API Documentation
io.cpp
Go to the documentation of this file.
1
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2
/*
3
* Copyright (c) 2013-2018 Regents of the University of California.
4
*
5
* This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
6
*
7
* 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.
20
*/
21
22
#include "
ndn-cxx/util/io.hpp
"
23
#include "
ndn-cxx/encoding/buffer-stream.hpp
"
24
#include "
ndn-cxx/security/transform.hpp
"
25
26
namespace
ndn
{
27
namespace
io {
28
29
optional<Block>
30
loadBlock
(std::istream& is,
IoEncoding
encoding)
31
{
32
namespace
t =
ndn::security::transform
;
33
34
OBufferStream
os;
35
try
{
36
switch
(encoding) {
37
case
NO_ENCODING
:
38
t::streamSource
(is) >>
t::streamSink
(os);
39
break
;
40
case
BASE64
:
41
t::streamSource
(is) >>
t::stripSpace
(
"\n"
) >>
t::base64Decode
(
false
) >>
t::streamSink
(os);
42
break
;
43
case
HEX
:
44
t::streamSource
(is) >>
t::hexDecode
() >>
t::streamSink
(os);
45
break
;
46
default
:
47
return
nullopt
;
48
}
49
}
50
catch
(
const
t::Error&) {
51
return
nullopt
;
52
}
53
54
try
{
55
return
make_optional<Block>(os.
buf
());
56
}
57
catch
(
const
tlv::Error
&) {
58
return
nullopt
;
59
}
60
catch
(
const
std::invalid_argument&) {
61
return
nullopt
;
62
}
63
}
64
65
void
66
saveBlock
(
const
Block
& block, std::ostream& os,
IoEncoding
encoding)
67
{
68
namespace
t =
ndn::security::transform
;
69
70
try
{
71
switch
(encoding) {
72
case
NO_ENCODING
:
73
t::bufferSource
(block.
wire
(), block.
size
()) >>
t::streamSink
(os);
74
break
;
75
case
BASE64
:
76
t::bufferSource
(block.
wire
(), block.
size
()) >>
t::base64Encode
() >>
t::streamSink
(os);
77
break
;
78
case
HEX
:
79
t::bufferSource
(block.
wire
(), block.
size
()) >>
t::hexEncode
(
true
) >>
t::streamSink
(os);
80
break
;
81
default
:
82
BOOST_THROW_EXCEPTION(
Error
(
"unrecognized IoEncoding"
));
83
}
84
}
85
catch
(
const
t::Error& e) {
86
BOOST_THROW_EXCEPTION(
Error
(e.what()));
87
}
88
}
89
90
}
// namespace io
91
}
// namespace ndn
ndn::io::loadBlock
optional< Block > loadBlock(std::istream &is, IoEncoding encoding)
loads a TLV block from a stream
Definition:
io.cpp:30
ndn::io::saveBlock
void saveBlock(const Block &block, std::ostream &os, IoEncoding encoding)
saves a TLV block to a stream
Definition:
io.cpp:66
ndn
Copyright (c) 2011-2015 Regents of the University of California.
Definition:
ndn-strategy-choice-helper.hpp:34
io.hpp
ndn::security::transform::base64Decode
unique_ptr< Transform > base64Decode(bool expectNewlineEvery64Bytes)
Definition:
base64-decode.cpp:129
ndn::security::transform::hexEncode
unique_ptr< Transform > hexEncode(bool useUpperCase)
Definition:
hex-encode.cpp:70
ndn::Block::wire
const uint8_t * wire() const
Get pointer to encoded wire.
Definition:
block.cpp:289
ndn::io::Error
Definition:
io.hpp:33
ndn::Block
Represents a TLV element of NDN packet format.
Definition:
block.hpp:42
ndn::security::transform::stripSpace
unique_ptr< Transform > stripSpace(const char *whitespaces)
constructs a StripSpace transform
Definition:
strip-space.cpp:55
ndn::security::transform
Definition:
security-common.hpp:148
ndn::Block::size
size_t size() const
Get size of encoded wire, including Type-Length-Value.
Definition:
block.cpp:298
ndn::io::HEX
hexadecimal encoding
Definition:
io.hpp:57
ndn::io::NO_ENCODING
binary without encoding
Definition:
io.hpp:44
ndn::security::transform::streamSink
unique_ptr< Sink > streamSink(std::ostream &os)
Definition:
stream-sink.cpp:53
ndn::security::transform::bufferSource
BufferSource bufferSource
Definition:
buffer-source.hpp:73
ndn::security::transform::hexDecode
unique_ptr< Transform > hexDecode()
Definition:
hex-decode.cpp:114
transform.hpp
ndn::OBufferStream::buf
shared_ptr< Buffer > buf()
Flush written data to the stream and return shared pointer to the underlying buffer.
Definition:
buffer-stream.cpp:54
ndn::OBufferStream
implements an output stream that constructs ndn::Buffer
Definition:
buffer-stream.hpp:70
ndn::io::BASE64
base64 encoding
Definition:
io.hpp:51
buffer-stream.hpp
nonstd::optional_lite::nullopt
const nullopt_t nullopt((nullopt_t::init()))
ndn::tlv::Error
represents an error in TLV encoding or decoding
Definition:
tlv.hpp:52
ndn::security::transform::streamSource
StreamSource streamSource
Definition:
stream-source.hpp:62
ndn::security::transform::base64Encode
unique_ptr< Transform > base64Encode(bool needBreak)
Definition:
base64-encode.cpp:129
ndn::io::IoEncoding
IoEncoding
indicates how a file or stream is encoded
Definition:
io.hpp:41
ndnSIM
ndn-cxx
ndn-cxx
util
io.cpp
Generated on Sun Feb 24 2019 22:16:06 for ndnSIM by
1.8.15