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 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495
|
/*
* Copyright (c) 2014, 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
*/
#include "wb_sql_editor_form.h"
#include "wb_sql_editor_panel.h"
#include "wb_sql_editor_result_panel.h"
#include "sqlide/sql_editor_be.h"
#include "sqlide/recordset_cdbc_storage.h"
#include "grtpp_notifications.h"
#include "base/log.h"
#include "base/file_functions.h"
#include "base/util_functions.h"
#include "mforms/toolbar.h"
#include "mforms/menubar.h"
#include "mforms/code_editor.h"
#include "mforms/find_panel.h"
#include "mforms/filechooser.h"
#include "workbench/wb_command_ui.h"
#include "base/boost_smart_ptr_helpers.h"
#include "objimpl/wrapper/mforms_ObjectReference_impl.h"
#include "objimpl/db.query/db_query_Resultset.h"
#include "grtui/file_charset_dialog.h"
#include "grtsqlparser/mysql_parser_services.h"
#include <fstream>
#include <sstream>
#include <boost/lexical_cast.hpp>
// 20 MB max file size for auto-restoring
#define MAX_FILE_SIZE_FOR_AUTO_RESTORE 20000000
DEFAULT_LOG_DOMAIN("SqlEditorPanel");
using namespace bec;
using namespace base;
//--------------------------------------------------------------------------------------------------
SqlEditorPanel::SqlEditorPanel(SqlEditorForm *owner, bool is_scratch, bool start_collapsed)
: mforms::AppView(false, "db.query.QueryBuffer", false), _form(owner),
_editor_box(false), _splitter(false, true),
#ifdef __APPLE__
_lower_tabview(mforms::TabViewEditorBottomPinnable), // TODO: Windows, Linux
#else
_lower_tabview(mforms::TabViewEditorBottom),
#endif
_lower_dock_delegate(&_lower_tabview, db_query_QueryEditor::static_class_name()),
_lower_dock(&_lower_dock_delegate, false),
_tab_action_box(true), _tab_action_apply(mforms::SmallButton), _tab_action_revert(mforms::SmallButton), _tab_action_info("Read Only"),
_rs_sequence(0), _busy(false), _is_scratch(is_scratch)
{
GRTManager *grtm = owner->grt_manager();
db_query_QueryEditorRef grtobj(grtm->get_grt());
grtobj->resultDockingPoint(mforms_to_grt(grtm->get_grt(), &_lower_dock));
_autosave_file_suffix = grtobj.id();
// In opposition to the object editors, each individual sql editor gets an own parser context
// (and hence an own parser), to allow concurrent and multi threaded work.
parser::MySQLParserServices::Ref services = parser::MySQLParserServices::get(grtm->get_grt());
parser::ParserContext::Ref context = services->createParserContext(owner->rdbms()->characterSets(),
owner->rdbms_version(), owner->lower_case_table_names() != 0);
_editor = MySQLEditor::create(grtm->get_grt(), context, owner->work_parser_context(), grtobj);
_editor->sql_check_progress_msg_throttle(grtm->get_app_option_int("DbSqlEditor:ProgressStatusUpdateInterval", 500)/(double)1000);
_editor->set_auto_completion_cache(owner->auto_completion_cache());
_editor->set_sql_mode(owner->sql_mode());
_editor->set_current_schema(owner->active_schema());
UIForm::scoped_connect(_editor->text_change_signal(),
boost::bind(&SqlEditorPanel::update_title, this));
add(&_splitter, true, true);
mforms::CodeEditor* code_editor = editor_be()->get_editor_control();
code_editor->set_name("code editor");
_editor_box.add(setup_editor_toolbar(), false, true);
_editor_box.add_end(code_editor, true, true);
code_editor->set_font(grt::StringRef::cast_from(grtm->get_app_option("workbench.general.Editor:Font")));
code_editor->set_status_text("");
code_editor->set_show_find_panel_callback(boost::bind(&SqlEditorPanel::show_find_panel, this, _1, _2));
if (start_collapsed)
_editor->get_editor_control()->set_size(-1, 25);
_splitter.add(&_editor_box);
_splitter.add(&_lower_tabview);
UIForm::scoped_connect(_splitter.signal_position_changed(), boost::bind(&SqlEditorPanel::splitter_resized, this));
_tab_action_box.set_spacing(4);
_tab_action_box.add_end(&_tab_action_info, false, true);
_tab_action_box.add_end(&_tab_action_icon, false, false);
_tab_action_box.add_end(&_tab_action_revert, false, false);
_tab_action_box.add_end(&_tab_action_apply, false, false);
_tab_action_icon.set_image(mforms::App::get()->get_resource_path("mini_notice.png"));
_tab_action_icon.show(false);
_tab_action_info.show(false);
_tab_action_apply.enable_internal_padding(true);
_tab_action_apply.set_text("Apply");
_tab_action_apply.signal_clicked()->connect(boost::bind(&SqlEditorPanel::apply_clicked, this));
_tab_action_revert.enable_internal_padding(true);
_tab_action_revert.set_text("Revert");
_tab_action_revert.signal_clicked()->connect(boost::bind(&SqlEditorPanel::revert_clicked, this));
#ifdef _WIN32
// 19 is the size of the tabs in the bottom tabview.
_tab_action_apply.set_size(-1, 19);
_tab_action_revert.set_size(-1, 19);
_tab_action_box.set_size(-1, 19);
_tab_action_box.set_back_color(Color::get_application_color_as_string(AppColorTabUnselected, false));
#endif
_lower_tabview.set_aux_view(&_tab_action_box);
_lower_tabview.set_allows_reordering(true);
_lower_tabview.signal_tab_reordered()->connect(boost::bind(&SqlEditorPanel::lower_tab_reordered, this, _1, _2, _3));
_lower_tabview.signal_tab_changed()->connect(boost::bind(&SqlEditorPanel::lower_tab_switched, this));
_lower_tabview.signal_tab_closing()->connect(boost::bind(&SqlEditorPanel::lower_tab_closing, this, _1));
_lower_tabview.signal_tab_closed()->connect(boost::bind(&SqlEditorPanel::lower_tab_closed, this, _1, _2));
_lower_tabview.signal_tab_pin_changed()->connect(boost::bind(&SqlEditorPanel::tab_pinned, this, _1, _2));
_lower_tabview.is_pinned = boost::bind(&SqlEditorPanel::is_pinned, this, _1);
_lower_tabview.set_tab_menu(&_lower_tab_menu);
_splitter.set_expanded(false, false);
set_on_close(boost::bind(&SqlEditorPanel::on_close_by_user, this));
_lower_tab_menu.signal_will_show()->connect(boost::bind(&SqlEditorPanel::tab_menu_will_show, this));
_lower_tab_menu.add_item_with_title("Rename Tab", boost::bind(&SqlEditorPanel::rename_tab_clicked, this), "rename");
_lower_tab_menu.add_check_item_with_title("Pin Tab", boost::bind(&SqlEditorPanel::pin_tab_clicked, this), "pin");
_lower_tab_menu.add_separator();
_lower_tab_menu.add_item_with_title("Close Tab", boost::bind(&SqlEditorPanel::close_tab_clicked, this), "close");
_lower_tab_menu.add_item_with_title("Close Other Tabs", boost::bind(&SqlEditorPanel::close_other_tabs_clicked, this), "close_others");
}
//--------------------------------------------------------------------------------------------------
SqlEditorPanel::~SqlEditorPanel()
{
_editor->stop_processing();
_editor->cancel_auto_completion();
}
//--------------------------------------------------------------------------------------------------
db_query_QueryEditorRef SqlEditorPanel::grtobj()
{
return db_query_QueryEditorRef::cast_from(_editor->grtobj());
}
//--------------------------------------------------------------------------------------------------
bool SqlEditorPanel::on_close_by_user()
{
// this can also get closed when close_all_view() is called when the connection is closed
if (_form->is_closing() || can_close())
{
// do not call close, since that would undock ourselves and the caller will also undock this
// we just need to be sure that the d-tor is called in all closing methods (close the tab itself from the X and through kbd,
// close the connection, close WB)
// close();
return true;
}
return false;
}
//--------------------------------------------------------------------------------------------------
bool SqlEditorPanel::can_close()
{
if (_busy)
return false;
bool check_editors = true;
// if Save of workspace on close is enabled, we don't need to check whether there are unsaved scratch
// SQL editors but other stuff should be checked.
grt::ValueRef option(_form->grt_manager()->get_app_option("workbench:SaveSQLWorkspaceOnClose"));
if (option.is_valid() && *grt::IntegerRef::cast_from(option))
check_editors = false;
// don't need to check for unsaved changes when closing the whole form
// if save-workspace is enabled, since they'll get autosaved anyway
// otoh, when closing the file itself, it should check
if (!_form->is_closing())
check_editors = true;
if (!_is_scratch && check_editors)
{
if (is_dirty())
{
int result = mforms::Utilities::show_warning(_("Close SQL Tab"),
strfmt(_("SQL script %s has unsaved changes.\n"
"Would you like to Save these changes before closing?"),
get_title().c_str()), _("Save"), _("Cancel"), _("Don't Save"));
if (result == mforms::ResultCancel)
return false;
else if (result == mforms::ResultOk)
{
if (!save())
return false;
}
else
_editor->get_editor_control()->reset_dirty();
}
}
// check if there are unsaved recordset changes
int edited_recordsets = 0;
for (int c = _lower_tabview.page_count(), i = 0; i < c; i++)
{
SqlEditorResult* result = dynamic_cast<SqlEditorResult*>(_lower_tabview.get_page(i));
if (result && result->has_pending_changes())
edited_recordsets++;
}
int r = -999;
if (edited_recordsets == 1)
r = mforms::Utilities::show_warning(_("Close SQL Tab"),
strfmt(_("An edited recordset has unsaved changes in %s.\n"
"Would you like to save these changes, discard them or cancel closing the page?"),
get_title().c_str()),
_("Save Changes"), _("Cancel"), _("Don't Save"));
else if (edited_recordsets > 0)
r = mforms::Utilities::show_warning(_("Close SQL Tab"),
strfmt(_("There are %i recordsets with unsaved changes in %s.\n"
"Would you like to save these changes, discard them or cancel closing to review them manually?"),
edited_recordsets, get_title().c_str()),
_("Save All"), _("Cancel"), _("Don't Save"));
bool success = true;
if (r != -999)
{
if (r == mforms::ResultCancel)
success = false;
else
{
for (int c = _lower_tabview.page_count(), i = 0; i < c; i++)
{
SqlEditorResult* result = dynamic_cast<SqlEditorResult*>(_lower_tabview.get_page(i));
if (result && result->has_pending_changes())
{
try
{
if (r == mforms::ResultOk)
result->apply_changes();
else
result->discard_changes();
}
catch (const std::exception &exc)
{
if (mforms::Utilities::show_error(_("Save Changes"),
strfmt(_("An error occurred while saving changes to the recordset %s\n%s"),
result->recordset()->caption().c_str(), exc.what()),
_("Ignore"), _("Cancel"), "") == mforms::ResultCancel)
{
success = false;
break;
}
}
}
}
}
}
// close everything now (recordsets should already have their dirty flag cleared)
if (success && !_lower_dock.close_all_views())
return false;
return success;
}
//--------------------------------------------------------------------------------------------------
void SqlEditorPanel::apply_clicked()
{
SqlEditorResult *result = active_result_panel();
if (result)
result->apply_changes();
}
//--------------------------------------------------------------------------------------------------
void SqlEditorPanel::revert_clicked()
{
SqlEditorResult *result = active_result_panel();
if (result)
result->discard_changes();
}
//--------------------------------------------------------------------------------------------------
void SqlEditorPanel::resultset_edited()
{
SqlEditorResult *result = active_result_panel();
Recordset::Ref rset;
if (result && (rset = result->recordset()))
{
bool edited = rset->has_pending_changes();
_tab_action_apply.set_enabled(edited);
_tab_action_revert.set_enabled(edited);
_form->get_menubar()->set_item_enabled("query.save_edits", edited);
_form->get_menubar()->set_item_enabled("query.discard_edits", edited);
}
}
//--------------------------------------------------------------------------------------------------
void SqlEditorPanel::splitter_resized()
{
if (_lower_tabview.page_count() > 0)
{
_form->grt_manager()->set_app_option("DbSqlEditor:ResultSplitterPosition",
grt::IntegerRef(_splitter.get_position()));
}
}
//--------------------------------------------------------------------------------------------------
static bool check_if_file_too_big_to_restore(const std::string &path, const std::string &file_caption,
bool allow_save_as = false)
{
boost::int64_t length;
if ((length = get_file_size(path.c_str())) > MAX_FILE_SIZE_FOR_AUTO_RESTORE)
{
again:
std::string size = sizefmt(length, false);
int rc = mforms::Utilities::show_warning("Restore Workspace",
strfmt("The file %s has a size of %s. Are you sure you want to restore this file?",
file_caption.c_str(), size.c_str()),
"Restore", "Skip", allow_save_as ? "Save As..." : ""
);
if (rc == mforms::ResultCancel)
return false;
if (rc == mforms::ResultOther)
{
mforms::FileChooser fchooser(mforms::SaveFile);
fchooser.set_title(_("Save File As..."));
if (fchooser.run_modal())
{
if (!copy_file(path.c_str(), fchooser.get_path().c_str()))
{
if (mforms::Utilities::show_error("Save File",
strfmt("File %s could not be saved.", fchooser.get_path().c_str()),
_("Retry"), _("Cancel"), "") == mforms::ResultOk)
goto again;
}
}
else
goto again;
return false;
}
}
return true;
}
#define EDITOR_TEXT_LIMIT 100 * 1024 * 1024
SqlEditorPanel::AutoSaveInfo::AutoSaveInfo(const std::string &info_file)
: word_wrap(false), show_special(false)
{
wchar_t buffer[4098] = {0};
std::wifstream f;
openStream(info_file, f);
while (f.getline(buffer, sizeof(buffer)))
{
std::string key, value;
base::partition(base::wstring_to_string(buffer), "=", key, value);
if (key == "orig_encoding")
orig_encoding = value;
else if (key == "type")
type = value;
else if (key == "filename")
filename = value;
else if (key == "title")
title = value;
else if (key == "word_wrap")
word_wrap = value == "1";
else if (key == "show_special")
show_special = value == "1";
else if (key == "first_visible_line")
first_visible_line = base::atoi<int>(value, 0);
else if (key == "caret_pos")
caret_pos = base::atoi<int>(value, 0);
}
}
SqlEditorPanel::AutoSaveInfo SqlEditorPanel::AutoSaveInfo::old_scratch(const std::string &scratch_file)
{
AutoSaveInfo info;
info.title = base::strip_extension(base::basename(scratch_file));
if (base::is_number(info.title))
info.title = base::strfmt("Query %i", 1 + base::atoi<int>(info.title, 0));
info.type = "scratch";
return info;
}
SqlEditorPanel::AutoSaveInfo SqlEditorPanel::AutoSaveInfo::old_autosave(const std::string &autosave_file)
{
char buffer[4098];
AutoSaveInfo info;
info.title = base::strip_extension(base::basename(autosave_file));
info.type = "file";
std::ifstream f(base::strip_extension(autosave_file).c_str());
if (f.getline(buffer, sizeof(buffer)))
info.filename = buffer;
if (f.getline(buffer, sizeof(buffer)))
info.orig_encoding = buffer;
return info;
}
bool SqlEditorPanel::load_autosave(const AutoSaveInfo &info,
const std::string &text_file)
{
_orig_encoding = info.orig_encoding;
_file_timestamp = 0;
_is_scratch = (info.type == "scratch");
// there's no autosave
if (text_file.empty() || !base::file_exists(text_file))
{
if (!info.filename.empty() && !check_if_file_too_big_to_restore(info.filename,
strfmt("Saved editor '%s'", info.title.c_str())))
{
return false;
}
// if this was a file, try to load it
if (!info.filename.empty() && load_from(info.filename, info.orig_encoding, false) != Loaded)
return false;
}
else
{
// check if autosave too big
if (!check_if_file_too_big_to_restore(text_file,
strfmt("Saved editor '%s'", info.title.c_str())))
{
return false;
}
// load the autosave
if (load_from(text_file, info.orig_encoding, true) != Loaded)
return false;
}
_filename = info.filename;
if (!_filename.empty())
base::file_mtime(_filename, _file_timestamp);
set_title(info.title);
mforms::ToolBarItem *item = get_toolbar()->find_item("query.toggleInvisible");
item->set_checked(info.show_special);
(*item->signal_activated())(item);
item = get_toolbar()->find_item("query.toggleWordWrap");
item->set_checked(info.word_wrap);
(*item->signal_activated())(item);
_editor->get_editor_control()->set_caret_pos(info.caret_pos);
_editor->get_editor_control()->send_editor(SCI_SETFIRSTVISIBLELINE, info.first_visible_line, 0);
return true;
}
//--------------------------------------------------------------------------------------------------
SqlEditorPanel::LoadResult SqlEditorPanel::load_from(const std::string &file, const std::string &encoding, bool keep_dirty)
{
GError *error = NULL;
gchar *data;
gsize length;
gsize file_size = base_get_file_size(file.c_str());
if (file_size > EDITOR_TEXT_LIMIT)
{
// File is larger than 100 MB. Tell the user we are going to switch off code folding and
// auto completion.
int result = mforms::Utilities::show_warning(_("Large File"),
strfmt(_("The file \"%s\" has a size "
"of %.2f MB. Are you sure you want to open this large file?\n\nNote: code folding "
"will be disabled for this file.\n\nClick Run SQL Script... to just execute the file."),
file.c_str(), file_size / 1024.0 / 1024.0),
_("Open"), _("Cancel"), _("Run SQL Script..."));
if (result == mforms::ResultCancel)
return Cancelled;
else if (result == mforms::ResultOther)
return RunInstead;
}
_orig_encoding = encoding;
if (!g_file_get_contents(file.c_str(), &data, &length, &error))
{
log_error("Could not read file %s: %s\n", file.c_str(), error->message);
std::string what = error->message;
g_error_free(error);
throw std::runtime_error(what);
}
char *utf8_data;
std::string original_encoding;
FileCharsetDialog::Result result = FileCharsetDialog::ensure_filedata_utf8(_form->grt_manager()->get_grt(),
data, length, encoding, file,
utf8_data, &original_encoding);
if (result == FileCharsetDialog::Cancelled)
{
g_free(data);
return Cancelled;
}
else if (result == FileCharsetDialog::RunInstead)
{
g_free(data);
return RunInstead;
}
// if original data was in utf8, utf8_data comes back NULL
if (!utf8_data)
utf8_data = data;
else
g_free(data);
_editor->set_refresh_enabled(true);
_editor->sql(utf8_data ? utf8_data : "");
g_free(utf8_data);
if (!keep_dirty)
{
_editor->get_editor_control()->reset_dirty();
_filename = file;
_orig_encoding = original_encoding;
set_title(strip_extension(basename(file)));
}
if (!file_mtime(file, _file_timestamp))
{
log_warning("Can't get timestamp for %s\n", file.c_str());
_file_timestamp = 0;
}
return Loaded;
}
//--------------------------------------------------------------------------------------------------
void SqlEditorPanel::close()
{
_form->remove_sql_editor(this);
}
//--------------------------------------------------------------------------------------------------
bool SqlEditorPanel::save_as(const std::string &path)
{
if (path.empty())
{
mforms::FileChooser dlg(mforms::SaveFile);
dlg.set_title(_("Save SQL Script"));
dlg.set_extensions("SQL Files (*.sql)|*.sql", "sql");
if (!_filename.empty())
dlg.set_path(_filename);
if (!dlg.run_modal())
return false;
_filename = dlg.get_path();
}
if (save())
{
set_title(strip_extension(basename(_filename)));
{
NotificationInfo info;
info["opener"] = "SqlEditorForm";
info["path"] = _filename;
NotificationCenter::get()->send("GNDocumentOpened", this, info);
}
return true;
}
return false;
}
//--------------------------------------------------------------------------------------------------
bool SqlEditorPanel::save()
{
if (_filename.empty())
return save_as("");
GError *error= NULL;
// File extension check is already done in FileChooser.
_form->grt_manager()->replace_status_text(strfmt(_("Saving SQL script to '%s'..."), _filename.c_str()));
std::pair<const char*, size_t> text = text_data();
if (!g_file_set_contents(_filename.c_str(), text.first, text.second, &error))
{
log_error("Could not save script %s: %s\n", _filename.c_str(), error->message);
_form->grt_manager()->replace_status_text(strfmt(_("Error saving SQL script to '%s'."), _filename.c_str()));
mforms::Utilities::show_error(strfmt(_("Error writing file %s"), _filename.c_str()),
error->message, _("OK"));
g_error_free(error);
return false;
}
// reset dirty marker, but not the undo stack
_editor->get_editor_control()->reset_dirty();
_is_scratch = false; // saving a file makes it not a scratch buffer anymore
file_mtime(_filename, _file_timestamp);
_form->grt_manager()->replace_status_text(strfmt(_("SQL script saved to '%s'"), _filename.c_str()));
// update autosave state
_form->auto_save();
update_title();
return true;
}
//--------------------------------------------------------------------------------------------------
void SqlEditorPanel::revert_to_saved()
{
_editor->sql("");
if (load_from(_filename, _orig_encoding) == Loaded)
{
{
NotificationInfo info;
info["opener"] = "SqlEditorForm";
info["path"] = _filename;
NotificationCenter::get()->send("GNDocumentOpened", this, info);
}
_form->auto_save();
_form->grt_manager()->replace_status_text(strfmt(_("Reverted to saved '%s'"), _filename.c_str()));
}
}
//--------------------------------------------------------------------------------------------------
std::string SqlEditorPanel::autosave_file_suffix()
{
return _autosave_file_suffix;
}
//--------------------------------------------------------------------------------------------------
void SqlEditorPanel::auto_save(const std::string &path)
{
// save info about the file
{
std::wofstream f;
openStream(bec::make_path(path, _autosave_file_suffix + ".info"), f);
std::string content;
if (_is_scratch)
content += "type=scratch\n";
else
content += "type=file\n";
if (!_is_scratch && !_filename.empty())
{
content += "filename=" + _filename + "\n";
}
content += "orig_encoding=" + _orig_encoding + "\n";
content += "title=" + _title + "\n";
if (get_toolbar()->get_item_checked("query.toggleInvisible"))
content += "show_special=1\n";
else
content += "show_special=0\n";
if (get_toolbar()->get_item_checked("query.toggleWordWrap"))
content += "word_wrap=1\n";
else
content += "word_wrap=0\n";
size_t caret_pos = _editor->get_editor_control()->get_caret_pos();
content += "caret_pos=" + base::to_string(caret_pos) + "\n";
size_t first_line = _editor->get_editor_control()->send_editor(SCI_GETFIRSTVISIBLELINE, 0, 0);
content += "first_visible_line=" + base::to_string(first_line) + "\n";
if (f.good())
f << base::string_to_wstring(content);
f.close();
}
std::string fn = bec::make_path(path, _autosave_file_suffix+".scratch");
// only save editor contents for scratch areas and unsaved editors
if (_is_scratch || _filename.empty() || (!_filename.empty() && is_dirty()))
{
// We don't need to lock the editor as we are in the main thread here
// and directly set the file content without detouring to anything that could change the text.
GError *error = 0;
std::pair<const char*, size_t> text = text_data();
if (!g_file_set_contents(fn.c_str(), text.first, text.second, &error))
{
log_error("Could not save snapshot of editor contents to %s: %s\n", fn.c_str(), error->message);
std::string msg(strfmt("Could not save snapshot of editor contents to %s: %s", fn.c_str(), error->message));
g_error_free(error);
throw std::runtime_error(msg);
}
}
else
{
// delete the autosave file if the file was saved
try
{
base::remove(fn);
}
catch (std::exception &e)
{
log_warning("Error deleting autosave file %s: %s\n", fn.c_str(), e.what());
}
}
}
//--------------------------------------------------------------------------------------------------
void SqlEditorPanel::delete_auto_save(const std::string &path)
{
// delete the autosave related files
try
{
base::remove(bec::make_path(path, _autosave_file_suffix+".autosave"));
} catch (std::exception &exc) { log_warning("Could not delete auto-save file: %s\n", exc.what()); }
try
{
base::remove(bec::make_path(path, _autosave_file_suffix+".info"));
} catch (std::exception &exc) { log_warning("Could not delete auto-save file: %s\n", exc.what()); }
}
//--------------------------------------------------------------------------------------------------
// Toolbar handling.
void SqlEditorPanel::show_find_panel(mforms::CodeEditor *editor, bool show)
{
mforms::FindPanel *panel = editor->get_find_panel();
if (show && !panel->get_parent())
_editor_box.add(panel, false, true);
panel->show(show);
}
//--------------------------------------------------------------------------------------------------
static void toggle_continue_on_error(SqlEditorForm *sql_editor_form)
{
sql_editor_form->continue_on_error(!sql_editor_form->continue_on_error());
}
//--------------------------------------------------------------------------------------------------
mforms::ToolBar *SqlEditorPanel::setup_editor_toolbar()
{
mforms::ToolBar *tbar(mforms::manage(new mforms::ToolBar(mforms::SecondaryToolBar)));
#ifdef _WIN32
tbar->set_size(-1, 27);
#endif
mforms::ToolBarItem *item;
item = mforms::manage(new mforms::ToolBarItem(mforms::ActionItem));
item->set_name("query.openFile");
item->set_icon(IconManager::get_instance()->get_icon_path("qe_sql-editor-tb-icon_open.png"));
item->set_tooltip(_("Open a script file in this editor"));
bec::UIForm::scoped_connect(item->signal_activated(),boost::bind((void (SqlEditorForm::*)(const std::string&, bool, bool))&SqlEditorForm::open_file, _form, "", false, true));
tbar->add_item(item);
item = mforms::manage(new mforms::ToolBarItem(mforms::ActionItem));
item->set_name("query.saveFile");
item->set_icon(IconManager::get_instance()->get_icon_path("qe_sql-editor-tb-icon_save.png"));
item->set_tooltip(_("Save the script to a file."));
bec::UIForm::scoped_connect(item->signal_activated(),boost::bind(&SqlEditorPanel::save, this));
tbar->add_item(item);
tbar->add_item(mforms::manage(new mforms::ToolBarItem(mforms::SeparatorItem)));
item = mforms::manage(new mforms::ToolBarItem(mforms::ActionItem));
item->set_name("query.execute");
item->set_icon(IconManager::get_instance()->get_icon_path("qe_sql-editor-tb-icon_execute.png"));
item->set_tooltip(_("Execute the selected portion of the script or everything, if there is no selection"));
bec::UIForm::scoped_connect(item->signal_activated(),boost::bind(&SqlEditorForm::run_editor_contents, _form, false));
tbar->add_item(item);
item = mforms::manage(new mforms::ToolBarItem(mforms::ActionItem));
item->set_name("query.execute_current_statement");
item->set_icon(IconManager::get_instance()->get_icon_path("qe_sql-editor-tb-icon_execute-current.png"));
item->set_tooltip(_("Execute the statement under the keyboard cursor"));
bec::UIForm::scoped_connect(item->signal_activated(),boost::bind(&SqlEditorForm::run_editor_contents, _form, true));
tbar->add_item(item);
item = mforms::manage(new mforms::ToolBarItem(mforms::ActionItem));
item->set_name("query.explain_current_statement");
item->set_icon(IconManager::get_instance()->get_icon_path("qe_sql-editor-tb-icon_explain.png"));
item->set_tooltip(_("Execute the EXPLAIN command on the statement under the cursor"));
bec::UIForm::scoped_connect(item->signal_activated(),boost::bind(&SqlEditorForm::explain_current_statement, _form));
tbar->add_item(item);
item = mforms::manage(new mforms::ToolBarItem(mforms::ActionItem));
item->set_name("query.cancel");
item->set_icon(IconManager::get_instance()->get_icon_path("qe_sql-editor-tb-icon_stop.png"));
item->set_tooltip(_("Stop the query being executed (the connection to the DB server will not be restarted and any open transactions will remain open)"));
bec::UIForm::scoped_connect(item->signal_activated(),boost::bind(&SqlEditorForm::cancel_query, _form));
tbar->add_item(item);
tbar->add_item(mforms::manage(new mforms::ToolBarItem(mforms::SeparatorItem)));
item = mforms::manage(new mforms::ToolBarItem(mforms::ToggleItem));
item->set_name("query.continueOnError");
item->set_alt_icon(IconManager::get_instance()->get_icon_path("qe_sql-editor-tb-icon_stop-on-error-on.png"));
item->set_icon(IconManager::get_instance()->get_icon_path("qe_sql-editor-tb-icon_stop-on-error-off.png"));
item->set_tooltip(_("Toggle whether execution of SQL script should continue after failed statements"));
bec::UIForm::scoped_connect(item->signal_activated(),boost::bind(toggle_continue_on_error, _form));
tbar->add_item(item);
tbar->add_item(mforms::manage(new mforms::ToolBarItem(mforms::SeparatorItem)));
item = mforms::manage(new mforms::ToolBarItem(mforms::ActionItem));
item->set_name("query.commit");
item->set_icon(IconManager::get_instance()->get_icon_path("qe_sql-editor-tb-icon_commit.png"));
item->set_tooltip(_("Commit the current transaction.\nNOTE: all query tabs in the same connection share the same transaction. To have independent transactions, you must open a new connection."));
bec::UIForm::scoped_connect(item->signal_activated(),boost::bind(&SqlEditorForm::commit, _form));
tbar->add_item(item);
item = mforms::manage(new mforms::ToolBarItem(mforms::ActionItem));
item->set_name("query.rollback");
item->set_icon(IconManager::get_instance()->get_icon_path("qe_sql-editor-tb-icon_rollback.png"));
item->set_tooltip(_("Rollback the current transaction.\nNOTE: all query tabs in the same connection share the same transaction. To have independent transactions, you must open a new connection."));
bec::UIForm::scoped_connect(item->signal_activated(),boost::bind(&SqlEditorForm::rollback, _form));
tbar->add_item(item);
item = mforms::manage(new mforms::ToolBarItem(mforms::ToggleItem));
item->set_name("query.autocommit");
item->set_alt_icon(IconManager::get_instance()->get_icon_path("qe_sql-editor-tb-icon_autocommit-on.png"));
item->set_icon(IconManager::get_instance()->get_icon_path("qe_sql-editor-tb-icon_autocommit-off.png"));
item->set_tooltip(_("Toggle autocommit mode. When enabled, each statement will be committed immediately.\nNOTE: all query tabs in the same connection share the same transaction. To have independent transactions, you must open a new connection."));
bec::UIForm::scoped_connect(item->signal_activated(),boost::bind(&SqlEditorForm::toggle_autocommit, _form));
tbar->add_item(item);
tbar->add_separator_item();
item = mforms::manage(new mforms::ToolBarItem(mforms::SelectorItem));
item->set_name("limit_rows");
item->set_tooltip(_("Set limit for number of rows returned by queries.\nWorkbench will automatically add the LIMIT clause with the configured number of rows to SELECT queries."));
bec::UIForm::scoped_connect(item->signal_activated(), boost::bind(&SqlEditorPanel::limit_rows, this, item));
tbar->add_item(item);
tbar->add_separator_item();
item = mforms::manage(new mforms::ToolBarItem(mforms::ActionItem));
item->set_name("add_snippet");
item->set_icon(IconManager::get_instance()->get_icon_path("snippet_add.png"));
item->set_tooltip(_("Save current statement or selection to the snippet list."));
bec::UIForm::scoped_connect(item->signal_activated(),boost::bind(&SqlEditorForm::save_snippet, _form));
tbar->add_item(item);
tbar->add_separator_item();
// adds generic SQL editor toolbar buttons
_editor->set_base_toolbar(tbar);
update_limit_rows();
return tbar;
}
//--------------------------------------------------------------------------------------------------
void SqlEditorPanel::limit_rows(mforms::ToolBarItem *item)
{
_form->limit_rows(item->get_text());
}
//--------------------------------------------------------------------------------------------------
void SqlEditorPanel::update_limit_rows()
{
mforms::MenuItem *mitem = _form->get_menubar()->find_item("limit_rows");
std::string selected;
std::vector<std::string> items;
for (int i = 0; i < mitem->item_count(); i++)
{
if (!mitem->get_item(i)->get_title().empty())
{
items.push_back(mitem->get_item(i)->get_title());
if (mitem->get_item(i)->get_checked())
selected = items.back();
}
}
mforms::ToolBarItem *item = get_toolbar()->find_item("limit_rows");
item->set_selector_items(items);
item->set_text(selected);
}
//--------------------------------------------------------------------------------------------------
mforms::ToolBar *SqlEditorPanel::get_toolbar()
{
return _editor->get_toolbar();
}
//--------------------------------------------------------------------------------------------------
bool SqlEditorPanel::is_dirty() const
{
return _editor->get_editor_control()->is_dirty();
}
//--------------------------------------------------------------------------------------------------
void SqlEditorPanel::check_external_file_changes()
{
time_t ts;
if (!_filename.empty() && file_mtime(_filename, ts))
{
if (ts > _file_timestamp)
{
// File was changed externally. For now we ignore local changes if the user chooses to reload.
std::string connection_description = _form->connection_descriptor().is_valid() ?
strfmt("(from connection to %s) ", _form->connection_descriptor()->name().c_str()) : "";
if (mforms::Utilities::show_warning("File Changed",
strfmt(_("File %s %swas changed from outside MySQL Workbench.\nWould you like to discard your changes and reload it?"),
_filename.c_str(), connection_description.c_str()),
"Reload File", "Ignore", "") == mforms::ResultOk
)
{
revert_to_saved();
}
else
{
_file_timestamp = ts;
}
}
}
}
//--------------------------------------------------------------------------------------------------
std::pair<const char*, size_t> SqlEditorPanel::text_data() const
{
return _editor->text_ptr();
}
//--------------------------------------------------------------------------------------------------
void SqlEditorPanel::set_title(const std::string &title)
{
_title = title;
grtobj()->name(_title);
mforms::AppView::set_title(title);
}
//--------------------------------------------------------------------------------------------------
void SqlEditorPanel::set_filename(const std::string &filename)
{
_filename = filename;
if (!filename.empty())
set_title(strip_extension(basename(filename)));
}
//--------------------------------------------------------------------------------------------------
void SqlEditorPanel::update_title()
{
if (!_is_scratch)
mforms::AppView::set_title(_title+(is_dirty() ? "*" : ""));
}
//--------------------------------------------------------------------------------------------------
/**
* Starts the auto completion list in the currently active editor. The content of this list is
* determined from various sources + the current query context.
*/
void SqlEditorPanel::list_members()
{
if (owner()->work_parser_context() != NULL)
editor_be()->show_auto_completion(false, owner()->work_parser_context());
}
//--------------------------------------------------------------------------------------------------
void SqlEditorPanel::jump_to_placeholder()
{
_editor->get_editor_control()->jump_to_next_placeholder();
}
//--------------------------------------------------------------------------------------------------
void SqlEditorPanel::query_started(bool retain_old_recordsets)
{
_busy = true;
_form->set_busy_tab(_form->sql_editor_panel_index(this));
// disable tabview reordering because we can get new tabs added at odd times if a query is running
_lower_tabview.set_allows_reordering(false);
// if we're already running the query, it's obvious there's no more need to autocomplete what we typed
_editor->cancel_auto_completion();
if (!retain_old_recordsets)
{
// close recordsets that were opened previously (unless they're pinned or something)
for (int i = _lower_tabview.page_count() - 1; i >= 0; --i)
{
SqlEditorResult *result = dynamic_cast<SqlEditorResult*>(_lower_tabview.get_page(i));
if (result)
{
if (result->pinned())
continue;
if (result->has_pending_changes())
continue;
// make sure that the result is docked here
int i = _lower_tabview.get_page_index(result);
if (i >= 0)
{
result->close();
result_removed();
}
}
}
}
_was_empty = (_lower_tabview.page_count() == 0);
}
//--------------------------------------------------------------------------------------------------
void SqlEditorPanel::query_finished()
{
_busy = false;
_form->set_busy_tab(-1);
_lower_tabview.set_allows_reordering(true);
_form->post_query_slot();
}
//--------------------------------------------------------------------------------------------------
void SqlEditorPanel::query_failed(const std::string &message)
{
log_error("Unhandled error during query: %s\n", message.c_str());
_busy = false;
_form->set_busy_tab(-1);
_lower_tabview.set_allows_reordering(true);
_form->post_query_slot();
}
//--------------------------------------------------------------------------------------------------
// Resultset management.
SqlEditorResult *SqlEditorPanel::active_result_panel()
{
return result_panel(_lower_tabview.get_active_tab());
}
//--------------------------------------------------------------------------------------------------
void SqlEditorPanel::lower_tab_switched()
{
_lower_dock.view_switched();
db_query_QueryEditorRef qeditor(grtobj());
SqlEditorResult *result = active_result_panel();
Recordset::Ref rset;
if (result && (rset = result->recordset()))
{
bool found = false;
for (size_t c = qeditor->resultPanels().count(), i = 0; i < c; i++)
{
if (mforms_from_grt(qeditor->resultPanels()[i]->dockingPoint()) == result->dock())
{
found = true;
qeditor->activeResultPanel(qeditor->resultPanels()[i]);
break;
}
}
if (!found)
qeditor->activeResultPanel(db_query_ResultPanelRef());
bool readonly = rset->is_readonly();
_tab_action_apply.show(!readonly);
_tab_action_revert.show(!readonly);
_tab_action_icon.show(readonly);
_tab_action_info.show(readonly);
bool edited = result->has_pending_changes();
_tab_action_apply.set_enabled(edited);
_tab_action_revert.set_enabled(edited);
if (readonly)
{
_tab_action_info.set_tooltip(rset->readonly_reason());
_tab_action_icon.set_tooltip(rset->readonly_reason());
}
}
else
{
qeditor->activeResultPanel(db_query_ResultPanelRef());
_tab_action_apply.show(true);
_tab_action_revert.show(true);
_tab_action_icon.show(false);
_tab_action_info.show(false);
_tab_action_apply.set_enabled(false);
_tab_action_revert.set_enabled(false);
}
#ifdef _WIN32
_editor->focus();
#endif
mforms::MenuBar *menu;
if ((menu = _form->get_menubar()))
{
Recordset::Ref rset(result ? result->recordset(): Recordset::Ref());
menu->set_item_enabled("query.save_edits", rset && rset->has_pending_changes());
menu->set_item_enabled("query.discard_edits", rset && rset->has_pending_changes());
menu->set_item_enabled("query.export", (bool)rset);
}
// if a lower tab view selection has changed, we make sure it's visible
if (!_busy && _lower_tabview.page_count() > 0) // if we're running a query, then let dock_result handle this
{
int position = _form->grt_manager()->get_app_option_int("DbSqlEditor:ResultSplitterPosition", 200);
if (position > _splitter.get_height() - 100)
position = _splitter.get_height() - 100;
_splitter.set_position(position);
}
}
//--------------------------------------------------------------------------------------------------
void SqlEditorPanel::on_recordset_context_menu_show(Recordset::Ptr rs_ptr)
{
Recordset::Ref rs(rs_ptr.lock());
if (rs)
{
grt::DictRef info(rs->grtm()->get_grt());
std::vector<int> selection(rs->selected_rows());
grt::IntegerListRef rows(info.get_grt());
for (std::vector<int>::const_iterator i = selection.begin(); i != selection.end(); ++i)
rows.insert(*i);
info.set("selected-rows", rows);
info.gset("selected-column", rs->selected_column());
info.set("menu", mforms_to_grt(info.get_grt(), rs->get_context_menu()));
db_query_QueryBufferRef qbuffer(grtobj());
if (qbuffer.is_valid() && db_query_QueryEditorRef::can_wrap(qbuffer))
{
db_query_QueryEditorRef qeditor(db_query_QueryEditorRef::cast_from(qbuffer));
for (size_t c = qeditor->resultPanels().count(), i = 0; i < c; i++)
{
db_query_ResultsetRef rset(qeditor->resultPanels()[i]->resultset());
if (rset.is_valid() && dynamic_cast<WBRecordsetResultset*>(rset->get_data())->recordset == rs)
{
grt::GRTNotificationCenter::get()->send_grt("GRNSQLResultsetMenuWillShow", rset, info);
break;
}
}
}
}
}
//--------------------------------------------------------------------------------------------------
/**
* Returns the number of all docked result panels in the editor panel.
*/
size_t SqlEditorPanel::result_panel_count()
{
return _lower_tabview.page_count();
}
//--------------------------------------------------------------------------------------------------
/**
* Returns the number of all docked resultset panels in the editor panel.
* That excludes all the explain, spatial etc. panels.
*/
size_t SqlEditorPanel::resultset_count()
{
return grtobj()->resultPanels().count();
}
//--------------------------------------------------------------------------------------------------
SqlEditorResult *SqlEditorPanel::result_panel(int i)
{
if (i >= 0 && i < _lower_tabview.page_count())
return dynamic_cast<SqlEditorResult*>(_lower_tabview.get_page(i));
return NULL;
}
//--------------------------------------------------------------------------------------------------
void SqlEditorPanel::add_panel_for_recordset_from_main(Recordset::Ref rset)
{
if (_form->grt_manager()->in_main_thread())
{
SqlEditorForm::RecordsetData *rdata = dynamic_cast<SqlEditorForm::RecordsetData*>(rset->client_data());
rdata->result_panel = add_panel_for_recordset(rset);
}
else
_form->grt_manager()->run_once_when_idle(dynamic_cast<bec::UIForm*>(this),
boost::bind(&SqlEditorPanel::add_panel_for_recordset_from_main, this, rset));
}
//--------------------------------------------------------------------------------------------------
SqlEditorResult* SqlEditorPanel::add_panel_for_recordset(Recordset::Ref rset)
{
SqlEditorResult *result = mforms::manage(new SqlEditorResult(this));
if (rset)
result->set_recordset(rset);
dock_result_panel(result);
return result;
}
//--------------------------------------------------------------------------------------------------
void SqlEditorPanel::dock_result_panel(SqlEditorResult *result)
{
result->grtobj()->owner(grtobj());
grtobj()->resultPanels().insert(result->grtobj());
if (Recordset::Ref rset = result->recordset())
result->set_title(rset->caption());
_lower_dock.dock_view(result);
_lower_dock.select_view(result);
_splitter.set_expanded(false, true);
if (_was_empty)
{
int position = _form->grt_manager()->get_app_option_int("DbSqlEditor:ResultSplitterPosition", 200);
if (position > _splitter.get_height() - 100)
position = _splitter.get_height() - 100;
_splitter.set_position(position);
// scroll the editor to make the cursor visible
_editor->get_editor_control()->set_caret_pos(_editor->get_editor_control()->get_caret_pos());
}
}
//--------------------------------------------------------------------------------------------------
void SqlEditorPanel::lower_tab_reordered(mforms::View *view, int from, int to)
{
if (from == to || dynamic_cast<SqlEditorResult*>(view) == NULL)
return;
// not all tabs will have a SqlEditorResult
// so the reordering gets more complicated, because actual reordering only happens if the relative
// position between the result objects changes...
// relative result object order changes always mean that a tab was reordered, but the other way around is
// not always true
size_t from_index = grtobj()->resultPanels().get_index(dynamic_cast<SqlEditorResult*>(view)->grtobj());
if (from_index == grt::BaseListRef::npos)
{
log_fatal("Result panel is not in resultPanels() list\n");
return;
}
// first build an array of result panel objects, in the same order as the tabview
std::vector<std::pair<db_query_ResultPanelRef, int> > panels;
for (int result_order = 0, i = 0; i < _lower_tabview.page_count(); i++)
{
SqlEditorResult *p = result_panel(i);
if (p)
panels.push_back(std::make_pair(p->grtobj(), result_order++));
else
panels.push_back(std::make_pair(db_query_ResultPanelRef(), 0));
}
int to_index = -1;
// now find out where we have to move to
if (from < to)
{
for (int i = to; i > from; i--)
{
if (panels[i].first.is_valid())
{
to_index = panels[i].second;
break;
}
}
}
else
{
for (int i = to; i < from; i++)
{
if (panels[i].first.is_valid())
{
to_index = panels[i].second;
break;
}
}
}
if (to_index < 0)
{
log_fatal("Unable to find suitable target index for reorder\n");
return;
}
grtobj()->resultPanels()->reorder(from_index, to_index);
}
//--------------------------------------------------------------------------------------------------
bool SqlEditorPanel::lower_tab_closing(int tab)
{
mforms::AppView *view = _lower_dock.view_at_index(tab);
if (view)
{
if (view->on_close())
{
view->close();
result_removed();
return true;
}
return false;
}
return true;
}
//--------------------------------------------------------------------------------------------------
void SqlEditorPanel::lower_tab_closed(mforms::View *page, int tab)
{
SqlEditorResult* rpage = dynamic_cast<SqlEditorResult*>(page);
if (rpage)
{
db_query_ResultPanelRef closed_panel(rpage->grtobj());
grtobj()->resultPanels().remove_value(closed_panel);
if (closed_panel->resultset().is_valid())
closed_panel->resultset()->reset_references();
closed_panel->reset_references();
}
}
//--------------------------------------------------------------------------------------------------
void SqlEditorPanel::result_removed()
{
if (_lower_tabview.page_count() == 0)
_splitter.set_expanded(false, false);
lower_tab_switched();
}
//--------------------------------------------------------------------------------------------------
std::list<SqlEditorResult*> SqlEditorPanel::dirty_result_panels()
{
std::list<SqlEditorResult*> results;
for (int c = _lower_tabview.page_count(), i = 0; i < c; i++)
{
SqlEditorResult *result = result_panel(i);
if (result && result->has_pending_changes())
results.push_back(result);
}
return results;
}
//--------------------------------------------------------------------------------------------------
void SqlEditorPanel::tab_menu_will_show()
{
SqlEditorResult *result(result_panel(_lower_tabview.get_menu_tab()));
_lower_tab_menu.set_item_enabled("rename", result != NULL);
_lower_tab_menu.set_item_enabled("pin", result != NULL);
_lower_tab_menu.set_item_checked("pin", result && result->pinned());
if (_lower_tabview.page_count() > 1)
_lower_tab_menu.set_item_enabled("close_others", true); // close others
else
_lower_tab_menu.set_item_enabled("close_others", false); // close others
}
//--------------------------------------------------------------------------------------------------
void SqlEditorPanel::rename_tab_clicked()
{
int tab = _lower_tabview.get_menu_tab();
SqlEditorResult *result = result_panel(tab);
if (result)
{
std::string title;
if (mforms::Utilities::request_input(_("Rename Result Tab"), "Enter a new name for the result tab:", result->caption().c_str(), title))
_lower_tabview.set_tab_title(tab, title);
}
}
//--------------------------------------------------------------------------------------------------
void SqlEditorPanel::pin_tab_clicked()
{
int tab = _lower_tabview.get_menu_tab();
SqlEditorResult *result = result_panel(tab);
if (result)
result->set_pinned(!result->pinned());
}
//--------------------------------------------------------------------------------------------------
bool SqlEditorPanel::is_pinned(int tab)
{
SqlEditorResult *result = result_panel(tab);
if (result)
return result->pinned();
return false;
}
//--------------------------------------------------------------------------------------------------
void SqlEditorPanel::tab_pinned(int tab, bool flag)
{
SqlEditorResult *result = result_panel(tab);
if (result)
result->set_pinned(flag);
}
//--------------------------------------------------------------------------------------------------
void SqlEditorPanel::close_tab_clicked()
{
lower_tab_closing(_lower_tabview.get_menu_tab());
}
//--------------------------------------------------------------------------------------------------
void SqlEditorPanel::close_other_tabs_clicked()
{
int tab = _lower_tabview.get_menu_tab();
for (int i = _lower_tabview.page_count() - 1; i >= 0; --i)
{
if (i != tab)
lower_tab_closing(i);
}
}
//--------------------------------------------------------------------------------------------------
|