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
|
/*
* Copyright (c) 2007, 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
*/
#pragma once
#include "wbpublic_public_interface.h"
#include "base/trackable.h"
#ifndef _WIN32
#include <memory>
#include <set>
#include <boost/shared_ptr.hpp>
#include <boost/weak_ptr.hpp>
#include <boost/enable_shared_from_this.hpp>
#include <boost/function.hpp>
#include "grts/structs.db.mgmt.h"
#include "grts/structs.db.query.h"
#endif
#include "grtsqlparser/mysql_parser_services.h"
#include "grtdb/db_helpers.h"
namespace bec {
class GRTManager;
}
namespace mforms {
class CodeEditor;
class FindPanel;
class Menu;
class View;
class CodeEditorConfig;
class ToolBar;
class DropDelegate;
};
class AutoCompleteCache;
class MySQLRecognizer;
// Identifiers for images used in auto completion lists.
// In the header file for unit tests.
#define AC_KEYWORD_IMAGE 1
#define AC_SCHEMA_IMAGE 2
#define AC_TABLE_IMAGE 3
#define AC_ROUTINE_IMAGE 4 // For SQL stored procedures + functions.
#define AC_FUNCTION_IMAGE 5 // For MySQL library (runtime) functions and UDFs.
#define AC_VIEW_IMAGE 6
#define AC_COLUMN_IMAGE 7
#define AC_OPERATOR_IMAGE 8
#define AC_ENGINE_IMAGE 9
#define AC_TRIGGER_IMAGE 10
#define AC_LOGFILE_GROUP_IMAGE 11
#define AC_USER_VAR_IMAGE 12
#define AC_SYSTEM_VAR_IMAGE 13
#define AC_TABLESPACE_IMAGE 14
#define AC_EVENT_IMAGE 15
#define AC_INDEX_IMAGE 16
#define AC_USER_IMAGE 17
#define AC_CHARSET_IMAGE 18
#define AC_COLLATION_IMAGE 19
/**
* The central MySQL editor class.
*/
class WBPUBLICBACKEND_PUBLIC_FUNC MySQLEditor : public base::trackable
{
public:
enum ContentType
{
ContentTypeGeneral,
ContentTypeTrigger,
ContentTypeView,
ContentTypeRoutine,
ContentTypeEvent,
};
typedef boost::shared_ptr<MySQLEditor> Ref;
typedef boost::weak_ptr<MySQLEditor> Ptr;
static Ref create(grt::GRT *grt, parser::ParserContext::Ref syntax_check_context,
parser::ParserContext::Ref autocopmlete_context,
db_query_QueryBufferRef grtobj = db_query_QueryBufferRef());
virtual ~MySQLEditor();
db_query_QueryBufferRef grtobj();
void set_base_toolbar(mforms::ToolBar *toolbar);
mforms::View* get_container();
mforms::ToolBar* get_toolbar(bool include_file_actions = true);
mforms::CodeEditor* get_editor_control();
mforms::FindPanel* get_find_panel();
mforms::CodeEditorConfig* get_editor_settings();
void show_special_chars(bool flag);
void enable_word_wrap(bool flag);
bec::GRTManager *grtm();
int int_option(std::string name);
std::string string_option(std::string name);
void set_current_schema(const std::string &schema);
std::string sql();
std::pair<const char*, size_t> text_ptr();
void sql(const char *sql);
bool empty();
void append_text(const std::string &text);
std::string current_statement();
bool get_current_statement_range(size_t &start, size_t &end, bool strict = false);
size_t cursor_pos();
std::pair<size_t, size_t> cursor_pos_row_column(bool local);
void set_cursor_pos(size_t position);
bool selected_range(size_t &start, size_t &end);
void set_selected_range(size_t start, size_t end);
bool is_refresh_enabled() const;
void set_refresh_enabled(bool val);
bool is_sql_check_enabled() const;
void set_sql_check_enabled(bool val);
void show_auto_completion(bool auto_choose_single, parser::ParserContext::Ref parser_context);
std::vector<std::pair<int, std::string> > update_auto_completion(const std::string &typed_part);
void cancel_auto_completion();
void set_auto_completion_cache(AutoCompleteCache *cache);
std::string selected_text();
void set_selected_text(const std::string &new_text);
void insert_text(const std::string &new_text);
boost::signals2::signal<void ()>* text_change_signal();
std::string sql_mode() { return _sql_mode; };
void set_sql_mode(const std::string &value);
void set_server_version(GrtVersionRef version);
void restrict_content_to(ContentType type);
bool has_sql_errors() const;
void sql_check_progress_msg_throttle(double val);
void stop_processing();
void focus();
void register_file_drop_for(mforms::DropDelegate *target);
void set_continue_on_error(bool value);
protected:
MySQLEditor(grt::GRT *grt, parser::ParserContext::Ref syntax_check_context,
parser::ParserContext::Ref autocopmlete_context);
private:
class Private;
Private *d; // d-pointer idiom.
void set_grtobj(db_query_QueryBufferRef grtobj);
void setup_auto_completion();
void* run_code_completion();
std::string get_written_part(size_t position);
void text_changed(int position, int length, int lines_changed, bool added);
void char_added(int char_code);
void dwell_event(bool started, size_t position, int x, int y);
void setup_editor_menu();
void editor_menu_opening();
void activate_context_menu_item(const std::string &name);
void create_editor_config_for_version(GrtVersionRef version);
bool start_sql_processing();
bool do_statement_split_and_check(int id); // Run in worker thread.
int on_report_sql_statement_border(int begin_lineno, int begin_line_pos, int end_lineno, int end_line_pos, int tag);
int on_sql_error(int lineno, int tok_line_pos, int tok_len, const std::string &msg, int tag);
int on_sql_check_progress(float progress, const std::string &msg, int tag);
void* splitting_done();
void* update_error_markers();
bool code_completion_enabled();
bool auto_start_code_completion();
bool make_keywords_uppercase();
// These members are shared with sql_editor_autocomplete.cpp, so they cannot go into the private class.
// Entries determined the last time we started auto completion. The actually shown list
// is derived from these entries filtered by the current input.
std::vector<std::pair<int, std::string> > _auto_completion_entries;
AutoCompleteCache *_auto_completion_cache;
mforms::CodeEditor* _code_editor;
mforms::CodeEditorConfig *_editor_config;
std::string _current_schema;
std::string _sql_mode;
bool _continue_on_error;
};
|