]> git.tdb.fi Git - libs/core.git/blob - source/stringcodec/jisx0208.h
Drop copyright and license notices from source files
[libs/core.git] / source / stringcodec / jisx0208.h
1 #ifndef MSP_STRINGS_JISX0208_H_
2 #define MSP_STRINGS_JISX0208_H_
3
4 #include "codec.h"
5
6 namespace Msp {
7 namespace Codecs {
8
9 /**
10 Codec for the JIS X 0208 encoding.  This is not particularly useful as a
11 stand-alone codec, due to lack of a linefeed character among other things,
12 but is included as part of some other encodings.
13 */
14 class JisX0208: public Codec
15 {
16 public:
17         class Encoder: public Codec::Encoder
18         {
19         public:
20                 Encoder(ErrorMode em = THROW_ON_ERROR): Codec::Encoder(em) { }
21
22                 virtual void encode_char(UnicodeChar, std::string &);
23         private:
24                 virtual void transliterate(UnicodeChar, std::string &);
25         };
26
27         class Decoder: public Codec::Decoder
28         {
29         public:
30                 Decoder(ErrorMode em = THROW_ON_ERROR): Codec::Decoder(em) { }
31
32                 virtual UnicodeChar decode_char(const std::string &, std::string::const_iterator &);
33         };
34
35         virtual const char *get_name() const { return "JIS X 0208"; }
36
37         virtual Encoder *create_encoder(ErrorMode em = THROW_ON_ERROR) const { return new Encoder(em); }
38         virtual Decoder *create_decoder(ErrorMode em = THROW_ON_ERROR) const { return new Decoder(em); }
39 };
40
41
42 struct Kuten
43 {
44         unsigned short ku;
45         unsigned short ten;
46
47         Kuten(): ku(0), ten(0) { }
48
49         operator bool() { return ku!=0 && ten!=0; }
50 };
51
52 extern UnicodeChar jisx0208_to_ucs(Kuten);
53 extern Kuten ucs_to_jisx0208(UnicodeChar);
54
55 } // namespace Codecs
56 } // namespace Msp
57
58 #endif