mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 11:26:16 +01:00
f477518c3a
* README.win32: More text. * config.h.win32 glibconfig.h.win32: Update to match the corresponding generated files on Unix. * makefile.msc: Update with new source files, and gthread library. Use the compiler flag -MD instead of using -D_DLL and "/nodefaultlib:libc msvcrt.lib" in the link phase. * glib.def: Include new functions, drop removed ones. * glib.h: Add comments about main loop and polling on Win32. (In general, it's only for the GIMP's use.) Add Win32 IO Channel functions. Remove the obsoleted old IO Channel stuff (which was in #if 0 already). * giowin32.c: New file. * gmain.c: Include config.h, conditionalize <sys/time.h> inclusion. Add g_poll implementation for Win32 (only for the GIMP's needs for now, it's hard or even impossible to be as clean and generic as on Unix). Implement g_get_current_time on Win32. If threads aren't supported, don't try to wake up main thread's loop. On Win32, use a semaphore and not a pipe to wake up the main loop. * gmessages.c: On Win32, allocate a console window if the standard output handle is invalid before writing to stdout, and reopen stdout to that console window. * giochannel.c: Conditionalize unistd.h inclusion. Some indentation cleanup. * gstrfuncs.c: Include <signal.h>. * gutils.c: On Win32, also check the HOMEDRIVE and HOMEPATH environment variables. * gmodule-dl.c gmodule-dld.c: In _g_module_build_path, don't add the "lib" prefix and ".so" or ".sl" suffix if already there. * gmodule-win32.c: Likewise for the ".dll" suffix. * gthread-posix.c: Conditionalize <sys/time.h> inclusion.
742 lines
16 KiB
C
742 lines
16 KiB
C
/* GLIB - Library of useful routines for C programming
|
|
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Library General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Library General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Library General Public
|
|
* License along with this library; if not, write to the
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
* Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
/*
|
|
* MT safe
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include <config.h>
|
|
#endif
|
|
|
|
#include <stdlib.h>
|
|
#include <stdarg.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include "glib.h"
|
|
#ifdef HAVE_UNISTD_H
|
|
#include <unistd.h>
|
|
#endif
|
|
|
|
#ifdef NATIVE_WIN32
|
|
#define STRICT
|
|
#include <windows.h>
|
|
|
|
/* Just use stdio. If we're out of memory, we're hosed anyway. */
|
|
#undef write
|
|
|
|
static inline int
|
|
write (FILE *fd,
|
|
const char *buf,
|
|
int len)
|
|
{
|
|
fwrite (buf, len, 1, fd);
|
|
|
|
return len;
|
|
}
|
|
#endif /* NATIVE_WIN32 */
|
|
|
|
static void
|
|
ensure_stdout_valid (void)
|
|
{
|
|
#ifdef NATIVE_WIN32
|
|
HANDLE handle;
|
|
|
|
handle = GetStdHandle (STD_OUTPUT_HANDLE);
|
|
|
|
if (handle == INVALID_HANDLE_VALUE)
|
|
{
|
|
AllocConsole ();
|
|
freopen ("CONOUT$", "w", stdout);
|
|
}
|
|
#endif
|
|
}
|
|
|
|
|
|
/* --- structures --- */
|
|
typedef struct _GLogDomain GLogDomain;
|
|
typedef struct _GLogHandler GLogHandler;
|
|
struct _GLogDomain
|
|
{
|
|
gchar *log_domain;
|
|
GLogLevelFlags fatal_mask;
|
|
GLogHandler *handlers;
|
|
GLogDomain *next;
|
|
};
|
|
struct _GLogHandler
|
|
{
|
|
guint id;
|
|
GLogLevelFlags log_level;
|
|
GLogFunc log_func;
|
|
gpointer data;
|
|
GLogHandler *next;
|
|
};
|
|
|
|
|
|
/* --- variables --- */
|
|
|
|
static GMutex* g_messages_lock = NULL;
|
|
|
|
const gchar *g_log_domain_glib = "GLib";
|
|
static GLogDomain *g_log_domains = NULL;
|
|
static GLogLevelFlags g_log_always_fatal = G_LOG_FATAL_MASK;
|
|
static GPrintFunc glib_print_func = NULL;
|
|
static GPrintFunc glib_printerr_func = NULL;
|
|
static GErrorFunc glib_error_func = NULL;
|
|
static GWarningFunc glib_warning_func = NULL;
|
|
static GPrintFunc glib_message_func = NULL;
|
|
|
|
static GPrivate* g_log_depth = NULL;
|
|
|
|
|
|
/* --- functions --- */
|
|
static inline GLogDomain*
|
|
g_log_find_domain (const gchar *log_domain)
|
|
{
|
|
register GLogDomain *domain;
|
|
|
|
g_mutex_lock (g_messages_lock);
|
|
domain = g_log_domains;
|
|
while (domain)
|
|
{
|
|
if (strcmp (domain->log_domain, log_domain) == 0)
|
|
{
|
|
g_mutex_unlock (g_messages_lock);
|
|
return domain;
|
|
}
|
|
domain = domain->next;
|
|
}
|
|
g_mutex_unlock (g_messages_lock);
|
|
return NULL;
|
|
}
|
|
|
|
static inline GLogDomain*
|
|
g_log_domain_new (const gchar *log_domain)
|
|
{
|
|
register GLogDomain *domain;
|
|
|
|
domain = g_new (GLogDomain, 1);
|
|
domain->log_domain = g_strdup (log_domain);
|
|
domain->fatal_mask = G_LOG_FATAL_MASK;
|
|
domain->handlers = NULL;
|
|
|
|
g_mutex_lock (g_messages_lock);
|
|
domain->next = g_log_domains;
|
|
g_log_domains = domain;
|
|
g_mutex_unlock (g_messages_lock);
|
|
|
|
return domain;
|
|
}
|
|
|
|
static inline void
|
|
g_log_domain_check_free (GLogDomain *domain)
|
|
{
|
|
if (domain->fatal_mask == G_LOG_FATAL_MASK &&
|
|
domain->handlers == NULL)
|
|
{
|
|
register GLogDomain *last, *work;
|
|
|
|
last = NULL;
|
|
|
|
g_mutex_lock (g_messages_lock);
|
|
work = g_log_domains;
|
|
while (work)
|
|
{
|
|
if (work == domain)
|
|
{
|
|
if (last)
|
|
last->next = domain->next;
|
|
else
|
|
g_log_domains = domain->next;
|
|
g_free (domain->log_domain);
|
|
g_free (domain);
|
|
break;
|
|
}
|
|
work = work->next;
|
|
}
|
|
g_mutex_unlock (g_messages_lock);
|
|
}
|
|
}
|
|
|
|
static inline GLogFunc
|
|
g_log_domain_get_handler (GLogDomain *domain,
|
|
GLogLevelFlags log_level,
|
|
gpointer *data)
|
|
{
|
|
if (domain && log_level)
|
|
{
|
|
register GLogHandler *handler;
|
|
|
|
handler = domain->handlers;
|
|
while (handler)
|
|
{
|
|
if ((handler->log_level & log_level) == log_level)
|
|
{
|
|
*data = handler->data;
|
|
return handler->log_func;
|
|
}
|
|
handler = handler->next;
|
|
}
|
|
}
|
|
return g_log_default_handler;
|
|
}
|
|
|
|
GLogLevelFlags
|
|
g_log_set_always_fatal (GLogLevelFlags fatal_mask)
|
|
{
|
|
GLogLevelFlags old_mask;
|
|
|
|
/* restrict the global mask to levels that are known to glib */
|
|
fatal_mask &= (1 << G_LOG_LEVEL_USER_SHIFT) - 1;
|
|
/* force errors to be fatal */
|
|
fatal_mask |= G_LOG_LEVEL_ERROR;
|
|
/* remove bogus flag */
|
|
fatal_mask &= ~G_LOG_FLAG_FATAL;
|
|
|
|
g_mutex_lock (g_messages_lock);
|
|
old_mask = g_log_always_fatal;
|
|
g_log_always_fatal = fatal_mask;
|
|
g_mutex_unlock (g_messages_lock);
|
|
|
|
return old_mask;
|
|
}
|
|
|
|
GLogLevelFlags
|
|
g_log_set_fatal_mask (const gchar *log_domain,
|
|
GLogLevelFlags fatal_mask)
|
|
{
|
|
GLogLevelFlags old_flags;
|
|
register GLogDomain *domain;
|
|
|
|
if (!log_domain)
|
|
log_domain = "";
|
|
|
|
/* force errors to be fatal */
|
|
fatal_mask |= G_LOG_LEVEL_ERROR;
|
|
/* remove bogus flag */
|
|
fatal_mask &= ~G_LOG_FLAG_FATAL;
|
|
|
|
domain = g_log_find_domain (log_domain);
|
|
if (!domain)
|
|
domain = g_log_domain_new (log_domain);
|
|
old_flags = domain->fatal_mask;
|
|
|
|
domain->fatal_mask = fatal_mask;
|
|
g_log_domain_check_free (domain);
|
|
|
|
return old_flags;
|
|
}
|
|
|
|
guint
|
|
g_log_set_handler (const gchar *log_domain,
|
|
GLogLevelFlags log_levels,
|
|
GLogFunc log_func,
|
|
gpointer user_data)
|
|
{
|
|
register GLogDomain *domain;
|
|
register GLogHandler *handler;
|
|
static guint handler_id = 0;
|
|
|
|
g_return_val_if_fail ((log_levels & G_LOG_LEVEL_MASK) != 0, 0);
|
|
g_return_val_if_fail (log_func != NULL, 0);
|
|
|
|
if (!log_domain)
|
|
log_domain = "";
|
|
|
|
domain = g_log_find_domain (log_domain);
|
|
if (!domain)
|
|
domain = g_log_domain_new (log_domain);
|
|
|
|
handler = g_new (GLogHandler, 1);
|
|
g_mutex_lock (g_messages_lock);
|
|
handler->id = ++handler_id;
|
|
g_mutex_unlock (g_messages_lock);
|
|
handler->log_level = log_levels;
|
|
handler->log_func = log_func;
|
|
handler->data = user_data;
|
|
handler->next = domain->handlers;
|
|
domain->handlers = handler;
|
|
|
|
return handler_id;
|
|
}
|
|
|
|
void
|
|
g_log_remove_handler (const gchar *log_domain,
|
|
guint handler_id)
|
|
{
|
|
register GLogDomain *domain;
|
|
|
|
g_return_if_fail (handler_id > 0);
|
|
|
|
if (!log_domain)
|
|
log_domain = "";
|
|
|
|
domain = g_log_find_domain (log_domain);
|
|
if (domain)
|
|
{
|
|
register GLogHandler *work, *last;
|
|
|
|
last = NULL;
|
|
work = domain->handlers;
|
|
while (work)
|
|
{
|
|
if (work->id == handler_id)
|
|
{
|
|
if (last)
|
|
last->next = work->next;
|
|
else
|
|
domain->handlers = work->next;
|
|
g_free (work);
|
|
g_log_domain_check_free (domain);
|
|
return;
|
|
}
|
|
work = work->next;
|
|
}
|
|
}
|
|
g_warning ("g_log_remove_handler(): could not find handler with id `%d' for domain \"%s\"",
|
|
handler_id,
|
|
log_domain);
|
|
}
|
|
|
|
void
|
|
g_logv (const gchar *log_domain,
|
|
GLogLevelFlags log_level,
|
|
const gchar *format,
|
|
va_list args1)
|
|
{
|
|
va_list args2;
|
|
gchar buffer[1025];
|
|
register gint i;
|
|
|
|
log_level &= G_LOG_LEVEL_MASK;
|
|
if (!log_level)
|
|
return;
|
|
|
|
/* we use a stack buffer of fixed size, because we might get called
|
|
* recursively.
|
|
*/
|
|
G_VA_COPY (args2, args1);
|
|
if (g_printf_string_upper_bound (format, args1) < 1024)
|
|
vsprintf (buffer, format, args2);
|
|
else
|
|
{
|
|
/* since we might be out of memory, we can't use g_vsnprintf(). */
|
|
#ifdef HAVE_VSNPRINTF
|
|
vsnprintf (buffer, 1024, format, args2);
|
|
#else /* !HAVE_VSNPRINTF */
|
|
/* we are out of luck here */
|
|
strncpy (buffer, format, 1024);
|
|
#endif /* !HAVE_VSNPRINTF */
|
|
buffer[1024] = 0;
|
|
}
|
|
va_end (args2);
|
|
|
|
for (i = g_bit_nth_msf (log_level, -1); i >= 0; i = g_bit_nth_msf (log_level, i))
|
|
{
|
|
register GLogLevelFlags test_level;
|
|
|
|
test_level = 1 << i;
|
|
if (log_level & test_level)
|
|
{
|
|
guint depth = GPOINTER_TO_UINT (g_private_get (g_log_depth));
|
|
GLogDomain *domain;
|
|
GLogFunc log_func;
|
|
gpointer data = NULL;
|
|
|
|
domain = g_log_find_domain (log_domain ? log_domain : "");
|
|
|
|
if (depth)
|
|
test_level |= G_LOG_FLAG_RECURSION;
|
|
|
|
depth++;
|
|
g_private_set (g_log_depth, GUINT_TO_POINTER (depth));
|
|
|
|
g_mutex_lock (g_messages_lock);
|
|
if ((((domain ? domain->fatal_mask : G_LOG_FATAL_MASK) |
|
|
g_log_always_fatal) & test_level) != 0)
|
|
test_level |= G_LOG_FLAG_FATAL;
|
|
g_mutex_unlock (g_messages_lock);
|
|
|
|
log_func = g_log_domain_get_handler (domain, test_level, &data);
|
|
log_func (log_domain, test_level, buffer, data);
|
|
|
|
/* *domain can be cluttered now */
|
|
|
|
if (test_level & G_LOG_FLAG_FATAL)
|
|
abort ();
|
|
|
|
depth--;
|
|
g_private_set (g_log_depth, GUINT_TO_POINTER (depth));
|
|
}
|
|
}
|
|
}
|
|
|
|
void
|
|
g_log (const gchar *log_domain,
|
|
GLogLevelFlags log_level,
|
|
const gchar *format,
|
|
...)
|
|
{
|
|
va_list args;
|
|
|
|
va_start (args, format);
|
|
g_logv (log_domain, log_level, format, args);
|
|
va_end (args);
|
|
}
|
|
|
|
void
|
|
g_log_default_handler (const gchar *log_domain,
|
|
GLogLevelFlags log_level,
|
|
const gchar *message,
|
|
gpointer unused_data)
|
|
{
|
|
#ifdef NATIVE_WIN32
|
|
FILE *fd;
|
|
#else
|
|
gint fd;
|
|
#endif
|
|
gboolean in_recursion;
|
|
gboolean is_fatal;
|
|
GErrorFunc local_glib_error_func;
|
|
GWarningFunc local_glib_warning_func;
|
|
GPrintFunc local_glib_message_func;
|
|
|
|
in_recursion = (log_level & G_LOG_FLAG_RECURSION) != 0;
|
|
is_fatal = (log_level & G_LOG_FLAG_FATAL) != 0;
|
|
log_level &= G_LOG_LEVEL_MASK;
|
|
|
|
if (!message)
|
|
message = "g_log_default_handler(): (NULL) message";
|
|
|
|
#ifdef NATIVE_WIN32
|
|
/* Use just stdout as stderr is hard to get redirected from the
|
|
* DOS prompt.
|
|
*/
|
|
fd = stdout;
|
|
ensure_stdout_valid ();
|
|
#else
|
|
fd = (log_level >= G_LOG_LEVEL_MESSAGE) ? 1 : 2;
|
|
#endif
|
|
|
|
g_mutex_lock (g_messages_lock);
|
|
local_glib_error_func = glib_error_func;
|
|
local_glib_warning_func = glib_warning_func;
|
|
local_glib_message_func = glib_message_func;
|
|
g_mutex_unlock (g_messages_lock);
|
|
|
|
switch (log_level)
|
|
{
|
|
case G_LOG_LEVEL_ERROR:
|
|
if (!log_domain && local_glib_error_func)
|
|
{
|
|
/* compatibility code */
|
|
local_glib_error_func (message);
|
|
return;
|
|
}
|
|
/* use write(2) for output, in case we are out of memeory */
|
|
if (log_domain)
|
|
{
|
|
write (fd, "\n", 1);
|
|
write (fd, log_domain, strlen (log_domain));
|
|
write (fd, "-", 1);
|
|
}
|
|
else
|
|
write (fd, "\n** ", 4);
|
|
if (in_recursion)
|
|
write (fd, "ERROR (recursed) **: ", 21);
|
|
else
|
|
write (fd, "ERROR **: ", 10);
|
|
write (fd, message, strlen(message));
|
|
if (is_fatal)
|
|
write (fd, "\naborting...\n", 13);
|
|
else
|
|
write (fd, "\n", 1);
|
|
break;
|
|
case G_LOG_LEVEL_CRITICAL:
|
|
if (log_domain)
|
|
{
|
|
write (fd, "\n", 1);
|
|
write (fd, log_domain, strlen (log_domain));
|
|
write (fd, "-", 1);
|
|
}
|
|
else
|
|
write (fd, "\n** ", 4);
|
|
if (in_recursion)
|
|
write (fd, "CRITICAL (recursed) **: ", 24);
|
|
else
|
|
write (fd, "CRITICAL **: ", 13);
|
|
write (fd, message, strlen(message));
|
|
if (is_fatal)
|
|
write (fd, "\naborting...\n", 13);
|
|
else
|
|
write (fd, "\n", 1);
|
|
break;
|
|
case G_LOG_LEVEL_WARNING:
|
|
if (!log_domain && local_glib_warning_func)
|
|
{
|
|
/* compatibility code */
|
|
local_glib_warning_func (message);
|
|
return;
|
|
}
|
|
if (log_domain)
|
|
{
|
|
write (fd, "\n", 1);
|
|
write (fd, log_domain, strlen (log_domain));
|
|
write (fd, "-", 1);
|
|
}
|
|
else
|
|
write (fd, "\n** ", 4);
|
|
if (in_recursion)
|
|
write (fd, "WARNING (recursed) **: ", 23);
|
|
else
|
|
write (fd, "WARNING **: ", 12);
|
|
write (fd, message, strlen(message));
|
|
if (is_fatal)
|
|
write (fd, "\naborting...\n", 13);
|
|
else
|
|
write (fd, "\n", 1);
|
|
break;
|
|
case G_LOG_LEVEL_MESSAGE:
|
|
if (!log_domain && local_glib_message_func)
|
|
{
|
|
/* compatibility code */
|
|
local_glib_message_func (message);
|
|
return;
|
|
}
|
|
if (log_domain)
|
|
{
|
|
write (fd, log_domain, strlen (log_domain));
|
|
write (fd, "-", 1);
|
|
}
|
|
if (in_recursion)
|
|
write (fd, "Message (recursed): ", 20);
|
|
else
|
|
write (fd, "Message: ", 9);
|
|
write (fd, message, strlen(message));
|
|
if (is_fatal)
|
|
write (fd, "\naborting...\n", 13);
|
|
else
|
|
write (fd, "\n", 1);
|
|
break;
|
|
case G_LOG_LEVEL_INFO:
|
|
if (log_domain)
|
|
{
|
|
write (fd, log_domain, strlen (log_domain));
|
|
write (fd, "-", 1);
|
|
}
|
|
if (in_recursion)
|
|
write (fd, "INFO (recursed): ", 17);
|
|
else
|
|
write (fd, "INFO: ", 6);
|
|
write (fd, message, strlen(message));
|
|
if (is_fatal)
|
|
write (fd, "\naborting...\n", 13);
|
|
else
|
|
write (fd, "\n", 1);
|
|
break;
|
|
case G_LOG_LEVEL_DEBUG:
|
|
if (log_domain)
|
|
{
|
|
write (fd, log_domain, strlen (log_domain));
|
|
write (fd, "-", 1);
|
|
}
|
|
if (in_recursion)
|
|
write (fd, "DEBUG (recursed): ", 18);
|
|
else
|
|
write (fd, "DEBUG: ", 7);
|
|
write (fd, message, strlen(message));
|
|
if (is_fatal)
|
|
write (fd, "\naborting...\n", 13);
|
|
else
|
|
write (fd, "\n", 1);
|
|
break;
|
|
default:
|
|
/* we are used for a log level that is not defined by GLib itself,
|
|
* try to make the best out of it.
|
|
*/
|
|
if (log_domain)
|
|
{
|
|
write (fd, log_domain, strlen (log_domain));
|
|
if (in_recursion)
|
|
write (fd, "-LOG (recursed:", 15);
|
|
else
|
|
write (fd, "-LOG (", 6);
|
|
}
|
|
else if (in_recursion)
|
|
write (fd, "LOG (recursed:", 14);
|
|
else
|
|
write (fd, "LOG (", 5);
|
|
if (log_level)
|
|
{
|
|
gchar string[] = "0x00): ";
|
|
gchar *p = string + 2;
|
|
guint i;
|
|
|
|
i = g_bit_nth_msf (log_level, -1);
|
|
*p = i >> 4;
|
|
p++;
|
|
*p = '0' + (i & 0xf);
|
|
if (*p > '9')
|
|
*p += 'A' - '9' - 1;
|
|
|
|
write (fd, string, 7);
|
|
}
|
|
else
|
|
write (fd, "): ", 3);
|
|
write (fd, message, strlen(message));
|
|
if (is_fatal)
|
|
write (fd, "\naborting...\n", 13);
|
|
else
|
|
write (fd, "\n", 1);
|
|
break;
|
|
}
|
|
}
|
|
|
|
GPrintFunc
|
|
g_set_print_handler (GPrintFunc func)
|
|
{
|
|
GPrintFunc old_print_func;
|
|
|
|
g_mutex_lock (g_messages_lock);
|
|
old_print_func = glib_print_func;
|
|
glib_print_func = func;
|
|
g_mutex_unlock (g_messages_lock);
|
|
|
|
return old_print_func;
|
|
}
|
|
|
|
void
|
|
g_print (const gchar *format,
|
|
...)
|
|
{
|
|
va_list args;
|
|
gchar *string;
|
|
GPrintFunc local_glib_print_func;
|
|
|
|
g_return_if_fail (format != NULL);
|
|
|
|
va_start (args, format);
|
|
string = g_strdup_vprintf (format, args);
|
|
va_end (args);
|
|
|
|
g_mutex_lock (g_messages_lock);
|
|
local_glib_print_func = glib_print_func;
|
|
g_mutex_unlock (g_messages_lock);
|
|
|
|
if (local_glib_print_func)
|
|
local_glib_print_func (string);
|
|
else
|
|
{
|
|
ensure_stdout_valid ();
|
|
fputs (string, stdout);
|
|
fflush (stdout);
|
|
}
|
|
g_free (string);
|
|
}
|
|
|
|
GPrintFunc
|
|
g_set_printerr_handler (GPrintFunc func)
|
|
{
|
|
GPrintFunc old_printerr_func;
|
|
|
|
g_mutex_lock (g_messages_lock);
|
|
old_printerr_func = glib_printerr_func;
|
|
glib_printerr_func = func;
|
|
g_mutex_unlock (g_messages_lock);
|
|
|
|
return old_printerr_func;
|
|
}
|
|
|
|
void
|
|
g_printerr (const gchar *format,
|
|
...)
|
|
{
|
|
va_list args;
|
|
gchar *string;
|
|
GPrintFunc local_glib_printerr_func;
|
|
|
|
g_return_if_fail (format != NULL);
|
|
|
|
va_start (args, format);
|
|
string = g_strdup_vprintf (format, args);
|
|
va_end (args);
|
|
|
|
g_mutex_lock (g_messages_lock);
|
|
local_glib_printerr_func = glib_printerr_func;
|
|
g_mutex_unlock (g_messages_lock);
|
|
|
|
if (local_glib_printerr_func)
|
|
local_glib_printerr_func (string);
|
|
else
|
|
{
|
|
fputs (string, stderr);
|
|
fflush (stderr);
|
|
}
|
|
g_free (string);
|
|
}
|
|
|
|
/* compatibility code */
|
|
GErrorFunc
|
|
g_set_error_handler (GErrorFunc func)
|
|
{
|
|
GErrorFunc old_error_func;
|
|
|
|
g_mutex_lock (g_messages_lock);
|
|
old_error_func = glib_error_func;
|
|
glib_error_func = func;
|
|
g_mutex_unlock (g_messages_lock);
|
|
|
|
return old_error_func;
|
|
}
|
|
|
|
/* compatibility code */
|
|
GWarningFunc
|
|
g_set_warning_handler (GWarningFunc func)
|
|
{
|
|
GWarningFunc old_warning_func;
|
|
|
|
g_mutex_lock (g_messages_lock);
|
|
old_warning_func = glib_warning_func;
|
|
glib_warning_func = func;
|
|
g_mutex_unlock (g_messages_lock);
|
|
|
|
return old_warning_func;
|
|
}
|
|
|
|
/* compatibility code */
|
|
GPrintFunc
|
|
g_set_message_handler (GPrintFunc func)
|
|
{
|
|
GPrintFunc old_message_func;
|
|
|
|
g_mutex_lock (g_messages_lock);
|
|
old_message_func = glib_message_func;
|
|
glib_message_func = func;
|
|
g_mutex_unlock (g_messages_lock);
|
|
|
|
return old_message_func;
|
|
}
|
|
|
|
void
|
|
g_messages_init (void)
|
|
{
|
|
g_messages_lock = g_mutex_new();
|
|
g_log_depth = g_private_new(NULL);
|
|
}
|