File: mysql-scanner.h

package info (click to toggle)
mysql-workbench 6.3.8%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 113,932 kB
  • ctags: 87,814
  • sloc: ansic: 955,521; cpp: 427,465; python: 59,728; yacc: 59,129; xml: 54,204; sql: 7,091; objc: 965; makefile: 638; sh: 613; java: 237; perl: 30; ruby: 6; php: 1
file content (102 lines) | stat: -rw-r--r-- 3,144 bytes parent folder | download
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
/*
 * Copyright (c) 2013, 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 "mysql-parser-common.h"

/**
 * C++ interface for the ANTLR based MySQL lexer.
 * This scanner class is not needed for the MySQLRecognizer class (it uses the raw lexer)
 * but provides tokenizing functionality beside it.
 */
class MYSQL_PARSER_PUBLIC_FUNC MySQLScanner : public MySQLRecognitionBase
{
public:
  MySQLScanner(const char *text, size_t length, bool is_utf8, long server_version,
               const std::string &sql_mode_string, const std::set<std::string> &charsets);
  virtual ~MySQLScanner();

  static MySQLQueryType getQueryType(const char *text, size_t length, bool is_utf8, long server_version);
  void reset();

  // Informations about the current token.
  MySQLToken token();
  uint32_t token_type();
  uint32_t token_line();
  size_t token_start();
  size_t token_end();
  size_t token_channel();
  std::string token_text();

  void next(bool skip_hidden = true);
  void previous(bool skip_hidden = true);
  bool skipIf(uint32_t token);

  size_t position();
  void seek(size_t position);
  void seek(size_t line, size_t offset);
  uint32_t look_around(int offset, bool ignore_hidden);

  bool is(uint32_t type);
  bool is_keyword();
  bool is_relation();
  bool is_number();
  bool is_operator();
  bool is_identifier();
  bool is_separator();

  void set_server_version(long version);
  long get_server_version();
  void set_sql_mode(const std::string &new_mode);
  unsigned int get_sql_mode_flags();
  
  virtual std::string text();
  virtual const char* lineStart();

protected:
  void setup();

private:
  class Private;
  Private *d;
};

/**
* Similar to the scanner class but using only the absolute minimum setup to determine the
* type of a query in a given sql text, to make it as fast as possible.
*/
class MYSQL_PARSER_PUBLIC_FUNC MySQLQueryIdentifier : public MySQLRecognitionBase
{
public:
  MySQLQueryIdentifier(long server_version, const std::string &sql_mode_string, const std::set<std::string> &charsets);
  virtual ~MySQLQueryIdentifier();

  MySQLQueryType getQueryType(const char *text, size_t length, bool is_utf8);

  virtual std::string text() { return "";  };
  virtual const char* lineStart() { return NULL;  };

private:
  class Private;
  Private *d;

  bool skipDefiner(pANTLR3_TOKEN_SOURCE tokenSource, pANTLR3_COMMON_TOKEN &token);
  MySQLQueryType determineQueryType(pANTLR3_TOKEN_SOURCE tokenSource);
};