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.



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

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.



208
209
210
# File 'lib/foodcritic/command_line.rb', line 208

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

#helpString

The help text plus the end of life message.

Returns:

  • (String)

    Help text describing the command-line options available.



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

def help
  @parser.help + show_end_of_life_msg
end

#list_rules?Boolean

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

Returns:

  • (Boolean)

    True if a rule listing is requested.



158
159
160
# File 'lib/foodcritic/command_line.rb', line 158

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

#optionsHash

Parsed command-line options

Returns:

  • (Hash)

    The parsed command-line options.



223
224
225
226
227
228
229
230
231
# File 'lib/foodcritic/command_line.rb', line 223

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.



236
237
238
# File 'lib/foodcritic/command_line.rb', line 236

def original_options
  @options
end

#role_pathsArray<String>

The role paths to check

Returns:

  • (Array<String>)

    Path(s) to the role directories being checked.



201
202
203
# File 'lib/foodcritic/command_line.rb', line 201

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.



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

def show_context?
  @options[:context]
end

#show_end_of_life_msgString

The end of life message.

Returns:

  • (String)

    A text to warn end users about foodcritic’s end of life



117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
# File 'lib/foodcritic/command_line.rb', line 117

def show_end_of_life_msg
  "
*******************************************************************************
WARNING: Foodcritic will be end of life in April 2020
*******************************************************************************
Please use Cookstyle to ensure all of your Chef Infra code meets the latest
best practices.

Cookstyle is a code linting tool that helps you to write better Chef Infra
Cookbooks by detecting and automatically correct cookbook code.

For more information, use the command:

cookstyle -h
  "
end

#show_help?Boolean

Show the command help to the end user?

Returns:

  • (Boolean)

    True if help should be shown.



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

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.



151
152
153
# File 'lib/foodcritic/command_line.rb', line 151

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.



182
183
184
185
186
187
188
189
# File 'lib/foodcritic/command_line.rb', line 182

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.



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

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.



165
166
167
# File 'lib/foodcritic/command_line.rb', line 165

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