tapsoob 0.3.8-java → 0.3.19-java

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2d3ab72e8b99be12c81678c0576411c9ecacdab0b1f40432710afad1de2eee38
4
- data.tar.gz: 0d4f7624488356b7823b8f135a4e39627251e63497f208de6bd8848e367e3f40
3
+ metadata.gz: edc018c5a29b9591b4f6f8c5eaf01f2d275c430c9397b0c19c09d21da5fdb75c
4
+ data.tar.gz: 30bddf91e43eaef5bcacd9b7cb16a84dd4ad44f88e2ac678004317d9fdab8e60
5
5
  SHA512:
6
- metadata.gz: b48f391f4a0ab695ebc73b0a76385b03580cbdf99888be4201b8375b31728f6e91af610e865ffd32c80e4a3ebb447d0a01d700136b391571859246936d87ee0a
7
- data.tar.gz: 70b5a111087345c59f6c8b9c49f40913a4c07ad70b3647c1f875e3f671b19aa3e76f2c027531284827930969a3855919ea876a588e27440183974b7bf5676ab5
6
+ metadata.gz: 83033d2182ed00d868a5c380a58758ad7e93de9542f35db9e0819e123982dd75297ee716f202bf0fbe6e2ac5f7d05296a052f1669860f9e2a09f5d76b0edee27
7
+ data.tar.gz: 57a6a3355f4702753e1d028abec752bee789a6bd8e1daf8b959a40ae4fe75099db1891545c7a24851f518e1557d19b9843a0d3fe6c5fff1091a18d7556cd26ae
data/README.md CHANGED
@@ -36,6 +36,23 @@ You can list all available options using the command:
36
36
  tapsoob push -h
37
37
 
38
38
 
39
+ ## NEW : Piping your schema/indexes/data
40
+
41
+ Due to some needs we added ways to pipe your schema/indexes/data directly from one database to another, here's an equivalent of the export/import process described above using this technique :
42
+
43
+ ```
44
+ tapsoob schema dump <db_source_url> | tapsoob schema load <db_target_url> --drop=true
45
+ tapsoob schema indexes <db_source_url> | tapsoob schema load_indexes <db_target_url>
46
+ tapsoob data pull <db_source_url> -p false | tapsoob data push <db_target_url>
47
+ tapsoob schema reset_db_sequences <db_target_url>
48
+ ```
49
+
50
+ A few notes here :
51
+
52
+ * the `--drop` option for the `schema load` command defaults to false, if you don't intend to drop your tables on your target databases you can ommit it (if a table already exists tapsoob will exit w/ an error) ;
53
+ * the `data pull` and `data push` commands are new and have a few options that you can display w/ `tapsoob data <pull|push> -h`, by defaults it prints the progress of your data extraction/import but if you want to pipe directly your export into another database you'll have to set the `--progress` (shorthand `-p`) option to `false` (or `--no-progress`) as above ;
54
+ * resetting database sequences is important as a `data push` command doesn't handle that directly.
55
+
39
56
  ## Integration with Rails
40
57
 
41
58
  If you're using Rails, there's also two Rake tasks provided:
@@ -218,6 +218,16 @@ module Tapsoob
218
218
  end
219
219
 
220
220
  def import_rows(rows)
221
+ # Decode blobs
222
+ if rows.has_key?(:types) && rows[:types].include?("blob")
223
+ blob_indices = rows[:types].each_index.select { |idx| rows[:types][idx] == "blob" }
224
+ rows[:data].each_index do |idx|
225
+ blob_indices.each do |bi|
226
+ rows[:data][idx][bi] = Sequel::SQL::Blob.new(Tapsoob::Utils.base64decode(rows[:data][idx][bi])) unless rows[:data][idx][bi].nil?
227
+ end
228
+ end
229
+ end
230
+
221
231
  table.import(rows[:header], rows[:data], :commit_every => 100)
222
232
  state[:offset] += rows[:data].size
223
233
  rescue Exception => ex
@@ -2,6 +2,7 @@
2
2
  require 'sequel'
3
3
  require 'sequel/extensions/schema_dumper'
4
4
  require 'sequel/extensions/migration'
5
+ require 'erb'
5
6
  require 'json'
6
7
 
7
8
  module Tapsoob
@@ -11,7 +12,23 @@ module Tapsoob
11
12
  def dump(database_url)
12
13
  db = Sequel.connect(database_url)
13
14
  db.extension :schema_dumper
14
- db.dump_schema_migration(:indexes => false)
15
+ template = ERB.new <<-END_MIG
16
+ Class.new(Sequel::Migration) do
17
+ def up
18
+ <% db.tables.each do |table| %>
19
+ <%= db.dump_table_schema(table, indexes: false) %>
20
+ <% end %>
21
+ end
22
+
23
+ def down
24
+ <% db.tables.each do |table| %>
25
+ drop_table("<%= table %>", if_exists: true)
26
+ <% end %>
27
+ end
28
+ end
29
+ END_MIG
30
+
31
+ template.result(binding)
15
32
  end
16
33
 
17
34
  def dump_table(database_url, table)
@@ -21,7 +38,7 @@ module Tapsoob
21
38
  <<END_MIG
22
39
  Class.new(Sequel::Migration) do
23
40
  def up
24
- #{db.dump_table_schema(table, :indexes => false)}
41
+ #{db.dump_table_schema(table, indexes: false)}
25
42
  end
26
43
 
27
44
  def down
@@ -67,7 +84,16 @@ END_MIG
67
84
  Sequel.connect(database_url) do |db|
68
85
  db.extension :schema_dumper
69
86
  klass = eval(schema)
70
- klass.apply(db, :down) if options[:drop]
87
+ if options[:drop]
88
+ # Start special hack for MySQL
89
+ db.run("SET foreign_key_checks = 0") if [:mysql, :mysql2].include?(db.adapter_scheme)
90
+
91
+ # Run down migration
92
+ klass.apply(db, :down)
93
+
94
+ # End special hack for MySQL
95
+ db.run("SET foreign_key_checks = 1") if [:mysql, :mysql2].include?(db.adapter_scheme)
96
+ end
71
97
  klass.apply(db, :up)
72
98
  end
73
99
  end
@@ -51,7 +51,7 @@ module Tapsoob
51
51
 
52
52
  header = data[0].keys
53
53
  only_data = data.collect do |row|
54
- row = blobs_to_string(row, string_columns)
54
+ row = encode_blobs(row, string_columns)
55
55
  row.each do |column, data|
56
56
  if data.to_s.length > (max_lengths[column] || data.to_s.length)
57
57
  raise Tapsoob::InvalidData.new(<<-ERROR)
@@ -70,27 +70,33 @@ Data : #{data}
70
70
  end
71
71
  header.collect { |h| row[h] }
72
72
  end
73
- { table_name: table, header: header, data: only_data }
73
+
74
+ res = { table_name: table, header: header, data: only_data }
75
+
76
+ # Add types if schema isn't empty
77
+ res[:types] = schema.map { |c| c.last[:type] } unless schema.empty?
78
+
79
+ res
74
80
  end
75
81
 
76
82
  # mysql text and blobs fields are handled the same way internally
77
83
  # this is not true for other databases so we must check if the field is
78
84
  # actually text and manually convert it back to a string
79
85
  def incorrect_blobs(db, table)
80
- return [] if (db.url =~ /mysql:\/\//).nil?
86
+ return [] if (db.url =~ /(mysql|mysql2):\/\//).nil?
81
87
 
82
88
  columns = []
83
89
  db.schema(table).each do |data|
84
90
  column, cdata = data
85
- columns << column if cdata[:db_type] =~ /text/
91
+ columns << column if cdata[:type] == :blob
86
92
  end
87
93
  columns
88
94
  end
89
95
 
90
- def blobs_to_string(row, columns)
96
+ def encode_blobs(row, columns)
91
97
  return row if columns.size == 0
92
98
  columns.each do |c|
93
- row[c] = row[c].to_s if row[c].kind_of?(Sequel::SQL::Blob)
99
+ row[c] = base64encode(row[c]) unless row[c].nil?
94
100
  end
95
101
  row
96
102
  end
@@ -1,4 +1,4 @@
1
1
  # -*- encoding : utf-8 -*-
2
2
  module Tapsoob
3
- VERSION = "0.3.8".freeze
3
+ VERSION = "0.3.19".freeze
4
4
  end
@@ -21,8 +21,8 @@ Gem::Specification.new do |s|
21
21
 
22
22
  # Dependencies
23
23
  s.add_dependency "ripl", "~> 0.7.1"
24
- s.add_dependency "sequel", "~> 5.25.0"
25
- s.add_dependency "thor", "~> 0.20.3"
24
+ s.add_dependency "sequel", "~> 5.37.0"
25
+ s.add_dependency "thor", "~> 1.0.1"
26
26
 
27
27
  if (RUBY_PLATFORM =~ /java/).nil?
28
28
  s.add_development_dependency "mysql2", "~> 0.4.10"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tapsoob
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.8
4
+ version: 0.3.19
5
5
  platform: java
6
6
  authors:
7
7
  - Félix Bellanger
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2020-03-27 00:00:00.000000000 Z
12
+ date: 2020-10-02 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  requirement: !ruby/object:Gem::Requirement
@@ -30,7 +30,7 @@ dependencies:
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: 5.25.0
33
+ version: 5.37.0
34
34
  name: sequel
35
35
  prerelease: false
36
36
  type: :runtime
@@ -38,13 +38,13 @@ dependencies:
38
38
  requirements:
39
39
  - - "~>"
40
40
  - !ruby/object:Gem::Version
41
- version: 5.25.0
41
+ version: 5.37.0
42
42
  - !ruby/object:Gem::Dependency
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
45
  - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: 0.20.3
47
+ version: 1.0.1
48
48
  name: thor
49
49
  prerelease: false
50
50
  type: :runtime
@@ -52,7 +52,7 @@ dependencies:
52
52
  requirements:
53
53
  - - "~>"
54
54
  - !ruby/object:Gem::Version
55
- version: 0.20.3
55
+ version: 1.0.1
56
56
  - !ruby/object:Gem::Dependency
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
@@ -149,8 +149,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
149
149
  - !ruby/object:Gem::Version
150
150
  version: '0'
151
151
  requirements: []
152
- rubyforge_project:
153
- rubygems_version: 2.7.10
152
+ rubygems_version: 3.1.4
154
153
  signing_key:
155
154
  specification_version: 4
156
155
  summary: Simple tool to import/export databases.