Class: Itamae::Recipe::EvalContext

Inherits:
Object
  • Object
show all
Defined in:
lib/itamae/recipe.rb

Instance Method Summary collapse

Constructor Details

#initialize(recipe) ⇒ EvalContext

Returns a new instance of EvalContext.



54
55
56
57
58
# File 'lib/itamae/recipe.rb', line 54

def initialize(recipe)
  @recipe = recipe

  instance_eval(File.read(@recipe.path), @recipe.path, 1)
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(*args, &block) ⇒ Object



67
68
69
70
71
72
73
74
75
76
77
78
79
# File 'lib/itamae/recipe.rb', line 67

def method_missing(*args, &block)
  super unless args.size == 2

  method, name = args
  begin
    klass = Resource.get_resource_class(method)
  rescue NameError
    super
  end

  resource = klass.new(@recipe, name, &block)
  @recipe.children << resource
end

Instance Method Details

#define(name, params = {}, &block) ⇒ Object



81
82
83
84
85
86
87
88
89
90
91
92
# File 'lib/itamae/recipe.rb', line 81

def define(name, params = {}, &block)
  class_name = Resource.get_resource_class_name(name)
  if Resource.const_defined?(class_name)
    Logger.warn "Redefine class. (#{class_name})"
    return
  end

  Resource.const_set(
    Resource.get_resource_class_name(name),
    Definition.create_class(name, params, &block)
  )
end

#include_recipe(target) ⇒ Object



94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
# File 'lib/itamae/recipe.rb', line 94

def include_recipe(target)
  candidate_paths = [
    ::File.expand_path(target, File.dirname(@recipe.path)),
    Recipe.find_recipe_in_gem(target),
  ].compact
  path = candidate_paths.find {|path| File.exist?(path) }

  unless path
    raise NotFoundError, "Recipe not found. (#{target})"
  end

  if runner.children.find_recipe_by_path(path)
    Logger.debug "Recipe, #{path}, is skipped because it is already included"
    return
  end

  recipe = Recipe.new(runner, path)
  @recipe.children << recipe
  recipe.load
end

#nodeObject



115
116
117
# File 'lib/itamae/recipe.rb', line 115

def node
  runner.node
end

#respond_to_missing?(method, include_private = false) ⇒ Boolean

Returns:

  • (Boolean)


60
61
62
63
64
65
# File 'lib/itamae/recipe.rb', line 60

def respond_to_missing?(method, include_private = false)
  Resource.get_resource_class(method)
  true
rescue NameError
  false
end

#runnerObject



119
120
121
# File 'lib/itamae/recipe.rb', line 119

def runner
  @recipe.runner
end