Class: Overcommit::Hook::Base

Inherits:
Object
  • Object
show all
Extended by:
Forwardable
Defined in:
lib/overcommit/hook/base.rb

Overview

Functionality common to all hooks.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(config, context) ⇒ Base

Returns a new instance of Base.

Parameters:



27
28
29
30
# File 'lib/overcommit/hook/base.rb', line 27

def initialize(config, context)
  @config = config.for_hook(self)
  @context = context
end

Instance Attribute Details

#configObject (readonly)

Returns the value of attribute config.



23
24
25
# File 'lib/overcommit/hook/base.rb', line 23

def config
  @config
end

Instance Method Details

#applicable_filesObject

Gets a list of staged files that apply to this hook based on its configured ‘include` and `exclude` lists.



159
160
161
# File 'lib/overcommit/hook/base.rb', line 159

def applicable_files
  @applicable_files ||= select_applicable(modified_files)
end

#commandArray<String>

Return command to execute for this hook.

This is intended to be configurable so hooks can prefix their commands with ‘bundle exec` or similar. It will appends the command line flags specified by the `flags` option after.

Note that any files intended to be passed must be handled by the hook itself.

Returns:

  • (Array<String>)


135
136
137
# File 'lib/overcommit/hook/base.rb', line 135

def command
  Array(@config['command'] || required_executable) + flags
end

#descriptionObject



58
59
60
# File 'lib/overcommit/hook/base.rb', line 58

def description
  @config['description'] || "Run #{name}"
end

#enabled?Boolean

Returns:

  • (Boolean)


78
79
80
# File 'lib/overcommit/hook/base.rb', line 78

def enabled?
  @config['enabled'] != false
end

#execute(cmd, options = {}) ⇒ #status, ...

Execute a command in a separate process.

If ‘splittable_args` is specified, ensures that those arguments are concatenated onto the end of the `cmd` arguments, but split up so that the operating system’s maximum command length is not exceeded. This is useful for splitting up long file lists.

Parameters:

  • cmd (Array<String>)

    command arguments

  • options (Hash) (defaults to: {})

Options Hash (options):

  • :args (Array<String>)

    arguments that can be split up over multiple invocations (usually a list of files)

  • :input (String)

    string to pass to process’ standard input stream

Returns:

  • (#status, #stdout, #stderr)

    struct containing result of invocation



109
110
111
# File 'lib/overcommit/hook/base.rb', line 109

def execute(cmd, options = {})
  Overcommit::Utils.execute(cmd, options)
end

#execute_in_background(cmd) ⇒ Object



113
114
115
# File 'lib/overcommit/hook/base.rb', line 113

def execute_in_background(cmd)
  Overcommit::Utils.execute_in_background(cmd)
end

#flagsArray<String>

Return command line flags to be passed to the command.

This excludes the list of files, as that must be handled by the hook itself.

The intention here is to provide flexibility for when a tool removes/renames its flags. Rather than wait for Overcommit to update the flags it uses, you can update your configuration to use the new flags right away without being blocked.

Also note that any flags containing dynamic content must be passed in the hook’s #run method.

Returns:

  • (Array<String>)


153
154
155
# File 'lib/overcommit/hook/base.rb', line 153

def flags
  Array(@config['flags'])
end

#in_path?(cmd) ⇒ Boolean

Returns:

  • (Boolean)


91
92
93
# File 'lib/overcommit/hook/base.rb', line 91

def in_path?(cmd)
  Overcommit::Utils.in_path?(cmd)
end

#included_filesObject

Gets a list of all files that apply to this hook based on its configured ‘include` and `exclude` lists.



165
166
167
# File 'lib/overcommit/hook/base.rb', line 165

def included_files
  @included_files ||= select_applicable(all_files)
end

#nameObject



54
55
56
# File 'lib/overcommit/hook/base.rb', line 54

def name
  self.class.name.split('::').last
end

#parallelize?Boolean

Returns:

  • (Boolean)


66
67
68
# File 'lib/overcommit/hook/base.rb', line 66

def parallelize?
  @config['parallelize'] != false
end

#processorsObject



70
71
72
# File 'lib/overcommit/hook/base.rb', line 70

def processors
  @config.fetch('processors') { 1 }
end

#quiet?Boolean

Returns:

  • (Boolean)


74
75
76
# File 'lib/overcommit/hook/base.rb', line 74

def quiet?
  @config['quiet']
end

#required?Boolean

Returns:

  • (Boolean)


62
63
64
# File 'lib/overcommit/hook/base.rb', line 62

def required?
  @config['required']
end

#required_executableObject



117
118
119
# File 'lib/overcommit/hook/base.rb', line 117

def required_executable
  @config['required_executable']
end

#required_librariesObject



121
122
123
# File 'lib/overcommit/hook/base.rb', line 121

def required_libraries
  Array(@config['required_library'] || @config['required_libraries'])
end

#runObject

Runs the hook.

Raises:

  • (NotImplementedError)


33
34
35
# File 'lib/overcommit/hook/base.rb', line 33

def run
  raise NotImplementedError, 'Hook must define `run`'
end

#run?Boolean

Returns:

  • (Boolean)


86
87
88
89
# File 'lib/overcommit/hook/base.rb', line 86

def run?
  enabled? &&
    !(@config['requires_files'] && applicable_files.empty?)
end

#run_and_transformObject

Runs the hook and transforms the status returned based on the hook’s configuration.

Poorly named because we already have a bunch of hooks in the wild that implement ‘#run`, and we needed a wrapper step to transform the status based on any custom configuration.



43
44
45
46
47
48
49
50
51
52
# File 'lib/overcommit/hook/base.rb', line 43

def run_and_transform
  if output = check_for_requirements
    status = :fail
  else
    result = Overcommit::Utils.with_environment(@config.fetch('env') { {} }) { run }
    status, output = process_hook_return_value(result)
  end

  [transform_status(status), output]
end

#skip?Boolean

Returns:

  • (Boolean)


82
83
84
# File 'lib/overcommit/hook/base.rb', line 82

def skip?
  @config['skip']
end