ROSE  0.11.145.0
Public Types | Public Member Functions | Static Public Member Functions | List of all members
Rose::BinaryAnalysis::Strings::Utf8CharacterEncodingForm Class Reference

Description

UTF-8 character encoding form.

Encodes each code point as one to six 8-bit code values.

Definition at line 286 of file String.h.

#include <Rose/BinaryAnalysis/String.h>

Inheritance diagram for Rose::BinaryAnalysis::Strings::Utf8CharacterEncodingForm:
Inheritance graph
[legend]
Collaboration diagram for Rose::BinaryAnalysis::Strings::Utf8CharacterEncodingForm:
Collaboration graph
[legend]

Public Types

typedef Sawyer::SharedPointer< Utf8CharacterEncodingFormPtr
 Shared-ownership pointer to a Utf8CharacterEncodingForm. More...
 
- Public Types inherited from Rose::BinaryAnalysis::Strings::CharacterEncodingForm
typedef Sawyer::SharedPointer< CharacterEncodingFormPtr
 Shared ownership pointer to a CharacterEncodingForm. More...
 

Public Member Functions

virtual CharacterEncodingForm::Ptr clone () const override
 Create a new encoder from this one. More...
 
virtual std::string name () const override
 Name of encoder. More...
 
virtual CodeValues encode (CodePoint cp) override
 Encode a code point into a sequence of one or more code values. More...
 
virtual State decode (CodeValue) override
 Decode one code value. More...
 
virtual CodePoint consume () override
 Consume a decoded code point. More...
 
virtual void reset () override
 Reset the decoder state machine. More...
 
- Public Member Functions inherited from Rose::BinaryAnalysis::Strings::CharacterEncodingForm
State state () const
 Decoder state. More...
 
- Public Member Functions inherited from Sawyer::SharedObject
 SharedObject ()
 Default constructor. More...
 
 SharedObject (const SharedObject &)
 Copy constructor. More...
 
virtual ~SharedObject ()
 Virtual destructor. More...
 
SharedObjectoperator= (const SharedObject &)
 Assignment. More...
 

Static Public Member Functions

static Ptr instance ()
 

Additional Inherited Members

- Protected Attributes inherited from Rose::BinaryAnalysis::Strings::CharacterEncodingForm
State state_ = INITIAL_STATE
 

Member Typedef Documentation

Shared-ownership pointer to a Utf8CharacterEncodingForm.

See Shared ownership.

Definition at line 292 of file String.h.

Member Function Documentation

virtual CharacterEncodingForm::Ptr Rose::BinaryAnalysis::Strings::Utf8CharacterEncodingForm::clone ( ) const
inlineoverridevirtual

Create a new encoder from this one.

Implements Rose::BinaryAnalysis::Strings::CharacterEncodingForm.

Definition at line 295 of file String.h.

virtual std::string Rose::BinaryAnalysis::Strings::Utf8CharacterEncodingForm::name ( ) const
inlineoverridevirtual

Name of encoder.

Implements Rose::BinaryAnalysis::Strings::CharacterEncodingForm.

Definition at line 296 of file String.h.

virtual CodeValues Rose::BinaryAnalysis::Strings::Utf8CharacterEncodingForm::encode ( CodePoint  )
overridevirtual

Encode a code point into a sequence of one or more code values.

For instance, an ecoder for UTF-16 will encode a code point into one or more values in the range 0 through (2^16)-1.

Implements Rose::BinaryAnalysis::Strings::CharacterEncodingForm.

virtual State Rose::BinaryAnalysis::Strings::Utf8CharacterEncodingForm::decode ( CodeValue  )
overridevirtual

Decode one code value.

Processes a single code value and updates the decoder state machine. Returns the decoder's new state. See documentation for State for restrictions on state transitions.

Implements Rose::BinaryAnalysis::Strings::CharacterEncodingForm.

virtual CodePoint Rose::BinaryAnalysis::Strings::Utf8CharacterEncodingForm::consume ( )
overridevirtual

Consume a decoded code point.

The decoder must be in the FINAL_STATE or COMPLETED_STATE, and upon return will be in the INITIAL_STATE.

Implements Rose::BinaryAnalysis::Strings::CharacterEncodingForm.

virtual void Rose::BinaryAnalysis::Strings::Utf8CharacterEncodingForm::reset ( )
overridevirtual

Reset the decoder state machine.

Implements Rose::BinaryAnalysis::Strings::CharacterEncodingForm.


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