PostgreSQL Source Code git master
Loading...
Searching...
No Matches
utf8_and_win.c File Reference
#include "postgres.h"
#include "fmgr.h"
#include "mb/pg_wchar.h"
#include "../../Unicode/utf8_to_win1250.map"
#include "../../Unicode/utf8_to_win1251.map"
#include "../../Unicode/utf8_to_win1252.map"
#include "../../Unicode/utf8_to_win1253.map"
#include "../../Unicode/utf8_to_win1254.map"
#include "../../Unicode/utf8_to_win1255.map"
#include "../../Unicode/utf8_to_win1256.map"
#include "../../Unicode/utf8_to_win1257.map"
#include "../../Unicode/utf8_to_win1258.map"
#include "../../Unicode/utf8_to_win866.map"
#include "../../Unicode/utf8_to_win874.map"
#include "../../Unicode/win1250_to_utf8.map"
#include "../../Unicode/win1251_to_utf8.map"
#include "../../Unicode/win1252_to_utf8.map"
#include "../../Unicode/win1253_to_utf8.map"
#include "../../Unicode/win1254_to_utf8.map"
#include "../../Unicode/win1255_to_utf8.map"
#include "../../Unicode/win1256_to_utf8.map"
#include "../../Unicode/win1257_to_utf8.map"
#include "../../Unicode/win866_to_utf8.map"
#include "../../Unicode/win874_to_utf8.map"
#include "../../Unicode/win1258_to_utf8.map"
Include dependency graph for utf8_and_win.c:

Go to the source code of this file.

Data Structures

struct  pg_conv_map
 

Functions

 PG_MODULE_MAGIC_EXT (.name="utf8_and_win",.version=PG_VERSION)
 
 PG_FUNCTION_INFO_V1 (win_to_utf8)
 
 PG_FUNCTION_INFO_V1 (utf8_to_win)
 
Datum win_to_utf8 (PG_FUNCTION_ARGS)
 
Datum utf8_to_win (PG_FUNCTION_ARGS)
 

Variables

static const pg_conv_map maps []
 

Function Documentation

◆ PG_FUNCTION_INFO_V1() [1/2]

PG_FUNCTION_INFO_V1 ( utf8_to_win  )

◆ PG_FUNCTION_INFO_V1() [2/2]

PG_FUNCTION_INFO_V1 ( win_to_utf8  )

◆ PG_MODULE_MAGIC_EXT()

PG_MODULE_MAGIC_EXT ( name = "utf8_and_win",
version = PG_VERSION 
)

◆ utf8_to_win()

Datum utf8_to_win ( PG_FUNCTION_ARGS  )

Definition at line 120 of file utf8_and_win.c.

121{
122 int encoding = PG_GETARG_INT32(1);
123 unsigned char *src = (unsigned char *) PG_GETARG_CSTRING(2);
124 unsigned char *dest = (unsigned char *) PG_GETARG_CSTRING(3);
125 int len = PG_GETARG_INT32(4);
126 bool noError = PG_GETARG_BOOL(5);
127 int i;
128
130
131 for (i = 0; i < lengthof(maps); i++)
132 {
133 if (encoding == maps[i].encoding)
134 {
135 int converted;
136
137 converted = UtfToLocal(src, len, dest,
138 maps[i].map2,
139 NULL, 0,
140 NULL,
141 encoding,
142 noError);
144 }
145 }
146
149 errmsg("unexpected encoding ID %d for WIN character sets",
150 encoding)));
151
153}
#define lengthof(array)
Definition c.h:803
int UtfToLocal(const unsigned char *utf, int len, unsigned char *iso, const pg_mb_radix_tree *map, const pg_utf_to_local_combined *cmap, int cmapsize, utf_local_conversion_func conv_func, int encoding, bool noError)
Definition conv.c:507
int errcode(int sqlerrcode)
Definition elog.c:863
int errmsg(const char *fmt,...)
Definition elog.c:1080
#define ERROR
Definition elog.h:39
#define ereport(elevel,...)
Definition elog.h:150
#define PG_GETARG_CSTRING(n)
Definition fmgr.h:278
#define PG_RETURN_INT32(x)
Definition fmgr.h:355
#define PG_GETARG_INT32(n)
Definition fmgr.h:269
#define PG_GETARG_BOOL(n)
Definition fmgr.h:274
static char * encoding
Definition initdb.c:139
int i
Definition isn.c:77
#define PG_UTF8
Definition mbprint.c:43
const void size_t len
#define CHECK_ENCODING_CONVERSION_ARGS(srcencoding, destencoding)
Definition pg_wchar.h:507
static int fb(int x)
static const pg_conv_map maps[]

References CHECK_ENCODING_CONVERSION_ARGS, encoding, ereport, errcode(), errmsg(), ERROR, fb(), i, len, lengthof, maps, PG_GETARG_BOOL, PG_GETARG_CSTRING, PG_GETARG_INT32, PG_RETURN_INT32, PG_UTF8, and UtfToLocal().

◆ win_to_utf8()

Datum win_to_utf8 ( PG_FUNCTION_ARGS  )

Definition at line 84 of file utf8_and_win.c.

85{
87 unsigned char *src = (unsigned char *) PG_GETARG_CSTRING(2);
88 unsigned char *dest = (unsigned char *) PG_GETARG_CSTRING(3);
89 int len = PG_GETARG_INT32(4);
90 bool noError = PG_GETARG_BOOL(5);
91 int i;
92
94
95 for (i = 0; i < lengthof(maps); i++)
96 {
97 if (encoding == maps[i].encoding)
98 {
99 int converted;
100
101 converted = LocalToUtf(src, len, dest,
102 maps[i].map1,
103 NULL, 0,
104 NULL,
105 encoding,
106 noError);
108 }
109 }
110
113 errmsg("unexpected encoding ID %d for WIN character sets",
114 encoding)));
115
117}
int LocalToUtf(const unsigned char *iso, int len, unsigned char *utf, const pg_mb_radix_tree *map, const pg_local_to_utf_combined *cmap, int cmapsize, utf_local_conversion_func conv_func, int encoding, bool noError)
Definition conv.c:717

References CHECK_ENCODING_CONVERSION_ARGS, encoding, ereport, errcode(), errmsg(), ERROR, fb(), i, len, lengthof, LocalToUtf(), maps, PG_GETARG_BOOL, PG_GETARG_CSTRING, PG_GETARG_INT32, PG_RETURN_INT32, and PG_UTF8.

Variable Documentation

◆ maps

const pg_conv_map maps[]
static
Initial value:

Definition at line 69 of file utf8_and_win.c.

Referenced by utf8_to_win(), and win_to_utf8().