NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.5: NDN, CCN, CCNx, content centric networks
API Documentation
io.hpp File Reference
#include "ndn-cxx/encoding/block.hpp"
#include "ndn-cxx/util/concepts.hpp"
#include "ndn-cxx/util/optional.hpp"
#include <fstream>
Include dependency graph for io.hpp:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  ndn::io::Error
 

Namespaces

 ndn
 Copyright (c) 2011-2015 Regents of the University of California.
 
 ndn::io
 
 ndn::io::detail
 

Enumerations

enum  ndn::io::IoEncoding { ndn::io::NO_ENCODING, ndn::io::BASE64, ndn::io::HEX }
 Indicates how a file or stream of bytes is encoded. More...
 

Functions

template<typename T >
static void ndn::io::detail::checkNestedError (typename T::Error *)
 
template<typename T >
static void ndn::io::detail::checkNestedError (...)
 
shared_ptr< Buffer > ndn::io::loadBuffer (std::istream &is, IoEncoding encoding=BASE64)
 Reads bytes from a stream until EOF. More...
 
template<typename T >
ndn::io::loadTlv (std::istream &is, IoEncoding encoding=BASE64)
 Reads a TLV element of type T from a stream. More...
 
template<typename T >
shared_ptr< T > ndn::io::load (std::istream &is, IoEncoding encoding=BASE64)
 Reads a TLV element from a stream. More...
 
template<typename T >
shared_ptr< T > ndn::io::load (const std::string &filename, IoEncoding encoding=BASE64)
 Reads a TLV element from a file. More...
 
void ndn::io::saveBuffer (span< const uint8_t > buf, std::ostream &os, IoEncoding encoding=BASE64)
 Writes a sequence of bytes to a stream. More...
 
template<typename T >
void ndn::io::save (const T &obj, std::ostream &os, IoEncoding encoding=BASE64)
 Writes a TLV element to a stream. More...
 
template<typename T >
void ndn::io::save (const T &obj, const std::string &filename, IoEncoding encoding=BASE64)
 Writes a TLV element to a file. More...