Class: FoodCritic::CommandLine

Inherits:
Object
  • Object
show all
Defined in:
lib/foodcritic/command_line.rb

Overview

Command line parsing.

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(args) ⇒ CommandLine

Create a new instance of CommandLine

Parameters:

  • args (Array)

    The command line arguments



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
# File 'lib/foodcritic/command_line.rb', line 15

def initialize(args)
  @args = args
  @original_args = args.dup
  @options = {
    fail_tags: ["~opensource"],
    tags: [],
    include_rules: [],
    cookbook_paths: [],
    role_paths: [],
    environment_paths: [],
    exclude_paths: ["test/**/*", "spec/**/*", "features/**/*"],
    progress: true,
    ast_cache_size: 5,
  }
  @parser = OptionParser.new do |opts|
    opts.banner = "foodcritic [cookbook_paths]"
    opts.on("-t", "--tags TAGS",
            "Check against (or exclude ~) rules with the "\
            "specified tags.") do |t|
      @options[:tags] << t
    end
    opts.on("-l", "--list",
            "List all enabled rules and their descriptions.") do |t|
      @options[:list] = t
    end
    opts.on("-f", "--epic-fail TAGS",
            "Fail the build based on tags. Default of 'any' to fail "\
            "on all warnings.") do |t|
      @options[:fail_tags] << t
    end
    opts.on("-c", "--chef-version VERSION",
            "Only check against rules valid for this version "\
            "of Chef.") do |c|
      @options[:chef_version] = c
    end
    opts.on("-r", "--rule-file PATH",
            "Specify file with rules to be used or ignored ") do |c|
      @options[:rule_file] = c
    end
    opts.on("-s", "--ast-cache-size NUM", Integer,
            "Change the size of the AST cache.") do |s|
      @options[:ast_cache_size] = s
    end
    opts.on("-B", "--cookbook-path PATH",
            "Cookbook path(s) to check.") do |b|
      @options[:cookbook_paths] << b
    end
    opts.on("-C", "--[no-]context",
            "Show lines matched against rather than the "\
            "default summary.") do |c|
      @options[:context] = c
    end
    opts.on("-E", "--environment-path PATH",
            "Environment path(s) to check.") do |e|
      @options[:environment_paths] << e
    end
    opts.on("-I", "--include PATH",
            "Additional rule file path(s) to load.") do |i|
      @options[:include_rules] << i
    end
    opts.on("-G", "--search-gems",
            "Search rubygems for rule files with the path "\
            "foodcritic/rules/**/*.rb") do |g|
      @options[:search_gems] = true
    end
    opts.on("-P", "--[no-]progress",
            "Show progress of files being checked. default: true") do |q|
      @options[:progress] = q
    end
    opts.on("-R", "--role-path PATH",
            "Role path(s) to check.") do |r|
      @options[:role_paths] << r
    end
    opts.on("-S", "--search-grammar PATH",
            "Specify grammar to use when validating search syntax.") do |s|
      @options[:search_grammar] = s
    end
    opts.on("-V", "--version",
            "Display the foodcritic version.") do |v|
      @options[:version] = true
    end
    opts.on("-X", "--exclude PATH",
            "Exclude path(s) from being linted. PATH is relative to the cookbook, not an absolute PATH. Default test/**/*,spec/**/*,features/**/*") do |e|
      options[:exclude_paths] << e
    end
  end
  # -v is not implemented but OptionParser gives the Foodcritic's version
  # if that flag is passed
  if args.include? "-v"
    help
  else
    begin
      @parser.parse!(args) unless show_help?
    rescue OptionParser::InvalidOption => e
      e.recover args
    end
  end
end

Class Method Details

.main(argv = ARGV, out = $stdout) ⇒ Object



4
5
6
7
8
9
10
# File 'lib/foodcritic/command_line.rb', line 4

def self.main(argv = ARGV, out = $stdout)
  cmd_line = CommandLine.new(argv)
  review, status = Linter.run(cmd_line)
  printer = cmd_line.show_context? ? ContextOutput.new(out) : SummaryOutput.new(out)
  printer.output(review)
  status.to_i
end

Instance Method Details

#cookbook_pathsArray<String>

The cookbook paths to check

Returns:

  • (Array<String>)

    Path(s) to the cookbook(s) being checked.



173
174
175
# File 'lib/foodcritic/command_line.rb', line 173

def cookbook_paths
  @args + Array(@options[:cookbook_paths])
end

#environment_pathsArray<String>

The environment paths to check

Returns:

  • (Array<String>)

    Path(s) to the environment directories checked.



187
188
189
# File 'lib/foodcritic/command_line.rb', line 187

def environment_paths
  Array(@options[:environment_paths])
end

#helpString

The help text.

Returns:

  • (String)

    Help text describing the command-line options available.



124
125
126
# File 'lib/foodcritic/command_line.rb', line 124

def help
  @parser.help
end

#list_rules?Boolean

Just list enabled rules, don’t actually run a lint check?

Returns:

  • (Boolean)

    True if a rule listing is requested.



138
139
140
# File 'lib/foodcritic/command_line.rb', line 138

def list_rules?
  @options.key?(:list)
end

#optionsHash

Parsed command-line options

Returns:

  • (Hash)

    The parsed command-line options.



202
203
204
205
206
207
208
209
210
# File 'lib/foodcritic/command_line.rb', line 202

def options
  original_options.merge(
    {
      cookbook_paths: cookbook_paths,
      role_paths: role_paths,
      environment_paths: environment_paths,
    }
  )
end

#original_optionsHash

The original command-line options

Returns:

  • (Hash)

    The original command-line options.



215
216
217
# File 'lib/foodcritic/command_line.rb', line 215

def original_options
  @options
end

#role_pathsArray<String>

The role paths to check

Returns:

  • (Array<String>)

    Path(s) to the role directories being checked.



180
181
182
# File 'lib/foodcritic/command_line.rb', line 180

def role_paths
  Array(@options[:role_paths])
end

#show_context?Boolean

If matches should be shown with context rather than the default summary display.

Returns:

  • (Boolean)

    True if matches should be shown with context.



195
196
197
# File 'lib/foodcritic/command_line.rb', line 195

def show_context?
  @options[:context]
end

#show_help?Boolean

Show the command help to the end user?

Returns:

  • (Boolean)

    True if help should be shown.



117
118
119
# File 'lib/foodcritic/command_line.rb', line 117

def show_help?
  @args.length == 1 && @args.first == "--help"
end

#show_version?Boolean

Show the current version to the end user?

Returns:

  • (Boolean)

    True if the version should be shown.



131
132
133
# File 'lib/foodcritic/command_line.rb', line 131

def show_version?
  @options.key?(:version)
end

#valid_grammar?Boolean

Is the search grammar specified valid?

Returns:

  • (Boolean)

    True if the grammar has not been provided or can be loaded.



162
163
164
165
166
167
168
# File 'lib/foodcritic/command_line.rb', line 162

def valid_grammar?
  return true unless options.key?(:search_grammar)
  return false unless File.exist?(options[:search_grammar])
  search = FoodCritic::Chef::Search.new
  search.create_parser([options[:search_grammar]])
  search.parser?
end

#valid_paths?Boolean

If the paths provided are valid

Returns:

  • (Boolean)

    True if the paths exist.



152
153
154
155
156
# File 'lib/foodcritic/command_line.rb', line 152

def valid_paths?
  paths = options[:cookbook_paths] + options[:role_paths] +
    options[:environment_paths]
  paths.any? && paths.all? { |path| File.exist?(path) }
end

#versionString

The version string.

Returns:

  • (String)

    Current installed version.



145
146
147
# File 'lib/foodcritic/command_line.rb', line 145

def version
  "foodcritic #{FoodCritic::VERSION}"
end