deltaconveyor 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +12 -0
- data/.rspec +2 -0
- data/.travis.yml +5 -0
- data/Gemfile +6 -0
- data/LICENSE.txt +21 -0
- data/README.md +39 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/deltaconveyor.gemspec +27 -0
- data/lib/deltaconveyor/config.rb +21 -0
- data/lib/deltaconveyor/container.rb +9 -0
- data/lib/deltaconveyor/row.rb +23 -0
- data/lib/deltaconveyor/version.rb +3 -0
- data/lib/deltaconveyor.rb +66 -0
- metadata +101 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: c4cec384a6d6beb17140bbf639626d1c9af0e0c4
|
4
|
+
data.tar.gz: d10128dba99d415c9ba0c7ba39ac0f5015aee446
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 1f8591eea8de3441d27d27da237961692ec07436e8a54ff6352722f50fdb09f94a3037b4df3a11bca2dad674355ebe6c4e8c17f9dbe02650750fc0852a417fce
|
7
|
+
data.tar.gz: 94073eedc038e499dc6813284dd066911ec70761917aa653c6b5113490864f08e8faa63f50cb57f74048d21481973d0edee3d0fee35b9bc1cbcc31ad7aea2e1e
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2017 qsona
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,39 @@
|
|
1
|
+
# Deltaconveyor
|
2
|
+
|
3
|
+
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/deltaconveyor`. To experiment with that code, run `bin/console` for an interactive prompt.
|
4
|
+
|
5
|
+
TODO: Delete this and the text above, and describe your gem
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
Add this line to your application's Gemfile:
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
gem 'deltaconveyor'
|
13
|
+
```
|
14
|
+
|
15
|
+
And then execute:
|
16
|
+
|
17
|
+
$ bundle
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
|
21
|
+
$ gem install deltaconveyor
|
22
|
+
|
23
|
+
## Usage
|
24
|
+
|
25
|
+
TODO: Write usage instructions here
|
26
|
+
|
27
|
+
## Development
|
28
|
+
|
29
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
30
|
+
|
31
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
32
|
+
|
33
|
+
## Contributing
|
34
|
+
|
35
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/deltaconveyor.
|
36
|
+
|
37
|
+
## License
|
38
|
+
|
39
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "deltaconveyor"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path("../lib", __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require "deltaconveyor/version"
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "deltaconveyor"
|
8
|
+
spec.version = Deltaconveyor::VERSION
|
9
|
+
spec.authors = ["qsona"]
|
10
|
+
spec.email = ["u999sona@cpost.plala.or.jp"]
|
11
|
+
|
12
|
+
spec.summary = "A data inserting tool for ruby"
|
13
|
+
spec.description = "TBD"
|
14
|
+
spec.homepage = "https://github.com/qsona/deltaconveyor"
|
15
|
+
spec.license = "MIT"
|
16
|
+
|
17
|
+
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
18
|
+
f.match(%r{^(test|spec|features)/})
|
19
|
+
end
|
20
|
+
spec.bindir = "exe"
|
21
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
22
|
+
spec.require_paths = ["lib"]
|
23
|
+
|
24
|
+
spec.add_development_dependency "bundler", "~> 1.15"
|
25
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
26
|
+
spec.add_development_dependency "rspec", "~> 3.0"
|
27
|
+
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
module Deltaconveyor
|
2
|
+
class Config
|
3
|
+
DEFAULT_ORIGINAL_KEY_PROC = ->(original) { original.id }
|
4
|
+
DEFAULT_INFO_LOGGER_PROC = ->(*args) { puts *args }
|
5
|
+
DEFAULT_ERROR_LOGGER_PROC = ->(*args) { STDERR.puts *args }
|
6
|
+
|
7
|
+
attr_accessor :row_class, :original_key_proc, :info_logger_proc, :error_logger_proc
|
8
|
+
|
9
|
+
def original_key(original)
|
10
|
+
(original_key_proc || DEFAULT_ORIGINAL_KEY_PROC).call(original)
|
11
|
+
end
|
12
|
+
|
13
|
+
def info_logger(*args)
|
14
|
+
(info_logger_proc || DEFAULT_INFO_LOGGER_PROC).call(*args)
|
15
|
+
end
|
16
|
+
|
17
|
+
def error_logger(*args)
|
18
|
+
(error_logger_proc || DEFAULT_ERROR_LOGGER_PROC).call(*args)
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
module Deltaconveyor
|
2
|
+
class Row
|
3
|
+
def self.from_json(row_json, container)
|
4
|
+
raise 'You must implement .from_json method in class extends Row.'
|
5
|
+
end
|
6
|
+
|
7
|
+
def self.update!(original, row, container)
|
8
|
+
raise 'You must implement .update! method in class extends Row.'
|
9
|
+
end
|
10
|
+
|
11
|
+
def save!(container)
|
12
|
+
raise 'You must implement #save! method in class extends Row.'
|
13
|
+
end
|
14
|
+
|
15
|
+
def key
|
16
|
+
raise 'You must implement #key method in class extends Row.'
|
17
|
+
end
|
18
|
+
|
19
|
+
def valid?
|
20
|
+
raise 'You must implement #valid? method in class extends Row.'
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
@@ -0,0 +1,66 @@
|
|
1
|
+
require "deltaconveyor/version"
|
2
|
+
require "deltaconveyor/row"
|
3
|
+
require "deltaconveyor/config"
|
4
|
+
require "deltaconveyor/container"
|
5
|
+
|
6
|
+
module Deltaconveyor
|
7
|
+
def self.import(data, container, force_remove: false)
|
8
|
+
originals = container.originals
|
9
|
+
config = container.config
|
10
|
+
|
11
|
+
rows = data.map { |d| config.row_class.from_json(d, container) }
|
12
|
+
invalids = rows.reject(&:valid?)
|
13
|
+
if invalids.size > 0
|
14
|
+
config.error_logger 'Error: Some data has errors.'
|
15
|
+
invalids.each do |invalid|
|
16
|
+
config.error_logger invalid.errors.messages.to_s
|
17
|
+
end
|
18
|
+
raise 'Not Imported.'
|
19
|
+
end
|
20
|
+
|
21
|
+
original_hash = originals.index_by { |d| config.original_key(d) }
|
22
|
+
new_hash = rows.index_by(&:key)
|
23
|
+
|
24
|
+
original_keys = original_hash.keys
|
25
|
+
new_keys = new_hash.keys
|
26
|
+
|
27
|
+
intersection_keys = original_keys & new_keys
|
28
|
+
remove_keys = original_keys - intersection_keys
|
29
|
+
adding_keys = new_keys - intersection_keys
|
30
|
+
|
31
|
+
if remove_keys.size > 0 && !force_remove
|
32
|
+
config.error_logger 'Error: Some data is facing to remove but `force_remove` flag is false'
|
33
|
+
config.error_logger 'so import is stopped.'
|
34
|
+
config.error_logger 'Removing keys:'
|
35
|
+
config.error_logger remove_keys
|
36
|
+
raise 'Not Imported.'
|
37
|
+
end
|
38
|
+
|
39
|
+
remove_keys.each do |key|
|
40
|
+
original_data = original_hash[key]
|
41
|
+
raise 'Bug.' unless original_data
|
42
|
+
config.info_logger "Remove #{key}"
|
43
|
+
original_data.destroy!
|
44
|
+
end
|
45
|
+
config.info_logger 'Removing Phase is finished.'
|
46
|
+
|
47
|
+
intersection_keys.each do |key|
|
48
|
+
original_data = original_hash[key]
|
49
|
+
new_data = new_hash[key]
|
50
|
+
raise 'Bug.' unless original_data && new_data
|
51
|
+
|
52
|
+
config.row_class.update!(original_data, new_data, container)
|
53
|
+
end
|
54
|
+
config.info_logger 'Updating Phase is finished.'
|
55
|
+
|
56
|
+
adding_keys.each do |key|
|
57
|
+
new_data = new_hash[key]
|
58
|
+
raise 'Bug.' unless new_data
|
59
|
+
|
60
|
+
config.info_logger "Insert #{key}"
|
61
|
+
new_data.save!(container)
|
62
|
+
end
|
63
|
+
config.info_logger 'Adding Phase is finished.'
|
64
|
+
nil
|
65
|
+
end
|
66
|
+
end
|
metadata
ADDED
@@ -0,0 +1,101 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: deltaconveyor
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- qsona
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2017-10-16 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.15'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.15'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '3.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '3.0'
|
55
|
+
description: TBD
|
56
|
+
email:
|
57
|
+
- u999sona@cpost.plala.or.jp
|
58
|
+
executables: []
|
59
|
+
extensions: []
|
60
|
+
extra_rdoc_files: []
|
61
|
+
files:
|
62
|
+
- ".gitignore"
|
63
|
+
- ".rspec"
|
64
|
+
- ".travis.yml"
|
65
|
+
- Gemfile
|
66
|
+
- LICENSE.txt
|
67
|
+
- README.md
|
68
|
+
- Rakefile
|
69
|
+
- bin/console
|
70
|
+
- bin/setup
|
71
|
+
- deltaconveyor.gemspec
|
72
|
+
- lib/deltaconveyor.rb
|
73
|
+
- lib/deltaconveyor/config.rb
|
74
|
+
- lib/deltaconveyor/container.rb
|
75
|
+
- lib/deltaconveyor/row.rb
|
76
|
+
- lib/deltaconveyor/version.rb
|
77
|
+
homepage: https://github.com/qsona/deltaconveyor
|
78
|
+
licenses:
|
79
|
+
- MIT
|
80
|
+
metadata: {}
|
81
|
+
post_install_message:
|
82
|
+
rdoc_options: []
|
83
|
+
require_paths:
|
84
|
+
- lib
|
85
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0'
|
90
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
91
|
+
requirements:
|
92
|
+
- - ">="
|
93
|
+
- !ruby/object:Gem::Version
|
94
|
+
version: '0'
|
95
|
+
requirements: []
|
96
|
+
rubyforge_project:
|
97
|
+
rubygems_version: 2.5.1
|
98
|
+
signing_key:
|
99
|
+
specification_version: 4
|
100
|
+
summary: A data inserting tool for ruby
|
101
|
+
test_files: []
|