blob: db2d165d8729b42a3a23c6cf56be0e3f470765d8 [file] [log] [blame]
/** @file
A brief file description
@section license License
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#include "P_Net.h"
#ifndef _WIN32
#include <netdb.h>
#endif
Diags *diags;
#define DIAGS_LOG_FILE "diags.log"
//#define USE_SOCKS
//////////////////////////////////////////////////////////////////////////////
//
// void reconfigure_diags()
//
// This function extracts the current diags configuration settings from
// records.config, and rebuilds the Diags data structures.
//
//////////////////////////////////////////////////////////////////////////////
static void
reconfigure_diags()
{
int i;
DiagsConfigState c;
// initial value set to 0 or 1 based on command line tags
c.enabled[DiagsTagType_Debug] = (diags->base_debug_tags != NULL);
c.enabled[DiagsTagType_Action] = (diags->base_action_tags != NULL);
c.enabled[DiagsTagType_Debug] = 1;
c.enabled[DiagsTagType_Action] = 1;
diags->show_location = 1;
// read output routing values
for (i = 0; i < DiagsLevel_Count; i++) {
c.outputs[i].to_stdout = 0;
c.outputs[i].to_stderr = 1;
c.outputs[i].to_syslog = 1;
c.outputs[i].to_diagslog = 1;
}
//////////////////////////////
// clear out old tag tables //
//////////////////////////////
diags->deactivate_all(DiagsTagType_Debug);
diags->deactivate_all(DiagsTagType_Action);
//////////////////////////////////////////////////////////////////////
// add new tag tables
//////////////////////////////////////////////////////////////////////
if (diags->base_debug_tags)
diags->activate_taglist(diags->base_debug_tags, DiagsTagType_Debug);
if (diags->base_action_tags)
diags->activate_taglist(diags->base_action_tags, DiagsTagType_Action);
////////////////////////////////////
// change the diags config values //
////////////////////////////////////
#if !defined (_WIN32) && !defined(__GNUC__) && !defined(hpux)
diags->config = c;
#else
memcpy(((void *) &diags->config), ((void *) &c), sizeof(DiagsConfigState));
#endif
}
static void
init_diags(char *bdt, char *bat)
{
FILE *diags_log_fp;
char diags_logpath[500];
strcpy(diags_logpath, DIAGS_LOG_FILE);
diags_log_fp = fopen(diags_logpath, "w");
if (diags_log_fp) {
int status;
status = setvbuf(diags_log_fp, NULL, _IOLBF, 512);
if (status != 0) {
fclose(diags_log_fp);
diags_log_fp = NULL;
}
}
diags = NEW(new Diags(bdt, bat, diags_log_fp));
if (diags_log_fp == NULL) {
SrcLoc loc(__FILE__, __FUNCTION__, __LINE__);
diags->print(NULL, DL_Warning, NULL, &loc,
"couldn't open diags log file '%s', " "will not log to this file", diags_logpath);
}
diags->print(NULL, DL_Status, "STATUS", NULL, "opened %s", diags_logpath);
reconfigure_diags();
}
/*
* Choose a net test application
*/
//#include "NetTest-http-server.c"
#include "NetTest-simple-proxy.c"
int
main()
{
// do not buffer stdout
setbuf(stdout, NULL);
int nproc = ink_number_of_processors();
RecModeT mode_type = RECM_STAND_ALONE;
init_diags("net_test", NULL);
RecProcessInit(mode_type);
ink_event_system_init(EVENT_SYSTEM_MODULE_VERSION);
ink_net_init(NET_SYSTEM_MODULE_VERSION);
/*
* ignore broken pipe
*/
#ifndef _WIN32
signal(SIGPIPE, SIG_IGN);
#endif
/*
* start processors
*/
eventProcessor.start(nproc);
RecProcessStart();
/*
* Reset necessary config variables
*/
#ifdef USE_SOCKS
net_config_socks_server_host = "209.131.52.54";
net_config_socks_server_port = 1080;
net_config_socks_needed = 1;
#endif
netProcessor.start();
sslNetProcessor.start(1);
/*
* Call the tests main function
*/
test_main();
this_thread()->execute();
return 0;
}