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 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335
|
/*
* Copyright (c) 2009, 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 <iconv.h>
#include <boost/foreach.hpp>
#include "db_reverse_engineer_script.h"
#include "base/string_utilities.h"
using namespace ScriptImport;
//--------------------------------------------------------------------------------------------------
ImportInputPage::ImportInputPage(WizardPlugin *form)
: WizardPage(form, "options"), _file_selector(true)
{
set_title(_("Input and Options"));
set_short_title(_("Input and Options"));
add(&_table, false, false);
_table.set_row_count(4);
_table.set_column_count(2);
_table.set_row_spacing(14);
_table.set_column_spacing(4);
_table.set_padding(12);
_heading.set_style(WizardHeadingStyle);
_heading.set_text(_("Select the script containing the schemata to reverse engineer"));
_table.add(&_heading, 0, 2, 0, 1, mforms::HFillFlag);
_caption.set_text_align(mforms::WizardLabelAlignment);
_caption.set_text(_("Select SQL script file:"));
_table.add(&_caption, 0, 1, 1, 2, mforms::HFillFlag);
_table.add(&_file_selector, 1, 2, 1, 2, mforms::HExpandFlag | mforms::HFillFlag);
std::string initial_filename= form->module()->document_string_data("input_filename", "");
_file_selector.initialize(initial_filename, mforms::OpenFile, "SQL Files (*.sql)|*.sql",
false, boost::bind(&WizardPage::validate, this));
scoped_connect(_file_selector.signal_changed(),boost::bind(&ImportInputPage::file_changed, this));
_file_codeset_caption.set_text(_("File encoding:"));
_file_codeset_caption.set_text_align(mforms::WizardLabelAlignment);
_table.add(&_file_codeset_caption, 0, 1, 2, 3, mforms::HFillFlag);
_table.add(&_file_codeset_sel, 1, 2, 2, 3, mforms::HExpandFlag | mforms::HFillFlag);
_file_codeset_sel.set_enabled(false); // Temporary stick this to the default (utf-8). We cannot convert encodings.
// Fill the encoding selector with a useful list of encodings.
fill_encodings_list();
_table.add(&_autoplace_check, 1, 2, 3, 4, mforms::HExpandFlag | mforms::HFillFlag);
_autoplace_check.set_text(_("Place imported objects on a diagram"));
_autoplace_check.set_active(true);
scoped_connect(signal_leave(),boost::bind(&ImportInputPage::gather_options, this, _1));
_autoplace_check.set_active(form->module()->document_int_data("place_figures", 0) != 0);
}
//--------------------------------------------------------------------------------------------------
/**
* Fills the selector (lookup) for file encodings with useful values.
*/
void ImportInputPage::fill_encodings_list()
{
const char* encodings[]=
{
"ARMSCII8", "ASCII", "BIG5", "BINARY", "CP1250", "CP1251", "CP1256", "CP1257",
"CP850", "CP852", "CP866", "CP932", "DEC8", "EUCJPMS", "EUCKR", "GB2312", "GBK",
"GEOSTD8", "GREEK", "HEBREW", "HP8", "KEYBCS2", "KOI8R", "KOI8U", "LATIN1", "LATIN2",
"LATIN5", "LATIN7", "MACCE", "MACROMAN", "SJIS", "SWE7", "TIS620", "UCS2", "UJIS", "UTF8"
};
int encodings_count= sizeof(encodings)/sizeof(encodings[0]);
for (int i= 0; i < encodings_count; ++i)
_file_codeset_sel.add_item(encodings[i]);
// As default find and select UTF8.
const std::string default_encoding= "UTF8";
int default_encoding_index= -1;
for (int i= 0; i < encodings_count; ++i)
{
if (default_encoding == encodings[i])
{
default_encoding_index= i;
break;
}
}
if (default_encoding_index > 0)
_file_codeset_sel.set_selected(default_encoding_index);
}
//--------------------------------------------------------------------------------------------------
void ImportInputPage::file_changed()
{
validate();
}
//--------------------------------------------------------------------------------------------------
bool ImportInputPage::allow_next()
{
std::string name= _file_selector.get_filename();
if (name.empty())
return false;
if (!g_file_test(name.c_str(), (GFileTest)(G_FILE_TEST_EXISTS | G_FILE_TEST_IS_REGULAR)))
return false;
return true;
}
//--------------------------------------------------------------------------------------------------
std::string ImportInputPage::next_button_caption()
{
return execute_caption();
}
//--------------------------------------------------------------------------------------------------
void ImportInputPage::gather_options(bool advancing)
{
values().gset("import.filename", _file_selector.get_filename());
values().gset("import.file_codeset", _file_codeset_sel.get_string_value());
values().gset("import.place_figures", _autoplace_check.get_active());
grt::Module *module= ((WizardPlugin*)_form)->module();
module->set_document_data("input_filename", _file_selector.get_filename());
module->set_document_data("place_figures", _autoplace_check.get_active());
}
//--------------------------------------------------------------------------------------------------
ImportProgressPage::ImportProgressPage(WizardForm *form, const boost::function<void (bool,std::string)> &finished_cb)
: WizardProgressPage(form, "progress", true)
{
set_title(_("Reverse Engineering Progress"));
set_short_title(_("Reverse Engineer"));
_finished_cb = finished_cb;
_auto_place= false;
_done= false;
_import_be.grtm(form->grtm());
//showAdvancedImportLogPage = false;
//caseSensitiveIdentifiersCB.Checked = sqlImport.get_bool_option("SqlIdentifiersCS");
TaskRow *task=
add_async_task(_("Reverse Engineer SQL Script"),
boost::bind(&ImportProgressPage::import_objects, this),
_("Reverse engineering and importing objects from script..."));
task->process_finish= boost::bind(&ImportProgressPage::import_objects_finished, this, _1);
add_task(_("Verify Results"),
boost::bind(&ImportProgressPage::verify_results, this),
_("Verifying imported objects..."));
_auto_place_task=
add_async_task(_("Place Objects on Diagram"),
boost::bind(&ImportProgressPage::place_objects, this),
_("Placing imported objects on a new diagram..."));
end_adding_tasks(_("Import finished."));
set_status_text("");
}
//--------------------------------------------------------------------------------------------------
void ImportProgressPage::import_objects_finished(grt::ValueRef value)
{
_form->grtm()->get_grt()->send_info(grt::StringRef::cast_from(value));
}
//--------------------------------------------------------------------------------------------------
bool ImportProgressPage::import_objects()
{
execute_grt_task(_import_be.get_task_slot(), false);
return true;
}
//--------------------------------------------------------------------------------------------------
bool ImportProgressPage::verify_results()
{
return true;
}
//--------------------------------------------------------------------------------------------------
bool ImportProgressPage::place_objects()
{
if (_auto_place)
{
execute_grt_task(_import_be.get_autoplace_task_slot(), false);
return true;
}
return false;
}
//--------------------------------------------------------------------------------------------------
bool ImportProgressPage::allow_back()
{
return false;
}
//--------------------------------------------------------------------------------------------------
void ImportProgressPage::enter(bool advancing)
{
if (advancing)
{
_import_be.sql_script(values().get_string("import.filename"));
_import_be.sql_script_codeset(values().get_string("import.file_codeset"));
_auto_place = values().get_int("import.place_figures") != 0;
_auto_place_task->set_enabled(_auto_place);
// sqlImport.set_option("case_sensitive_identifiers", caseSensitiveIdentifiersCB.Checked);
// sqlImport.set_option("processing_create_statements", procCreateStmtCB.Checked);
// sqlImport.set_option("processing_alter_statements", procAlterStmtCB.Checked);
//sqlImport.set_option("processing_drop_statements", procDropStmtCB.Checked);
}
WizardProgressPage::enter(advancing);
}
//--------------------------------------------------------------------------------------------------
std::string ImportProgressPage::get_summary()
{
std::string summary;
int schemas= 0, tables= 0, views= 0, procedures= 0;
grt::ListRef<GrtObject> created_objects= _import_be.get_created_objects();
for (grt::ListRef<GrtObject>::const_iterator iter= created_objects.begin();
iter != created_objects.end(); ++iter)
{
if ((*iter).is_instance<db_Schema>())
schemas++;
else if ((*iter).is_instance<db_Table>())
tables++;
else if ((*iter).is_instance<db_View>())
views++;
else if ((*iter).is_instance<db_Routine>())
procedures++;
}
summary= base::strfmt(_("Import of SQL script file '%s' has finished.\n\n"
"%i tables, %i views and %i stored procedures were imported in %i schemas.\n\n"),
_import_be.sql_script().c_str(),
tables, views, procedures, schemas);
if (_got_error_messages)
summary.append(_("There were errors during the import.\n"));
else if (_got_warning_messages)
summary.append(_("There were warnings during the import.\n"));
summary.append(_("Go Back to the previous page to review the logs."));
return summary;
}
void ImportProgressPage::tasks_finished(bool success)
{
if (_finished_cb)
_finished_cb(success, get_summary());
}
//--------------------------------------------------------------------------------------------------
WbPluginSQLImport::WbPluginSQLImport(grt::Module *module)
: WizardPlugin(module)
{
set_name("sql_import_wizard");
_input_page= new ImportInputPage(this);
_progress_page= new ImportProgressPage(this, boost::bind(&WbPluginSQLImport::update_summary, this, _1, _2));
_finish_page= new WizardFinishedPage(this, _("SQL Import Finished"));
add_page(mforms::manage(_input_page));
add_page(mforms::manage(_progress_page));
add_page(mforms::manage(_finish_page));
set_title(_("Reverse Engineer SQL Script"));
}
//--------------------------------------------------------------------------------------------------
void WbPluginSQLImport::update_summary(bool success, const std::string &summary)
{
_finish_page->set_title(success ? _("SQL Import Finished Successfully")
: _("SQL Import Failed"));
_finish_page->set_summary(summary);
}
//--------------------------------------------------------------------------------------------------
grtui::WizardPlugin *createImportScriptWizard(grt::Module *module, db_CatalogRef catalog)
{
return new ScriptImport::WbPluginSQLImport(module);
}
void deleteImportScriptWizard (grtui::WizardPlugin *plugin)
{
delete plugin;
}
|