mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-25 02:42:33 -05:00
Previously: * applications were using isc_app as the base unit for running the application and signal handling. * networking was handled in the netmgr layer, which would start a number of threads, each with a uv_loop event loop. * task/event handling was done in the isc_task unit, which used netmgr event loops to run the isc_event calls. In this refactoring: * the network manager now uses isc_loop instead of maintaining its own worker threads and event loops. * the taskmgr that manages isc_task instances now also uses isc_loopmgr, and every isc_task runs on a specific isc_loop bound to the specific thread. * applications have been updated as necessary to use the new API. * new ISC_LOOP_TEST macros have been added to enable unit tests to run isc_loop event loops. unit tests have been updated to use this where needed.
140 lines
2.6 KiB
C
140 lines
2.6 KiB
C
/*
|
|
* Copyright (C) Internet Systems Consortium, Inc. ("ISC")
|
|
*
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, you can obtain one at https://mozilla.org/MPL/2.0/.
|
|
*
|
|
* See the COPYRIGHT file distributed with this work for additional
|
|
* information regarding copyright ownership.
|
|
*/
|
|
|
|
/*! \file */
|
|
|
|
#include <inttypes.h>
|
|
#include <signal.h>
|
|
#include <stdbool.h>
|
|
#include <stdlib.h>
|
|
#include <time.h>
|
|
|
|
#include <isc/buffer.h>
|
|
#include <isc/hash.h>
|
|
#include <isc/loop.h>
|
|
#include <isc/managers.h>
|
|
#include <isc/mem.h>
|
|
#include <isc/os.h>
|
|
#include <isc/string.h>
|
|
#include <isc/task.h>
|
|
#include <isc/timer.h>
|
|
#include <isc/util.h>
|
|
|
|
#include <tests/isc.h>
|
|
|
|
isc_mem_t *mctx = NULL;
|
|
isc_log_t *lctx = NULL;
|
|
isc_loop_t *mainloop = NULL;
|
|
isc_loopmgr_t *loopmgr = NULL;
|
|
isc_taskmgr_t *taskmgr = NULL;
|
|
isc_nm_t *netmgr = NULL;
|
|
unsigned int workers = -1;
|
|
|
|
int
|
|
setup_mctx(void **state __attribute__((__unused__))) {
|
|
isc_mem_debugging |= ISC_MEM_DEBUGRECORD;
|
|
isc_mem_create(&mctx);
|
|
|
|
return (0);
|
|
}
|
|
|
|
int
|
|
teardown_mctx(void **state __attribute__((__unused__))) {
|
|
isc_mem_destroy(&mctx);
|
|
|
|
return (0);
|
|
}
|
|
|
|
int
|
|
setup_loopmgr(void **state __attribute__((__unused__))) {
|
|
char *env_workers = NULL;
|
|
|
|
REQUIRE(mctx != NULL);
|
|
|
|
env_workers = getenv("ISC_TASK_WORKERS");
|
|
if (env_workers != NULL) {
|
|
workers = atoi(env_workers);
|
|
} else {
|
|
/* We always need at least two loops for some of the tests */
|
|
workers = isc_os_ncpus() + 1;
|
|
}
|
|
INSIST(workers != 0);
|
|
|
|
isc_loopmgr_create(mctx, workers, &loopmgr);
|
|
mainloop = isc_loop_main(loopmgr);
|
|
|
|
return (0);
|
|
}
|
|
|
|
int
|
|
teardown_loopmgr(void **state __attribute__((__unused__))) {
|
|
REQUIRE(taskmgr == NULL);
|
|
REQUIRE(netmgr == NULL);
|
|
|
|
mainloop = NULL;
|
|
isc_loopmgr_destroy(&loopmgr);
|
|
|
|
return (0);
|
|
}
|
|
|
|
int
|
|
setup_taskmgr(void **state __attribute__((__unused__))) {
|
|
REQUIRE(loopmgr != NULL);
|
|
|
|
isc_taskmgr_create(mctx, loopmgr, &taskmgr);
|
|
|
|
return (0);
|
|
}
|
|
|
|
int
|
|
teardown_taskmgr(void **state __attribute__((__unused__))) {
|
|
isc_taskmgr_destroy(&taskmgr);
|
|
|
|
return (0);
|
|
}
|
|
|
|
int
|
|
setup_netmgr(void **state __attribute__((__unused__))) {
|
|
REQUIRE(loopmgr != NULL);
|
|
|
|
isc_netmgr_create(mctx, loopmgr, &netmgr);
|
|
|
|
return (0);
|
|
}
|
|
|
|
int
|
|
teardown_netmgr(void **state __attribute__((__unused__))) {
|
|
REQUIRE(loopmgr != NULL);
|
|
|
|
isc_netmgr_destroy(&netmgr);
|
|
|
|
return (0);
|
|
}
|
|
|
|
int
|
|
setup_managers(void **state) {
|
|
setup_loopmgr(state);
|
|
setup_taskmgr(state);
|
|
setup_netmgr(state);
|
|
|
|
return (0);
|
|
}
|
|
|
|
int
|
|
teardown_managers(void **state) {
|
|
teardown_netmgr(state);
|
|
teardown_taskmgr(state);
|
|
teardown_loopmgr(state);
|
|
|
|
return (0);
|
|
}
|