Class: AnbtSql::Formatter
- Inherits:
-
Object
- Object
- AnbtSql::Formatter
- Includes:
- StringUtil
- Defined in:
- lib/anbt-sql-formatter/formatter.rb
Instance Method Summary collapse
-
#concat_operator_for_oracle(tokens) ⇒ Object
. [“(”, “+”, “)”] => [“(+)”].
-
#format(sql_str) ⇒ Object
与えられたSQLを整形した文字列を返します。.
- #format_list(tokens) ⇒ Object
- #format_list_main_loop(tokens) ⇒ Object
-
#initialize(rule) ⇒ Formatter
constructor
A new instance of Formatter.
-
#insert_return_and_indent(tokens, index, indent, opt = nil) ⇒ Object
index の箇所のトークンの前に挿入します。.
- #insert_space_between_tokens(tokens) ⇒ Object
- #modify_keyword_case(tokens) ⇒ Object
- #remove_symbol_side_space(tokens) ⇒ Object
-
#special_treatment_for_parenthesis_with_one_element(tokens) ⇒ Object
before: […, “(”, space, “X”, space, “)”, …] after: […, “(X)”, …] ただし、これでは “(X)” という一つの symbol トークンになってしまう。 整形だけが目的ならそれでも良いが、 せっかくなので symbol/X/symbol と分けたい。.
- #split_to_statements(tokens) ⇒ Object
Methods included from StringUtil
Constructor Details
Instance Method Details
#concat_operator_for_oracle(tokens) ⇒ Object
.
["(", "+", ")"] => ["(+)"]
99 100 101 102 103 104 105 106 107 108 109 110 111 112 |
# File 'lib/anbt-sql-formatter/formatter.rb', line 99 def concat_operator_for_oracle(tokens) index = 0 # Length of tokens changes in loop! while index < tokens.size - 2 if (tokens[index ].string == "(" && tokens[index + 1].string == "+" && tokens[index + 2].string == ")") tokens[index].string = "(+)" ArrayUtil.remove(tokens, index + 1) ArrayUtil.remove(tokens, index + 1) end index += 1 end end |
#format(sql_str) ⇒ Object
与えられたSQLを整形した文字列を返します。
改行で終了するSQL文は、整形後も改行付きであるようにします。
- sql_str
-
整形前のSQL文
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 |
# File 'lib/anbt-sql-formatter/formatter.rb', line 49 def format(sql_str) @function_bracket.clear() begin is_sql_ends_with_new_line = false if sql_str.end_with?("\n") is_sql_ends_with_new_line = true end tokens = @parser.parse(sql_str) statements = split_to_statements(tokens) statements = statements.map{|inner_tokens| format_list(inner_tokens) } # 変換結果を文字列に戻す。 after = statements.map{|inner_tokens| inner_tokens.map{ |t| t.string }.join("") }.join("\n;\n\n").sub( /\n\n\Z/, "" ) after += "\n" if is_sql_ends_with_new_line return after rescue => e raise AnbtSql::FormatterException.new, e., e.backtrace end end |
#format_list(tokens) ⇒ Object
327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 |
# File 'lib/anbt-sql-formatter/formatter.rb', line 327 def format_list(tokens) return [] if tokens.empty? # SQLの前後に空白があったら削除する。 # Delete space token at first and last of SQL tokens. token = ArrayUtil.get(tokens, 0) if (token._type == AnbtSql::TokenConstants::SPACE) ArrayUtil.remove(tokens, 0) end return [] if tokens.empty? token = ArrayUtil.get(tokens, tokens.size() - 1) if token._type == AnbtSql::TokenConstants::SPACE ArrayUtil.remove(tokens, tokens.size() - 1) end return [] if tokens.empty? modify_keyword_case(tokens) remove_symbol_side_space(tokens) concat_operator_for_oracle(tokens) format_list_main_loop(tokens) special_treatment_for_parenthesis_with_one_element(tokens) insert_space_between_tokens(tokens) return tokens end |
#format_list_main_loop(tokens) ⇒ Object
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 |
# File 'lib/anbt-sql-formatter/formatter.rb', line 170 def format_list_main_loop(tokens) # インデントを整える。 indent = 0 # 丸カッコのインデント位置を覚える。 bracket_indent = Stack.new prev = AnbtSql::Token.new(AnbtSql::TokenConstants::SPACE, " ") encounter_between = false in_values_checker = nil index = 0 # Length of tokens changes in loop! while index < tokens.size token = ArrayUtil.get(tokens, index) if token._type == AnbtSql::TokenConstants::SYMBOL # indentを1つ増やし、'('のあとで改行。 if token.string == "(" @function_bracket.push( @rule.function?(prev.string) ? true : false ) bracket_indent.push(indent) indent += 1 index += insert_return_and_indent(tokens, index + 1, indent) # indentを1つ増やし、')'の前と後ろで改行。 elsif token.string == ")" indent = (bracket_indent.pop()).to_i index += insert_return_and_indent(tokens, index, indent) @function_bracket.pop() # ','の前で改行 elsif token.string == "," if in_values_checker.nil? || in_values_checker.check() index += insert_return_and_indent(tokens, index, indent, "x") end elsif token.string == ";" # 2005.07.26 Tosiki Iga とりあえずセミコロンでSQL文がつぶれないように改良 indent = 0 index += insert_return_and_indent(tokens, index, indent) end elsif token._type == AnbtSql::TokenConstants::KEYWORD in_values_checker = nil if in_values_checker in_values_checker = AnbtSql::InValuesChecker.new(@rule) if equals_ignore_case(token.string, "IN") # indentを2つ増やし、キーワードの後ろで改行 if (equals_ignore_case(token.string, "DELETE") || equals_ignore_case(token.string, "SELECT") || equals_ignore_case(token.string, "UPDATE") ) indent += 2 index += insert_return_and_indent(tokens, index + 1, indent, "+2") end # indentを1つ増やし、キーワードの後ろで改行 if @rule.kw_plus1_indent_x_nl.any?{ |kw| equals_ignore_case(token.string, kw) } indent += 1 index += insert_return_and_indent(tokens, index + 1, indent) end # キーワードの前でindentを1つ減らして改行、キーワードの後ろでindentを戻して改行。 if @rule.kw_minus1_indent_nl_x_plus1_indent.any?{ |kw| equals_ignore_case(token.string, kw) } index += insert_return_and_indent(tokens, index , indent - 1) index += insert_return_and_indent(tokens, index + 1, indent ) end # キーワードの前でindentを1つ減らして改行、キーワードの後ろでindentを戻して改行。 if (equals_ignore_case(token.string, "VALUES")) indent -= 1 index += insert_return_and_indent(tokens, index, indent) end # キーワードの前でindentを1つ減らして改行 if (equals_ignore_case(token.string, "END")) indent -= 1 index += insert_return_and_indent(tokens, index, indent) end # キーワードの前で改行 if @rule.kw_nl_x.any?{ |kw| equals_ignore_case(token.string, kw) } index += insert_return_and_indent(tokens, index, indent) end # キーワードの前で改行, インデント+1 if @rule.kw_nl_x_plus1_indent.any?{ |kw| equals_ignore_case(token.string, kw) } index += insert_return_and_indent(tokens, index, indent + 1) end # キーワードの前で改行。indentを強制的に0にする。 if (equals_ignore_case(token.string, "UNION" ) || equals_ignore_case(token.string, "INTERSECT") || equals_ignore_case(token.string, "EXCEPT" ) ) indent -= 2 index += insert_return_and_indent(tokens, index , indent) index += insert_return_and_indent(tokens, index + 1, indent) end if equals_ignore_case(token.string, "BETWEEN") encounter_between = true end if equals_ignore_case(token.string, "AND") # BETWEEN のあとのANDは改行しない。 if not encounter_between index += insert_return_and_indent(tokens, index, indent) end encounter_between = false end elsif (token._type == AnbtSql::TokenConstants::COMMENT) if token.string.start_with?("/*") # マルチラインコメントの後に改行を入れる。 index += insert_return_and_indent(tokens, index + 1, indent) elsif token.string.start_with?("--") index += insert_return_and_indent(tokens, index + 1, indent) end end prev = token index += 1 end end |
#insert_return_and_indent(tokens, index, indent, opt = nil) ⇒ Object
index の箇所のトークンの前に挿入します。
- 空白を置き換えた場合
-
return 0
- 空白を挿入した場合
-
return 1
363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 |
# File 'lib/anbt-sql-formatter/formatter.rb', line 363 def insert_return_and_indent(tokens, index, indent, opt=nil) # 関数内では改行は挿入しない # No linefeed in function. return 0 if (@function_bracket.include?(true)) begin # 挿入する文字列を作成する。 s = "\n" # インデントをつける。 indent = 0 if indent < 0 ## Java版と異なる s += @rule.indent_string * indent # 前後にすでにスペースがあれば、それを置き換える。 token = ArrayUtil.get(tokens, index) if token._type == AnbtSql::TokenConstants::SPACE token.string = s return 0 end token = ArrayUtil.get(tokens, index - 1) if token._type == AnbtSql::TokenConstants::SPACE token.string = s return 0 end # 前後になければ、新たにスペースを追加する。 ArrayUtil.add(tokens, index, AnbtSql::Token.new(AnbtSql::TokenConstants::SPACE, s) ) return 1 rescue IndexOutOfBoundsException => e if $DEBUG $stderr.puts e., e.backtrace $stderr.puts "tokens: " tokens.each_with_index{|t,i| $stderr.puts "index=%d: %s" % [i, t.inspect] } $stderr.puts "index/size: %d/%d / indent: %d / opt: %s" % [index, tokens.size, indent, opt] end return 0 rescue => e raise e end end |
#insert_space_between_tokens(tokens) ⇒ Object
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 |
# File 'lib/anbt-sql-formatter/formatter.rb', line 137 def insert_space_between_tokens(tokens) index = 1 # Length of tokens changes in loop! while index < tokens.size prev = ArrayUtil.get(tokens, index - 1) token = ArrayUtil.get(tokens, index ) if (prev._type != AnbtSql::TokenConstants::SPACE && token._type != AnbtSql::TokenConstants::SPACE) # カンマの後にはスペース入れない if not @rule.space_after_comma if prev.string == "," index += 1 ; next end end # 関数名の後ろにはスペースは入れない # no space after function name if (@rule.function?(prev.string) && token.string == "(") index += 1 ; next end ArrayUtil.add(tokens, index, AnbtSql::Token.new(AnbtSql::TokenConstants::SPACE, " ") ) end index += 1 end end |
#modify_keyword_case(tokens) ⇒ Object
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 |
# File 'lib/anbt-sql-formatter/formatter.rb', line 79 def modify_keyword_case(tokens) # SQLキーワードは大文字とする。or ... tokens.each{ |token| next if token._type != AnbtSql::TokenConstants::KEYWORD case @rule.keyword when AnbtSql::Rule::KEYWORD_NONE ; when AnbtSql::Rule::KEYWORD_UPPER_CASE token.string.upcase! when AnbtSql::Rule::KEYWORD_LOWER_CASE token.string.downcase! end } end |
#remove_symbol_side_space(tokens) ⇒ Object
115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 |
# File 'lib/anbt-sql-formatter/formatter.rb', line 115 def remove_symbol_side_space(tokens) prev_token = nil (tokens.size - 1).downto(1){|index| token = ArrayUtil.get(tokens, index) prev_token = ArrayUtil.get(tokens, index - 1) if (token._type == AnbtSql::TokenConstants::SPACE && (prev_token._type == AnbtSql::TokenConstants::SYMBOL || prev_token._type == AnbtSql::TokenConstants::COMMENT)) ArrayUtil.remove(tokens, index) elsif ((token._type == AnbtSql::TokenConstants::SYMBOL || token._type == AnbtSql::TokenConstants::COMMENT) && prev_token._type == AnbtSql::TokenConstants::SPACE) ArrayUtil.remove(tokens, index - 1) elsif (token._type == AnbtSql::TokenConstants::SPACE) token.string = " " end } end |
#special_treatment_for_parenthesis_with_one_element(tokens) ⇒ Object
before: […, “(”, space, “X”, space, “)”, …]
after: [..., "(X)", ...]
ただし、これでは “(X)” という一つの symbol トークンになってしまう。 整形だけが目的ならそれでも良いが、 せっかくなので symbol/X/symbol と分けたい。
303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 |
# File 'lib/anbt-sql-formatter/formatter.rb', line 303 def special_treatment_for_parenthesis_with_one_element(tokens) (tokens.size - 1).downto(4).each{|index| next if (index >= tokens.size()) t0 = ArrayUtil.get(tokens, index ) t1 = ArrayUtil.get(tokens, index - 1) t2 = ArrayUtil.get(tokens, index - 2) t3 = ArrayUtil.get(tokens, index - 3) t4 = ArrayUtil.get(tokens, index - 4) if (equals_ignore_case(t4.string , "(") && equals_ignore_case(t3.string.strip, "" ) && equals_ignore_case(t1.string.strip, "" ) && equals_ignore_case(t0.string , ")") ) t4.string = t4.string + t2.string + t0.string ArrayUtil.remove(tokens, index ) ArrayUtil.remove(tokens, index - 1) ArrayUtil.remove(tokens, index - 2) ArrayUtil.remove(tokens, index - 3) end } end |
#split_to_statements(tokens) ⇒ Object
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
# File 'lib/anbt-sql-formatter/formatter.rb', line 26 def split_to_statements(tokens) statements = [] buf = [] tokens.each{|token| if token.string == ";" statements << buf buf = [] else buf << token end } statements << buf statements end |