module Blueprints # Defines a root namespace that is used when no other namespace is. Apart from functionality in namespace it also allows # building blueprints/namespaces by name. Is also used for copying instance variables between blueprints/contexts/global # context. class RootNamespace < Namespace attr_reader :context, :plans attr_accessor :executed_plans def initialize @executed_plans = Set.new @global_executed_plans = Set.new @auto_iv_list = Set.new super '' end # Loads all instance variables from global context to current one. def setup @context = Blueprints::Context.new Marshal.load(@global_variables).each { |name, value| @context.instance_variable_set(name, value) } @executed_plans = @global_executed_plans.clone end # Copies all instance variables from current context to another one. def copy_ivars(to) @context.instance_variables.each do |iv| to.instance_variable_set(iv, @context.instance_variable_get(iv)) end end # Sets up global context and executes prebuilt blueprints against it. def prebuild(plans) @context = Blueprints::Context.new @global_scenarios = build(plans) if plans @global_executed_plans = @executed_plans @global_variables = Marshal.dump(@context.instance_variables.each_with_object({}) {|iv, hash| hash[iv] = @context.instance_variable_get(iv) }) end # Builds blueprints that are passed against current context. Copies instance variables to context given if one is given. def build(names, context = nil, build_once = true) names = [names] unless names.is_a?(Array) result = names.inject(nil) do |result, member| if member.is_a?(Hash) member.map {|name, options| self[name].build(build_once, options) }.last else self[member].build(build_once) end end copy_ivars(context) if context result end # Sets instance variable in current context to passed value. If instance variable with same name already exists, it # is set only if it was set using this same method def add_variable(name, value) name = "@#{name}" unless name.to_s[0, 1] == "@" if !@context.instance_variable_get(name) or @auto_iv_list.include?(name) @auto_iv_list << name @context.instance_variable_set(name, value) end end @@root = RootNamespace.new end end