74 lines
2.2 KiB
C++
74 lines
2.2 KiB
C++
// Filename: stringDecoder.h
|
|
// Created by: drose (11Feb02)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// PANDA 3D SOFTWARE
|
|
// Copyright (c) Carnegie Mellon University. All rights reserved.
|
|
//
|
|
// All use of this software is subject to the terms of the revised BSD
|
|
// license. You should have received a copy of this license along
|
|
// with this source code in a file named "LICENSE."
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef STRINGDECODER_H
|
|
#define STRINGDECODER_H
|
|
|
|
#include "dtoolbase.h"
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Class : StringDecoder
|
|
// Description : The base class to a family of classes that decode
|
|
// various kinds of encoded byte streams. Give it a
|
|
// string, then ask it to pull the characters out one at
|
|
// a time. This also serves as the plain old
|
|
// byte-at-a-time decoder.
|
|
////////////////////////////////////////////////////////////////////
|
|
class StringDecoder {
|
|
public:
|
|
INLINE StringDecoder(const string &input);
|
|
virtual ~StringDecoder();
|
|
|
|
virtual int get_next_character();
|
|
INLINE bool is_eof();
|
|
|
|
static void set_notify_ptr(ostream *ptr);
|
|
static ostream *get_notify_ptr();
|
|
|
|
protected:
|
|
INLINE bool test_eof();
|
|
|
|
string _input;
|
|
size_t _p;
|
|
bool _eof;
|
|
static ostream *_notify_ptr;
|
|
};
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Class : StringUtf8Decoder
|
|
// Description : This decoder extracts utf-8 sequences.
|
|
////////////////////////////////////////////////////////////////////
|
|
class StringUtf8Decoder : public StringDecoder {
|
|
public:
|
|
INLINE StringUtf8Decoder(const string &input);
|
|
|
|
virtual int get_next_character();
|
|
};
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Class : StringUnicodeDecoder
|
|
// Description : This decoder extracts characters two at a time to get
|
|
// a plain wide character sequence.
|
|
////////////////////////////////////////////////////////////////////
|
|
class StringUnicodeDecoder : public StringDecoder {
|
|
public:
|
|
INLINE StringUnicodeDecoder(const string &input);
|
|
|
|
virtual int get_next_character();
|
|
};
|
|
|
|
#include "stringDecoder.I"
|
|
|
|
#endif
|