83 lines
2.5 KiB
C++
83 lines
2.5 KiB
C++
/*
|
|
Copyright (c) 2015, 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
|
|
*/
|
|
|
|
#include "abstract_progress_reporter.h"
|
|
#include "i_progress_watcher.h"
|
|
|
|
using namespace Mysql::Tools::Dump;
|
|
|
|
void Abstract_progress_reporter::register_progress_watcher(
|
|
I_progress_watcher* new_progress_watcher)
|
|
{
|
|
m_progress_watchers.push_back(new_progress_watcher);
|
|
}
|
|
|
|
bool Abstract_progress_reporter::have_progress_watcher()
|
|
{
|
|
return m_progress_watchers.size() > 0;
|
|
}
|
|
|
|
void Abstract_progress_reporter::report_new_chain_created(
|
|
Item_processing_data* new_chain_creator)
|
|
{
|
|
for (std::vector<I_progress_watcher*>::iterator
|
|
it= m_progress_watchers.begin(); it != m_progress_watchers.end(); ++it)
|
|
{
|
|
(*it)->new_chain_created(new_chain_creator);
|
|
}
|
|
}
|
|
|
|
void Abstract_progress_reporter::report_object_processing_started(
|
|
Item_processing_data* process_data)
|
|
{
|
|
for (std::vector<I_progress_watcher*>::iterator
|
|
it= m_progress_watchers.begin(); it != m_progress_watchers.end(); ++it)
|
|
{
|
|
(*it)->object_processing_started(process_data);
|
|
}
|
|
}
|
|
|
|
void Abstract_progress_reporter::report_object_processing_ended(
|
|
Item_processing_data* finished_process_data)
|
|
{
|
|
for (std::vector<I_progress_watcher*>::iterator
|
|
it= m_progress_watchers.begin(); it != m_progress_watchers.end(); ++it)
|
|
{
|
|
(*it)->object_processing_ended(finished_process_data);
|
|
}
|
|
}
|
|
|
|
void Abstract_progress_reporter::report_crawler_completed(
|
|
I_crawler* crawler)
|
|
{
|
|
for (std::vector<I_progress_watcher*>::iterator
|
|
it= m_progress_watchers.begin(); it != m_progress_watchers.end(); ++it)
|
|
{
|
|
(*it)->crawler_completed(crawler);
|
|
}
|
|
}
|
|
|
|
void Abstract_progress_reporter::register_progress_watchers_in_child(
|
|
I_progress_reporter* reporter)
|
|
{
|
|
for (std::vector<I_progress_watcher*>::iterator
|
|
it= m_progress_watchers.begin(); it != m_progress_watchers.end(); ++it)
|
|
{
|
|
reporter->register_progress_watcher(*it);
|
|
}
|
|
}
|