-
Notifications
You must be signed in to change notification settings - Fork 652
/
Copy pathbase_processor.rb
108 lines (88 loc) · 2.89 KB
/
base_processor.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
# This module provides methods for annotating config/routes.rb.
module AnnotateRoutes
# This class is abstract class of classes adding and removing annotation to config/routes.rb.
class BaseProcessor
class << self
# @param options [Hash]
# @param routes_file [String]
# @return [String]
def execute(options, routes_file)
new(options, routes_file).execute
end
private :new
end
def initialize(options, routes_file)
@options = options
@routes_file = routes_file
end
# @return [Boolean]
def update
content_changed = content_changed?(new_text)
abort "annotate error. #{routes_file} needs to be updated, but annotate was run with `--frozen`." if content_changed && frozen?
if content_changed
write(new_text)
true
else
false
end
end
def routes_file_exist?
File.exist?(routes_file)
end
private
attr_reader :options, :routes_file
def existing_text
@existing_text ||= File.read(routes_file)
end
# @return [String]
def new_text
content, header_position = strip_annotations(existing_text)
new_content = generate_new_content_array(content, header_position)
new_content.join("\n")
end
def write(text)
File.open(routes_file, 'wb') { |f| f.puts(text) }
end
def content_changed?(new_text)
existing_text != new_text
end
def frozen?
options[:frozen]
end
# TODO: write the method doc using ruby rdoc formats
# This method returns an array of 'real_content' and 'header_position'.
# 'header_position' will either be :before, :after, or
# a number. If the number is > 0, the
# annotation was found somewhere in the
# middle of the file. If the number is
# zero, no annotation was found.
def strip_annotations(content)
real_content = []
mode = :content
header_position = 0
content.split(/\n/, -1).each_with_index do |line, line_number|
if mode == :header && line !~ /\s*#/
mode = :content
real_content << line unless line.blank?
elsif mode == :content
if line =~ /^\s*#\s*== Route.*$/
header_position = line_number + 1 # index start's at 0
mode = :header
else
real_content << line
end
end
end
real_content_and_header_position(real_content, header_position)
end
def real_content_and_header_position(real_content, header_position)
# By default assume the annotation was found in the middle of the file
# ... unless we have evidence it was at the beginning ...
return real_content, :before if header_position == 1
# ... or that it was at the end.
return real_content, :after if header_position >= real_content.count
# and the default
[real_content, header_position]
end
end
end