
FormatMessage() (This should have been in 8.2.0, patched to 8.2.X and HEAD): I think this problem to be complex.... http://archives.postgresql.org/pgsql-hackers/2006-11/msg00042.php FormatMessage of windows cannot consider the encoding of the database. However, I should try the solution now. It is necessary to clear the problem. Multi character-code exists together in message and log. It doesn't consider the data base encoding that the user intended.... The user in multi-byte country can try this. http://inet.winpg.jp/~saito/pg_bug/MessageCheck.c That is, it is likely to become it in this manner.(Japanese) http://inet.winpg.jp/~saito/pg_bug/FormatMessage998.png Hiroshi Saito
86 lines
1.5 KiB
C
86 lines
1.5 KiB
C
/* $PostgreSQL: pgsql/src/backend/port/dynloader/win32.c,v 1.9 2006/12/04 22:23:40 momjian Exp $ */
|
|
|
|
#include "postgres.h"
|
|
|
|
char *dlerror(void);
|
|
int dlclose(void *handle);
|
|
void *dlsym(void *handle, const char *symbol);
|
|
void *dlopen(const char *path, int mode);
|
|
|
|
static char last_dyn_error[512];
|
|
|
|
static void
|
|
set_dl_error(void)
|
|
{
|
|
DWORD err = GetLastError();
|
|
|
|
if (FormatMessage(FORMAT_MESSAGE_IGNORE_INSERTS |
|
|
FORMAT_MESSAGE_FROM_SYSTEM,
|
|
NULL,
|
|
err,
|
|
MAKELANGID(LANG_ENGLISH, SUBLANG_DEFAULT),
|
|
last_dyn_error,
|
|
sizeof(last_dyn_error) - 1,
|
|
NULL) == 0)
|
|
{
|
|
snprintf(last_dyn_error, sizeof(last_dyn_error) - 1,
|
|
"unknown error %lu", err);
|
|
}
|
|
}
|
|
|
|
char *
|
|
dlerror(void)
|
|
{
|
|
if (last_dyn_error[0])
|
|
return last_dyn_error;
|
|
else
|
|
return NULL;
|
|
}
|
|
|
|
int
|
|
dlclose(void *handle)
|
|
{
|
|
if (!FreeLibrary((HMODULE) handle))
|
|
{
|
|
set_dl_error();
|
|
return 1;
|
|
}
|
|
last_dyn_error[0] = 0;
|
|
return 0;
|
|
}
|
|
|
|
void *
|
|
dlsym(void *handle, const char *symbol)
|
|
{
|
|
void *ptr;
|
|
|
|
ptr = GetProcAddress((HMODULE) handle, symbol);
|
|
if (!ptr)
|
|
{
|
|
set_dl_error();
|
|
return NULL;
|
|
}
|
|
last_dyn_error[0] = 0;
|
|
return ptr;
|
|
}
|
|
|
|
void *
|
|
dlopen(const char *path, int mode)
|
|
{
|
|
HMODULE h;
|
|
int prevmode;
|
|
|
|
/* Disable popup error messages when loading DLLs */
|
|
prevmode = SetErrorMode(SEM_FAILCRITICALERRORS | SEM_NOOPENFILEERRORBOX);
|
|
h = LoadLibrary(path);
|
|
SetErrorMode(prevmode);
|
|
|
|
if (!h)
|
|
{
|
|
set_dl_error();
|
|
return NULL;
|
|
}
|
|
last_dyn_error[0] = 0;
|
|
return (void *) h;
|
|
}
|