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
|
/*
* Copyright (c) 2007, 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
*/
#pragma once
#include "grtpp_notifications.h"
#include "wbpublic_public_interface.h"
#include "grt/editor_base.h"
#include "grtsqlparser/mysql_parser_services.h"
namespace bec {
class WBPUBLICBACKEND_PUBLIC_FUNC DBObjectEditorBE : public BaseEditor, public grt::GRTObserver
{
public:
virtual ~DBObjectEditorBE();
virtual bool should_close_on_delete_of(const std::string &oid);
virtual db_DatabaseObjectRef get_dbobject() { return db_DatabaseObjectRef::cast_from(get_object()); };
virtual std::string get_name();
virtual void set_name(const std::string &name);
virtual std::string get_comment();
virtual void set_comment(const std::string &descr);
virtual std::string get_sql();
virtual void set_sql(const std::string &sql);
virtual bool is_sql_commented();
virtual void set_sql_commented(bool flag);
virtual bool has_editor();
virtual MySQLEditor::Ref get_sql_editor();
virtual void reset_editor_undo_stack();
db_SchemaRef get_schema();
virtual std::string get_schema_name();
db_CatalogRef get_catalog();
db_SchemaRef get_schema_with_name(const std::string &schema_name);
virtual std::vector<std::string> get_all_table_names();
virtual std::vector<std::string> get_all_schema_names();
virtual std::vector<std::string> get_schema_table_names();
virtual std::vector<std::string> get_table_column_names(const std::string &table_name);
virtual std::vector<std::string> get_table_column_names(const db_TableRef &table);
// charsets and collations
virtual std::vector<std::string> get_charset_collation_list();
bool parse_charset_collation(const std::string &str, std::string &charset, std::string &collation);
std::string format_charset_collation(const std::string &charset, const std::string &collation);
void update_change_date();
void send_refresh();
void set_sql_mode(const std::string &value);
virtual bool is_editing_live_object();
virtual void apply_changes_to_live_object();
virtual void refresh_live_object();
virtual bool can_close();
boost::function<bool (DBObjectEditorBE*, bool)> on_apply_changes_to_live_object;
boost::function<void (DBObjectEditorBE*)> on_refresh_live_object;
boost::function<void (DBObjectEditorBE*)> on_create_live_table_stubs;
boost::function<bool (DBObjectEditorBE*, std::string&, std::string&)> on_expand_live_table_stub;
protected:
parser::ParserContext::Ref _parser_context;
parser::ParserContext::Ref _autocompletion_context; // Temporary.
parser::MySQLParserServices::Ref _parser_services;
DBObjectEditorBE(GRTManager *grtm, const db_DatabaseObjectRef &object);
private:
MySQLEditor::Ref _sql_editor;
db_CatalogRef _catalog;
boost::signals2::scoped_connection _val_notify_conn;
void notify_from_validation(const grt::Validator::Tag& tag, const grt::ObjectRef&, const std::string&, const int level);//level is grt::MessageType
// Real-time validation part
grt::MessageType _last_validation_check_status;
std::string _last_validation_message;
virtual void handle_grt_notification(const std::string &name, grt::ObjectRef sender, grt::DictRef info);
};
};
|