Sha256: ede9cb65bfed11dba71d0a35e4d7ec399a467c2795a9396a84a48720cdbdf865

Contents?: true

Size: 1.92 KB

Versions: 19

Compression:

Stored size: 1.92 KB

Contents

#
# Author:: Christopher Walters (<cw@opscode.com>)
# Author:: Tim Hinderliter (<tim@opscode.com>)
# Copyright:: Copyright (c) 2010 Opscode, Inc.
# License:: Apache License, Version 2.0
#
# 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 'chef/cookbook/file_vendor'

# This FileVendor loads files from Chef::Config.cookbook_path. The
# thing that's sort of janky about this FileVendor implementation is
# that it basically takes only the cookbook's name from the manifest
# and throws the rest away then re-builds the list of files on the
# disk. This is due to the manifest not having the on-disk file
# locations, since in the chef-client case, that information is
# non-sensical.
class Chef
  class Cookbook
    class FileSystemFileVendor < FileVendor
      
      def initialize(manifest)
        @cookbook_name = manifest[:cookbook_name]
      end
      
      # Implements abstract base's requirement. It looks in the
      # Chef::Config.cookbook_path file hierarchy for the requested
      # file.
      def get_filename(filename)
        location = Array(Chef::Config.cookbook_path).inject(nil) do |memo, basepath|
          candidate_location = File.join(basepath, @cookbook_name, filename)
          memo = candidate_location if File.exist?(candidate_location)
          memo
        end
        raise "File #{filename} does not exist for cookbook #{@cookbook_name}" unless location
        
        location
      end
      
    end
  end
end

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
chef-0.9.8.rc.0 lib/chef/cookbook/file_system_file_vendor.rb
chef-0.9.8.beta.2 lib/chef/cookbook/file_system_file_vendor.rb
chef-0.9.8.beta.1 lib/chef/cookbook/file_system_file_vendor.rb
chef-0.9.6 lib/chef/cookbook/file_system_file_vendor.rb
chef-0.9.4 lib/chef/cookbook/file_system_file_vendor.rb
chef-0.9.2 lib/chef/cookbook/file_system_file_vendor.rb
chef-0.9.0 lib/chef/cookbook/file_system_file_vendor.rb
chef-0.9.0.rc02 lib/chef/cookbook/file_system_file_vendor.rb
chef-0.9.0.rc01 lib/chef/cookbook/file_system_file_vendor.rb
chef-0.9.0.b02 lib/chef/cookbook/file_system_file_vendor.rb
chef-0.9.0.b01 lib/chef/cookbook/file_system_file_vendor.rb
chef-0.9.0.a92 lib/chef/cookbook/file_system_file_vendor.rb
chef-0.9.0.a91 lib/chef/cookbook/file_system_file_vendor.rb
chef-0.9.0.a90 lib/chef/cookbook/file_system_file_vendor.rb
chef-0.9.0.a10 lib/chef/cookbook/file_system_file_vendor.rb
chef-0.9.0.a8 lib/chef/cookbook/file_system_file_vendor.rb
chef-0.9.0.a6 lib/chef/cookbook/file_system_file_vendor.rb
chef-0.9.0.a4 lib/chef/cookbook/file_system_file_vendor.rb
chef-0.9.0.a3 lib/chef/cookbook/file_system_file_vendor.rb