Re: Thread-unsafe coding in ecpg - Mailing list pgsql-hackers
From | Tom Lane |
---|---|
Subject | Re: Thread-unsafe coding in ecpg |
Date | |
Msg-id | 32316.1548040561@sss.pgh.pa.us Whole thread Raw |
In response to | RE: Thread-unsafe coding in ecpg ("Tsunakawa, Takayuki" <tsunakawa.takay@jp.fujitsu.com>) |
Responses |
RE: Thread-unsafe coding in ecpg
|
List | pgsql-hackers |
"Tsunakawa, Takayuki" <tsunakawa.takay@jp.fujitsu.com> writes: > From: Tom Lane [mailto:tgl@sss.pgh.pa.us] >> How far back does that exist? > I couldn't find the relevant doc, but I've just confirmed I can use it with Visual Studio 2008 on Win7, which is my oldestcombination at hand. VS 2008 is already past its EOL, and the support for Win7 will end next year, so the combinationis practically enough. Hm. Well, I suppose we can figure that the buildfarm should tell us if there's anything too old that we still care about. So like this ... regards, tom lane diff --git a/configure b/configure index 7602e65..1e69eda 100755 *** a/configure --- b/configure *************** fi *** 15209,15215 **** LIBS_including_readline="$LIBS" LIBS=`echo "$LIBS" | sed -e 's/-ledit//g' -e 's/-lreadline//g'` ! for ac_func in cbrt clock_gettime copyfile fdatasync getifaddrs getpeerucred getrlimit mbstowcs_l memmove poll posix_fallocateppoll pstat pthread_is_threaded_np readlink setproctitle setproctitle_fast setsid shm_open strchrnul strsignalsymlink sync_file_range utime utimes wcstombs_l do : as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" --- 15209,15215 ---- LIBS_including_readline="$LIBS" LIBS=`echo "$LIBS" | sed -e 's/-ledit//g' -e 's/-lreadline//g'` ! for ac_func in cbrt clock_gettime copyfile fdatasync getifaddrs getpeerucred getrlimit mbstowcs_l memmove poll posix_fallocateppoll pstat pthread_is_threaded_np readlink setproctitle setproctitle_fast setsid shm_open strchrnul strsignalsymlink sync_file_range uselocale utime utimes wcstombs_l do : as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" diff --git a/configure.in b/configure.in index d599ad8..556186c 100644 *** a/configure.in --- b/configure.in *************** AC_CHECK_FUNCS(m4_normalize([ *** 1618,1623 **** --- 1618,1624 ---- strsignal symlink sync_file_range + uselocale utime utimes wcstombs_l diff --git a/src/include/pg_config.h.in b/src/include/pg_config.h.in index 9d99816..2c899a1 100644 *** a/src/include/pg_config.h.in --- b/src/include/pg_config.h.in *************** *** 691,696 **** --- 691,699 ---- /* Define to 1 if the system has the type `unsigned long long int'. */ #undef HAVE_UNSIGNED_LONG_LONG_INT + /* Define to 1 if you have the `uselocale' function. */ + #undef HAVE_USELOCALE + /* Define to 1 if you have the `utime' function. */ #undef HAVE_UTIME diff --git a/src/include/pg_config.h.win32 b/src/include/pg_config.h.win32 index 8a560ef..3964433 100644 *** a/src/include/pg_config.h.win32 --- b/src/include/pg_config.h.win32 *************** *** 545,550 **** --- 545,553 ---- /* Define to 1 if you have the `unsetenv' function. */ /* #undef HAVE_UNSETENV */ + /* Define to 1 if you have the `uselocale' function. */ + /* #undef HAVE_USELOCALE */ + /* Define to 1 if you have the `utime' function. */ #define HAVE_UTIME 1 diff --git a/src/interfaces/ecpg/ecpglib/ecpglib_extern.h b/src/interfaces/ecpg/ecpglib/ecpglib_extern.h index 1c9bce1..41851d5 100644 *** a/src/interfaces/ecpg/ecpglib/ecpglib_extern.h --- b/src/interfaces/ecpg/ecpglib/ecpglib_extern.h *************** *** 12,17 **** --- 12,20 ---- #ifndef CHAR_BIT #include <limits.h> #endif + #ifdef LOCALE_T_IN_XLOCALE + #include <xlocale.h> + #endif enum COMPAT_MODE { *************** struct statement *** 61,67 **** --- 64,78 ---- bool questionmarks; struct variable *inlist; struct variable *outlist; + #ifdef HAVE_USELOCALE + locale_t clocale; + locale_t oldlocale; + #else char *oldlocale; + #ifdef WIN32 + int oldthreadlocale; + #endif + #endif int nparams; char **paramvalues; PGresult *results; diff --git a/src/interfaces/ecpg/ecpglib/execute.c b/src/interfaces/ecpg/ecpglib/execute.c index 3f5034e..f67d774 100644 *** a/src/interfaces/ecpg/ecpglib/execute.c --- b/src/interfaces/ecpg/ecpglib/execute.c *************** free_statement(struct statement *stmt) *** 102,108 **** --- 102,113 ---- free_variable(stmt->outlist); ecpg_free(stmt->command); ecpg_free(stmt->name); + #ifdef HAVE_USELOCALE + if (stmt->clocale) + freelocale(stmt->clocale); + #else ecpg_free(stmt->oldlocale); + #endif ecpg_free(stmt); } *************** ecpg_do_prologue(int lineno, const int c *** 1771,1778 **** /* * Make sure we do NOT honor the locale for numeric input/output since the ! * database wants the standard decimal point */ stmt->oldlocale = ecpg_strdup(setlocale(LC_NUMERIC, NULL), lineno); if (stmt->oldlocale == NULL) { --- 1776,1806 ---- /* * Make sure we do NOT honor the locale for numeric input/output since the ! * database wants the standard decimal point. If available, use ! * uselocale() for this because it's thread-safe. */ + #ifdef HAVE_USELOCALE + stmt->clocale = newlocale(LC_NUMERIC_MASK, "C", (locale_t) 0); + if (stmt->clocale == (locale_t) 0) + { + ecpg_do_epilogue(stmt); + return false; + } + stmt->oldlocale = uselocale(stmt->clocale); + if (stmt->oldlocale == (locale_t) 0) + { + ecpg_do_epilogue(stmt); + return false; + } + #else + #ifdef WIN32 + stmt->oldthreadlocale = _configthreadlocale(_ENABLE_PER_THREAD_LOCALE); + if (stmt->oldthreadlocale == -1) + { + ecpg_do_epilogue(stmt); + return false; + } + #endif stmt->oldlocale = ecpg_strdup(setlocale(LC_NUMERIC, NULL), lineno); if (stmt->oldlocale == NULL) { *************** ecpg_do_prologue(int lineno, const int c *** 1780,1785 **** --- 1808,1814 ---- return false; } setlocale(LC_NUMERIC, "C"); + #endif #ifdef ENABLE_THREAD_SAFETY ecpg_pthreads_init(); *************** ecpg_do_epilogue(struct statement *stmt) *** 1982,1989 **** --- 2011,2028 ---- if (stmt == NULL) return; + #ifdef HAVE_USELOCALE + if (stmt->oldlocale != (locale_t) 0) + uselocale(stmt->oldlocale); + #else if (stmt->oldlocale) + { setlocale(LC_NUMERIC, stmt->oldlocale); + #ifdef WIN32 + _configthreadlocale(stmt->oldthreadlocale); + #endif + } + #endif free_statement(stmt); }
pgsql-hackers by date: