Class: Rufo::Command

Inherits:
Object
  • Object
show all
Defined in:
lib/rufo/command.rb

Constant Summary collapse

CODE_OK =
0
CODE_ERROR =
1
CODE_CHANGE =
3

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(want_check, exit_code, filename_for_dot_rufo, loglevel) ⇒ Command

Returns a new instance of Command.



15
16
17
18
19
20
21
# File 'lib/rufo/command.rb', line 15

def initialize(want_check, exit_code, filename_for_dot_rufo, loglevel)
  @want_check = want_check
  @exit_code = exit_code
  @filename_for_dot_rufo = filename_for_dot_rufo
  @dot_file = Rufo::DotFile.new
  @logger = Rufo::Logger.new(loglevel)
end

Class Method Details

.parse_options(argv) ⇒ Object



151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
# File 'lib/rufo/command.rb', line 151

def self.parse_options(argv)
  exit_code, want_check = true, false
  filename_for_dot_rufo = nil
  loglevel = :log

  OptionParser.new do |opts|
    opts.version = Rufo::VERSION
    opts.banner = "Usage: rufo files or dirs [options]"

    opts.on("-c", "--check", "Only check formating changes") do
      want_check = true
    end

    opts.on("--filename=value", "Filename to use to lookup .rufo (useful for STDIN formatting)") do |value|
      filename_for_dot_rufo = value
    end

    opts.on("-x", "--simple-exit", "Return 1 in the case of failure, else 0") do
      exit_code = false
    end

    opts.on(Rufo::Logger::LEVELS, "--loglevel[=LEVEL]", "Change the level of logging for the CLI. Options are: error, warn, log (default), debug, silent") do |value|
      loglevel = value.to_sym
    end

    opts.on("-h", "--help", "Show this help") do
      puts opts
      exit
    end
  end.parse!(argv)

  [want_check, exit_code, filename_for_dot_rufo, loglevel]
end

.run(argv) ⇒ Object



10
11
12
13
# File 'lib/rufo/command.rb', line 10

def self.run(argv)
  want_check, exit_code, filename_for_dot_rufo, loglevel = parse_options(argv)
  new(want_check, exit_code, filename_for_dot_rufo, loglevel).run(argv)
end

Instance Method Details

#exit_code(status_code) ⇒ Object



23
24
25
26
27
28
29
30
31
32
33
34
# File 'lib/rufo/command.rb', line 23

def exit_code(status_code)
  if @exit_code
    status_code
  else
    case status_code
    when CODE_OK, CODE_CHANGE
      0
    else
      1
    end
  end
end

#format(code, dir, erb: false) ⇒ Object



138
139
140
141
142
143
144
145
146
147
148
149
# File 'lib/rufo/command.rb', line 138

def format(code, dir, erb: false)
  options = @dot_file.get_config_in(dir) || {}
  if erb
    formatter = Rufo::ErbFormatter.new(code, **options)
  else
    formatter = Rufo::Formatter.new(code, **options)
  end

  formatter.format
  result = formatter.result
  result
end

#format_args(args) ⇒ Object



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
# File 'lib/rufo/command.rb', line 66

def format_args(args)
  top_level_dot_file = @filename_for_dot_rufo || Dir.getwd
  options = @dot_file.get_config_in(top_level_dot_file) || {}
  file_finder = Rufo::FileFinder.new(
    args, includes: options[:includes], excludes: options[:excludes],
  )
  files = file_finder.to_a

  changed = false
  syntax_error = false
  files_exist = false

  files.each do |(exists, file)|
    if exists
      files_exist = true
    else
      logger.warn("Error: file or directory not found: #{file}")
      next
    end
    result = format_file(file)

    changed |= result == CODE_CHANGE
    syntax_error |= result == CODE_ERROR
  end

  return CODE_ERROR unless files_exist

  case
  when syntax_error then CODE_ERROR
  when changed      then CODE_CHANGE
  else                   CODE_OK
  end
end

#format_file(filename) ⇒ Object



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
# File 'lib/rufo/command.rb', line 100

def format_file(filename)
  logger.debug("Formatting: #{filename}")
  code = File.read(filename, encoding: "UTF-8")

  begin
    location = @filename_for_dot_rufo || File.dirname(filename)
    erb = filename.end_with?(".erb")
    result = format(code, location, erb: erb)
  rescue Rufo::SyntaxError => e
    # We ignore syntax errors as these might be template files
    # with .rb extension
    logger.warn("#{filename}:#{e.lineno} #{e.message}")
    return CODE_ERROR
  end

  if code.force_encoding(result.encoding) != result
    if @want_check
      logger.warn("Formatting #{filename} produced changes")
    else
      File.write(filename, result)
      logger.log("Format: #{filename}")
    end

    return CODE_CHANGE
  end
rescue Rufo::SyntaxError => e
  logger.error("#{filename}:#{e.lineno} #{e.message}")
  CODE_ERROR
rescue Rufo::UnknownSyntaxError
  logger.error("#{filename} is invalid code. Try running the code for a better error.")
  CODE_ERROR
rescue => e
  logger.error("You've found a bug!")
  logger.error("It happened while trying to format the file #{filename}")
  logger.error("Please report it to https://github.com/ruby-formatter/rufo/issues with code that triggers it\n")
  raise e
end

#format_stdinObject



45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# File 'lib/rufo/command.rb', line 45

def format_stdin
  code = STDIN.read

  erb = @filename_for_dot_rufo && @filename_for_dot_rufo.end_with?(".erb")
  result = format(code, @filename_for_dot_rufo || Dir.getwd, erb: erb)

  print(result) if !@want_check

  code == result ? CODE_OK : CODE_CHANGE
rescue Rufo::SyntaxError => e
  logger.error("STDIN is invalid code. Error on line:#{e.lineno} #{e.message}")
  CODE_ERROR
rescue Rufo::UnknownSyntaxError
  logger.error("STDIN is invalid code. Try running the code for a better error.")
  CODE_ERROR
rescue => e
  logger.error("You've found a bug!")
  logger.error("Please report it to https://github.com/ruby-formatter/rufo/issues with code that triggers it\n")
  raise e
end

#run(argv) ⇒ Object



36
37
38
39
40
41
42
43
# File 'lib/rufo/command.rb', line 36

def run(argv)
  status_code = if argv.empty?
      format_stdin
    else
      format_args argv
    end
  exit exit_code(status_code)
end