Botan 3.8.1
Crypto and TLS for C&
Botan::DataSink_Stream Class Referencefinal

#include <data_snk.h>

Inheritance diagram for Botan::DataSink_Stream:
Botan::DataSink Botan::Filter

Public Member Functions

bool attachable () override
 
 DataSink_Stream (std::ostream &stream, std::string_view name="<std::ostream>")
 
void end_msg () override
 
std::string name () const override
 
virtual void start_msg ()
 
void write (const uint8_t[], size_t) override
 
 ~DataSink_Stream () override
 

Protected Member Functions

virtual void send (const uint8_t in[], size_t length)
 
void send (std::span< const uint8_t > in)
 
void send (std::span< const uint8_t > in, size_t length)
 
void send (uint8_t in)
 

Detailed Description

This class represents a data sink which writes its output to a stream.

Definition at line 35 of file data_snk.h.

Constructor & Destructor Documentation

◆ DataSink_Stream()

Botan::DataSink_Stream::DataSink_Stream ( std::ostream & stream,
std::string_view name = "<std::ostream>" )

Construct a DataSink_Stream from a stream.

Parameters
streamthe stream to write to
nameidentifier

Definition at line 43 of file data_snk.cpp.

43: m_identifier(name), m_sink(out) {}
std::string name() const override
Definition data_snk.h:55

References name().

◆ ~DataSink_Stream()

Botan::DataSink_Stream::~DataSink_Stream ( )
overridedefault

Member Function Documentation

◆ attachable()

bool Botan::DataSink::attachable ( )
inlineoverridevirtualinherited

Check whether this filter is an attachable filter.

Returns
true if this filter is attachable, false otherwise

Reimplemented from Botan::Filter.

Definition at line 23 of file data_snk.h.

23{ return false; }

◆ end_msg()

void Botan::DataSink_Stream::end_msg ( )
overridevirtual

Notify that the current message is finished; flush buffers and do end-of-message processing (if any).

Reimplemented from Botan::Filter.

Definition at line 36 of file data_snk.cpp.

36 {
37 m_sink.flush();
38}

◆ name()

std::string Botan::DataSink_Stream::name ( ) const
inlineoverridevirtual
Returns
descriptive name for this filter

Implements Botan::Filter.

Definition at line 55 of file data_snk.h.

55{ return m_identifier; }

Referenced by DataSink_Stream().

◆ send() [1/4]

void Botan::Filter::send ( const uint8_t in[],
size_t length )
protectedvirtualinherited
Parameters
insome input for the filter
lengththe length of in

Definition at line 33 of file filter.cpp.

33 {
34 if(!length) {
35 return;
36 }
37
38 bool nothing_attached = true;
39 for(size_t j = 0; j != total_ports(); ++j) {
40 if(m_next[j]) {
41 if(!m_write_queue.empty()) {
42 m_next[j]->write(m_write_queue.data(), m_write_queue.size());
43 }
44 m_next[j]->write(input, length);
45 nothing_attached = false;
46 }
47 }
48
49 if(nothing_attached) {
50 m_write_queue += std::make_pair(input, length);
51 } else {
52 m_write_queue.clear();
53 }
54}

Referenced by Botan::Base64_Decoder::end_msg(), Botan::Base64_Encoder::end_msg(), Botan::Hex_Decoder::end_msg(), Botan::Hex_Encoder::end_msg(), operator=(), send(), Botan::Base64_Decoder::write(), Botan::Chain::write(), Botan::Fork::write(), and Botan::Hex_Decoder::write().

◆ send() [2/4]

void Botan::Filter::send ( std::span< const uint8_t > in)
inlineprotectedinherited
Parameters
insome input for the filter

Definition at line 76 of file filter.h.

76{ send(in.data(), in.size()); }
virtual void send(const uint8_t in[], size_t length)
Definition filter.cpp:33

References send().

Referenced by send().

◆ send() [3/4]

void Botan::Filter::send ( std::span< const uint8_t > in,
size_t length )
protectedinherited
Parameters
insome input for the filter
lengththe number of bytes of in to send

This previously took a std::vector, for which the length field (allowing using just a prefix of the vector) somewhat made sense. It makes less sense now that we are using a span here; you can just use first to get a prefix.

Definition at line 25 of file filter.cpp.

25 {
26 BOTAN_ASSERT_NOMSG(length <= in.size());
27 send(in.data(), length);
28}
#define BOTAN_ASSERT_NOMSG(expr)
Definition assert.h:61

References BOTAN_ASSERT_NOMSG, and send().

◆ send() [4/4]

void Botan::Filter::send ( uint8_t in)
inlineprotectedinherited
Parameters
insome input for the filter

Definition at line 71 of file filter.h.

71{ send(&in, 1); }

References send().

Referenced by send().

◆ start_msg()

virtual void Botan::Filter::start_msg ( )
inlinevirtualinherited

Start a new message. Must be closed by end_msg() before another message can be started.

Definition at line 40 of file filter.h.

40 { /* default empty */
41 }

◆ write()

void Botan::DataSink_Stream::write ( const uint8_t input[],
size_t length )
overridevirtual

Write a portion of a message to this filter.

Parameters
inputthe input as a byte array
lengththe length of the byte array input

Implements Botan::Filter.

Definition at line 26 of file data_snk.cpp.

26 {
27 m_sink.write(cast_uint8_ptr_to_char(out), length);
28 if(!m_sink.good()) {
29 throw Stream_IO_Error("DataSink_Stream: Failure writing to " + m_identifier);
30 }
31}
const char * cast_uint8_ptr_to_char(const uint8_t *b)
Definition mem_ops.h:280

References Botan::cast_uint8_ptr_to_char().


The documentation for this class was generated from the following files: