You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
95 lines
3.5 KiB
95 lines
3.5 KiB
5 months ago
|
/*
|
||
|
Copyright (c) 2014, 2017, Oracle and/or its affiliates. All rights reserved.
|
||
|
|
||
|
This program is free software; you can redistribute it and/or modify
|
||
|
it under the terms of the GNU General Public License, version 2.0,
|
||
|
as published by the Free Software Foundation.
|
||
|
|
||
|
This program is also distributed with certain software (including
|
||
|
but not limited to OpenSSL) that is licensed under separate terms,
|
||
|
as designated in a particular file or component or in included license
|
||
|
documentation. The authors of MySQL hereby grant you an additional
|
||
|
permission to link the program and your derivative works with the
|
||
|
separately licensed software that they have included with MySQL.
|
||
|
|
||
|
This program 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, version 2.0, for more details.
|
||
|
|
||
|
You should have received a copy of the GNU General Public License
|
||
|
along with this program; if not, write to the Free Software
|
||
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||
|
*/
|
||
|
|
||
|
#include "client/base/debug_options.h"
|
||
|
|
||
|
#include <stdlib.h>
|
||
|
#include <sys/types.h>
|
||
|
#include <functional>
|
||
|
|
||
|
#include "client/base/abstract_program.h"
|
||
|
#include "client/client_priv.h"
|
||
|
#include "my_dbug.h"
|
||
|
|
||
|
using namespace Mysql::Tools::Base::Options;
|
||
|
using Mysql::Tools::Base::Abstract_program;
|
||
|
using std::placeholders::_1;
|
||
|
|
||
|
static Debug_options *primary_debug_options = NULL;
|
||
|
static uint my_end_arg;
|
||
|
|
||
|
static void debug_do_exit() { my_end(::my_end_arg); }
|
||
|
|
||
|
Debug_options::Debug_options(Abstract_program *program) : m_program(program) {
|
||
|
if (::primary_debug_options == NULL) {
|
||
|
primary_debug_options = this;
|
||
|
/*
|
||
|
We don't want to call this routine in destructor, as we want it being
|
||
|
called only once, and second we want it to be called as late as possible.
|
||
|
Possibly when this object is already freed up.
|
||
|
*/
|
||
|
atexit(&::debug_do_exit);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
void Debug_options::create_options() {
|
||
|
#ifdef DBUG_OFF
|
||
|
this->create_new_disabled_option(
|
||
|
"debug", "This is a non-debug version. Catch this and exit.")
|
||
|
->set_short_character('#');
|
||
|
this->create_new_disabled_option(
|
||
|
"debug-check", "This is a non-debug version. Catch this and exit.");
|
||
|
this->create_new_disabled_option(
|
||
|
"debug-info", "This is a non-debug version. Catch this and exit.");
|
||
|
#else
|
||
|
this->create_new_option(&this->m_dbug_option, "debug", "Output debug log.")
|
||
|
->set_short_character('#')
|
||
|
->value_optional()
|
||
|
->set_value("d:t:O,/tmp/" + this->m_program->get_name() + ".trace")
|
||
|
->add_callback(new std::function<void(char *)>(
|
||
|
std::bind(&Debug_options::debug_option_callback, this, _1)));
|
||
|
this->create_new_option(&this->m_debug_check_flag, "debug-check",
|
||
|
"Check memory and open file usage at exit.");
|
||
|
this->create_new_option(&this->m_debug_info_flag, "debug-info",
|
||
|
"Print some debug info at exit.")
|
||
|
->set_short_character('T');
|
||
|
#endif
|
||
|
}
|
||
|
|
||
|
void Debug_options::debug_option_callback(
|
||
|
char *argument MY_ATTRIBUTE((unused))) {
|
||
|
if (this->m_dbug_option.has_value()) {
|
||
|
DBUG_PUSH(this->m_dbug_option.value().c_str());
|
||
|
}
|
||
|
this->m_debug_check_flag = 1;
|
||
|
}
|
||
|
|
||
|
void Debug_options::options_parsed() {
|
||
|
if (this->m_debug_info_flag) {
|
||
|
::my_end_arg |= MY_CHECK_ERROR | MY_GIVE_INFO;
|
||
|
} else if (this->m_debug_check_flag) {
|
||
|
::my_end_arg |= MY_CHECK_ERROR;
|
||
|
}
|
||
|
}
|