ndn::security::transform::Sink Class Reference

Abstraction of the transformation sink module. More...

#include <ndn-cxx/security/transform/transform-base.hpp>

+ Inheritance diagram for ndn::security::transform::Sink:
+ Collaboration diagram for ndn::security::transform::Sink:

Public Member Functions

void end ()
 Close the input interface of a module. More...
 
size_t getIndex () const
 Get the module index. More...
 
bool isEnd () const
 Check if the input interface of a module is closed. More...
 
void setIndex (size_t index)
 Set the module index. More...
 
size_t write (span< const uint8_t > buf)
 Accept input data and perform transformation. More...
 

Detailed Description

Abstraction of the transformation sink module.

This module does not have a next module and can only accept input data.

Definition at line 269 of file transform-base.hpp.

Member Function Documentation

◆ end()

void ndn::security::transform::Downstream::end ( )
inherited

Close the input interface of a module.

This method will notify this module that there is no more input and that the module should finalize transformation.

Although end() can be invoked multiple times, only the first invocation takes effect.

Definition at line 46 of file transform-base.cpp.

◆ getIndex()

size_t ndn::security::transform::Downstream::getIndex ( ) const
inlineinherited

Get the module index.

Definition at line 127 of file transform-base.hpp.

◆ isEnd()

bool ndn::security::transform::Downstream::isEnd ( ) const
inlineinherited

Check if the input interface of a module is closed.

Definition at line 109 of file transform-base.hpp.

◆ setIndex()

void ndn::security::transform::Downstream::setIndex ( size_t  index)
inlineinherited

Set the module index.

Definition at line 118 of file transform-base.hpp.

◆ write()

size_t ndn::security::transform::Downstream::write ( span< const uint8_t >  buf)
inherited

Accept input data and perform transformation.

An upstream module should call this method to write data into this module. The written data will be transformed and the result will be written into the next downstream module.

An upstream module can keep calling this method to until end() is called, which indicates the end of input. After that, calling this method will cause Error.

If a Downstream implementation expects structured input (e.g., hex decoding requires byte-pair), it should not return less than size if final portion of input is not a complete record.

Returns
Number of bytes that have been written into this module.
Exceptions
Errorif this module is closed or transformation error happens.

Definition at line 35 of file transform-base.cpp.