Sha256: 6ceb3c9d6cff7bea5c2bb5c42275029b09a138015dba152cb1f6405e417b2bb8

Contents?: true

Size: 1.58 KB

Versions: 12

Compression:

Stored size: 1.58 KB

Contents

# encoding: utf-8

module Backup
  module Syncer
    class Base
      include Utilities::Helpers
      include Config::Helpers

      ##
      # Path to store the synced files/directories to
      attr_accessor :path

      ##
      # Flag for mirroring the files/directories
      attr_accessor :mirror

      ##
      # Optional user-defined identifier to differentiate multiple syncers
      # defined within a single backup model. Currently this is only used
      # in the log messages.
      attr_reader :syncer_id

      attr_reader :excludes

      def initialize(syncer_id = nil)
        @syncer_id = syncer_id

        load_defaults!

        @mirror ||= false
        @directories = []
        @excludes = []
      end

      ##
      # Syntactical suger for the DSL for adding directories
      def directories(&block)
        return @directories unless block_given?
        instance_eval(&block)
      end

      def add(path)
        directories << path
      end

      # For Cloud Syncers, +pattern+ can be a string (with shell-style
      # wildcards) or a regex.
      # For RSync, each +pattern+ will be passed to rsync's --exclude option.
      def exclude(pattern)
        excludes << pattern
      end

      private

      def syncer_name
        @syncer_name ||= self.class.to_s.sub('Backup::', '') +
            (syncer_id ? " (#{ syncer_id })" : '')
      end

      def log!(action)
        msg = case action
              when :started then 'Started...'
              when :finished then 'Finished!'
              end
        Logger.info "#{ syncer_name } #{ msg }"
      end

    end
  end
end

Version data entries

12 entries across 12 versions & 3 rubygems

Version Path
backup-4.1.0 lib/backup/syncer/base.rb
backup-4.0.7 lib/backup/syncer/base.rb
backup-4.0.6 lib/backup/syncer/base.rb
backup-4.0.5 lib/backup/syncer/base.rb
backup-4.0.4 lib/backup/syncer/base.rb
backup_zh-4.0.3.1 lib/backup/syncer/base.rb
backup-4.0.3 lib/backup/syncer/base.rb
backup-4.0.2 lib/backup/syncer/base.rb
nfm-backup-4.0.1a lib/backup/syncer/base.rb
backup-4.0.1 lib/backup/syncer/base.rb
backup-4.0.0 lib/backup/syncer/base.rb
backup-4.0.0rc1 lib/backup/syncer/base.rb