simple_downloader_td 0.0.1

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/.gitignore ADDED
@@ -0,0 +1,22 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
18
+ *.bundle
19
+ *.so
20
+ *.o
21
+ *.a
22
+ mkmf.log
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in simple_downloader_td.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 toru-takahashi
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,29 @@
1
+ # SimpleDownloaderTd
2
+
3
+ ## Installation
4
+
5
+ Add this line to your application's Gemfile:
6
+
7
+ gem 'simple_downloader_td'
8
+
9
+ And then execute:
10
+
11
+ $ bundle
12
+
13
+ Or install it yourself as:
14
+
15
+ $ gem install simple_downloader_td
16
+
17
+ ## Usage
18
+
19
+ ```
20
+ $ SimpleDownloaderTd <job_id>
21
+ ```
22
+
23
+ ## Contributing
24
+
25
+ 1. Fork it ( https://github.com/[my-github-username]/simple_downloader_td/fork )
26
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
27
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
28
+ 4. Push to the branch (`git push origin my-new-feature`)
29
+ 5. Create a new Pull Request
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+ # coding: utf-8
3
+
4
+ require 'simple_downloader_td'
5
+
6
+ SimpleDownloaderTd::Command.run(ARGV)
@@ -0,0 +1,72 @@
1
+ # coding: utf-8
2
+ require 'rubygems'
3
+ require "simple_downloader_td/version"
4
+ require "simple_downloader_td/command"
5
+ require 'msgpack'
6
+ require 'csv'
7
+ require 'json'
8
+ require 'td'
9
+ require 'td-client'
10
+ require 'zlib'
11
+ require 'fileutils'
12
+
13
+ module SimpleDownloaderTd
14
+ def self.download(job_id)
15
+ # Get TD APIKEY in ~/.td/td.conf
16
+ data = File.read(File.join(ENV['HOME'], '.td', 'td-sios.conf'))
17
+ data.each_line do |line|
18
+ line.strip!
19
+ case line
20
+ when /^#/
21
+ next
22
+ when /\[(.+)\]/
23
+ section = $~[1]
24
+ when /^(\w+)\s*=\s*(.+?)\s*$/
25
+ key = $~[1]
26
+ val = $~[2]
27
+ @APIKEY = val
28
+ else
29
+ STDOUT.puts "Can't read apikey."
30
+ end
31
+ end
32
+ cln = TreasureData::Client.new(@APIKEY, {ssl: true})
33
+
34
+ # get job result
35
+ job = cln.job(job_id)
36
+
37
+ # check job status
38
+ unless job.finished? then
39
+ STDOUT.puts "The job didn't finish yet."
40
+ exit
41
+ end
42
+
43
+ # download job result as msgpack.gz
44
+ begin
45
+ File.open("#{job_id}_tmp.msgpack.gz", "wb") do |f|
46
+ job.result_format('msgpack.gz', f) do |compr_size|
47
+ STDOUT.puts "Downloaded: #{(compr_size / job.result_size) * 100}%"
48
+ end
49
+ end
50
+ rescue Exception => e
51
+ STDERR.puts e
52
+ end
53
+ STDOUT.puts "Start converting..."
54
+ # convert tsv file
55
+ begin
56
+ File.open("#{job_id}.tsv", "w+") do |writer|
57
+ src = MessagePack::Unpacker.new(Zlib::GzipReader.open("#{job_id}_tmp.msgpack.gz"))
58
+ job.hive_result_schema.each do |schema|
59
+ writer << schema[0] + "\t"
60
+ end
61
+ writer << "\n"
62
+ src.each do |obj|
63
+ writer << obj.join("\t") + "\n"
64
+ end
65
+ end
66
+ File.delete("#{job_id}_tmp.msgpack.gz")
67
+ STDOUT.puts "Finish."
68
+ rescue Exception => e
69
+ STDERR.puts e
70
+ end
71
+ end
72
+ end
@@ -0,0 +1,23 @@
1
+ # coding: utf-8
2
+ require 'simple_downloader_td'
3
+ STDOUT.sync = true
4
+
5
+ module SimpleDownloaderTd
6
+ class Command
7
+ def initialize(argv)
8
+ if (argv.size != 1) || (argv[0].to_i == 0)
9
+ STDOUT.puts "usage: SimpleDownloaderTd <job id>"
10
+ exit
11
+ end
12
+ @argv = argv
13
+ end
14
+
15
+ def self.run(argv)
16
+ new(argv).execute
17
+ end
18
+
19
+ def execute
20
+ SimpleDownloaderTd.download(@argv[0])
21
+ end
22
+ end
23
+ end
@@ -0,0 +1,4 @@
1
+ # coding: utf-8
2
+ module SimpleDownloaderTd
3
+ VERSION = "0.0.1"
4
+ end
@@ -0,0 +1,26 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'simple_downloader_td/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "simple_downloader_td"
8
+ spec.version = SimpleDownloaderTd::VERSION
9
+ spec.authors = ["toru-takahashi"]
10
+ spec.email = ["torutakahashi.ayashi@gmail.com"]
11
+ spec.summary = %q{Download job result from TreasureData}
12
+ spec.description = %q{Download job result from TreasureData}
13
+ spec.homepage = "https://github.com/toru-takahashi/simple_downloader_td"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0")
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.6"
22
+ spec.add_development_dependency "rake"
23
+ spec.add_dependency "td"
24
+ spec.add_dependency "td-client"
25
+ spec.add_dependency "msgpack"
26
+ end
metadata ADDED
@@ -0,0 +1,143 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: simple_downloader_td
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - toru-takahashi
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2014-08-03 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: bundler
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: '1.6'
22
+ type: :development
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ~>
28
+ - !ruby/object:Gem::Version
29
+ version: '1.6'
30
+ - !ruby/object:Gem::Dependency
31
+ name: rake
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ! '>='
36
+ - !ruby/object:Gem::Version
37
+ version: '0'
38
+ type: :development
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ! '>='
44
+ - !ruby/object:Gem::Version
45
+ version: '0'
46
+ - !ruby/object:Gem::Dependency
47
+ name: td
48
+ requirement: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ! '>='
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
54
+ type: :runtime
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ! '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ - !ruby/object:Gem::Dependency
63
+ name: td-client
64
+ requirement: !ruby/object:Gem::Requirement
65
+ none: false
66
+ requirements:
67
+ - - ! '>='
68
+ - !ruby/object:Gem::Version
69
+ version: '0'
70
+ type: :runtime
71
+ prerelease: false
72
+ version_requirements: !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ! '>='
76
+ - !ruby/object:Gem::Version
77
+ version: '0'
78
+ - !ruby/object:Gem::Dependency
79
+ name: msgpack
80
+ requirement: !ruby/object:Gem::Requirement
81
+ none: false
82
+ requirements:
83
+ - - ! '>='
84
+ - !ruby/object:Gem::Version
85
+ version: '0'
86
+ type: :runtime
87
+ prerelease: false
88
+ version_requirements: !ruby/object:Gem::Requirement
89
+ none: false
90
+ requirements:
91
+ - - ! '>='
92
+ - !ruby/object:Gem::Version
93
+ version: '0'
94
+ description: Download job result from TreasureData
95
+ email:
96
+ - torutakahashi.ayashi@gmail.com
97
+ executables:
98
+ - SimpleDownloaderTd
99
+ extensions: []
100
+ extra_rdoc_files: []
101
+ files:
102
+ - .gitignore
103
+ - Gemfile
104
+ - LICENSE.txt
105
+ - README.md
106
+ - Rakefile
107
+ - bin/SimpleDownloaderTd
108
+ - lib/simple_downloader_td.rb
109
+ - lib/simple_downloader_td/command.rb
110
+ - lib/simple_downloader_td/version.rb
111
+ - simple_downloader_td.gemspec
112
+ homepage: https://github.com/toru-takahashi/simple_downloader_td
113
+ licenses:
114
+ - MIT
115
+ post_install_message:
116
+ rdoc_options: []
117
+ require_paths:
118
+ - lib
119
+ required_ruby_version: !ruby/object:Gem::Requirement
120
+ none: false
121
+ requirements:
122
+ - - ! '>='
123
+ - !ruby/object:Gem::Version
124
+ version: '0'
125
+ segments:
126
+ - 0
127
+ hash: -678123207876871461
128
+ required_rubygems_version: !ruby/object:Gem::Requirement
129
+ none: false
130
+ requirements:
131
+ - - ! '>='
132
+ - !ruby/object:Gem::Version
133
+ version: '0'
134
+ segments:
135
+ - 0
136
+ hash: -678123207876871461
137
+ requirements: []
138
+ rubyforge_project:
139
+ rubygems_version: 1.8.23.2
140
+ signing_key:
141
+ specification_version: 3
142
+ summary: Download job result from TreasureData
143
+ test_files: []