1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
|
/*
* Copyright (c) 2010, 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 _DB_MYSQL_VALIDATION_PAGE_H_
#define _DB_MYSQL_VALIDATION_PAGE_H_
#include "db_mysql_public_interface.h"
#include "grt/grt_manager.h"
#include "grts/structs.db.mysql.h"
#include "grt/grt_string_list_model.h"
#include "base/trackable.h"
/*
This is a shared header for validation page on SQL export pluigns
- script export
- script sync
- db fwd-eng
- db sync
*/
class WBPLUGINDBMYSQLBE_PUBLIC_FUNC DbMySQLValidationPage : public base::trackable
{
public:
typedef boost::function<int ()> Validation_finished_cb;
typedef boost::function<int (int)> Validation_step_finished_cb;
private:
Validation_finished_cb _validation_finished_cb;
Validation_step_finished_cb _validation_step_finished_cb;
protected:
bec::GRTManager *_manager;
bec::MessageListBE *messages_list;
public:
DbMySQLValidationPage(bec::GRTManager *grtm);
~DbMySQLValidationPage();
bec::GRTManager *get_grt_manager() const
{
return _manager;
}
void run_validation();
void validation_finished(grt::ValueRef res);
grt::ValueRef validation_task(grt::GRT*, grt::StringRef);
void validation_message(const grt::Message &);
void validation_finished_cb(Validation_finished_cb cb) { _validation_finished_cb= cb; }
void validation_step_finished_cb(Validation_step_finished_cb cb) { _validation_step_finished_cb= cb; }
bec::MessageListBE *get_messages_list()
{
return messages_list;
}
};
#endif // _DB_MYSQL_VALIDATION_PAGE_H_
|