Sha256: 4b95da643374e08d5c545637e27fe62d920e9e4c0d91b1cd950e8d9c0e498600

Contents?: true

Size: 1.59 KB

Versions: 4

Compression:

Stored size: 1.59 KB

Contents

# frozen_string_literal: true

module SublimeTextKit
  module CLI
    # The main Command Line Interface (CLI) object.
    class Shell
      ACTIONS = {
        config: Actions::Config.new,
        metadata: Actions::Metadata.new,
        session: Actions::Session.new,
        snippets: Actions::Snippets.new,
        update: Actions::Update.new
      }.freeze

      def initialize parser: Parsers::Assembler.new, actions: ACTIONS, container: Container
        @parser = parser
        @actions = actions
        @container = container
      end

      def call arguments = []
        perform parser.call(arguments)
      rescue OptionParser::ParseError, Error => error
        logger.error { error.message }
      end

      private

      attr_reader :parser, :actions, :container

      def perform configuration
        case configuration
          in action_config: Symbol => action then config action
          in action_metadata: Symbol => kind then metadata kind
          in action_session: true then session
          in action_snippets: true then snippets
          in action_update: true then update
          in action_version: String => version then logger.info version
          else usage
        end
      end

      def config(action) = actions.fetch(__method__).call(action)

      def metadata(kind) = actions.fetch(__method__).call(kind)

      def session = actions.fetch(__method__).call

      def snippets = actions.fetch(__method__).call

      def update = actions.fetch(__method__).call

      def usage = logger.unknown { parser.to_s }

      def logger = container[__method__]
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
sublime_text_kit-11.0.3 lib/sublime_text_kit/cli/shell.rb
sublime_text_kit-11.0.2 lib/sublime_text_kit/cli/shell.rb
sublime_text_kit-11.0.1 lib/sublime_text_kit/cli/shell.rb
sublime_text_kit-11.0.0 lib/sublime_text_kit/cli/shell.rb