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
|
#include "wb_config.h"
#include "linux_utilities/plugin_editor_base.h"
#include "../backend/mysql_routine_editor.h"
#include "grtdb/db_object_helpers.h"
#include "treemodel_wrapper.h"
#include "sql_editor_fe.h"
#include "mysql_editor_priv_page.h"
//==============================================================================
//
//==============================================================================
class DbMySQLRoutineEditor : public PluginEditorBase
{
MySQLRoutineEditorBE *_be;
DbMySQLEditorPrivPage *_privs_page;
virtual bec::BaseEditor *get_be();
void sql_changed(const std::string& sql);
void set_sql_from_be();
virtual bool can_close() { return _be->can_close(); }
public:
DbMySQLRoutineEditor(grt::Module *m, bec::GRTManager *grtm, const grt::BaseListRef &args);
virtual ~DbMySQLRoutineEditor();
virtual void do_refresh_form_data();
virtual std::string get_title();
virtual bool switch_edited_object(bec::GRTManager *grtm, const grt::BaseListRef &args);
SqlEditorFE _sql_editor;
};
DbMySQLRoutineEditor::DbMySQLRoutineEditor(grt::Module *m, bec::GRTManager *grtm, const grt::BaseListRef &args)
: PluginEditorBase(m, grtm, args, "modules/data/editor_routine.glade")
, _be(new MySQLRoutineEditorBE(grtm, db_mysql_RoutineRef::cast_from(args[0]), get_rdbms_for_db_object(args[0])))
{
xml()->get_widget("mysql_routine_editor_notebook", _editor_notebook);
Gtk::Image *image;
xml()->get_widget("routine_editor_image", image);
image->set(ImageCache::get_instance()->image_from_filename("db.Routine.editor.48x48.png", false));
_be->set_refresh_ui_slot(sigc::mem_fun(this, &DbMySQLRoutineEditor::refresh_form_data));
_editor_notebook->reparent(*this);
_editor_notebook->show();
_sql_editor.be(_be->get_sql_editor());
Gtk::VBox *ddl_win;
xml()->get_widget("routine_ddl", ddl_win);
_sql_editor.container().set_size_request(-1, 100);
ddl_win->add(_sql_editor.container());
add_sqleditor_text_change_timer(&_sql_editor, sigc::mem_fun(this, &DbMySQLRoutineEditor::sql_changed));
_be->set_sql_parser_err_cb(sigc::mem_fun(&_sql_editor, &SqlEditorFE::process_sql_error));
ddl_win->resize_children();
if (!is_editing_live_object())
{
_privs_page = new DbMySQLEditorPrivPage(_be);
_editor_notebook->append_page(_privs_page->page(), "Privileges");
}
else
{
_privs_page= NULL;
}
refresh_form_data();
set_sql_from_be();
show_all();
}
//------------------------------------------------------------------------------
DbMySQLRoutineEditor::~DbMySQLRoutineEditor()
{
delete _privs_page;
delete _be;
}
//------------------------------------------------------------------------------
void DbMySQLRoutineEditor::set_sql_from_be()
{
_sql_editor.set_text(_be->get_sql_definition_header() + _be->get_sql());
}
//------------------------------------------------------------------------------
bool DbMySQLRoutineEditor::switch_edited_object(bec::GRTManager *grtm, const grt::BaseListRef &args)
{
MySQLRoutineEditorBE* old_be = _be;
_be = new MySQLRoutineEditorBE(grtm, db_mysql_RoutineRef::cast_from(args[0]), get_rdbms_for_db_object(args[0]));
_be->set_refresh_ui_slot(sigc::mem_fun(this, &DbMySQLRoutineEditor::refresh_form_data));
_be->set_sql_parser_err_cb(sigc::mem_fun(&_sql_editor, &SqlEditorFE::process_sql_error));
if (!is_editing_live_object())
_privs_page->switch_be(_be);
_sql_editor.be(_be->get_sql_editor());
set_sql_from_be();
refresh_form_data();
delete old_be;
return true;
}
//------------------------------------------------------------------------------
std::string DbMySQLRoutineEditor::get_title()
{
return strfmt(_("Routine: %s"), _be->get_name().c_str());
}
//------------------------------------------------------------------------------
bec::BaseEditor *DbMySQLRoutineEditor::get_be()
{
return _be;
}
//------------------------------------------------------------------------------
void DbMySQLRoutineEditor::do_refresh_form_data()
{
Gtk::Entry* entry(0);
xml()->get_widget("routine_name", entry);
if (entry->get_text() != _be->get_name())
{
entry->set_text(_be->get_name());
_signal_title_changed.emit(get_title());
}
// don't reset the sql from BE when refreshing because the parser modifies it
// set_sql_from_be();
if (_be->get_sql_editor()->is_refresh_enabled())
{
_be->get_sql_editor()->is_refresh_enabled(false);
set_sql_from_be();
}
_sql_editor.check_sql();
if (!is_editing_live_object())
_privs_page->refresh();
}
//------------------------------------------------------------------------------
void DbMySQLRoutineEditor::sql_changed(const std::string& sql)
{
_sql_editor.reset_sql_check_state();
_be->set_sql(sql, false);
if (_sql_editor.sql_got_errors())
{
}
else
{
}
}
//------------------------------------------------------------------------------
extern "C"
{
GUIPluginBase *createDbMysqlRoutineEditor(grt::Module *m, bec::GRTManager *grtm, const grt::BaseListRef &args)
{
return Gtk::manage(new DbMySQLRoutineEditor(m, grtm, args));
}
};
|