latin_and_mic.c
来自「postgresql8.3.4源码,开源数据库」· C语言 代码 · 共 183 行
C
183 行
/*------------------------------------------------------------------------- * * LATINn and MULE_INTERNAL * * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION * $PostgreSQL: pgsql/src/backend/utils/mb/conversion_procs/latin_and_mic/latin_and_mic.c,v 1.15 2008/01/01 19:45:54 momjian Exp $ * *------------------------------------------------------------------------- */#include "postgres.h"#include "fmgr.h"#include "mb/pg_wchar.h"PG_MODULE_MAGIC;PG_FUNCTION_INFO_V1(latin1_to_mic);PG_FUNCTION_INFO_V1(mic_to_latin1);PG_FUNCTION_INFO_V1(latin3_to_mic);PG_FUNCTION_INFO_V1(mic_to_latin3);PG_FUNCTION_INFO_V1(latin4_to_mic);PG_FUNCTION_INFO_V1(mic_to_latin4);extern Datum latin1_to_mic(PG_FUNCTION_ARGS);extern Datum mic_to_latin1(PG_FUNCTION_ARGS);extern Datum latin3_to_mic(PG_FUNCTION_ARGS);extern Datum mic_to_latin3(PG_FUNCTION_ARGS);extern Datum latin4_to_mic(PG_FUNCTION_ARGS);extern Datum mic_to_latin4(PG_FUNCTION_ARGS);/* ---------- * conv_proc( * INTEGER, -- source encoding id * INTEGER, -- destination encoding id * CSTRING, -- source string (null terminated C string) * CSTRING, -- destination string (null terminated C string) * INTEGER -- source string length * ) returns VOID; * ---------- */static void latin12mic(const unsigned char *l, unsigned char *p, int len);static void mic2latin1(const unsigned char *mic, unsigned char *p, int len);static void latin32mic(const unsigned char *l, unsigned char *p, int len);static void mic2latin3(const unsigned char *mic, unsigned char *p, int len);static void latin42mic(const unsigned char *l, unsigned char *p, int len);static void mic2latin4(const unsigned char *mic, unsigned char *p, int len);Datumlatin1_to_mic(PG_FUNCTION_ARGS){ unsigned char *src = (unsigned char *) PG_GETARG_CSTRING(2); unsigned char *dest = (unsigned char *) PG_GETARG_CSTRING(3); int len = PG_GETARG_INT32(4); Assert(PG_GETARG_INT32(0) == PG_LATIN1); Assert(PG_GETARG_INT32(1) == PG_MULE_INTERNAL); Assert(len >= 0); latin12mic(src, dest, len); PG_RETURN_VOID();}Datummic_to_latin1(PG_FUNCTION_ARGS){ unsigned char *src = (unsigned char *) PG_GETARG_CSTRING(2); unsigned char *dest = (unsigned char *) PG_GETARG_CSTRING(3); int len = PG_GETARG_INT32(4); Assert(PG_GETARG_INT32(0) == PG_MULE_INTERNAL); Assert(PG_GETARG_INT32(1) == PG_LATIN1); Assert(len >= 0); mic2latin1(src, dest, len); PG_RETURN_VOID();}Datumlatin3_to_mic(PG_FUNCTION_ARGS){ unsigned char *src = (unsigned char *) PG_GETARG_CSTRING(2); unsigned char *dest = (unsigned char *) PG_GETARG_CSTRING(3); int len = PG_GETARG_INT32(4); Assert(PG_GETARG_INT32(0) == PG_LATIN3); Assert(PG_GETARG_INT32(1) == PG_MULE_INTERNAL); Assert(len >= 0); latin32mic(src, dest, len); PG_RETURN_VOID();}Datummic_to_latin3(PG_FUNCTION_ARGS){ unsigned char *src = (unsigned char *) PG_GETARG_CSTRING(2); unsigned char *dest = (unsigned char *) PG_GETARG_CSTRING(3); int len = PG_GETARG_INT32(4); Assert(PG_GETARG_INT32(0) == PG_MULE_INTERNAL); Assert(PG_GETARG_INT32(1) == PG_LATIN3); Assert(len >= 0); mic2latin3(src, dest, len); PG_RETURN_VOID();}Datumlatin4_to_mic(PG_FUNCTION_ARGS){ unsigned char *src = (unsigned char *) PG_GETARG_CSTRING(2); unsigned char *dest = (unsigned char *) PG_GETARG_CSTRING(3); int len = PG_GETARG_INT32(4); Assert(PG_GETARG_INT32(0) == PG_LATIN4); Assert(PG_GETARG_INT32(1) == PG_MULE_INTERNAL); Assert(len >= 0); latin42mic(src, dest, len); PG_RETURN_VOID();}Datummic_to_latin4(PG_FUNCTION_ARGS){ unsigned char *src = (unsigned char *) PG_GETARG_CSTRING(2); unsigned char *dest = (unsigned char *) PG_GETARG_CSTRING(3); int len = PG_GETARG_INT32(4); Assert(PG_GETARG_INT32(0) == PG_MULE_INTERNAL); Assert(PG_GETARG_INT32(1) == PG_LATIN4); Assert(len >= 0); mic2latin4(src, dest, len); PG_RETURN_VOID();}static voidlatin12mic(const unsigned char *l, unsigned char *p, int len){ latin2mic(l, p, len, LC_ISO8859_1, PG_LATIN1);}static voidmic2latin1(const unsigned char *mic, unsigned char *p, int len){ mic2latin(mic, p, len, LC_ISO8859_1, PG_LATIN1);}static voidlatin32mic(const unsigned char *l, unsigned char *p, int len){ latin2mic(l, p, len, LC_ISO8859_3, PG_LATIN3);}static voidmic2latin3(const unsigned char *mic, unsigned char *p, int len){ mic2latin(mic, p, len, LC_ISO8859_3, PG_LATIN3);}static voidlatin42mic(const unsigned char *l, unsigned char *p, int len){ latin2mic(l, p, len, LC_ISO8859_4, PG_LATIN4);}static voidmic2latin4(const unsigned char *mic, unsigned char *p, int len){ mic2latin(mic, p, len, LC_ISO8859_4, PG_LATIN4);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?