Sha256: 5d5d7bfaac97a8541eac012be328d55946e026d1b92ea98b68df3d8e5d6d2d0b

Contents?: true

Size: 1.84 KB

Versions: 7

Compression:

Stored size: 1.84 KB

Contents

# frozen_string_literal: true
require "pathname"

module ThemeCheck
  class FileSystemStorage < Storage
    attr_reader :root

    def initialize(root, ignored_patterns: [])
      @root = Pathname.new(root)
      @ignored_patterns = ignored_patterns
      @files = {}
    end

    def relative_path(absolute_path)
      Pathname.new(absolute_path).relative_path_from(@root).to_s
    end

    def path(relative_path)
      @root.join(relative_path)
    end

    def read(relative_path)
      file(relative_path).read(mode: 'rb', encoding: 'UTF-8')
    end

    def write(relative_path, content)
      reset_memoizers unless file_exists?(relative_path)

      file(relative_path).dirname.mkpath unless file(relative_path).dirname.directory?
      file(relative_path).write(content, mode: 'w+b', encoding: 'UTF-8')
    end

    def remove(relative_path)
      file(relative_path).delete
      reset_memoizers
    end

    def mkdir(relative_path)
      return if file_exists?(relative_path)
      reset_memoizers
      file(relative_path).mkpath
    end

    def files
      @file_array ||= glob("**/*")
        .reject { |path| File.directory?(path) }
        .map { |path| path.relative_path_from(@root).to_s }
    end

    def directories
      @directories ||= glob('*')
        .select { |f| File.directory?(f) }
        .map { |f| f.relative_path_from(@root).to_s }
    end

    private

    def file_exists?(relative_path)
      !!@files[relative_path]
    end

    def reset_memoizers
      @file_array = nil
      @directories = nil
    end

    def glob(pattern)
      @root.glob(pattern).reject do |path|
        relative_path = path.relative_path_from(@root)
        @ignored_patterns.any? { |ignored| relative_path.fnmatch?(ignored) }
      end
    end

    def file(name)
      return @files[name] if @files[name]
      @files[name] = root.join(name)
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
theme-check-1.10.3 lib/theme_check/file_system_storage.rb
theme-check-1.10.2 lib/theme_check/file_system_storage.rb
theme-check-1.10.1 lib/theme_check/file_system_storage.rb
theme-check-1.10.0 lib/theme_check/file_system_storage.rb
theme-check-1.9.2 lib/theme_check/file_system_storage.rb
theme-check-1.9.1 lib/theme_check/file_system_storage.rb
theme-check-1.9.0 lib/theme_check/file_system_storage.rb