2007-12-24 16:51:19 +03:00
|
|
|
/**********************************************************************
|
|
|
|
|
|
|
|
transcode_data.h -
|
|
|
|
|
|
|
|
$Author$
|
|
|
|
created at: Mon 10 Dec 2007 14:01:47 JST 2007
|
|
|
|
|
|
|
|
Copyright (C) 2007 Martin Duerst
|
|
|
|
|
|
|
|
**********************************************************************/
|
|
|
|
|
|
|
|
#include "ruby/ruby.h"
|
|
|
|
|
|
|
|
#ifndef RUBY_TRANSCODE_DATA_H
|
|
|
|
#define RUBY_TRANSCODE_DATA_H 1
|
|
|
|
|
2007-12-10 08:01:47 +03:00
|
|
|
typedef unsigned char base_element;
|
|
|
|
|
|
|
|
typedef struct byte_lookup {
|
|
|
|
const base_element *base;
|
2007-12-10 11:46:06 +03:00
|
|
|
const struct byte_lookup *const *info;
|
2007-12-10 08:01:47 +03:00
|
|
|
} BYTE_LOOKUP;
|
|
|
|
|
2007-12-25 08:57:04 +03:00
|
|
|
#ifndef PType
|
2007-12-10 08:01:47 +03:00
|
|
|
/* data file needs to treat this as a pointer, to remove warnings */
|
2007-12-10 11:46:06 +03:00
|
|
|
#define PType (const BYTE_LOOKUP *)
|
2007-12-10 08:01:47 +03:00
|
|
|
#endif
|
|
|
|
|
2007-12-28 12:26:55 +03:00
|
|
|
#define NOMAP (PType 0x01) /* single byte direct map */
|
|
|
|
#define ONEbt (0x02) /* one byte payload */
|
|
|
|
#define TWObt (0x03) /* two bytes payload */
|
|
|
|
#define THREEbt (0x05) /* three bytes payload */
|
|
|
|
#define FOURbt (0x06) /* four bytes payload, UTF-8 only, macros start at getBT0 */
|
|
|
|
#define INVALID (PType 0x07) /* invalid byte sequence */
|
|
|
|
#define UNDEF (PType 0x09) /* legal but undefined */
|
|
|
|
#define ZERObt (PType 0x0A) /* zero bytes of payload, i.e. remove */
|
|
|
|
#define FUNii (PType 0x0B) /* function from info to info */
|
2008-01-20 09:12:48 +03:00
|
|
|
#define FUNsi (PType 0x0D) /* function from start to info */
|
|
|
|
#define FUNio (PType 0x0E) /* function from info to output */
|
|
|
|
#define FUNso (PType 0x0F) /* function from start to output */
|
2007-12-28 12:26:55 +03:00
|
|
|
|
|
|
|
#define o1(b1) (PType((((unsigned char)(b1))<<8)|ONEbt))
|
|
|
|
#define o2(b1,b2) (PType((((unsigned char)(b1))<<8)|(((unsigned char)(b2))<<16)|TWObt))
|
|
|
|
#define o3(b1,b2,b3) (PType((((unsigned char)(b1))<<8)|(((unsigned char)(b2))<<16)|(((unsigned char)(b3))<<24)|THREEbt))
|
|
|
|
#define o4(b0,b1,b2,b3) (PType((((unsigned char)(b1))<< 8)|(((unsigned char)(b2))<<16)|(((unsigned char)(b3))<<24)|((((unsigned char)(b0))&0x07)<<5)|FOURbt))
|
|
|
|
|
|
|
|
#define getBT1(a) (((a)>> 8)&0xFF)
|
|
|
|
#define getBT2(a) (((a)>>16)&0xFF)
|
|
|
|
#define getBT3(a) (((a)>>24)&0xFF)
|
|
|
|
#define getBT0(a) ((((a)>> 5)&0x07)|0xF0) /* for UTF-8 only!!! */
|
|
|
|
|
|
|
|
#define o2FUNii(b1,b2) (PType((((unsigned char)(b1))<<8)|(((unsigned char)(b2))<<16)|FUNii))
|
2007-12-10 08:01:47 +03:00
|
|
|
|
|
|
|
/* do we need these??? maybe not, can be done with simple tables */
|
|
|
|
#define ONETRAIL /* legal but undefined if one more trailing UTF-8 */
|
|
|
|
#define TWOTRAIL /* legal but undefined if two more trailing UTF-8 */
|
|
|
|
#define THREETRAIL /* legal but undefined if three more trailing UTF-8 */
|
|
|
|
|
2008-08-12 02:00:48 +04:00
|
|
|
typedef struct rb_transcoder rb_transcoder;
|
|
|
|
|
2007-12-24 16:51:19 +03:00
|
|
|
/* dynamic structure, one per conversion (similar to iconv_t) */
|
|
|
|
/* may carry conversion state (e.g. for iso-2022-jp) */
|
2007-12-25 08:57:04 +03:00
|
|
|
typedef struct rb_transcoding {
|
2008-08-12 02:00:48 +04:00
|
|
|
const rb_transcoder *transcoder;
|
2008-08-07 18:53:30 +04:00
|
|
|
|
2008-08-10 16:26:01 +04:00
|
|
|
int flags;
|
|
|
|
|
2008-08-09 10:02:01 +04:00
|
|
|
int resume_position;
|
|
|
|
const BYTE_LOOKUP *next_table;
|
2008-08-09 11:35:28 +04:00
|
|
|
VALUE next_info;
|
|
|
|
unsigned char next_byte;
|
2008-08-13 12:28:39 +04:00
|
|
|
|
2008-08-11 05:06:21 +04:00
|
|
|
int recognized_len; /* already interpreted */
|
|
|
|
int readagain_len; /* not yet interpreted */
|
2008-08-09 10:02:01 +04:00
|
|
|
union {
|
|
|
|
unsigned char ary[8]; /* max_input <= sizeof(ary) */
|
2008-08-13 12:28:39 +04:00
|
|
|
unsigned char *ptr; /* length: max_input */
|
2008-08-11 05:06:21 +04:00
|
|
|
} readbuf; /* recognized_len + readagain_len used */
|
2008-08-09 10:02:01 +04:00
|
|
|
|
2008-08-13 12:28:39 +04:00
|
|
|
int writebuf_off;
|
|
|
|
int writebuf_len;
|
|
|
|
union {
|
|
|
|
unsigned char ary[8]; /* max_output <= sizeof(ary) */
|
|
|
|
unsigned char *ptr; /* length: max_output */
|
|
|
|
} writebuf;
|
|
|
|
|
2008-08-07 18:53:30 +04:00
|
|
|
unsigned char stateful[256]; /* opaque data for stateful encoding */
|
2007-12-25 08:57:04 +03:00
|
|
|
} rb_transcoding;
|
2008-08-09 10:02:01 +04:00
|
|
|
#define TRANSCODING_READBUF(tc) \
|
|
|
|
((tc)->transcoder->max_input <= sizeof((tc)->readbuf.ary) ? \
|
|
|
|
(tc)->readbuf.ary : \
|
|
|
|
(tc)->readbuf.ptr)
|
2008-08-13 12:28:39 +04:00
|
|
|
#define TRANSCODING_WRITEBUF(tc) \
|
|
|
|
((tc)->transcoder->max_output <= sizeof((tc)->writebuf.ary) ? \
|
|
|
|
(tc)->writebuf.ary : \
|
|
|
|
(tc)->writebuf.ptr)
|
2007-12-24 16:51:19 +03:00
|
|
|
|
|
|
|
/* static structure, one per supported encoding pair */
|
2008-08-12 02:00:48 +04:00
|
|
|
struct rb_transcoder {
|
2007-12-24 16:51:19 +03:00
|
|
|
const char *from_encoding;
|
|
|
|
const char *to_encoding;
|
|
|
|
const BYTE_LOOKUP *conv_tree_start;
|
2008-08-09 10:02:01 +04:00
|
|
|
int input_unit_length;
|
|
|
|
int max_input;
|
2007-12-24 16:51:19 +03:00
|
|
|
int max_output;
|
2008-08-07 18:53:30 +04:00
|
|
|
VALUE (*func_ii)(rb_transcoding*, VALUE); /* info -> info */
|
|
|
|
VALUE (*func_si)(rb_transcoding*, const unsigned char*, size_t); /* start -> info */
|
|
|
|
int (*func_io)(rb_transcoding*, VALUE, const unsigned char*); /* info -> output */
|
|
|
|
int (*func_so)(rb_transcoding*, const unsigned char*, size_t, unsigned char*); /* start -> output */
|
2008-08-12 02:44:23 +04:00
|
|
|
int (*resetstate_func)(rb_transcoding*, unsigned char*); /* -> output */
|
2008-08-07 18:53:30 +04:00
|
|
|
int (*finish_func)(rb_transcoding*, unsigned char*); /* -> output */
|
2008-08-12 02:00:48 +04:00
|
|
|
};
|
2007-12-25 08:57:04 +03:00
|
|
|
|
|
|
|
void rb_declare_transcoder(const char *enc1, const char *enc2, const char *lib);
|
|
|
|
void rb_register_transcoder(const rb_transcoder *);
|
2007-12-24 16:51:19 +03:00
|
|
|
|
|
|
|
#endif /* RUBY_TRANSCODE_DATA_H */
|