Sha256: 9afcc6f370e74604b610ba446b4cd69619d40331f723700e1164c5174474a904

Contents?: true

Size: 1.19 KB

Versions: 4

Compression:

Stored size: 1.19 KB

Contents

# encoding: utf-8

module Backup
  module Compressor
    class Bzip2 < Base

      ##
      # Tells Backup::Compressor::Bzip2 to compress
      # better (-9) rather than faster when set to true
      attr_accessor :best

      ##
      # Tells Backup::Compressor::Bzip2 to compress
      # faster (-1) rather than better when set to true
      attr_accessor :fast

      ##
      # Creates a new instance of Backup::Compressor::Bzip2 and
      # configures it to either compress faster or better
      # bzip2 compresses by default with -9 (best compression)
      # and lower block sizes don't make things significantly faster
      # (according to official bzip2 docs)
      def initialize(&block)
        super

        @best ||= false
        @fast ||= false

        instance_eval(&block) if block_given?
      end

      ##
      # Yields to the block the compressor command with options
      # and it's filename extension.
      def compress_with
        log!
        yield "#{ utility(:bzip2) }#{ options }", '.bz2'
      end

      private

      ##
      # Returns the option syntax for compressing
      def options
        " #{ '--best ' if @best }#{ '--fast' if @fast }".rstrip
      end

    end
  end
end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
backup_checksum-3.0.23 lib/backup/compressor/bzip2.rb
backup-3.0.23 lib/backup/compressor/bzip2.rb
backup-3.0.22 lib/backup/compressor/bzip2.rb
backup-3.0.21 lib/backup/compressor/bzip2.rb