RetroArch
|
Input stream wrapper with dynamically bound encoding and automatic encoding detection. More...
#include <encodedstream.h>
Public Types | |
typedef CharType | Ch |
Public Member Functions | |
AutoUTFInputStream (InputByteStream &is, UTFType type=kUTF8) | |
Constructor. More... | |
UTFType | GetType () const |
bool | HasBOM () const |
Ch | Peek () const |
Ch | Take () |
size_t | Tell () const |
void | Put (Ch) |
void | Flush () |
Ch * | PutBegin () |
size_t | PutEnd (Ch *) |
Private Types | |
typedef Ch(* | TakeFunc) (InputByteStream &is) |
Private Member Functions | |
RAPIDJSON_STATIC_ASSERT (sizeof(typename InputByteStream::Ch)==1) | |
AutoUTFInputStream (const AutoUTFInputStream &) | |
AutoUTFInputStream & | operator= (const AutoUTFInputStream &) |
void | DetectType () |
Private Attributes | |
InputByteStream * | is_ |
UTFType | type_ |
Ch | current_ |
TakeFunc | takeFunc_ |
bool | hasBOM_ |
Input stream wrapper with dynamically bound encoding and automatic encoding detection.
CharType | Type of character for reading. |
InputByteStream | type of input byte stream to be wrapped. |
typedef CharType AutoUTFInputStream< CharType, InputByteStream >::Ch |
|
private |
|
inline |
Constructor.
is | input stream to be wrapped. |
type | UTF encoding type if it is not detected from the stream. |
|
private |
|
inlineprivate |
|
inline |
|
inline |
|
inline |
|
private |
|
inline |
|
inline |
|
inline |
|
inline |
|
private |
|
inline |
|
inline |
|
private |
|
private |
|
private |
|
private |
|
private |