Class: Hanami::Utils::Class

Inherits:
Object
  • Object
show all
Defined in:
gems/gems/hanami-utils-1.1.0/lib/hanami/utils/class.rb,
gems/gems/hanami-utils-1.3.6/lib/hanami/utils/class.rb

Overview

Class utilities

Since:

  • 0.1.0

Class Method Summary collapse

Class Method Details

.load(name, namespace = Object) ⇒ Class, ...

Loads a class for the given name, only if it's defined.

Examples:

require 'hanami/utils/class'

module App
  module Service
    class Endpoint
    end
  end

  class ServiceEndpoint
  end
end

# basic usage
Hanami::Utils::Class.load('App::Service') # => App::Service
Hanami::Utils::Class.load(App::Service)   # => App::Service

# with explicit namespace
Hanami::Utils::Class.load('Service', App) # => App::Service

Parameters:

  • name (String, Class)

    the specific class name

  • namespace (Class, Module) (defaults to: Object)

    the Ruby namespace where we want to perform the lookup.

Returns:

  • (Class, Module, NilClass)

    the Ruby constant, or nil if not found.

Since:

  • 0.8.0

def self.load(name, namespace = Object)
  load!(name, namespace) if namespace.const_defined?(name.to_s, false)
end

.load!(name, namespace = Object) ⇒ Class, Module

Loads a class for the given name.

Examples:

require 'hanami/utils/class'

module App
  module Service
    class Endpoint
    end
  end

  class ServiceEndpoint
  end
end

# basic usage
Hanami::Utils::Class.load!('App::Service') # => App::Service
Hanami::Utils::Class.load!(App::Service)   # => App::Service

# with explicit namespace
Hanami::Utils::Class.load!('Service', App) # => App::Service

# with missing constant
Hanami::Utils::Class.load!('Unknown') # => raises NameError

Parameters:

  • name (String, Class)

    the specific class name

  • namespace (Class, Module) (defaults to: Object)

    the Ruby namespace where we want to perform the lookup.

Returns:

  • (Class, Module)

    the found Ruby constant.

Raises:

  • (NameError)

    if no constant can be found.

Since:

  • 0.1.0

def self.load!(name, namespace = Object)
  namespace.const_get(name.to_s, false)
end

.load_from_pattern!(pattern, namespace = Object) ⇒ Class, Module

Loads a class from the given pattern name and namespace

Examples:

require 'hanami/utils/class'

module App
  module Service
    class Endpoint
    end
  end

  class ServiceEndpoint
  end
end

# basic usage
Hanami::Utils::Class.load_from_pattern!('App::Service') # => App::Service

# with explicit namespace
Hanami::Utils::Class.load_from_pattern!('Service', App) # => App::Service

# with pattern
Hanami::Utils::Class.load_from_pattern!('App::Service(::Endpoint|Endpoint)') # => App::Service::Endpoint
Hanami::Utils::Class.load_from_pattern!('App::Service(Endpoint|::Endpoint)') # => App::ServiceEndpoint

# with missing constant
Hanami::Utils::Class.load_from_pattern!('Unknown') # => raises NameError

Parameters:

  • pattern (String)

    the class name pattern

  • namespace (Class, Module) (defaults to: Object)

    the Ruby namespace where we want to perform the lookup.

Returns:

  • (Class, Module)

    the found Ruby constant.

Raises:

  • (NameError)

    if no constant can be found.

See Also:

Since:

  • 0.3.1

def self.load_from_pattern!(pattern, namespace = Object)
  String.new(pattern).tokenize do |token|
    begin
      return namespace.const_get(token, false)
    rescue NameError # rubocop:disable Lint/HandleExceptions
    end
  end

  full_name = [(namespace == Object ? nil : namespace), pattern].compact.join('::')
  raise NameError.new("uninitialized constant #{full_name}")
end

.tokenize(pattern) ⇒ Object

rubocop:disable Metrics/MethodLength

Since:

  • 0.1.0

def self.tokenize(pattern)
  if match = TOKENIZE_REGEXP.match(pattern) # rubocop:disable Lint/AssignmentInCondition
    pre  = match.pre_match
    post = match.post_match
    tokens = match[1].split(TOKENIZE_SEPARATOR)
    tokens.each do |token|
      yield("#{pre}#{token}#{post}")
    end
  else
    yield(pattern)
  end

  nil
end