Sha256: afd07a9d5bcd34b70320201a2c10bc6e63f26b83fbef8a033405fd6e0655aa19

Contents?: true

Size: 1.5 KB

Versions: 3

Compression:

Stored size: 1.5 KB

Contents

require 'fspath'
require 'image_size'

class ImageOptim
  class ImagePath < FSPath
    class Optimized < DelegateClass(self)
      def initialize(path, original_or_size = nil)
        path = ImagePath.convert(path)
        __setobj__(path)
        if original_or_size
          if original_or_size.is_a?(Integer)
            @original = path
            @original_size = original_or_size
          else
            @original = ImagePath.convert(original_or_size)
            @original_size = @original.size
          end
        end
      end

      # Original path, use original_size to get its size as original can be overwritten
      attr_reader :original

      # Stored size of original
      attr_reader :original_size
    end

    # Get temp path for this file with same extension
    def temp_path(*args, &block)
      ext = extname
      self.class.temp_file_path([basename(ext), ext], *args, &block)
    end

    # Copy file to dest preserving attributes
    def copy(dst)
      FileUtils.copy_file(self, dst, true)
    end

    # Atomic replace src with self
    def replace(src)
      src = self.class.new(src)
      src.temp_path(src.dirname) do |temp|
        src.copy(temp)
        temp.write(read)
        temp.rename(src.to_s)
      end
    end

    # Get format using ImageSize
    def format
      open{ |f| ImageSize.new(f) }.format
    end

    # Returns path if it is already an instance of this class otherwise new instance
    def self.convert(path)
      path.is_a?(self) ? path : new(path)
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
image_optim-0.10.2 lib/image_optim/image_path.rb
image_optim-0.10.1 lib/image_optim/image_path.rb
image_optim-0.10.0 lib/image_optim/image_path.rb