aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/tasks/firebird_database_tasks.rb
blob: 98014a38eae5613ead679b0c931458e192111118 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
module ActiveRecord
  module Tasks # :nodoc:
    class FirebirdDatabaseTasks # :nodoc:
      delegate :connection, :establish_connection, to: ActiveRecord::Base

      def initialize(configuration)
        ActiveSupport::Deprecation.warn "This database tasks were deprecated, because this tasks should be served by the 3rd party adapter."
        @configuration = configuration
      end

      def create
        $stderr.puts 'sorry, your database adapter is not supported yet, feel free to submit a patch'
      end

      def drop
        $stderr.puts 'sorry, your database adapter is not supported yet, feel free to submit a patch'
      end

      def purge
        establish_connection(:test)
        connection.recreate_database!
      end

      def charset
        $stderr.puts 'sorry, your database adapter is not supported yet, feel free to submit a patch'
      end

      def structure_dump(filename)
        set_firebird_env(configuration)
        db_string = firebird_db_string(configuration)
        Kernel.system "isql -a #{db_string} > #{filename}"
      end

      def structure_load(filename)
        set_firebird_env(configuration)
        db_string = firebird_db_string(configuration)
        Kernel.system "isql -i #{filename} #{db_string}"
      end

      private

      def set_firebird_env(config)
        ENV['ISC_USER']     = config['username'].to_s if config['username']
        ENV['ISC_PASSWORD'] = config['password'].to_s if config['password']
      end

      def firebird_db_string(config)
        FireRuby::Database.db_string_for(config.symbolize_keys)
      end

      def configuration
        @configuration
      end
    end
  end
end