forked from ActiveRDF/ActiveRDF
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rubybeautifier.rb
executable file
·137 lines (126 loc) · 3.07 KB
/
rubybeautifier.rb
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
#!/usr/bin/env ruby
# http://blog.neontology.com/articles/2006/05/10/beautiful-ruby-in-textmate
# http://www.arachnoid.com/ruby/rubyBeautifier.html
#
# Ruby beautifier, version 1.3, 04/03/2006
# Copyright (c) 2006, P. Lutus
# TextMate modifications by T. Burks
# Vim modifications by Luis Mondesi
# Released under the GPL
$tabSize = 2
$tabStr = " "
# indent regexp tests
$indentExp = [
/^module\b/,
/(=\s*|^)if\b/,
/(=\s*|^)until\b/,
/(=\s*|^)for\b/,
/(=\s*|^)unless\b/,
/(=\s*|^)while\b/,
/(=\s*|^)begin\b/,
/(=\s*|^)case\b/,
/\bthen\b/,
/^class\b/,
/^rescue\b/,
/^def\b/,
/\bdo\b/,
/^else\b/,
/^elsif\b/,
/^ensure\b/,
/\bwhen\b/,
/\{[^\}]*$/,
/\[[^\]]*$/
]
# outdent regexp tests
$outdentExp = [
/^rescue\b/,
/^ensure\b/,
/^elsif\b/,
/^end\b/,
/^else\b/,
/\bwhen\b/,
/^[^\{]*\}/,
/^[^\[]*\]/
]
def makeTab(tab)
return (tab < 0)?"":$tabStr * $tabSize * tab
end
def addLine(line,tab)
line.strip!
line = makeTab(tab)+line if line.length > 0
return line + "\n"
end
def beautifyRuby
commentBlock = false
multiLineArray = Array.new
multiLineStr = ""
tab = 0
source = STDIN.read
dest = ""
source.split("\n").each do |line|
# combine continuing lines
if(!(line =~ /^\s*#/) && line =~ /[^\\]\\\s*$/)
multiLineArray.push line
multiLineStr += line.sub(/^(.*)\\\s*$/,"\\1")
next
end
# add final line
if(multiLineStr.length > 0)
multiLineArray.push line
multiLineStr += line.sub(/^(.*)\\\s*$/,"\\1")
end
tline = ((multiLineStr.length > 0)?multiLineStr:line).strip
if(tline =~ /^=begin/)
commentBlock = true
end
if(commentBlock)
# add the line unchanged
dest += line + "\n"
else
commentLine = (tline =~ /^#/)
if(!commentLine)
# throw out sequences that will
# only sow confusion
tline.gsub!(/\/.*?\//,"")
tline.gsub!(/%r\{.*?\}/,"")
tline.gsub!(/%r(.).*?\1/,"")
tline.gsub!(/\\\"/,"'")
tline.gsub!(/".*?"/,"\"\"")
tline.gsub!(/'.*?'/,"''")
tline.gsub!(/#\{.*?\}/,"")
$outdentExp.each do |re|
if(tline =~ re)
tab -= 1
break
end
end
end
if (multiLineArray.length > 0)
multiLineArray.each do |ml|
dest += addLine(ml,tab)
end
multiLineArray.clear
multiLineStr = ""
else
dest += addLine(line,tab)
end
if(!commentLine)
$indentExp.each do |re|
if(tline =~ re && !(tline =~ /\s+end\s*$/))
tab += 1
break
end
end
end
end
if(tline =~ /^=end/)
commentBlock = false
end
end
STDOUT.write(dest)
# uncomment this to complain about mismatched blocks
#if(tab != 0)
# STDERR.puts "Indentation error: #{tab}"
#end
end
beautifyRuby