mode-mysql.js 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. ace.define("ace/mode/doc_comment_highlight_rules",[], function(require, exports, module) {
  2. "use strict";
  3. var oop = require("../lib/oop");
  4. var TextHighlightRules = require("./text_highlight_rules").TextHighlightRules;
  5. var DocCommentHighlightRules = function() {
  6. this.$rules = {
  7. "start" : [ {
  8. token : "comment.doc.tag",
  9. regex : "@[\\w\\d_]+" // TODO: fix email addresses
  10. },
  11. DocCommentHighlightRules.getTagRule(),
  12. {
  13. defaultToken : "comment.doc",
  14. caseInsensitive: true
  15. }]
  16. };
  17. };
  18. oop.inherits(DocCommentHighlightRules, TextHighlightRules);
  19. DocCommentHighlightRules.getTagRule = function(start) {
  20. return {
  21. token : "comment.doc.tag.storage.type",
  22. regex : "\\b(?:TODO|FIXME|XXX|HACK)\\b"
  23. };
  24. };
  25. DocCommentHighlightRules.getStartRule = function(start) {
  26. return {
  27. token : "comment.doc", // doc comment
  28. regex : "\\/\\*(?=\\*)",
  29. next : start
  30. };
  31. };
  32. DocCommentHighlightRules.getEndRule = function (start) {
  33. return {
  34. token : "comment.doc", // closing comment
  35. regex : "\\*\\/",
  36. next : start
  37. };
  38. };
  39. exports.DocCommentHighlightRules = DocCommentHighlightRules;
  40. });
  41. ace.define("ace/mode/mysql_highlight_rules",[], function(require, exports, module) {
  42. var oop = require("../lib/oop");
  43. var lang = require("../lib/lang");
  44. var DocCommentHighlightRules = require("./doc_comment_highlight_rules").DocCommentHighlightRules;
  45. var TextHighlightRules = require("./text_highlight_rules").TextHighlightRules;
  46. var MysqlHighlightRules = function() {
  47. var mySqlKeywords = /*sql*/ "alter|and|as|asc|between|count|create|delete|desc|distinct|drop|from|having|in|insert|into|is|join|like|not|on|or|order|select|set|table|union|update|values|where"
  48. + "|accessible|action|add|after|algorithm|all|analyze|asensitive|at|authors|auto_increment|autocommit|avg|avg_row_length|before|binary|binlog|both|btree|cache|call|cascade|cascaded|case|catalog_name|chain|change|changed|character|check|checkpoint|checksum|class_origin|client_statistics|close|coalesce|code|collate|collation|collations|column|columns|comment|commit|committed|completion|concurrent|condition|connection|consistent|constraint|contains|continue|contributors|convert|cross|current_date|current_time|current_timestamp|current_user|cursor|data|database|databases|day_hour|day_microsecond|day_minute|day_second|deallocate|dec|declare|default|delay_key_write|delayed|delimiter|des_key_file|describe|deterministic|dev_pop|dev_samp|deviance|directory|disable|discard|distinctrow|div|dual|dumpfile|each|elseif|enable|enclosed|end|ends|engine|engines|enum|errors|escape|escaped|even|event|events|every|execute|exists|exit|explain|extended|fast|fetch|field|fields|first|flush|for|force|foreign|found_rows|full|fulltext|function|general|global|grant|grants|group|groupby_concat|handler|hash|help|high_priority|hosts|hour_microsecond|hour_minute|hour_second|if|ignore|ignore_server_ids|import|index|index_statistics|infile|inner|innodb|inout|insensitive|insert_method|install|interval|invoker|isolation|iterate|key|keys|kill|language|last|leading|leave|left|level|limit|linear|lines|list|load|local|localtime|localtimestamp|lock|logs|low_priority|master|master_heartbeat_period|master_ssl_verify_server_cert|masters|match|max|max_rows|maxvalue|message_text|middleint|migrate|min|min_rows|minute_microsecond|minute_second|mod|mode|modifies|modify|mutex|mysql_errno|natural|next|no|no_write_to_binlog|offline|offset|one|online|open|optimize|option|optionally|out|outer|outfile|pack_keys|parser|partition|partitions|password|phase|plugin|plugins|prepare|preserve|prev|primary|privileges|procedure|processlist|profile|profiles|purge|query|quick|range|read|read_write|reads|real|rebuild|recover|references|regexp|relaylog|release|remove|rename|reorganize|repair|repeatable|replace|require|resignal|restrict|resume|return|returns|revoke|right|rlike|rollback|rollup|row|row_format|rtree|savepoint|schedule|schema|schema_name|schemas|second_microsecond|security|sensitive|separator|serializable|server|session|share|show|signal|slave|slow|smallint|snapshot|soname|spatial|specific|sql|sql_big_result|sql_buffer_result|sql_cache|sql_calc_found_rows|sql_no_cache|sql_small_result|sqlexception|sqlstate|sqlwarning|ssl|start|starting|starts|status|std|stddev|stddev_pop|stddev_samp|storage|straight_join|subclass_origin|sum|suspend|table_name|table_statistics|tables|tablespace|temporary|terminated|to|trailing|transaction|trigger|triggers|truncate|uncommitted|undo|uninstall|unique|unlock|upgrade|usage|use|use_frm|user|user_resources|user_statistics|using|utc_date|utc_time|utc_timestamp|value|variables|varying|view|views|warnings|when|while|with|work|write|xa|xor|year_month|zerofill|begin|do|then|else|loop|repeat";
  49. var builtins = "by|bool|boolean|bit|blob|decimal|double|enum|float|long|longblob|longtext|medium|mediumblob|mediumint|mediumtext|time|timestamp|tinyblob|tinyint|tinytext|text|bigint|int|int1|int2|int3|int4|int8|integer|float|float4|float8|double|char|varbinary|varchar|varcharacter|precision|date|datetime|year|unsigned|signed|numeric|ucase|lcase|mid|len|round|rank|now|format|coalesce|ifnull|isnull|nvl";
  50. var variable = "charset|clear|connect|edit|ego|exit|go|help|nopager|notee|nowarning|pager|print|prompt|quit|rehash|source|status|system|tee";
  51. var keywordMapper = this.createKeywordMapper({
  52. "support.function": builtins,
  53. "keyword": mySqlKeywords,
  54. "constant": "false|true|null|unknown|date|time|timestamp|ODBCdotTable|zerolessFloat",
  55. "variable.language": variable
  56. }, "identifier", true);
  57. function string(rule) {
  58. var start = rule.start;
  59. var escapeSeq = rule.escape;
  60. return {
  61. token: "string.start",
  62. regex: start,
  63. next: [
  64. {token: "constant.language.escape", regex: escapeSeq},
  65. {token: "string.end", next: "start", regex: start},
  66. {defaultToken: "string"}
  67. ]
  68. };
  69. }
  70. this.$rules = {
  71. "start" : [ {
  72. token : "comment", regex : "(?:-- |#).*$"
  73. },
  74. string({start: '"', escape: /\\[0'"bnrtZ\\%_]?/}),
  75. string({start: "'", escape: /\\[0'"bnrtZ\\%_]?/}),
  76. DocCommentHighlightRules.getStartRule("doc-start"),
  77. {
  78. token : "comment", // multi line comment
  79. regex : /\/\*/,
  80. next : "comment"
  81. }, {
  82. token : "constant.numeric", // hex
  83. regex : /0[xX][0-9a-fA-F]+|[xX]'[0-9a-fA-F]+'|0[bB][01]+|[bB]'[01]+'/
  84. }, {
  85. token : "constant.numeric", // float
  86. regex : "[+-]?\\d+(?:(?:\\.\\d*)?(?:[eE][+-]?\\d+)?)?\\b"
  87. }, {
  88. token : keywordMapper,
  89. regex : "[a-zA-Z_$][a-zA-Z0-9_$]*\\b"
  90. }, {
  91. token : "constant.class",
  92. regex : "@@?[a-zA-Z_$][a-zA-Z0-9_$]*\\b"
  93. }, {
  94. token : "constant.buildin",
  95. regex : "`[^`]*`"
  96. }, {
  97. token : "keyword.operator",
  98. regex : "\\+|\\-|\\/|\\/\\/|%|<@>|@>|<@|&|\\^|~|<|>|<=|=>|==|!=|<>|="
  99. }, {
  100. token : "paren.lparen",
  101. regex : "[\\(]"
  102. }, {
  103. token : "paren.rparen",
  104. regex : "[\\)]"
  105. }, {
  106. token : "text",
  107. regex : "\\s+"
  108. } ],
  109. "comment" : [
  110. {token : "comment", regex : "\\*\\/", next : "start"},
  111. {defaultToken : "comment"}
  112. ]
  113. };
  114. this.embedRules(DocCommentHighlightRules, "doc-", [ DocCommentHighlightRules.getEndRule("start") ]);
  115. this.normalizeRules();
  116. };
  117. oop.inherits(MysqlHighlightRules, TextHighlightRules);
  118. exports.MysqlHighlightRules = MysqlHighlightRules;
  119. });
  120. ace.define("ace/mode/mysql",[], function(require, exports, module) {
  121. var oop = require("../lib/oop");
  122. var TextMode = require("../mode/text").Mode;
  123. var MysqlHighlightRules = require("./mysql_highlight_rules").MysqlHighlightRules;
  124. var Mode = function() {
  125. this.HighlightRules = MysqlHighlightRules;
  126. this.$behaviour = this.$defaultBehaviour;
  127. };
  128. oop.inherits(Mode, TextMode);
  129. (function() {
  130. this.lineCommentStart = ["--", "#"]; // todo space
  131. this.blockComment = {start: "/*", end: "*/"};
  132. this.$id = "ace/mode/mysql";
  133. }).call(Mode.prototype);
  134. exports.Mode = Mode;
  135. });
  136. (function() {
  137. ace.require(["ace/mode/mysql"], function(m) {
  138. if (typeof module == "object" && typeof exports == "object" && module) {
  139. module.exports = m;
  140. }
  141. });
  142. })();