123456789_123456789_123456789_123456789_123456789_

Class: ActiveRecord::Tasks::PostgreSQLDatabaseTasks

Do not use. This class is for internal use only.
Relationships & Source Files
Super Chains via Extension / Inclusion / Inheritance
Class Chain:
Instance Chain:
Inherits: ActiveRecord::Tasks::AbstractTasks
Defined in: activerecord/lib/active_record/tasks/postgresql_database_tasks.rb

Constant Summary

Class Attribute Summary

Class Method Summary

AbstractTasks - Inherited

Instance Attribute Summary

Instance Method Summary

Constructor Details

This class inherits a constructor from ActiveRecord::Tasks::AbstractTasks

Instance Method Details

#create(connection_already_established = false)

[ GitHub ]

  
# File 'activerecord/lib/active_record/tasks/postgresql_database_tasks.rb', line 12

def create(connection_already_established = false)
  establish_connection(public_schema_config) unless connection_already_established
  connection.create_database(db_config.database, configuration_hash.merge(encoding: encoding))
  establish_connection
end

#drop

[ GitHub ]

  
# File 'activerecord/lib/active_record/tasks/postgresql_database_tasks.rb', line 18

def drop
  establish_connection(public_schema_config)
  connection.drop_database(db_config.database)
end

#encoding (private)

[ GitHub ]

  
# File 'activerecord/lib/active_record/tasks/postgresql_database_tasks.rb', line 72

def encoding
  configuration_hash[:encoding] || DEFAULT_ENCODING
end

#psql_env (private)

[ GitHub ]

  
# File 'activerecord/lib/active_record/tasks/postgresql_database_tasks.rb', line 80

def psql_env
  {}.tap do |env|
    env["PGHOST"]         = db_config.host                        if db_config.host
    env["PGPORT"]         = configuration_hash[:port].to_s        if configuration_hash[:port]
    env["PGPASSWORD"]     = configuration_hash[:password].to_s    if configuration_hash[:password]
    env["PGUSER"]         = configuration_hash[:username].to_s    if configuration_hash[:username]
    env["PGSSLMODE"]      = configuration_hash[:sslmode].to_s     if configuration_hash[:sslmode]
    env["PGSSLCERT"]      = configuration_hash[:sslcert].to_s     if configuration_hash[:sslcert]
    env["PGSSLKEY"]       = configuration_hash[:sslkey].to_s      if configuration_hash[:sslkey]
    env["PGSSLROOTCERT"]  = configuration_hash[:sslrootcert].to_s if configuration_hash[:sslrootcert]
  end
end

#public_schema_config (private)

[ GitHub ]

  
# File 'activerecord/lib/active_record/tasks/postgresql_database_tasks.rb', line 76

def public_schema_config
  configuration_hash.merge(database: "postgres", schema_search_path: "public")
end

#purge

[ GitHub ]

  
# File 'activerecord/lib/active_record/tasks/postgresql_database_tasks.rb', line 23

def purge
  ActiveRecord::Base.connection_handler.clear_active_connections!(:all)
  drop
  create true
end

#remove_sql_header_comments(filename) (private)

[ GitHub ]

  
# File 'activerecord/lib/active_record/tasks/postgresql_database_tasks.rb', line 97

def remove_sql_header_comments(filename)
  removing_comments = true
  tempfile = Tempfile.open("uncommented_structure.sql")
  begin
    File.foreach(filename) do |line|
      unless removing_comments && (line.start_with?(SQL_COMMENT_BEGIN) || line.blank?)
        tempfile << line
        removing_comments = false
      end
    end
  ensure
    tempfile.close
  end
  FileUtils.cp(tempfile.path, filename)
end

#run_cmd(cmd, *args, **opts) (private)

[ GitHub ]

  
# File 'activerecord/lib/active_record/tasks/postgresql_database_tasks.rb', line 93

def run_cmd(cmd, *args, **opts)
  fail run_cmd_error(cmd, args) unless Kernel.system(psql_env, cmd, *args, **opts)
end

#structure_dump(filename, extra_flags)

[ GitHub ]

  
# File 'activerecord/lib/active_record/tasks/postgresql_database_tasks.rb', line 29

def structure_dump(filename, extra_flags)
  search_path = \
    case ActiveRecord.dump_schemas
    when :schema_search_path
      configuration_hash[:schema_search_path]
    when :all
      nil
    when String
      ActiveRecord.dump_schemas
    end

  args = ["--schema-only", "--no-privileges", "--no-owner"]
  args.concat(["--file", filename])

  args.concat(Array(extra_flags)) if extra_flags

  unless search_path.blank?
    args += search_path.split(",").map do |part|
      "--schema=#{part.strip}"
    end
  end

  ignore_tables = ActiveRecord::SchemaDumper.ignore_tables
  if ignore_tables.any?
    ignore_tables = connection.data_sources.select { |table| ignore_tables.any? { |pattern| pattern === table } }
    args += ignore_tables.flat_map { |table| ["-T", table] }
  end

  args << db_config.database
  run_cmd("pg_dump", *args)
  remove_sql_header_comments(filename)
  File.open(filename, "a") { |f| f << "SET search_path TO #{connection.schema_search_path};\n\n" }
end

#structure_load(filename, extra_flags)

[ GitHub ]

  
# File 'activerecord/lib/active_record/tasks/postgresql_database_tasks.rb', line 63

def structure_load(filename, extra_flags)
  args = ["--set", ON_ERROR_STOP_1, "--quiet", "--no-psqlrc", "--output", File::NULL]
  args.concat(Array(extra_flags)) if extra_flags
  args.concat(["--file", filename])
  args << db_config.database
  run_cmd("psql", *args)
end