Botan 3.3.0
Crypto and TLS for C&
Public Member Functions | Protected Member Functions | Friends | List of all members
Botan::Filter Class Referenceabstract

#include <filter.h>

Inheritance diagram for Botan::Filter:
Botan::Base64_Decoder Botan::Base64_Encoder Botan::BitBucket Botan::DataSink Botan::Fanout_Filter Botan::Hex_Decoder Botan::Hex_Encoder Botan::Keyed_Filter

Public Member Functions

virtual bool attachable ()
 
virtual void end_msg ()
 
 Filter (const Filter &)=delete
 
virtual std::string name () const =0
 
Filteroperator= (const Filter &)=delete
 
virtual void start_msg ()
 
virtual void write (const uint8_t input[], size_t length)=0
 
virtual ~Filter ()=default
 

Protected Member Functions

 Filter ()
 
template<typename Alloc >
void send (const std::vector< uint8_t, Alloc > &in)
 
template<typename Alloc >
void send (const std::vector< uint8_t, Alloc > &in, size_t length)
 
virtual void send (const uint8_t in[], size_t length)
 
void send (uint8_t in)
 

Friends

class Fanout_Filter
 
class Pipe
 
class Threaded_Fork
 

Detailed Description

This class represents general abstract filter objects.

Definition at line 21 of file filter.h.

Constructor & Destructor Documentation

◆ ~Filter()

virtual Botan::Filter::~Filter ( )
virtualdefault

◆ Filter() [1/2]

Botan::Filter::Filter ( const Filter & )
delete

◆ Filter() [2/2]

Botan::Filter::Filter ( )
protected

Definition at line 17 of file filter.cpp.

17 {
18 m_next.resize(1);
19 m_port_num = 0;
20 m_filter_owns = 0;
21 m_owned = false;
22}

Member Function Documentation

◆ attachable()

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

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 53 of file filter.h.

53{ return true; }

◆ end_msg()

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

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

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

Definition at line 46 of file filter.h.

46 { /* default empty */
47 }

◆ name()

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

◆ operator=()

Filter & Botan::Filter::operator= ( const Filter & )
delete

◆ send() [1/4]

template<typename Alloc >
void Botan::Filter::send ( const std::vector< uint8_t, Alloc > & in)
inlineprotected
Parameters
insome input for the filter

Definition at line 76 of file filter.h.

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

◆ send() [2/4]

template<typename Alloc >
void Botan::Filter::send ( const std::vector< uint8_t, Alloc > & in,
size_t length )
inlineprotected
Parameters
insome input for the filter
lengththe number of bytes of in to send

Definition at line 85 of file filter.h.

85 {
86 BOTAN_ASSERT_NOMSG(length <= in.size());
87 send(in.data(), length);
88 }
#define BOTAN_ASSERT_NOMSG(expr)
Definition assert.h:59

References BOTAN_ASSERT_NOMSG.

◆ send() [3/4]

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

Definition at line 27 of file filter.cpp.

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

Referenced by Botan::Base64_Encoder::end_msg(), Botan::Base64_Decoder::end_msg(), Botan::Hex_Encoder::end_msg(), Botan::Hex_Decoder::end_msg(), Botan::Base64_Decoder::write(), and Botan::Hex_Decoder::write().

◆ send() [4/4]

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

Definition at line 70 of file filter.h.

70{ send(&in, 1); }

References send().

Referenced by send().

◆ start_msg()

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

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

Definition at line 39 of file filter.h.

39 { /* default empty */
40 }

◆ write()

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

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::Hex_Encoder, Botan::Base64_Encoder, Botan::Base64_Decoder, Botan::Chain, Botan::Fork, Botan::DataSink_Stream, Botan::Hex_Decoder, Botan::BitBucket, and Botan::SecureQueue.

Referenced by Botan::Pipe::write().

Friends And Related Symbol Documentation

◆ Fanout_Filter

friend class Fanout_Filter
friend

Definition at line 106 of file filter.h.

◆ Pipe

friend class Pipe
friend

Definition at line 105 of file filter.h.

◆ Threaded_Fork

friend class Threaded_Fork
friend

Definition at line 107 of file filter.h.


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