76 lines
1.9 KiB
C++

/*
Copyright (c) 2015, 2016 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 as published by
the Free Software Foundation; version 2 of the License.
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 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
*/
#ifndef PROGRAM_INCLUDED
#define PROGRAM_INCLUDED
#include "base/abstract_connection_program.h"
#include "mysql_chain_element_options.h"
#include "mysqldump_tool_chain_maker_options.h"
#include "base/atomic.h"
namespace Mysql{
namespace Tools{
namespace Dump{
class Program : public Mysql::Tools::Base::Abstract_connection_program
{
public:
Program();
~Program();
std::string get_version();
int get_first_release_year();
std::string get_description();
int execute(std::vector<std::string> positional_options);
void create_options();
void error(const Mysql::Tools::Base::Message_data& message);
void short_usage();
void check_mutually_exclusive_options();
int get_total_connections();
int get_error_code();
private:
bool message_handler(const Mysql::Tools::Base::Message_data& message);
void error_log_file_callback(char*);
void close_redirected_stderr();
Mysql_chain_element_options* m_mysql_chain_element_options;
Mysqldump_tool_chain_maker_options* m_mysqldump_tool_chain_maker_options;
bool m_single_transaction;
bool m_watch_progress;
Mysql::Nullable<std::string> m_error_log_file;
FILE* m_stderr;
my_boost::atomic_uint32_t m_error_code;
};
}
}
}
#endif