Files
wget2/libwget/init.c
Tim Rühsen 81cf05e1da Move Win32 console save/restore from libwget into wget.c.
* libwget/init.c: Remove Win32 console code.
* src/wget.c: Add Win32 console code.
2024-05-19 19:58:29 +02:00

290 lines
7.6 KiB
C

/*
* Copyright (c) 2013 Tim Ruehsen
* Copyright (c) 2015-2024 Free Software Foundation, Inc.
*
* This file is part of libwget.
*
* Libwget is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Libwget 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with libwget. If not, see <https://www.gnu.org/licenses/>.
*
*
* Memory allocation routines
*
* Changelog
* 18.01.2013 Tim Ruehsen created
*
*/
#include <config.h>
#include <stdarg.h>
#include <wget.h>
#include "private.h"
static struct config {
char
*cookie_file;
wget_cookie_db
*cookie_db;
bool
cookies_enabled,
keep_session_cookies;
} config = {
.cookies_enabled = 0
};
static wget_dns_cache *dns_cache;
static int global_initialized;
static wget_thread_mutex _mutex;
static bool initialized;
static void global_exit(void)
{
if (initialized) {
wget_thread_mutex_destroy(&_mutex);
initialized = false;
}
}
INITIALIZER(global_init)
{
if (!initialized) {
wget_thread_mutex_init(&_mutex);
initialized = true;
atexit(global_exit);
}
}
/**
* Global library initialization, allocating/preparing all resources.
*
* This function is not thread-safe on systems without automatic library
* initialization.
*/
void wget_global_init(int first_key, ...)
{
va_list args;
int key, rc, caching;
const char *psl_file = NULL;
wget_logger_func *func; // intermediate var to satisfy MSVC
// just in case that automatic initializers didn't work,
// e.g. maybe a static build
global_init();
wget_thread_mutex_lock(_mutex);
if (global_initialized++) {
wget_thread_mutex_unlock(_mutex);
return;
}
wget_console_init();
wget_random_init();
wget_http_init();
va_start (args, first_key);
for (key = first_key; key; key = va_arg(args, int)) {
switch (key) {
case WGET_DEBUG_STREAM:
wget_logger_set_stream(wget_get_logger(WGET_LOGGER_DEBUG), va_arg(args, FILE *));
break;
case WGET_DEBUG_FUNC:
func = va_arg(args, wget_logger_func *);
wget_logger_set_func(wget_get_logger(WGET_LOGGER_DEBUG), func);
break;
case WGET_DEBUG_FILE:
wget_logger_set_file(wget_get_logger(WGET_LOGGER_DEBUG), va_arg(args, const char *));
break;
case WGET_ERROR_STREAM:
wget_logger_set_stream(wget_get_logger(WGET_LOGGER_ERROR), va_arg(args, FILE *));
break;
case WGET_ERROR_FUNC:
func = va_arg(args, wget_logger_func *);
wget_logger_set_func(wget_get_logger(WGET_LOGGER_ERROR), func);
break;
case WGET_ERROR_FILE:
wget_logger_set_file(wget_get_logger(WGET_LOGGER_ERROR), va_arg(args, const char *));
break;
case WGET_INFO_STREAM:
wget_logger_set_stream(wget_get_logger(WGET_LOGGER_INFO), va_arg(args, FILE *));
break;
case WGET_INFO_FUNC:
func = va_arg(args, wget_logger_func *);
wget_logger_set_func(wget_get_logger(WGET_LOGGER_INFO), func);
break;
case WGET_INFO_FILE:
wget_logger_set_file(wget_get_logger(WGET_LOGGER_INFO), va_arg(args, const char *));
break;
case WGET_DNS_CACHING:
caching = va_arg(args, int);
if (caching) {
if ((rc = wget_dns_cache_init(&dns_cache)) == WGET_E_SUCCESS)
wget_dns_set_cache(NULL, dns_cache);
else
wget_error_printf(_("Failed to init DNS cache (%d)"), rc);
}
break;
case WGET_TCP_FASTFORWARD:
wget_tcp_set_tcp_fastopen(NULL, va_arg(args, int) != 0);
break;
case WGET_COOKIE_SUFFIXES:
psl_file = va_arg(args, const char *);
config.cookies_enabled = 1;
break;
case WGET_COOKIES_ENABLED:
config.cookies_enabled = va_arg(args, int) != 0;
break;
case WGET_COOKIE_FILE:
// load cookie-store
config.cookies_enabled = 1;
config.cookie_file = va_arg(args, char *);
break;
case WGET_COOKIE_KEEPSESSIONCOOKIES:
config.keep_session_cookies = va_arg(args, int) != 0;
break;
case WGET_BIND_ADDRESS:
wget_tcp_set_bind_address(NULL, va_arg(args, const char *));
break;
case WGET_NET_FAMILY_EXCLUSIVE:
wget_tcp_set_family(NULL, va_arg(args, int));
break;
case WGET_NET_FAMILY_PREFERRED:
wget_tcp_set_preferred_family(NULL, va_arg(args, int));
break;
case WGET_BIND_INTERFACE:
wget_tcp_set_bind_interface(NULL, va_arg(args, const char *));
break;
default:
wget_thread_mutex_unlock(_mutex);
wget_error_printf(_("%s: Unknown option %d"), __func__, key);
va_end(args);
return;
}
}
va_end(args);
if (config.cookies_enabled && config.cookie_file) {
config.cookie_db = wget_cookie_db_init(NULL);
wget_cookie_set_keep_session_cookies(config.cookie_db, config.keep_session_cookies);
wget_cookie_db_load(config.cookie_db, config.cookie_file);
wget_cookie_db_load_psl(config.cookie_db, psl_file);
}
rc = wget_net_init();
wget_thread_mutex_unlock(_mutex);
if (rc)
wget_error_printf_exit(_("%s: Failed to init networking (%d)"), __func__, rc);
}
/**
* Global library deinitialization, free'ing all allocated resources.
*
* This function is not thread-safe.
*/
void wget_global_deinit(void)
{
int rc = 0;
// we need to lock a static mutex here
if (global_initialized == 1) {
// free resources here
if (config.cookie_db && config.cookies_enabled && config.cookie_file) {
wget_cookie_db_save(config.cookie_db, config.cookie_file);
wget_cookie_db_free(&config.cookie_db);
}
wget_tcp_set_bind_address(NULL, NULL);
wget_dns_cache_free(&dns_cache);
rc = wget_net_deinit();
wget_ssl_deinit();
wget_http_set_http_proxy(NULL, NULL);
wget_http_set_https_proxy(NULL, NULL);
wget_http_set_no_proxy(NULL, NULL);
}
if (global_initialized > 0) global_initialized--;
global_exit();
// we need to unlock a static mutex here
if (rc)
wget_error_printf(_("%s: Failed to deinit networking (%d)"), __func__, rc);
wget_console_deinit();
}
int wget_global_get_int(int key)
{
switch (key) {
case WGET_COOKIES_ENABLED:
return config.cookies_enabled;
case WGET_COOKIE_KEEPSESSIONCOOKIES:
return config.keep_session_cookies;
case WGET_NET_FAMILY_EXCLUSIVE:
return wget_tcp_get_family(NULL);
case WGET_NET_FAMILY_PREFERRED:
return wget_tcp_get_preferred_family(NULL);
default:
wget_error_printf(_("%s: Unknown option %d"), __func__, key);
return 0;
}
}
const void *wget_global_get_ptr(int key)
{
switch (key) {
case WGET_DEBUG_STREAM:
return wget_logger_get_stream(wget_get_logger(WGET_LOGGER_DEBUG));
case WGET_DEBUG_FILE:
return wget_logger_get_file(wget_get_logger(WGET_LOGGER_DEBUG));
case WGET_ERROR_STREAM:
return wget_logger_get_stream(wget_get_logger(WGET_LOGGER_ERROR));
case WGET_ERROR_FILE:
return wget_logger_get_file(wget_get_logger(WGET_LOGGER_ERROR));
case WGET_INFO_STREAM:
return wget_logger_get_stream(wget_get_logger(WGET_LOGGER_INFO));
case WGET_INFO_FILE:
return wget_logger_get_file(wget_get_logger(WGET_LOGGER_INFO));
case WGET_COOKIE_FILE:
return config.cookie_file;
case WGET_COOKIE_DB:
return config.cookie_db;
default:
wget_error_printf(_("%s: Unknown option %d"), __func__, key);
return NULL;
}
}
wget_global_func *wget_global_get_func(int key)
{
switch (key) {
case WGET_DEBUG_FUNC:
return wget_logger_get_func(wget_get_logger(WGET_LOGGER_DEBUG));
case WGET_ERROR_FUNC:
return wget_logger_get_func(wget_get_logger(WGET_LOGGER_ERROR));
case WGET_INFO_FUNC:
return wget_logger_get_func(wget_get_logger(WGET_LOGGER_INFO));
default:
wget_error_printf(_("%s: Unknown option %d"), __func__, key);
return NULL;
}
}