Knife-Zero doesn't include Berkshelf support, so vendoring everything in the repo is convenient again
73 lines
2.6 KiB
Ruby
73 lines
2.6 KiB
Ruby
#
|
|
# Copyright 2013-2016, Noah Kantrowitz
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
#
|
|
|
|
require 'poise/subcontext/resource_collection'
|
|
|
|
|
|
module Poise
|
|
module Helpers
|
|
# A provider mixin to help with creating subcontexts. Mostly for internal
|
|
# use within Poise.
|
|
#
|
|
# @since 1.0.0
|
|
module SubcontextBlock
|
|
private
|
|
|
|
def subcontext_block(parent_context=nil, &block)
|
|
# Setup a subcontext.
|
|
parent_context ||= @run_context
|
|
sub_run_context = parent_context.dup
|
|
# Reset state for the subcontext. In 12.4+ this uses the built-in
|
|
# support, otherwise do it manually.
|
|
if defined?(sub_run_context.initialize_child_state)
|
|
sub_run_context.initialize_child_state
|
|
else
|
|
# Audits was added in 12.1 I think.
|
|
sub_run_context.audits = {} if defined?(sub_run_context.audits)
|
|
# Dup and clear to preserve the default behavior without copy-pasta.
|
|
sub_run_context.immediate_notification_collection = parent_context.immediate_notification_collection.dup.clear
|
|
sub_run_context.delayed_notification_collection = parent_context.delayed_notification_collection.dup.clear
|
|
end
|
|
# Create the subcollection.
|
|
sub_run_context.resource_collection = Poise::Subcontext::ResourceCollection.new(parent_context.resource_collection)
|
|
# Create an accessor for the parent run context.
|
|
sub_run_context.define_singleton_method(:parent_run_context) { parent_context }
|
|
|
|
# Declare sub-resources within the sub-run-context. Since they
|
|
# are declared here, they do not pollute the parent run-context.
|
|
begin
|
|
outer_run_context = @run_context
|
|
@run_context = sub_run_context
|
|
instance_eval(&block)
|
|
ensure
|
|
@run_context = outer_run_context
|
|
end
|
|
|
|
# Return the inner context to do other things with
|
|
sub_run_context
|
|
end
|
|
|
|
def global_resource_collection
|
|
collection = @run_context.resource_collection
|
|
while collection.respond_to?(:parent) && collection.parent
|
|
collection = collection.parent
|
|
end
|
|
collection
|
|
end
|
|
end
|
|
end
|
|
end
|