-
Notifications
You must be signed in to change notification settings - Fork 45
/
output.rb
217 lines (169 loc) · 3.85 KB
/
output.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
require 'oj'
require 'csv'
module Dap
module Output
module FileDestination
attr_accessor :fd
def open(file_name)
close
self.fd = ['-', 'stdout', nil].include?(file_name) ?
$stdout : ::File.open(file_name, "wb")
end
def close
self.close if self.fd
self.fd = nil
end
# Overload this to add headers
def start
end
# Overload this to add footers
def stop
end
# String sanitizer for UTF-8
def sanitize(o)
# Handle strings
if o.kind_of? ::String
return o.to_s.encode(o.encoding, "UTF-8", :invalid => :replace, :undef => :replace, :replace => '')
end
# Handle hashes
if o.kind_of? ::Hash
r = {}
o.each_pair do |k,v|
k = sanitize(k)
v = sanitize(v)
r[k] = v
end
return r
end
# Handle arrays
if o.kind_of? ::Array
return o.map{|x| sanitize(x) }
end
# Leave as-is
o
end
end
#
# Line Output (CSV, TSV, etc)
# XXX: Quoted field handling is not supported, CSV should be a new output type
#
class OutputLines
attr_accessor :fields, :delimiter
FIELD_WILDCARD = '_'
include FileDestination
def initialize(args)
file = nil
self.delimiter = ","
self.fields = FIELD_WILDCARD
header = false
args.each do |str|
k,v = str.split('=', 2)
case k
when 'file'
file = v
when 'header'
header = ( v =~ /^[ty1]/i ? true : false )
when 'fields'
self.fields = v.split(',')
when 'delimiter'
self.delimiter =
case v.to_s
when 'tab'
"\t"
when 'null'
"\x00"
else
v
end
end
end
self.open(file)
if header and not fields.include?(FIELD_WILDCARD)
self.fd.puts self.fields.join(self.delimiter)
self.fd.flush
end
end
def write_record(doc)
out = []
if self.fields.include?(FIELD_WILDCARD)
doc.each_pair do |k,v|
out << sanitize(v.to_s)
end
else
self.fields.each do |k|
out << sanitize(doc[k].to_s)
end
end
return unless out.length > 0
self.fd.puts out.join(self.delimiter)
self.fd.flush
end
end
#
# JSON Output (line-delimited records)
#
class OutputJSON
include FileDestination
def initialize(args)
self.open(args.first)
end
def write_record(doc)
self.fd.puts Oj.dump(sanitize(doc), mode: :strict)
self.fd.flush
end
end
#
# CSV Output
#
class OutputCSV
attr_accessor :fields, :delimiter
FIELD_WILDCARD = '_'
include FileDestination
def initialize(args)
file = nil
self.delimiter = ","
self.fields = FIELD_WILDCARD
header = false
args.each do |str|
k,v = str.split('=', 2)
case k
when 'file'
file = v
when 'header'
header = ( v =~ /^[ty1]/i ? true : false )
when 'fields'
self.fields = v.split(',')
when 'delimiter'
self.delimiter =
case v.to_s
when 'tab'
"\t"
when 'null'
"\x00"
else
v
end
end
end
self.open(file)
if header and not fields.include?(FIELD_WILDCARD)
self.fd.puts self.fields.to_csv
end
end
def write_record(doc)
out = []
if self.fields.include?(FIELD_WILDCARD)
doc.each_pair do |k,v|
out << sanitize(v.to_s)
end
else
self.fields.each do |k|
out << sanitize(doc[k].to_s)
end
end
return unless out.length > 0
self.fd.puts out.to_csv
end
end
end
end