Class: Djin::Interpreter

Inherits:
Object
  • Object
show all
Defined in:
lib/djin/interpreter.rb,
lib/djin/interpreter/base_command_builder.rb,
lib/djin/interpreter/local_command_builder.rb,
lib/djin/interpreter/docker_command_builder.rb,
lib/djin/interpreter/docker_compose_command_builder.rb

Defined Under Namespace

Classes: BaseCommandBuilder, DockerCommandBuilder, DockerComposeCommandBuilder, LocalCommandBuilder

Constant Summary collapse

InvalidConfigurationError =

TODO: Move Errors to ConfigLoader

Class.new(StandardError)
InvalidConfigFileError =
Class.new(InvalidConfigurationError)
MissingVersionError =
Class.new(InvalidConfigurationError)
VersionNotSupportedError =
Class.new(InvalidConfigurationError)
InvalidSyntaxError =
Class.new(InvalidConfigurationError)

Class Method Summary collapse

Class Method Details

.load!(file_config) ⇒ Object

rubocop:disable Metrics/AbcSize



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
# File 'lib/djin/interpreter.rb', line 16

def load!(file_config)
  # TODO: Move task validation to ConfigLoader and add variables/include validations
  task_contract = TaskContract.new

  file_config.tasks.map do |task_name, options|
    result = task_contract.call(options)

    raise InvalidSyntaxError, { task_name.to_sym => result.errors.to_h } if result.failure?

    command, build_command = build_commands(options, task_name: task_name)

    # FIXME(1): Handle dynamic named tasks, eg: {{namespace}}unit and remove condition
    if file_config.raw_tasks[task_name]
      raw_command, = build_commands(file_config.raw_tasks[task_name], task_name: task_name)
    end

    task_params = {
      name: task_name,
      build_command: build_command,
      # TODO: Remove `|| command` after FIXME(1)
      description: options['description'] || "Runs: #{raw_command || command}",
      command: command,
      raw_command: raw_command,
      aliases: options['aliases'],
      depends_on: options['depends_on']
    }.compact

    Djin::Task.new(**task_params)
  end
end