Sha256: cc596c3629adadabb0b5bf07c6b12761cc4e09b28e59e410bebc5ab6b6f2c59f

Contents?: true

Size: 1.74 KB

Versions: 4

Compression:

Stored size: 1.74 KB

Contents

require 'chef_fs/file_system/base_fs_dir'
require 'chef_fs/file_system/rest_list_dir'
require 'chef_fs/file_system/not_found_error'
require 'chef_fs/path_utils'
require 'fileutils'

module ChefFS
  module FileSystem
    class FileSystemEntry < BaseFSDir
      def initialize(name, parent, file_path = nil)
        super(name, parent)
        @file_path = file_path || "#{parent.file_path}/#{name}"
      end

      attr_reader :file_path

      def path_for_printing
        ChefFS::PathUtils::relative_to(file_path, File.expand_path(Dir.pwd))
      end

      def children
        begin
          @children ||= Dir.entries(file_path).select { |entry| entry != '.' && entry != '..' }.map { |entry| FileSystemEntry.new(entry, self) }
        rescue Errno::ENOENT
          raise ChefFS::FileSystem::NotFoundError.new($!), "#{file_path} not found"
        end
      end

      def create_child(child_name, file_contents=nil)
        result = FileSystemEntry.new(child_name, self)
        if file_contents
          result.write(file_contents)
        else
          Dir.mkdir(result.file_path)
        end
        result
      end

      def dir?
        File.directory?(file_path)
      end

      def delete(recurse)
        if dir?
          if recurse
            FileUtils.rm_rf(file_path)
          else
            File.rmdir(file_path)
          end
        else
          File.delete(file_path)
        end
      end

      def read
        begin
          File.open(file_path, "rb") {|f| f.read}
        rescue Errno::ENOENT
          raise ChefFS::FileSystem::NotFoundError.new($!), "#{file_path} not found"
        end
      end

      def write(content)
        File.open(file_path, 'wb') do |file|
          file.write(content)
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
knife-essentials-0.7.6 lib/chef_fs/file_system/file_system_entry.rb
knife-essentials-0.7.5 lib/chef_fs/file_system/file_system_entry.rb
knife-essentials-0.7.4 lib/chef_fs/file_system/file_system_entry.rb
knife-essentials-0.7.3 lib/chef_fs/file_system/file_system_entry.rb