GFunk911-dataload 0.3.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.
- data/LICENSE +20 -0
- data/README.rdoc +7 -0
- data/VERSION.yml +4 -0
- data/lib/dataload.rb +0 -0
- data/lib/dataload/loader.rb +133 -0
- data/spec/dataload_spec.rb +7 -0
- data/spec/spec_helper.rb +9 -0
- metadata +64 -0
data/LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2009 Mike Harris
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.rdoc
ADDED
data/VERSION.yml
ADDED
data/lib/dataload.rb
ADDED
File without changes
|
@@ -0,0 +1,133 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'mharris_ext'
|
3
|
+
require 'fastercsv'
|
4
|
+
require 'activerecord'
|
5
|
+
|
6
|
+
class FasterCSV::Row
|
7
|
+
def method_missing(sym,*args,&b)
|
8
|
+
if self[sym.to_s]
|
9
|
+
self[sym.to_s]
|
10
|
+
else
|
11
|
+
super(sym,*args,&b)
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
class Loader
|
17
|
+
fattr(:columns) { [] }
|
18
|
+
attr_accessor :source_filename, :db_ops, :table_name
|
19
|
+
fattr(:source_rows) do
|
20
|
+
res = []
|
21
|
+
FasterCSV.foreach(source_filename, :headers => true) do |row|
|
22
|
+
res << row
|
23
|
+
end
|
24
|
+
res
|
25
|
+
end
|
26
|
+
def target_hash_for_row(row)
|
27
|
+
h = {}
|
28
|
+
columns.each do |col|
|
29
|
+
h[col.target_name] = col.target_value(row)
|
30
|
+
end
|
31
|
+
h
|
32
|
+
end
|
33
|
+
def target_hashes
|
34
|
+
source_rows.map { |x| target_hash_for_row(x) }
|
35
|
+
end
|
36
|
+
def target_column_names
|
37
|
+
columns.map { |x| x.target_name }
|
38
|
+
end
|
39
|
+
def new_struct
|
40
|
+
Struct.new(*target_column_names)
|
41
|
+
end
|
42
|
+
fattr(:migration) do
|
43
|
+
raise "must define table" unless table_name
|
44
|
+
cls = Class.new(ActiveRecord::Migration)
|
45
|
+
class << cls
|
46
|
+
attr_accessor :cols, :table_name
|
47
|
+
end
|
48
|
+
cls.cols = columns
|
49
|
+
cls.table_name = table_name
|
50
|
+
puts "Table: #{table_name}"
|
51
|
+
cls.class_eval do
|
52
|
+
def self.up
|
53
|
+
create_table table_name do |t|
|
54
|
+
cols.each do |col|
|
55
|
+
t.column col.target_name, :string
|
56
|
+
end
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
60
|
+
cls
|
61
|
+
end
|
62
|
+
fattr(:ar) do
|
63
|
+
cls = Class.new(ActiveRecord::Base)
|
64
|
+
cls.send(:set_table_name, table_name)
|
65
|
+
cls
|
66
|
+
end
|
67
|
+
def migrate!
|
68
|
+
ar.find(:first)
|
69
|
+
rescue => exp
|
70
|
+
puts "find failed"
|
71
|
+
puts exp.inspect
|
72
|
+
migration.migrate(:up)
|
73
|
+
end
|
74
|
+
fattr(:ar_objects) do
|
75
|
+
target_hashes.map { |h| ar.new(h) }
|
76
|
+
end
|
77
|
+
def load!
|
78
|
+
ActiveRecord::Base.establish_connection(db_ops)
|
79
|
+
migrate!
|
80
|
+
ar_objects.each { |x| x.save! }
|
81
|
+
end
|
82
|
+
end
|
83
|
+
|
84
|
+
class Column
|
85
|
+
include FromHash
|
86
|
+
attr_accessor :target_name, :blk
|
87
|
+
def target_value(row)
|
88
|
+
if blk.arity == 1
|
89
|
+
blk.call(row)
|
90
|
+
else
|
91
|
+
row.instance_eval(&blk)
|
92
|
+
end
|
93
|
+
end
|
94
|
+
end
|
95
|
+
|
96
|
+
class LoaderDSL
|
97
|
+
fattr(:loader) { Loader.new }
|
98
|
+
def column(name,type,&blk)
|
99
|
+
blk ||= lambda { |x| x.send(name) }
|
100
|
+
loader.columns << Column.new(:target_name => name, :blk => blk)
|
101
|
+
end
|
102
|
+
def method_missing(sym,*args,&b)
|
103
|
+
if [:string, :text, :integer, :float, :decimal, :datetime, :timestamp, :time, :date, :binary, :boolean].include?(sym)
|
104
|
+
column(args.first,sym,&b)
|
105
|
+
else
|
106
|
+
super(sym,*args,&b)
|
107
|
+
end
|
108
|
+
end
|
109
|
+
def source(file)
|
110
|
+
loader.source_filename = file
|
111
|
+
end
|
112
|
+
def database(ops)
|
113
|
+
loader.db_ops = ops
|
114
|
+
end
|
115
|
+
def table(name)
|
116
|
+
loader.table_name = name
|
117
|
+
end
|
118
|
+
end
|
119
|
+
|
120
|
+
def dataload(&b)
|
121
|
+
dsl = LoaderDSL.new
|
122
|
+
dsl.instance_eval(&b)
|
123
|
+
dsl.loader.load!
|
124
|
+
puts "Row Count: " + dsl.loader.ar.find(:all).size.to_s
|
125
|
+
end
|
126
|
+
|
127
|
+
dataload do
|
128
|
+
source "source.csv"
|
129
|
+
database :adapter => 'sqlite3', :database => "db.sqlite3", :timeout => 5000
|
130
|
+
table 'foobar'
|
131
|
+
string(:cat) { bar + "_cat" }
|
132
|
+
end
|
133
|
+
|
data/spec/spec_helper.rb
ADDED
metadata
ADDED
@@ -0,0 +1,64 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: GFunk911-dataload
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.3.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Mike Harris
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2009-03-12 00:00:00 -07:00
|
13
|
+
default_executable:
|
14
|
+
dependencies: []
|
15
|
+
|
16
|
+
description:
|
17
|
+
email: GFunk913@gmail.com
|
18
|
+
executables: []
|
19
|
+
|
20
|
+
extensions: []
|
21
|
+
|
22
|
+
extra_rdoc_files:
|
23
|
+
- README.rdoc
|
24
|
+
- LICENSE
|
25
|
+
files:
|
26
|
+
- README.rdoc
|
27
|
+
- VERSION.yml
|
28
|
+
- lib/dataload
|
29
|
+
- lib/dataload/db.sqlite3
|
30
|
+
- lib/dataload/loader.rb
|
31
|
+
- lib/dataload/source.csv
|
32
|
+
- lib/dataload.rb
|
33
|
+
- spec/dataload_spec.rb
|
34
|
+
- spec/spec_helper.rb
|
35
|
+
- LICENSE
|
36
|
+
has_rdoc: true
|
37
|
+
homepage: http://github.com/GFunk911/dataload
|
38
|
+
post_install_message:
|
39
|
+
rdoc_options:
|
40
|
+
- --inline-source
|
41
|
+
- --charset=UTF-8
|
42
|
+
require_paths:
|
43
|
+
- lib
|
44
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
45
|
+
requirements:
|
46
|
+
- - ">="
|
47
|
+
- !ruby/object:Gem::Version
|
48
|
+
version: "0"
|
49
|
+
version:
|
50
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: "0"
|
55
|
+
version:
|
56
|
+
requirements: []
|
57
|
+
|
58
|
+
rubyforge_project:
|
59
|
+
rubygems_version: 1.2.0
|
60
|
+
signing_key:
|
61
|
+
specification_version: 2
|
62
|
+
summary: TODO
|
63
|
+
test_files: []
|
64
|
+
|