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
|
/*
* Copyright (c) 2007, 2014, 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.
#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 functions.
#define AC_VIEW_IMAGE 6
#define AC_COLUMN_IMAGE 7
#define AC_OPERATOR_IMAGE 8
#define AC_ENGINE_IMAGE 9
/**
* The central MySQL editor class.
*/
class WBPUBLICBACKEND_PUBLIC_FUNC MySQLEditor : public base::trackable
{
public:
enum ContentType
{
ContentTypeGeneral,
ContentTypeTrigger,
ContentTypeView,
ContentTypeRoutine,
ContentTypeEvent,
};
struct TableReference
{
std::string schema;
std::string table;
std::string alias;
};
enum AutoCompletionWantedParts
{
CompletionWantNothing = 0,
CompletionWantMajorKeywords = 1 << 0, // Keywords that can start a query.
CompletionWantKeywords = 1 << 1,
CompletionWantExprStartKeywords = 1 << 2, // Keywords allowed to begin an expression. Subset of all normal keywords.
CompletionWantExprInnerKeywords = 1 << 3, // Like the exp start keywords plus those between two expressions.
CompletionWantRuntimeFunctions = 1 << 4,
CompletionWantFunctions = 1 << 5,
CompletionWantProcedures = 1 << 6,
CompletionWantSchemas = 1 << 7,
CompletionWantTables = 1 << 8, // Tables + Views actually.
CompletionWantColumns = 1 << 9,
CompletionWantEvents = 1 << 10, // TODO
CompletionWantTriggers = 1 << 11, // TODO
CompletionWantIndexes = 1 << 12, // TODO
CompletionWantEngines = 1 << 13,
CompletionWantUsers = 1 << 14, // TODO
// Keywords we know that must appear.
CompletionWantSelect = 1 << 16, // For sub queries.
CompletionWantBy = 1 << 17, // After ORDER and GROUP (not after LOGFILE, though).
};
#define CompletionWantAKeyword (AutoCompletionWantedParts) \
(\
CompletionWantMajorKeywords | CompletionWantKeywords | CompletionWantExprStartKeywords |\
CompletionWantExprInnerKeywords | CompletionWantSelect | CompletionWantBy\
)
// Context structure for code completion results and token info. Located here as we need it also
// for unit testing. Otherwise it is completely internal.
struct AutoCompletionContext
{
AutoCompletionWantedParts wanted_parts;
long version; // The server version.
bool check_identifier; // Sometimes we should not try to parse identifiers.
bool in_table_reference; // Don't include aliases if we are in a table reference.
bool qualified_identifier; // In a qualified identifier somewhere after a dot.
// There can be at most 3 id parts in a qualified identifier (schema.table.column). But due to
// the ambiguity of id.id, we can have different schemas for table and column lookup.
std::string table_schema;
std::string column_schema;
std::string table;
std::string column;
// Position + other info of the token at the caret.
size_t token_line;
size_t token_start;
size_t token_length;
unsigned int token_type;
std::string token;
// Current caret position, statement to parse and input typed by the user.
size_t line;
size_t offset;
std::string statement;
std::string typed_part;
std::vector<TableReference> references; // As in FROM, UPDATE etc.
AutoCompletionContext()
{
wanted_parts = CompletionWantMajorKeywords;
version = 50510;
check_identifier = true;
in_table_reference = false;
qualified_identifier = false;
token_line = 0;
token_start = 0;
token_length = 0;
token_type = 0;
line = 0;
offset = 0;
};
};
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);
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, MySQLRecognizer *recognizer);
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);
bool create_auto_completion_list(AutoCompletionContext &context, MySQLRecognizer *recognizer);
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);
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);
bool fill_auto_completion_keywords(std::vector<std::pair<int, std::string> > &entries,
AutoCompletionWantedParts parts, bool upcase_keywords);
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 _last_ac_statement; // The last statement we used for auto completion.
std::string _sql_mode;
};
|