Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 #include "postgres.h"
00015 #include "fmgr.h"
00016 #include "mb/pg_wchar.h"
00017 #include "../../Unicode/euc_jis_2004_to_utf8.map"
00018 #include "../../Unicode/utf8_to_euc_jis_2004.map"
00019 #include "../../Unicode/euc_jis_2004_to_utf8_combined.map"
00020 #include "../../Unicode/utf8_to_euc_jis_2004_combined.map"
00021
00022 PG_MODULE_MAGIC;
00023
00024 PG_FUNCTION_INFO_V1(euc_jis_2004_to_utf8);
00025 PG_FUNCTION_INFO_V1(utf8_to_euc_jis_2004);
00026
00027 extern Datum euc_jis_2004_to_utf8(PG_FUNCTION_ARGS);
00028 extern Datum utf8_to_euc_jis_2004(PG_FUNCTION_ARGS);
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040 Datum
00041 euc_jis_2004_to_utf8(PG_FUNCTION_ARGS)
00042 {
00043 unsigned char *src = (unsigned char *) PG_GETARG_CSTRING(2);
00044 unsigned char *dest = (unsigned char *) PG_GETARG_CSTRING(3);
00045 int len = PG_GETARG_INT32(4);
00046
00047 CHECK_ENCODING_CONVERSION_ARGS(PG_EUC_JIS_2004, PG_UTF8);
00048
00049 LocalToUtf(src, dest, LUmapEUC_JIS_2004, LUmapEUC_JIS_2004_combined,
00050 sizeof(LUmapEUC_JIS_2004) / sizeof(pg_local_to_utf),
00051 sizeof(LUmapEUC_JIS_2004_combined) / sizeof(pg_local_to_utf_combined),
00052 PG_EUC_JIS_2004, len);
00053
00054 PG_RETURN_VOID();
00055 }
00056
00057 Datum
00058 utf8_to_euc_jis_2004(PG_FUNCTION_ARGS)
00059 {
00060 unsigned char *src = (unsigned char *) PG_GETARG_CSTRING(2);
00061 unsigned char *dest = (unsigned char *) PG_GETARG_CSTRING(3);
00062 int len = PG_GETARG_INT32(4);
00063
00064 CHECK_ENCODING_CONVERSION_ARGS(PG_UTF8, PG_EUC_JIS_2004);
00065
00066 UtfToLocal(src, dest, ULmapEUC_JIS_2004, ULmapEUC_JIS_2004_combined,
00067 sizeof(ULmapEUC_JIS_2004) / sizeof(pg_utf_to_local),
00068 sizeof(ULmapEUC_JIS_2004_combined) / sizeof(pg_utf_to_local_combined),
00069 PG_EUC_JIS_2004, len);
00070
00071 PG_RETURN_VOID();
00072 }