Botan 3.8.1
Crypto and TLS for C&
Botan::Fanout_Filter Class Referenceabstract

#include <filter.h>

Inheritance diagram for Botan::Fanout_Filter:
Botan::Filter Botan::Chain Botan::Fork Botan::SecureQueue

Public Member Functions

virtual bool attachable ()
 
virtual void end_msg ()
 
virtual std::string name () const =0
 
virtual void start_msg ()
 
virtual void write (const uint8_t input[], size_t length)=0
 

Protected Member Functions

void attach (Filter *f)
 
void incr_owns ()
 
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)
 
void set_next (Filter *f[], size_t n)
 
void set_port (size_t n)
 

Detailed Description

This is the abstract Fanout_Filter base class.

Definition at line 144 of file filter.h.

Member Function Documentation

◆ attach()

void Botan::Fanout_Filter::attach ( Filter * f)
inlineprotected

Definition at line 155 of file filter.h.

155{ Filter::attach(f); }

References Botan::Filter::Filter().

Referenced by Botan::Chain::Chain(), and Botan::Chain::Chain().

◆ attachable()

virtual bool Botan::Filter::attachable ( )
inlinevirtualinherited

Check whether this filter is an attachable filter.

Returns
true if this filter is attachable, false otherwise

Reimplemented in Botan::DataSink, and Botan::SecureQueue.

Definition at line 54 of file filter.h.

54{ return true; }

◆ end_msg()

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

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

Reimplemented in Botan::Base64_Decoder, Botan::Base64_Encoder, Botan::DataSink_Stream, Botan::Hex_Decoder, and Botan::Hex_Encoder.

Definition at line 47 of file filter.h.

47 { /* default empty */
48 }

◆ incr_owns()

void Botan::Fanout_Filter::incr_owns ( )
inlineprotected

Increment the number of filters past us that we own

Definition at line 149 of file filter.h.

149{ ++m_filter_owns; }

Referenced by Botan::Chain::Chain(), and Botan::Chain::Chain().

◆ name()

virtual std::string Botan::Filter::name ( ) const
pure virtualinherited

◆ 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().

◆ set_next()

void Botan::Fanout_Filter::set_next ( Filter * f[],
size_t n )
inlineprotected

Definition at line 153 of file filter.h.

153{ Filter::set_next(f, n); }

References Botan::Filter::Filter().

Referenced by Botan::Fork::Fork(), Botan::Fork::Fork(), Botan::SecureQueue::SecureQueue(), and Botan::SecureQueue::SecureQueue().

◆ set_port()

void Botan::Fanout_Filter::set_port ( size_t n)
inlineprotected

Definition at line 151 of file filter.h.

151{ Filter::set_port(n); }

Referenced by Botan::Fork::set_port().

◆ 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()

virtual void Botan::Filter::write ( const uint8_t input[],
size_t length )
pure virtualinherited

Write a portion of a message to this filter.

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

Implemented in Botan::Base64_Decoder, Botan::Base64_Encoder, Botan::BitBucket, Botan::Chain, Botan::DataSink_Stream, Botan::Fork, Botan::Hex_Decoder, Botan::Hex_Encoder, and Botan::SecureQueue.


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