NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.3: NDN, CCN, CCNx, content centric networks
API Documentation
websocketpp::utf8_validator::validator Class Reference

Provides streaming UTF8 validation functionality. More...

#include <utf8_validator.hpp>

Public Member Functions

 validator ()
 Construct and initialize the validator. More...
 
bool consume (uint8_t byte)
 Advance the state of the validator with the next input byte. More...
 
template<typename iterator_type >
bool decode (iterator_type begin, iterator_type end)
 Advance validator state with input from an iterator pair. More...
 
bool complete ()
 Return whether the input sequence ended on a valid utf8 codepoint. More...
 
void reset ()
 Reset the validator to decode another message. More...
 

Detailed Description

Provides streaming UTF8 validation functionality.

Definition at line 81 of file utf8_validator.hpp.

Constructor & Destructor Documentation

websocketpp::utf8_validator::validator::validator ( )
inline

Construct and initialize the validator.

Definition at line 84 of file utf8_validator.hpp.

Member Function Documentation

bool websocketpp::utf8_validator::validator::consume ( uint8_t  byte)
inline

Advance the state of the validator with the next input byte.

Parameters
byteThe byte to advance the validation state with
Returns
Whether or not the byte resulted in a validation error.

Definition at line 91 of file utf8_validator.hpp.

References websocketpp::utf8_validator::decode().

template<typename iterator_type >
bool websocketpp::utf8_validator::validator::decode ( iterator_type  begin,
iterator_type  end 
)
inline

Advance validator state with input from an iterator pair.

Parameters
beginInput iterator to the start of the input range
endInput iterator to the end of the input range
Returns
Whether or not decoding the bytes resulted in a validation error.

Definition at line 105 of file utf8_validator.hpp.

References websocketpp::utf8_validator::decode().

Referenced by websocketpp::processor::hybi13< stub_config >::process_payload_bytes(), and websocketpp::utf8_validator::validate().

bool websocketpp::utf8_validator::validator::complete ( )
inline

Return whether the input sequence ended on a valid utf8 codepoint.

Returns
Whether or not the input sequence ended on a valid codepoint.

Definition at line 124 of file utf8_validator.hpp.

References websocketpp::utf8_validator::utf8_accept.

Referenced by websocketpp::processor::hybi13< stub_config >::finalize_message(), and websocketpp::utf8_validator::validate().

void websocketpp::utf8_validator::validator::reset ( )
inline

Reset the validator to decode another message.

Definition at line 129 of file utf8_validator.hpp.

References websocketpp::utf8_validator::utf8_accept.


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