-
Notifications
You must be signed in to change notification settings - Fork 15
/
multibyte.h
80 lines (76 loc) · 2.45 KB
/
multibyte.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#ifndef __MULTIBUYTE_H__
#define __MULTIBUYTE_H__
/*
*
* Multibyte library header ( psqlODBC Only )
*
*/
#include "psqlodbc.h"
#include "qresult.h"
/* PostgreSQL client encoding */
enum {
SQL_ASCII = 0 /* SQL/ASCII */
,EUC_JP /* EUC for Japanese */
,EUC_CN /* EUC for Chinese */
,EUC_KR /* EUC for Korean */
,EUC_TW /* EUC for Taiwan */
,JOHAB
,UTF8 /* Unicode UTF-8 */
,MULE_INTERNAL /* Mule internal code */
,LATIN1 /* ISO-8859 Latin 1 */
,LATIN2 /* ISO-8859 Latin 2 */
,LATIN3 /* ISO-8859 Latin 3 */
,LATIN4 /* ISO-8859 Latin 4 */
,LATIN5 /* ISO-8859 Latin 5 */
,LATIN6 /* ISO-8859 Latin 6 */
,LATIN7 /* ISO-8859 Latin 7 */
,LATIN8 /* ISO-8859 Latin 8 */
,LATIN9 /* ISO-8859 Latin 9 */
,LATIN10 /* ISO-8859 Latin 10 */
,WIN1256 /* Arabic Windows */
,WIN1258 /* Vietnamese Windows */
,WIN866 /* Alternativny Variant (MS-DOS CP866) */
,WIN874 /* Thai Windows */
,KOI8R /* KOI8-R/U */
,WIN1251 /* Cyrillic Windows */
,WIN1252 /* Western Europe Windows */
,ISO_8859_5 /* ISO-8859-5 */
,ISO_8859_6 /* ISO-8859-6 */
,ISO_8859_7 /* ISO-8859-7 */
,ISO_8859_8 /* ISO-8859-8 */
,WIN1250 /* Central Europe Windows */
,WIN1253 /* Greek Windows */
,WIN1254 /* Turkish Windows */
,WIN1255 /* Hebrew Windows */
,WIN1257 /* Baltic(North Europe) Windows */
,EUC_JIS_2004 /* EUC for SHIFT-JIS-2004 Japanese */
,SJIS /* Shift JIS */
,BIG5 /* Big5 */
,GBK /* GBK */
,UHC /* UHC */
,GB18030 /* GB18030 */
,SHIFT_JIS_2004 /* SHIFT-JIS-2004 Japanese, JIS X 0213 */
,OTHER = -1
};
extern int pg_CS_code(const char *stat_string);
/* Old Type Compatible */
typedef struct
{
int ccsc;
const UCHAR *encstr;
ssize_t pos;
int ccst;
} encoded_str;
#define ENCODE_STATUS(enc) ((enc).ccst)
#define ENCODE_PTR(enc) ((enc).encstr + (enc).pos)
#define MBCS_NON_ASCII(enc) (0 != (enc).ccst || (enc).encstr[(enc).pos] >= 0x80)
void encoded_str_constr(encoded_str *encstr, int ccsc, const char *str);
#define make_encoded_str(encstr, conn, str) encoded_str_constr(encstr, conn->ccsc, str)
extern int encoded_nextchar(encoded_str *encstr);
extern ssize_t encoded_position_shift(encoded_str *encstr, size_t shift);
extern int encoded_byte_check(encoded_str *encstr, size_t abspos);
/* #define check_client_encoding(X) pg_CS_name(pg_CS_code(X)) */
char *check_client_encoding(const pgNAME sql_string);
const char *derive_locale_encoding(const char *dbencoding);
int pg_mb_maxlen(int characterset_code);
#endif /* __MULTIBUYTE_H__ */