mirror of
https://github.com/postgres/postgres.git
synced 2025-07-30 11:03:19 +03:00
Move gettext encoding names into encnames.c, so we only have one place to update.
Per discussion.
This commit is contained in:
@ -2,7 +2,7 @@
|
|||||||
* Encoding names and routines for work with it. All
|
* Encoding names and routines for work with it. All
|
||||||
* in this file is shared bedween FE and BE.
|
* in this file is shared bedween FE and BE.
|
||||||
*
|
*
|
||||||
* $PostgreSQL: pgsql/src/backend/utils/mb/encnames.c,v 1.38 2009/02/10 19:29:39 petere Exp $
|
* $PostgreSQL: pgsql/src/backend/utils/mb/encnames.c,v 1.39 2009/04/24 08:43:50 mha Exp $
|
||||||
*/
|
*/
|
||||||
#ifdef FRONTEND
|
#ifdef FRONTEND
|
||||||
#include "postgres_fe.h"
|
#include "postgres_fe.h"
|
||||||
@ -430,6 +430,49 @@ pg_enc2name pg_enc2name_tbl[] =
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/* ----------
|
||||||
|
* These are encoding names for gettext.
|
||||||
|
* ----------
|
||||||
|
*/
|
||||||
|
pg_enc2gettext pg_enc2gettext_tbl[] =
|
||||||
|
{
|
||||||
|
{PG_UTF8, "UTF-8"},
|
||||||
|
{PG_LATIN1, "LATIN1"},
|
||||||
|
{PG_LATIN2, "LATIN2"},
|
||||||
|
{PG_LATIN3, "LATIN3"},
|
||||||
|
{PG_LATIN4, "LATIN4"},
|
||||||
|
{PG_ISO_8859_5, "ISO-8859-5"},
|
||||||
|
{PG_ISO_8859_6, "ISO_8859-6"},
|
||||||
|
{PG_ISO_8859_7, "ISO-8859-7"},
|
||||||
|
{PG_ISO_8859_8, "ISO-8859-8"},
|
||||||
|
{PG_LATIN5, "LATIN5"},
|
||||||
|
{PG_LATIN6, "LATIN6"},
|
||||||
|
{PG_LATIN7, "LATIN7"},
|
||||||
|
{PG_LATIN8, "LATIN8"},
|
||||||
|
{PG_LATIN9, "LATIN-9"},
|
||||||
|
{PG_LATIN10, "LATIN10"},
|
||||||
|
{PG_KOI8R, "KOI8-R"},
|
||||||
|
{PG_KOI8U, "KOI8-U"},
|
||||||
|
{PG_WIN1250, "CP1250"},
|
||||||
|
{PG_WIN1251, "CP1251"},
|
||||||
|
{PG_WIN1252, "CP1252"},
|
||||||
|
{PG_WIN1253, "CP1253"},
|
||||||
|
{PG_WIN1254, "CP1254"},
|
||||||
|
{PG_WIN1255, "CP1255"},
|
||||||
|
{PG_WIN1256, "CP1256"},
|
||||||
|
{PG_WIN1257, "CP1257"},
|
||||||
|
{PG_WIN1258, "CP1258"},
|
||||||
|
{PG_WIN866, "CP866"},
|
||||||
|
{PG_WIN874, "CP874"},
|
||||||
|
{PG_EUC_CN, "EUC-CN"},
|
||||||
|
{PG_EUC_JP, "EUC-JP"},
|
||||||
|
{PG_EUC_KR, "EUC-KR"},
|
||||||
|
{PG_EUC_TW, "EUC-TW"},
|
||||||
|
{PG_EUC_JIS_2004, "EUC-JP"},
|
||||||
|
{0, NULL}
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
/* ----------
|
/* ----------
|
||||||
* Encoding checks, for error returns -1 else encoding id
|
* Encoding checks, for error returns -1 else encoding id
|
||||||
* ----------
|
* ----------
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* Tatsuo Ishii
|
* Tatsuo Ishii
|
||||||
*
|
*
|
||||||
* $PostgreSQL: pgsql/src/backend/utils/mb/mbutils.c,v 1.85 2009/04/08 09:50:48 heikki Exp $
|
* $PostgreSQL: pgsql/src/backend/utils/mb/mbutils.c,v 1.86 2009/04/24 08:43:50 mha Exp $
|
||||||
*/
|
*/
|
||||||
#include "postgres.h"
|
#include "postgres.h"
|
||||||
|
|
||||||
@ -890,47 +890,6 @@ cliplen(const char *str, int len, int limit)
|
|||||||
return l;
|
return l;
|
||||||
}
|
}
|
||||||
|
|
||||||
#if defined(ENABLE_NLS)
|
|
||||||
static const struct codeset_map {
|
|
||||||
int encoding;
|
|
||||||
const char *codeset;
|
|
||||||
} codeset_map_array[] = {
|
|
||||||
{PG_UTF8, "UTF-8"},
|
|
||||||
{PG_LATIN1, "LATIN1"},
|
|
||||||
{PG_LATIN2, "LATIN2"},
|
|
||||||
{PG_LATIN3, "LATIN3"},
|
|
||||||
{PG_LATIN4, "LATIN4"},
|
|
||||||
{PG_ISO_8859_5, "ISO-8859-5"},
|
|
||||||
{PG_ISO_8859_6, "ISO_8859-6"},
|
|
||||||
{PG_ISO_8859_7, "ISO-8859-7"},
|
|
||||||
{PG_ISO_8859_8, "ISO-8859-8"},
|
|
||||||
{PG_LATIN5, "LATIN5"},
|
|
||||||
{PG_LATIN6, "LATIN6"},
|
|
||||||
{PG_LATIN7, "LATIN7"},
|
|
||||||
{PG_LATIN8, "LATIN8"},
|
|
||||||
{PG_LATIN9, "LATIN-9"},
|
|
||||||
{PG_LATIN10, "LATIN10"},
|
|
||||||
{PG_KOI8R, "KOI8-R"},
|
|
||||||
{PG_KOI8U, "KOI8-U"},
|
|
||||||
{PG_WIN1250, "CP1250"},
|
|
||||||
{PG_WIN1251, "CP1251"},
|
|
||||||
{PG_WIN1252, "CP1252"},
|
|
||||||
{PG_WIN1253, "CP1253"},
|
|
||||||
{PG_WIN1254, "CP1254"},
|
|
||||||
{PG_WIN1255, "CP1255"},
|
|
||||||
{PG_WIN1256, "CP1256"},
|
|
||||||
{PG_WIN1257, "CP1257"},
|
|
||||||
{PG_WIN1258, "CP1258"},
|
|
||||||
{PG_WIN866, "CP866"},
|
|
||||||
{PG_WIN874, "CP874"},
|
|
||||||
{PG_EUC_CN, "EUC-CN"},
|
|
||||||
{PG_EUC_JP, "EUC-JP"},
|
|
||||||
{PG_EUC_KR, "EUC-KR"},
|
|
||||||
{PG_EUC_TW, "EUC-TW"},
|
|
||||||
{PG_EUC_JIS_2004, "EUC-JP"}
|
|
||||||
};
|
|
||||||
#endif /* ENABLE_NLS */
|
|
||||||
|
|
||||||
void
|
void
|
||||||
SetDatabaseEncoding(int encoding)
|
SetDatabaseEncoding(int encoding)
|
||||||
{
|
{
|
||||||
@ -969,12 +928,12 @@ pg_bind_textdomain_codeset(const char *domainname)
|
|||||||
return;
|
return;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
for (i = 0; i < lengthof(codeset_map_array); i++)
|
for (i = 0; pg_enc2gettext_tbl[i].name != NULL; i++)
|
||||||
{
|
{
|
||||||
if (codeset_map_array[i].encoding == encoding)
|
if (pg_enc2gettext_tbl[i].encoding == encoding)
|
||||||
{
|
{
|
||||||
if (bind_textdomain_codeset(domainname,
|
if (bind_textdomain_codeset(domainname,
|
||||||
codeset_map_array[i].codeset) == NULL)
|
pg_enc2gettext_tbl[i].name) == NULL)
|
||||||
elog(LOG, "bind_textdomain_codeset failed");
|
elog(LOG, "bind_textdomain_codeset failed");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
* Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
|
* Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
|
||||||
* Portions Copyright (c) 1994, Regents of the University of California
|
* Portions Copyright (c) 1994, Regents of the University of California
|
||||||
*
|
*
|
||||||
* $PostgreSQL: pgsql/src/include/mb/pg_wchar.h,v 1.89 2009/04/08 09:50:48 heikki Exp $
|
* $PostgreSQL: pgsql/src/include/mb/pg_wchar.h,v 1.90 2009/04/24 08:43:51 mha Exp $
|
||||||
*
|
*
|
||||||
* NOTES
|
* NOTES
|
||||||
* This is used both by the backend and by libpq, but should not be
|
* This is used both by the backend and by libpq, but should not be
|
||||||
@ -261,6 +261,17 @@ typedef struct pg_enc2name
|
|||||||
|
|
||||||
extern pg_enc2name pg_enc2name_tbl[];
|
extern pg_enc2name pg_enc2name_tbl[];
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Encoding names for gettext
|
||||||
|
*/
|
||||||
|
typedef struct pg_enc2gettext
|
||||||
|
{
|
||||||
|
pg_enc encoding;
|
||||||
|
const char *name;
|
||||||
|
} pg_enc2gettext;
|
||||||
|
|
||||||
|
extern pg_enc2gettext pg_enc2gettext_tbl[];
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* pg_wchar stuff
|
* pg_wchar stuff
|
||||||
*/
|
*/
|
||||||
|
Reference in New Issue
Block a user