mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-11-24 23:39:51 +03:00
23fb72ea6b
Do not change the locale globally, else things will break in weird and wonderful ways. Introduce utils/locale.[ch], which provide locale-specific wrappers for various functions (currently just the <ctype.h> ones). Fix up the few places I can see that actually require that the underlying locale is paid attention to. Some notes: 1) The GTK frontend code has not been touched. It is possible that reading of numeric values (e.g. from the preferences dialogue) may break with this change, particularly in locales that use something other than '.' as their decimal separator. 2) The search code is left unchanged (i.e. assuming a locale of "C"). This may break case insensitive matching of non-ASCII characters. I doubt that ever actually worked, anyway. In future, it should use Unicode case conversion to achieve the same effect. 3) The text input handling in the core makes use of isspace() to detect word boundaries. This is fine for western languages (even in the C locale, which it's currently assuming). It will, however, break for CJK et. al. (this has always been the case, rather than being a new issue) 4) text-transform uses locale-specific variants of to{lower,upper}. In future this should probably be performing Unicode case conversion. This is the only part of the core code that makes use of locale information. In future, if you require locale-specific behaviour, do the following: setlocale(LC_<whatever>, ""); <your operation(s) here> setlocale(LC_<whatever>, "C"); The first setlocale will change the current locale to the native environment. The second setlocale will reset the current locale to "C". Any value other than "" or "C" is probably a bug, unless there's a really good reason for it. In the long term, it is expected that all locale-dependent code will reside in platform frontends -- the core being wholly locale agnostic (though assuming "C" for things like decimal separators). svn path=/trunk/netsurf/; revision=4153
165 lines
3.9 KiB
C
165 lines
3.9 KiB
C
/*
|
|
* Copyright 2003 Phil Mellor <monkeyson@users.sourceforge.net>
|
|
* Copyright 2007 James Bursa <bursa@users.sourceforge.net>
|
|
* Copyright 2004 Andrew Timmins <atimmins@blueyonder.co.uk>
|
|
*
|
|
* This file is part of NetSurf, http://www.netsurf-browser.org/
|
|
*
|
|
* NetSurf is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; version 2 of the License.
|
|
*
|
|
* NetSurf 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include <signal.h>
|
|
#include <stdbool.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <sys/utsname.h>
|
|
#include <libxml/encoding.h>
|
|
#include <libxml/globals.h>
|
|
#include <libxml/xmlversion.h>
|
|
#include "utils/config.h"
|
|
#include "content/fetch.h"
|
|
#include "content/fetchcache.h"
|
|
#include "content/urldb.h"
|
|
#include "desktop/netsurf.h"
|
|
#include "desktop/browser.h"
|
|
#include "desktop/gui.h"
|
|
#include "utils/log.h"
|
|
#include "utils/url.h"
|
|
#include "utils/utf8.h"
|
|
#include "utils/utils.h"
|
|
|
|
bool netsurf_quit = false;
|
|
bool verbose_log = false;
|
|
|
|
static void netsurf_init(int argc, char** argv);
|
|
static void netsurf_poll(void);
|
|
static void netsurf_exit(void);
|
|
static void lib_init(void);
|
|
|
|
|
|
/**
|
|
* Gui NetSurf main().
|
|
*/
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
setbuf(stderr, NULL);
|
|
netsurf_init(argc, argv);
|
|
|
|
while (!netsurf_quit)
|
|
netsurf_poll();
|
|
|
|
netsurf_exit();
|
|
|
|
return EXIT_SUCCESS;
|
|
}
|
|
|
|
|
|
/**
|
|
* Initialise components used by gui NetSurf.
|
|
*/
|
|
|
|
void netsurf_init(int argc, char** argv)
|
|
{
|
|
struct utsname utsname;
|
|
|
|
/* Ignore SIGPIPE - this is necessary as OpenSSL can generate these
|
|
* and the default action is to terminate the app. There's no easy
|
|
* way of determining the cause of the SIGPIPE (other than using
|
|
* sigaction() and some mechanism for getting the file descriptor
|
|
* out of libcurl). However, we expect nothing else to generate a
|
|
* SIGPIPE, anyway, so may as well just ignore them all. */
|
|
signal(SIGPIPE, SIG_IGN);
|
|
|
|
#if !((defined(__SVR4) && defined(__sun)) || defined(__NetBSD__))
|
|
stdout = stderr;
|
|
#endif
|
|
|
|
if ((argc > 1) && (argv[1][0] == '-') && (argv[1][1] == 'v') && (argv[1][2] == 0)) {
|
|
int argcmv;
|
|
verbose_log = true;
|
|
for (argcmv = 2; argcmv < argc; argcmv++) {
|
|
argv[argcmv - 1] = argv[argcmv];
|
|
}
|
|
argc--;
|
|
}
|
|
|
|
#ifdef _MEMDEBUG_H_
|
|
memdebug_memdebug("memdump");
|
|
#endif
|
|
|
|
LOG(("version '%s'", netsurf_version));
|
|
if (uname(&utsname) < 0)
|
|
LOG(("Failed to extract machine information"));
|
|
else
|
|
LOG(("NetSurf on <%s>, node <%s>, release <%s>, version <%s>, "
|
|
"machine <%s>", utsname.sysname,
|
|
utsname.nodename, utsname.release,
|
|
utsname.version, utsname.machine));
|
|
|
|
lib_init();
|
|
url_init();
|
|
gui_init(argc, argv);
|
|
fetch_init();
|
|
fetchcache_init();
|
|
gui_init2(argc, argv);
|
|
}
|
|
|
|
/**
|
|
* Poll components which require it.
|
|
*/
|
|
|
|
void netsurf_poll(void)
|
|
{
|
|
content_clean();
|
|
gui_poll(fetch_active);
|
|
fetch_poll();
|
|
}
|
|
|
|
|
|
/**
|
|
* Clean up components used by gui NetSurf.
|
|
*/
|
|
|
|
void netsurf_exit(void)
|
|
{
|
|
LOG(("Closing GUI"));
|
|
gui_quit();
|
|
LOG(("Closing content"));
|
|
content_quit();
|
|
LOG(("Closing fetches"));
|
|
fetch_quit();
|
|
LOG(("Closing utf8"));
|
|
utf8_finalise();
|
|
LOG(("Destroying URLdb"));
|
|
urldb_destroy();
|
|
LOG(("Exited successfully"));
|
|
}
|
|
|
|
|
|
/**
|
|
* Initialises the libraries used in NetSurf.
|
|
*/
|
|
void lib_init(void)
|
|
{
|
|
LOG(("xmlParserVersion %s, LIBXML_VERSION_STRING %s",
|
|
xmlParserVersion, LIBXML_VERSION_STRING));
|
|
|
|
/* Using encoding "X-SJIS" (unknown to libxmp2/iconv) instead as
|
|
* "Shift-JIS" is rather popular.
|
|
*/
|
|
if (xmlAddEncodingAlias(xmlGetCharEncodingName(
|
|
XML_CHAR_ENCODING_SHIFT_JIS), "X-SJIS") != 0)
|
|
die("Failed to add encoding alias");
|
|
}
|