snowflake-client 1.0.2
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/lib/facebook_service.rb +700 -0
- data/lib/fb303_constants.rb +8 -0
- data/lib/fb303_types.rb +18 -0
- data/lib/scribe.rb +82 -0
- data/lib/scribe_constants.rb +8 -0
- data/lib/scribe_types.rb +34 -0
- data/lib/snowflake.rb +237 -0
- data/lib/snowflake_constants.rb +8 -0
- data/lib/snowflake_types.rb +69 -0
- metadata +76 -0
|
@@ -0,0 +1,700 @@
|
|
|
1
|
+
#
|
|
2
|
+
# Autogenerated by Thrift
|
|
3
|
+
#
|
|
4
|
+
# DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
|
|
5
|
+
#
|
|
6
|
+
|
|
7
|
+
require 'thrift'
|
|
8
|
+
require 'fb303_types'
|
|
9
|
+
|
|
10
|
+
module FacebookService
|
|
11
|
+
class Client
|
|
12
|
+
include ::Thrift::Client
|
|
13
|
+
|
|
14
|
+
def getName()
|
|
15
|
+
send_getName()
|
|
16
|
+
return recv_getName()
|
|
17
|
+
end
|
|
18
|
+
|
|
19
|
+
def send_getName()
|
|
20
|
+
send_message('getName', GetName_args)
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
def recv_getName()
|
|
24
|
+
result = receive_message(GetName_result)
|
|
25
|
+
return result.success unless result.success.nil?
|
|
26
|
+
raise ::Thrift::ApplicationException.new(::Thrift::ApplicationException::MISSING_RESULT, 'getName failed: unknown result')
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
def getVersion()
|
|
30
|
+
send_getVersion()
|
|
31
|
+
return recv_getVersion()
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
def send_getVersion()
|
|
35
|
+
send_message('getVersion', GetVersion_args)
|
|
36
|
+
end
|
|
37
|
+
|
|
38
|
+
def recv_getVersion()
|
|
39
|
+
result = receive_message(GetVersion_result)
|
|
40
|
+
return result.success unless result.success.nil?
|
|
41
|
+
raise ::Thrift::ApplicationException.new(::Thrift::ApplicationException::MISSING_RESULT, 'getVersion failed: unknown result')
|
|
42
|
+
end
|
|
43
|
+
|
|
44
|
+
def getStatus()
|
|
45
|
+
send_getStatus()
|
|
46
|
+
return recv_getStatus()
|
|
47
|
+
end
|
|
48
|
+
|
|
49
|
+
def send_getStatus()
|
|
50
|
+
send_message('getStatus', GetStatus_args)
|
|
51
|
+
end
|
|
52
|
+
|
|
53
|
+
def recv_getStatus()
|
|
54
|
+
result = receive_message(GetStatus_result)
|
|
55
|
+
return result.success unless result.success.nil?
|
|
56
|
+
raise ::Thrift::ApplicationException.new(::Thrift::ApplicationException::MISSING_RESULT, 'getStatus failed: unknown result')
|
|
57
|
+
end
|
|
58
|
+
|
|
59
|
+
def getStatusDetails()
|
|
60
|
+
send_getStatusDetails()
|
|
61
|
+
return recv_getStatusDetails()
|
|
62
|
+
end
|
|
63
|
+
|
|
64
|
+
def send_getStatusDetails()
|
|
65
|
+
send_message('getStatusDetails', GetStatusDetails_args)
|
|
66
|
+
end
|
|
67
|
+
|
|
68
|
+
def recv_getStatusDetails()
|
|
69
|
+
result = receive_message(GetStatusDetails_result)
|
|
70
|
+
return result.success unless result.success.nil?
|
|
71
|
+
raise ::Thrift::ApplicationException.new(::Thrift::ApplicationException::MISSING_RESULT, 'getStatusDetails failed: unknown result')
|
|
72
|
+
end
|
|
73
|
+
|
|
74
|
+
def getCounters()
|
|
75
|
+
send_getCounters()
|
|
76
|
+
return recv_getCounters()
|
|
77
|
+
end
|
|
78
|
+
|
|
79
|
+
def send_getCounters()
|
|
80
|
+
send_message('getCounters', GetCounters_args)
|
|
81
|
+
end
|
|
82
|
+
|
|
83
|
+
def recv_getCounters()
|
|
84
|
+
result = receive_message(GetCounters_result)
|
|
85
|
+
return result.success unless result.success.nil?
|
|
86
|
+
raise ::Thrift::ApplicationException.new(::Thrift::ApplicationException::MISSING_RESULT, 'getCounters failed: unknown result')
|
|
87
|
+
end
|
|
88
|
+
|
|
89
|
+
def getCounter(key)
|
|
90
|
+
send_getCounter(key)
|
|
91
|
+
return recv_getCounter()
|
|
92
|
+
end
|
|
93
|
+
|
|
94
|
+
def send_getCounter(key)
|
|
95
|
+
send_message('getCounter', GetCounter_args, :key => key)
|
|
96
|
+
end
|
|
97
|
+
|
|
98
|
+
def recv_getCounter()
|
|
99
|
+
result = receive_message(GetCounter_result)
|
|
100
|
+
return result.success unless result.success.nil?
|
|
101
|
+
raise ::Thrift::ApplicationException.new(::Thrift::ApplicationException::MISSING_RESULT, 'getCounter failed: unknown result')
|
|
102
|
+
end
|
|
103
|
+
|
|
104
|
+
def setOption(key, value)
|
|
105
|
+
send_setOption(key, value)
|
|
106
|
+
recv_setOption()
|
|
107
|
+
end
|
|
108
|
+
|
|
109
|
+
def send_setOption(key, value)
|
|
110
|
+
send_message('setOption', SetOption_args, :key => key, :value => value)
|
|
111
|
+
end
|
|
112
|
+
|
|
113
|
+
def recv_setOption()
|
|
114
|
+
result = receive_message(SetOption_result)
|
|
115
|
+
return
|
|
116
|
+
end
|
|
117
|
+
|
|
118
|
+
def getOption(key)
|
|
119
|
+
send_getOption(key)
|
|
120
|
+
return recv_getOption()
|
|
121
|
+
end
|
|
122
|
+
|
|
123
|
+
def send_getOption(key)
|
|
124
|
+
send_message('getOption', GetOption_args, :key => key)
|
|
125
|
+
end
|
|
126
|
+
|
|
127
|
+
def recv_getOption()
|
|
128
|
+
result = receive_message(GetOption_result)
|
|
129
|
+
return result.success unless result.success.nil?
|
|
130
|
+
raise ::Thrift::ApplicationException.new(::Thrift::ApplicationException::MISSING_RESULT, 'getOption failed: unknown result')
|
|
131
|
+
end
|
|
132
|
+
|
|
133
|
+
def getOptions()
|
|
134
|
+
send_getOptions()
|
|
135
|
+
return recv_getOptions()
|
|
136
|
+
end
|
|
137
|
+
|
|
138
|
+
def send_getOptions()
|
|
139
|
+
send_message('getOptions', GetOptions_args)
|
|
140
|
+
end
|
|
141
|
+
|
|
142
|
+
def recv_getOptions()
|
|
143
|
+
result = receive_message(GetOptions_result)
|
|
144
|
+
return result.success unless result.success.nil?
|
|
145
|
+
raise ::Thrift::ApplicationException.new(::Thrift::ApplicationException::MISSING_RESULT, 'getOptions failed: unknown result')
|
|
146
|
+
end
|
|
147
|
+
|
|
148
|
+
def getCpuProfile(profileDurationInSec)
|
|
149
|
+
send_getCpuProfile(profileDurationInSec)
|
|
150
|
+
return recv_getCpuProfile()
|
|
151
|
+
end
|
|
152
|
+
|
|
153
|
+
def send_getCpuProfile(profileDurationInSec)
|
|
154
|
+
send_message('getCpuProfile', GetCpuProfile_args, :profileDurationInSec => profileDurationInSec)
|
|
155
|
+
end
|
|
156
|
+
|
|
157
|
+
def recv_getCpuProfile()
|
|
158
|
+
result = receive_message(GetCpuProfile_result)
|
|
159
|
+
return result.success unless result.success.nil?
|
|
160
|
+
raise ::Thrift::ApplicationException.new(::Thrift::ApplicationException::MISSING_RESULT, 'getCpuProfile failed: unknown result')
|
|
161
|
+
end
|
|
162
|
+
|
|
163
|
+
def aliveSince()
|
|
164
|
+
send_aliveSince()
|
|
165
|
+
return recv_aliveSince()
|
|
166
|
+
end
|
|
167
|
+
|
|
168
|
+
def send_aliveSince()
|
|
169
|
+
send_message('aliveSince', AliveSince_args)
|
|
170
|
+
end
|
|
171
|
+
|
|
172
|
+
def recv_aliveSince()
|
|
173
|
+
result = receive_message(AliveSince_result)
|
|
174
|
+
return result.success unless result.success.nil?
|
|
175
|
+
raise ::Thrift::ApplicationException.new(::Thrift::ApplicationException::MISSING_RESULT, 'aliveSince failed: unknown result')
|
|
176
|
+
end
|
|
177
|
+
|
|
178
|
+
def reinitialize()
|
|
179
|
+
send_reinitialize()
|
|
180
|
+
end
|
|
181
|
+
|
|
182
|
+
def send_reinitialize()
|
|
183
|
+
send_message('reinitialize', Reinitialize_args)
|
|
184
|
+
end
|
|
185
|
+
def shutdown()
|
|
186
|
+
send_shutdown()
|
|
187
|
+
end
|
|
188
|
+
|
|
189
|
+
def send_shutdown()
|
|
190
|
+
send_message('shutdown', Shutdown_args)
|
|
191
|
+
end
|
|
192
|
+
end
|
|
193
|
+
|
|
194
|
+
class Processor
|
|
195
|
+
include ::Thrift::Processor
|
|
196
|
+
|
|
197
|
+
def process_getName(seqid, iprot, oprot)
|
|
198
|
+
args = read_args(iprot, GetName_args)
|
|
199
|
+
result = GetName_result.new()
|
|
200
|
+
result.success = @handler.getName()
|
|
201
|
+
write_result(result, oprot, 'getName', seqid)
|
|
202
|
+
end
|
|
203
|
+
|
|
204
|
+
def process_getVersion(seqid, iprot, oprot)
|
|
205
|
+
args = read_args(iprot, GetVersion_args)
|
|
206
|
+
result = GetVersion_result.new()
|
|
207
|
+
result.success = @handler.getVersion()
|
|
208
|
+
write_result(result, oprot, 'getVersion', seqid)
|
|
209
|
+
end
|
|
210
|
+
|
|
211
|
+
def process_getStatus(seqid, iprot, oprot)
|
|
212
|
+
args = read_args(iprot, GetStatus_args)
|
|
213
|
+
result = GetStatus_result.new()
|
|
214
|
+
result.success = @handler.getStatus()
|
|
215
|
+
write_result(result, oprot, 'getStatus', seqid)
|
|
216
|
+
end
|
|
217
|
+
|
|
218
|
+
def process_getStatusDetails(seqid, iprot, oprot)
|
|
219
|
+
args = read_args(iprot, GetStatusDetails_args)
|
|
220
|
+
result = GetStatusDetails_result.new()
|
|
221
|
+
result.success = @handler.getStatusDetails()
|
|
222
|
+
write_result(result, oprot, 'getStatusDetails', seqid)
|
|
223
|
+
end
|
|
224
|
+
|
|
225
|
+
def process_getCounters(seqid, iprot, oprot)
|
|
226
|
+
args = read_args(iprot, GetCounters_args)
|
|
227
|
+
result = GetCounters_result.new()
|
|
228
|
+
result.success = @handler.getCounters()
|
|
229
|
+
write_result(result, oprot, 'getCounters', seqid)
|
|
230
|
+
end
|
|
231
|
+
|
|
232
|
+
def process_getCounter(seqid, iprot, oprot)
|
|
233
|
+
args = read_args(iprot, GetCounter_args)
|
|
234
|
+
result = GetCounter_result.new()
|
|
235
|
+
result.success = @handler.getCounter(args.key)
|
|
236
|
+
write_result(result, oprot, 'getCounter', seqid)
|
|
237
|
+
end
|
|
238
|
+
|
|
239
|
+
def process_setOption(seqid, iprot, oprot)
|
|
240
|
+
args = read_args(iprot, SetOption_args)
|
|
241
|
+
result = SetOption_result.new()
|
|
242
|
+
@handler.setOption(args.key, args.value)
|
|
243
|
+
write_result(result, oprot, 'setOption', seqid)
|
|
244
|
+
end
|
|
245
|
+
|
|
246
|
+
def process_getOption(seqid, iprot, oprot)
|
|
247
|
+
args = read_args(iprot, GetOption_args)
|
|
248
|
+
result = GetOption_result.new()
|
|
249
|
+
result.success = @handler.getOption(args.key)
|
|
250
|
+
write_result(result, oprot, 'getOption', seqid)
|
|
251
|
+
end
|
|
252
|
+
|
|
253
|
+
def process_getOptions(seqid, iprot, oprot)
|
|
254
|
+
args = read_args(iprot, GetOptions_args)
|
|
255
|
+
result = GetOptions_result.new()
|
|
256
|
+
result.success = @handler.getOptions()
|
|
257
|
+
write_result(result, oprot, 'getOptions', seqid)
|
|
258
|
+
end
|
|
259
|
+
|
|
260
|
+
def process_getCpuProfile(seqid, iprot, oprot)
|
|
261
|
+
args = read_args(iprot, GetCpuProfile_args)
|
|
262
|
+
result = GetCpuProfile_result.new()
|
|
263
|
+
result.success = @handler.getCpuProfile(args.profileDurationInSec)
|
|
264
|
+
write_result(result, oprot, 'getCpuProfile', seqid)
|
|
265
|
+
end
|
|
266
|
+
|
|
267
|
+
def process_aliveSince(seqid, iprot, oprot)
|
|
268
|
+
args = read_args(iprot, AliveSince_args)
|
|
269
|
+
result = AliveSince_result.new()
|
|
270
|
+
result.success = @handler.aliveSince()
|
|
271
|
+
write_result(result, oprot, 'aliveSince', seqid)
|
|
272
|
+
end
|
|
273
|
+
|
|
274
|
+
def process_reinitialize(seqid, iprot, oprot)
|
|
275
|
+
args = read_args(iprot, Reinitialize_args)
|
|
276
|
+
@handler.reinitialize()
|
|
277
|
+
return
|
|
278
|
+
end
|
|
279
|
+
|
|
280
|
+
def process_shutdown(seqid, iprot, oprot)
|
|
281
|
+
args = read_args(iprot, Shutdown_args)
|
|
282
|
+
@handler.shutdown()
|
|
283
|
+
return
|
|
284
|
+
end
|
|
285
|
+
|
|
286
|
+
end
|
|
287
|
+
|
|
288
|
+
# HELPER FUNCTIONS AND STRUCTURES
|
|
289
|
+
|
|
290
|
+
class GetName_args
|
|
291
|
+
include ::Thrift::Struct, ::Thrift::Struct_Union
|
|
292
|
+
|
|
293
|
+
FIELDS = {
|
|
294
|
+
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
def struct_fields; FIELDS; end
|
|
298
|
+
|
|
299
|
+
def validate
|
|
300
|
+
end
|
|
301
|
+
|
|
302
|
+
::Thrift::Struct.generate_accessors self
|
|
303
|
+
end
|
|
304
|
+
|
|
305
|
+
class GetName_result
|
|
306
|
+
include ::Thrift::Struct, ::Thrift::Struct_Union
|
|
307
|
+
SUCCESS = 0
|
|
308
|
+
|
|
309
|
+
FIELDS = {
|
|
310
|
+
SUCCESS => {:type => ::Thrift::Types::STRING, :name => 'success'}
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
def struct_fields; FIELDS; end
|
|
314
|
+
|
|
315
|
+
def validate
|
|
316
|
+
end
|
|
317
|
+
|
|
318
|
+
::Thrift::Struct.generate_accessors self
|
|
319
|
+
end
|
|
320
|
+
|
|
321
|
+
class GetVersion_args
|
|
322
|
+
include ::Thrift::Struct, ::Thrift::Struct_Union
|
|
323
|
+
|
|
324
|
+
FIELDS = {
|
|
325
|
+
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
def struct_fields; FIELDS; end
|
|
329
|
+
|
|
330
|
+
def validate
|
|
331
|
+
end
|
|
332
|
+
|
|
333
|
+
::Thrift::Struct.generate_accessors self
|
|
334
|
+
end
|
|
335
|
+
|
|
336
|
+
class GetVersion_result
|
|
337
|
+
include ::Thrift::Struct, ::Thrift::Struct_Union
|
|
338
|
+
SUCCESS = 0
|
|
339
|
+
|
|
340
|
+
FIELDS = {
|
|
341
|
+
SUCCESS => {:type => ::Thrift::Types::STRING, :name => 'success'}
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
def struct_fields; FIELDS; end
|
|
345
|
+
|
|
346
|
+
def validate
|
|
347
|
+
end
|
|
348
|
+
|
|
349
|
+
::Thrift::Struct.generate_accessors self
|
|
350
|
+
end
|
|
351
|
+
|
|
352
|
+
class GetStatus_args
|
|
353
|
+
include ::Thrift::Struct, ::Thrift::Struct_Union
|
|
354
|
+
|
|
355
|
+
FIELDS = {
|
|
356
|
+
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
def struct_fields; FIELDS; end
|
|
360
|
+
|
|
361
|
+
def validate
|
|
362
|
+
end
|
|
363
|
+
|
|
364
|
+
::Thrift::Struct.generate_accessors self
|
|
365
|
+
end
|
|
366
|
+
|
|
367
|
+
class GetStatus_result
|
|
368
|
+
include ::Thrift::Struct, ::Thrift::Struct_Union
|
|
369
|
+
SUCCESS = 0
|
|
370
|
+
|
|
371
|
+
FIELDS = {
|
|
372
|
+
SUCCESS => {:type => ::Thrift::Types::I32, :name => 'success', :enum_class => Fb_status}
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
def struct_fields; FIELDS; end
|
|
376
|
+
|
|
377
|
+
def validate
|
|
378
|
+
unless @success.nil? || Fb_status::VALID_VALUES.include?(@success)
|
|
379
|
+
raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Invalid value of field success!')
|
|
380
|
+
end
|
|
381
|
+
end
|
|
382
|
+
|
|
383
|
+
::Thrift::Struct.generate_accessors self
|
|
384
|
+
end
|
|
385
|
+
|
|
386
|
+
class GetStatusDetails_args
|
|
387
|
+
include ::Thrift::Struct, ::Thrift::Struct_Union
|
|
388
|
+
|
|
389
|
+
FIELDS = {
|
|
390
|
+
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
def struct_fields; FIELDS; end
|
|
394
|
+
|
|
395
|
+
def validate
|
|
396
|
+
end
|
|
397
|
+
|
|
398
|
+
::Thrift::Struct.generate_accessors self
|
|
399
|
+
end
|
|
400
|
+
|
|
401
|
+
class GetStatusDetails_result
|
|
402
|
+
include ::Thrift::Struct, ::Thrift::Struct_Union
|
|
403
|
+
SUCCESS = 0
|
|
404
|
+
|
|
405
|
+
FIELDS = {
|
|
406
|
+
SUCCESS => {:type => ::Thrift::Types::STRING, :name => 'success'}
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
def struct_fields; FIELDS; end
|
|
410
|
+
|
|
411
|
+
def validate
|
|
412
|
+
end
|
|
413
|
+
|
|
414
|
+
::Thrift::Struct.generate_accessors self
|
|
415
|
+
end
|
|
416
|
+
|
|
417
|
+
class GetCounters_args
|
|
418
|
+
include ::Thrift::Struct, ::Thrift::Struct_Union
|
|
419
|
+
|
|
420
|
+
FIELDS = {
|
|
421
|
+
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
def struct_fields; FIELDS; end
|
|
425
|
+
|
|
426
|
+
def validate
|
|
427
|
+
end
|
|
428
|
+
|
|
429
|
+
::Thrift::Struct.generate_accessors self
|
|
430
|
+
end
|
|
431
|
+
|
|
432
|
+
class GetCounters_result
|
|
433
|
+
include ::Thrift::Struct, ::Thrift::Struct_Union
|
|
434
|
+
SUCCESS = 0
|
|
435
|
+
|
|
436
|
+
FIELDS = {
|
|
437
|
+
SUCCESS => {:type => ::Thrift::Types::MAP, :name => 'success', :key => {:type => ::Thrift::Types::STRING}, :value => {:type => ::Thrift::Types::I64}}
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
def struct_fields; FIELDS; end
|
|
441
|
+
|
|
442
|
+
def validate
|
|
443
|
+
end
|
|
444
|
+
|
|
445
|
+
::Thrift::Struct.generate_accessors self
|
|
446
|
+
end
|
|
447
|
+
|
|
448
|
+
class GetCounter_args
|
|
449
|
+
include ::Thrift::Struct, ::Thrift::Struct_Union
|
|
450
|
+
KEY = 1
|
|
451
|
+
|
|
452
|
+
FIELDS = {
|
|
453
|
+
KEY => {:type => ::Thrift::Types::STRING, :name => 'key'}
|
|
454
|
+
}
|
|
455
|
+
|
|
456
|
+
def struct_fields; FIELDS; end
|
|
457
|
+
|
|
458
|
+
def validate
|
|
459
|
+
end
|
|
460
|
+
|
|
461
|
+
::Thrift::Struct.generate_accessors self
|
|
462
|
+
end
|
|
463
|
+
|
|
464
|
+
class GetCounter_result
|
|
465
|
+
include ::Thrift::Struct, ::Thrift::Struct_Union
|
|
466
|
+
SUCCESS = 0
|
|
467
|
+
|
|
468
|
+
FIELDS = {
|
|
469
|
+
SUCCESS => {:type => ::Thrift::Types::I64, :name => 'success'}
|
|
470
|
+
}
|
|
471
|
+
|
|
472
|
+
def struct_fields; FIELDS; end
|
|
473
|
+
|
|
474
|
+
def validate
|
|
475
|
+
end
|
|
476
|
+
|
|
477
|
+
::Thrift::Struct.generate_accessors self
|
|
478
|
+
end
|
|
479
|
+
|
|
480
|
+
class SetOption_args
|
|
481
|
+
include ::Thrift::Struct, ::Thrift::Struct_Union
|
|
482
|
+
KEY = 1
|
|
483
|
+
VALUE = 2
|
|
484
|
+
|
|
485
|
+
FIELDS = {
|
|
486
|
+
KEY => {:type => ::Thrift::Types::STRING, :name => 'key'},
|
|
487
|
+
VALUE => {:type => ::Thrift::Types::STRING, :name => 'value'}
|
|
488
|
+
}
|
|
489
|
+
|
|
490
|
+
def struct_fields; FIELDS; end
|
|
491
|
+
|
|
492
|
+
def validate
|
|
493
|
+
end
|
|
494
|
+
|
|
495
|
+
::Thrift::Struct.generate_accessors self
|
|
496
|
+
end
|
|
497
|
+
|
|
498
|
+
class SetOption_result
|
|
499
|
+
include ::Thrift::Struct, ::Thrift::Struct_Union
|
|
500
|
+
|
|
501
|
+
FIELDS = {
|
|
502
|
+
|
|
503
|
+
}
|
|
504
|
+
|
|
505
|
+
def struct_fields; FIELDS; end
|
|
506
|
+
|
|
507
|
+
def validate
|
|
508
|
+
end
|
|
509
|
+
|
|
510
|
+
::Thrift::Struct.generate_accessors self
|
|
511
|
+
end
|
|
512
|
+
|
|
513
|
+
class GetOption_args
|
|
514
|
+
include ::Thrift::Struct, ::Thrift::Struct_Union
|
|
515
|
+
KEY = 1
|
|
516
|
+
|
|
517
|
+
FIELDS = {
|
|
518
|
+
KEY => {:type => ::Thrift::Types::STRING, :name => 'key'}
|
|
519
|
+
}
|
|
520
|
+
|
|
521
|
+
def struct_fields; FIELDS; end
|
|
522
|
+
|
|
523
|
+
def validate
|
|
524
|
+
end
|
|
525
|
+
|
|
526
|
+
::Thrift::Struct.generate_accessors self
|
|
527
|
+
end
|
|
528
|
+
|
|
529
|
+
class GetOption_result
|
|
530
|
+
include ::Thrift::Struct, ::Thrift::Struct_Union
|
|
531
|
+
SUCCESS = 0
|
|
532
|
+
|
|
533
|
+
FIELDS = {
|
|
534
|
+
SUCCESS => {:type => ::Thrift::Types::STRING, :name => 'success'}
|
|
535
|
+
}
|
|
536
|
+
|
|
537
|
+
def struct_fields; FIELDS; end
|
|
538
|
+
|
|
539
|
+
def validate
|
|
540
|
+
end
|
|
541
|
+
|
|
542
|
+
::Thrift::Struct.generate_accessors self
|
|
543
|
+
end
|
|
544
|
+
|
|
545
|
+
class GetOptions_args
|
|
546
|
+
include ::Thrift::Struct, ::Thrift::Struct_Union
|
|
547
|
+
|
|
548
|
+
FIELDS = {
|
|
549
|
+
|
|
550
|
+
}
|
|
551
|
+
|
|
552
|
+
def struct_fields; FIELDS; end
|
|
553
|
+
|
|
554
|
+
def validate
|
|
555
|
+
end
|
|
556
|
+
|
|
557
|
+
::Thrift::Struct.generate_accessors self
|
|
558
|
+
end
|
|
559
|
+
|
|
560
|
+
class GetOptions_result
|
|
561
|
+
include ::Thrift::Struct, ::Thrift::Struct_Union
|
|
562
|
+
SUCCESS = 0
|
|
563
|
+
|
|
564
|
+
FIELDS = {
|
|
565
|
+
SUCCESS => {:type => ::Thrift::Types::MAP, :name => 'success', :key => {:type => ::Thrift::Types::STRING}, :value => {:type => ::Thrift::Types::STRING}}
|
|
566
|
+
}
|
|
567
|
+
|
|
568
|
+
def struct_fields; FIELDS; end
|
|
569
|
+
|
|
570
|
+
def validate
|
|
571
|
+
end
|
|
572
|
+
|
|
573
|
+
::Thrift::Struct.generate_accessors self
|
|
574
|
+
end
|
|
575
|
+
|
|
576
|
+
class GetCpuProfile_args
|
|
577
|
+
include ::Thrift::Struct, ::Thrift::Struct_Union
|
|
578
|
+
PROFILEDURATIONINSEC = 1
|
|
579
|
+
|
|
580
|
+
FIELDS = {
|
|
581
|
+
PROFILEDURATIONINSEC => {:type => ::Thrift::Types::I32, :name => 'profileDurationInSec'}
|
|
582
|
+
}
|
|
583
|
+
|
|
584
|
+
def struct_fields; FIELDS; end
|
|
585
|
+
|
|
586
|
+
def validate
|
|
587
|
+
end
|
|
588
|
+
|
|
589
|
+
::Thrift::Struct.generate_accessors self
|
|
590
|
+
end
|
|
591
|
+
|
|
592
|
+
class GetCpuProfile_result
|
|
593
|
+
include ::Thrift::Struct, ::Thrift::Struct_Union
|
|
594
|
+
SUCCESS = 0
|
|
595
|
+
|
|
596
|
+
FIELDS = {
|
|
597
|
+
SUCCESS => {:type => ::Thrift::Types::STRING, :name => 'success'}
|
|
598
|
+
}
|
|
599
|
+
|
|
600
|
+
def struct_fields; FIELDS; end
|
|
601
|
+
|
|
602
|
+
def validate
|
|
603
|
+
end
|
|
604
|
+
|
|
605
|
+
::Thrift::Struct.generate_accessors self
|
|
606
|
+
end
|
|
607
|
+
|
|
608
|
+
class AliveSince_args
|
|
609
|
+
include ::Thrift::Struct, ::Thrift::Struct_Union
|
|
610
|
+
|
|
611
|
+
FIELDS = {
|
|
612
|
+
|
|
613
|
+
}
|
|
614
|
+
|
|
615
|
+
def struct_fields; FIELDS; end
|
|
616
|
+
|
|
617
|
+
def validate
|
|
618
|
+
end
|
|
619
|
+
|
|
620
|
+
::Thrift::Struct.generate_accessors self
|
|
621
|
+
end
|
|
622
|
+
|
|
623
|
+
class AliveSince_result
|
|
624
|
+
include ::Thrift::Struct, ::Thrift::Struct_Union
|
|
625
|
+
SUCCESS = 0
|
|
626
|
+
|
|
627
|
+
FIELDS = {
|
|
628
|
+
SUCCESS => {:type => ::Thrift::Types::I64, :name => 'success'}
|
|
629
|
+
}
|
|
630
|
+
|
|
631
|
+
def struct_fields; FIELDS; end
|
|
632
|
+
|
|
633
|
+
def validate
|
|
634
|
+
end
|
|
635
|
+
|
|
636
|
+
::Thrift::Struct.generate_accessors self
|
|
637
|
+
end
|
|
638
|
+
|
|
639
|
+
class Reinitialize_args
|
|
640
|
+
include ::Thrift::Struct, ::Thrift::Struct_Union
|
|
641
|
+
|
|
642
|
+
FIELDS = {
|
|
643
|
+
|
|
644
|
+
}
|
|
645
|
+
|
|
646
|
+
def struct_fields; FIELDS; end
|
|
647
|
+
|
|
648
|
+
def validate
|
|
649
|
+
end
|
|
650
|
+
|
|
651
|
+
::Thrift::Struct.generate_accessors self
|
|
652
|
+
end
|
|
653
|
+
|
|
654
|
+
class Reinitialize_result
|
|
655
|
+
include ::Thrift::Struct, ::Thrift::Struct_Union
|
|
656
|
+
|
|
657
|
+
FIELDS = {
|
|
658
|
+
|
|
659
|
+
}
|
|
660
|
+
|
|
661
|
+
def struct_fields; FIELDS; end
|
|
662
|
+
|
|
663
|
+
def validate
|
|
664
|
+
end
|
|
665
|
+
|
|
666
|
+
::Thrift::Struct.generate_accessors self
|
|
667
|
+
end
|
|
668
|
+
|
|
669
|
+
class Shutdown_args
|
|
670
|
+
include ::Thrift::Struct, ::Thrift::Struct_Union
|
|
671
|
+
|
|
672
|
+
FIELDS = {
|
|
673
|
+
|
|
674
|
+
}
|
|
675
|
+
|
|
676
|
+
def struct_fields; FIELDS; end
|
|
677
|
+
|
|
678
|
+
def validate
|
|
679
|
+
end
|
|
680
|
+
|
|
681
|
+
::Thrift::Struct.generate_accessors self
|
|
682
|
+
end
|
|
683
|
+
|
|
684
|
+
class Shutdown_result
|
|
685
|
+
include ::Thrift::Struct, ::Thrift::Struct_Union
|
|
686
|
+
|
|
687
|
+
FIELDS = {
|
|
688
|
+
|
|
689
|
+
}
|
|
690
|
+
|
|
691
|
+
def struct_fields; FIELDS; end
|
|
692
|
+
|
|
693
|
+
def validate
|
|
694
|
+
end
|
|
695
|
+
|
|
696
|
+
::Thrift::Struct.generate_accessors self
|
|
697
|
+
end
|
|
698
|
+
|
|
699
|
+
end
|
|
700
|
+
|
data/lib/fb303_types.rb
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
#
|
|
2
|
+
# Autogenerated by Thrift
|
|
3
|
+
#
|
|
4
|
+
# DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
|
|
5
|
+
#
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
module Fb_status
|
|
9
|
+
DEAD = 0
|
|
10
|
+
STARTING = 1
|
|
11
|
+
ALIVE = 2
|
|
12
|
+
STOPPING = 3
|
|
13
|
+
STOPPED = 4
|
|
14
|
+
WARNING = 5
|
|
15
|
+
VALUE_MAP = {0 => "DEAD", 1 => "STARTING", 2 => "ALIVE", 3 => "STOPPING", 4 => "STOPPED", 5 => "WARNING"}
|
|
16
|
+
VALID_VALUES = Set.new([DEAD, STARTING, ALIVE, STOPPING, STOPPED, WARNING]).freeze
|
|
17
|
+
end
|
|
18
|
+
|
data/lib/scribe.rb
ADDED
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
#
|
|
2
|
+
# Autogenerated by Thrift
|
|
3
|
+
#
|
|
4
|
+
# DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
|
|
5
|
+
#
|
|
6
|
+
|
|
7
|
+
require 'thrift'
|
|
8
|
+
require 'facebook_service'
|
|
9
|
+
require 'scribe_types'
|
|
10
|
+
|
|
11
|
+
module Scribe
|
|
12
|
+
class Client < FacebookService::Client
|
|
13
|
+
include ::Thrift::Client
|
|
14
|
+
|
|
15
|
+
def Log(messages)
|
|
16
|
+
send_Log(messages)
|
|
17
|
+
return recv_Log()
|
|
18
|
+
end
|
|
19
|
+
|
|
20
|
+
def send_Log(messages)
|
|
21
|
+
send_message('Log', Log_args, :messages => messages)
|
|
22
|
+
end
|
|
23
|
+
|
|
24
|
+
def recv_Log()
|
|
25
|
+
result = receive_message(Log_result)
|
|
26
|
+
return result.success unless result.success.nil?
|
|
27
|
+
raise ::Thrift::ApplicationException.new(::Thrift::ApplicationException::MISSING_RESULT, 'Log failed: unknown result')
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
end
|
|
31
|
+
|
|
32
|
+
class Processor < FacebookService::Processor
|
|
33
|
+
include ::Thrift::Processor
|
|
34
|
+
|
|
35
|
+
def process_Log(seqid, iprot, oprot)
|
|
36
|
+
args = read_args(iprot, Log_args)
|
|
37
|
+
result = Log_result.new()
|
|
38
|
+
result.success = @handler.Log(args.messages)
|
|
39
|
+
write_result(result, oprot, 'Log', seqid)
|
|
40
|
+
end
|
|
41
|
+
|
|
42
|
+
end
|
|
43
|
+
|
|
44
|
+
# HELPER FUNCTIONS AND STRUCTURES
|
|
45
|
+
|
|
46
|
+
class Log_args
|
|
47
|
+
include ::Thrift::Struct, ::Thrift::Struct_Union
|
|
48
|
+
MESSAGES = 1
|
|
49
|
+
|
|
50
|
+
FIELDS = {
|
|
51
|
+
MESSAGES => {:type => ::Thrift::Types::LIST, :name => 'messages', :element => {:type => ::Thrift::Types::STRUCT, :class => LogEntry}}
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
def struct_fields; FIELDS; end
|
|
55
|
+
|
|
56
|
+
def validate
|
|
57
|
+
end
|
|
58
|
+
|
|
59
|
+
::Thrift::Struct.generate_accessors self
|
|
60
|
+
end
|
|
61
|
+
|
|
62
|
+
class Log_result
|
|
63
|
+
include ::Thrift::Struct, ::Thrift::Struct_Union
|
|
64
|
+
SUCCESS = 0
|
|
65
|
+
|
|
66
|
+
FIELDS = {
|
|
67
|
+
SUCCESS => {:type => ::Thrift::Types::I32, :name => 'success', :enum_class => ResultCode}
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
def struct_fields; FIELDS; end
|
|
71
|
+
|
|
72
|
+
def validate
|
|
73
|
+
unless @success.nil? || ResultCode::VALID_VALUES.include?(@success)
|
|
74
|
+
raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Invalid value of field success!')
|
|
75
|
+
end
|
|
76
|
+
end
|
|
77
|
+
|
|
78
|
+
::Thrift::Struct.generate_accessors self
|
|
79
|
+
end
|
|
80
|
+
|
|
81
|
+
end
|
|
82
|
+
|
data/lib/scribe_types.rb
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
#
|
|
2
|
+
# Autogenerated by Thrift
|
|
3
|
+
#
|
|
4
|
+
# DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
|
|
5
|
+
#
|
|
6
|
+
|
|
7
|
+
require 'fb303_types'
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
module ResultCode
|
|
11
|
+
OK = 0
|
|
12
|
+
TRY_LATER = 1
|
|
13
|
+
VALUE_MAP = {0 => "OK", 1 => "TRY_LATER"}
|
|
14
|
+
VALID_VALUES = Set.new([OK, TRY_LATER]).freeze
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
class LogEntry
|
|
18
|
+
include ::Thrift::Struct, ::Thrift::Struct_Union
|
|
19
|
+
CATEGORY = 1
|
|
20
|
+
MESSAGE = 2
|
|
21
|
+
|
|
22
|
+
FIELDS = {
|
|
23
|
+
CATEGORY => {:type => ::Thrift::Types::STRING, :name => 'category'},
|
|
24
|
+
MESSAGE => {:type => ::Thrift::Types::STRING, :name => 'message'}
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
def struct_fields; FIELDS; end
|
|
28
|
+
|
|
29
|
+
def validate
|
|
30
|
+
end
|
|
31
|
+
|
|
32
|
+
::Thrift::Struct.generate_accessors self
|
|
33
|
+
end
|
|
34
|
+
|
data/lib/snowflake.rb
ADDED
|
@@ -0,0 +1,237 @@
|
|
|
1
|
+
#
|
|
2
|
+
# Autogenerated by Thrift
|
|
3
|
+
#
|
|
4
|
+
# DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
|
|
5
|
+
#
|
|
6
|
+
|
|
7
|
+
require 'thrift'
|
|
8
|
+
require 'snowflake_types'
|
|
9
|
+
|
|
10
|
+
module Snowflake
|
|
11
|
+
class Client
|
|
12
|
+
include ::Thrift::Client
|
|
13
|
+
|
|
14
|
+
def get_worker_id()
|
|
15
|
+
send_get_worker_id()
|
|
16
|
+
return recv_get_worker_id()
|
|
17
|
+
end
|
|
18
|
+
|
|
19
|
+
def send_get_worker_id()
|
|
20
|
+
send_message('get_worker_id', Get_worker_id_args)
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
def recv_get_worker_id()
|
|
24
|
+
result = receive_message(Get_worker_id_result)
|
|
25
|
+
return result.success unless result.success.nil?
|
|
26
|
+
raise ::Thrift::ApplicationException.new(::Thrift::ApplicationException::MISSING_RESULT, 'get_worker_id failed: unknown result')
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
def get_timestamp()
|
|
30
|
+
send_get_timestamp()
|
|
31
|
+
return recv_get_timestamp()
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
def send_get_timestamp()
|
|
35
|
+
send_message('get_timestamp', Get_timestamp_args)
|
|
36
|
+
end
|
|
37
|
+
|
|
38
|
+
def recv_get_timestamp()
|
|
39
|
+
result = receive_message(Get_timestamp_result)
|
|
40
|
+
return result.success unless result.success.nil?
|
|
41
|
+
raise ::Thrift::ApplicationException.new(::Thrift::ApplicationException::MISSING_RESULT, 'get_timestamp failed: unknown result')
|
|
42
|
+
end
|
|
43
|
+
|
|
44
|
+
def get_id(useragent)
|
|
45
|
+
send_get_id(useragent)
|
|
46
|
+
return recv_get_id()
|
|
47
|
+
end
|
|
48
|
+
|
|
49
|
+
def send_get_id(useragent)
|
|
50
|
+
send_message('get_id', Get_id_args, :useragent => useragent)
|
|
51
|
+
end
|
|
52
|
+
|
|
53
|
+
def recv_get_id()
|
|
54
|
+
result = receive_message(Get_id_result)
|
|
55
|
+
return result.success unless result.success.nil?
|
|
56
|
+
raise ::Thrift::ApplicationException.new(::Thrift::ApplicationException::MISSING_RESULT, 'get_id failed: unknown result')
|
|
57
|
+
end
|
|
58
|
+
|
|
59
|
+
def get_datacenter_id()
|
|
60
|
+
send_get_datacenter_id()
|
|
61
|
+
return recv_get_datacenter_id()
|
|
62
|
+
end
|
|
63
|
+
|
|
64
|
+
def send_get_datacenter_id()
|
|
65
|
+
send_message('get_datacenter_id', Get_datacenter_id_args)
|
|
66
|
+
end
|
|
67
|
+
|
|
68
|
+
def recv_get_datacenter_id()
|
|
69
|
+
result = receive_message(Get_datacenter_id_result)
|
|
70
|
+
return result.success unless result.success.nil?
|
|
71
|
+
raise ::Thrift::ApplicationException.new(::Thrift::ApplicationException::MISSING_RESULT, 'get_datacenter_id failed: unknown result')
|
|
72
|
+
end
|
|
73
|
+
|
|
74
|
+
end
|
|
75
|
+
|
|
76
|
+
class Processor
|
|
77
|
+
include ::Thrift::Processor
|
|
78
|
+
|
|
79
|
+
def process_get_worker_id(seqid, iprot, oprot)
|
|
80
|
+
args = read_args(iprot, Get_worker_id_args)
|
|
81
|
+
result = Get_worker_id_result.new()
|
|
82
|
+
result.success = @handler.get_worker_id()
|
|
83
|
+
write_result(result, oprot, 'get_worker_id', seqid)
|
|
84
|
+
end
|
|
85
|
+
|
|
86
|
+
def process_get_timestamp(seqid, iprot, oprot)
|
|
87
|
+
args = read_args(iprot, Get_timestamp_args)
|
|
88
|
+
result = Get_timestamp_result.new()
|
|
89
|
+
result.success = @handler.get_timestamp()
|
|
90
|
+
write_result(result, oprot, 'get_timestamp', seqid)
|
|
91
|
+
end
|
|
92
|
+
|
|
93
|
+
def process_get_id(seqid, iprot, oprot)
|
|
94
|
+
args = read_args(iprot, Get_id_args)
|
|
95
|
+
result = Get_id_result.new()
|
|
96
|
+
result.success = @handler.get_id(args.useragent)
|
|
97
|
+
write_result(result, oprot, 'get_id', seqid)
|
|
98
|
+
end
|
|
99
|
+
|
|
100
|
+
def process_get_datacenter_id(seqid, iprot, oprot)
|
|
101
|
+
args = read_args(iprot, Get_datacenter_id_args)
|
|
102
|
+
result = Get_datacenter_id_result.new()
|
|
103
|
+
result.success = @handler.get_datacenter_id()
|
|
104
|
+
write_result(result, oprot, 'get_datacenter_id', seqid)
|
|
105
|
+
end
|
|
106
|
+
|
|
107
|
+
end
|
|
108
|
+
|
|
109
|
+
# HELPER FUNCTIONS AND STRUCTURES
|
|
110
|
+
|
|
111
|
+
class Get_worker_id_args
|
|
112
|
+
include ::Thrift::Struct, ::Thrift::Struct_Union
|
|
113
|
+
|
|
114
|
+
FIELDS = {
|
|
115
|
+
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
def struct_fields; FIELDS; end
|
|
119
|
+
|
|
120
|
+
def validate
|
|
121
|
+
end
|
|
122
|
+
|
|
123
|
+
::Thrift::Struct.generate_accessors self
|
|
124
|
+
end
|
|
125
|
+
|
|
126
|
+
class Get_worker_id_result
|
|
127
|
+
include ::Thrift::Struct, ::Thrift::Struct_Union
|
|
128
|
+
SUCCESS = 0
|
|
129
|
+
|
|
130
|
+
FIELDS = {
|
|
131
|
+
SUCCESS => {:type => ::Thrift::Types::I64, :name => 'success'}
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
def struct_fields; FIELDS; end
|
|
135
|
+
|
|
136
|
+
def validate
|
|
137
|
+
end
|
|
138
|
+
|
|
139
|
+
::Thrift::Struct.generate_accessors self
|
|
140
|
+
end
|
|
141
|
+
|
|
142
|
+
class Get_timestamp_args
|
|
143
|
+
include ::Thrift::Struct, ::Thrift::Struct_Union
|
|
144
|
+
|
|
145
|
+
FIELDS = {
|
|
146
|
+
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
def struct_fields; FIELDS; end
|
|
150
|
+
|
|
151
|
+
def validate
|
|
152
|
+
end
|
|
153
|
+
|
|
154
|
+
::Thrift::Struct.generate_accessors self
|
|
155
|
+
end
|
|
156
|
+
|
|
157
|
+
class Get_timestamp_result
|
|
158
|
+
include ::Thrift::Struct, ::Thrift::Struct_Union
|
|
159
|
+
SUCCESS = 0
|
|
160
|
+
|
|
161
|
+
FIELDS = {
|
|
162
|
+
SUCCESS => {:type => ::Thrift::Types::I64, :name => 'success'}
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
def struct_fields; FIELDS; end
|
|
166
|
+
|
|
167
|
+
def validate
|
|
168
|
+
end
|
|
169
|
+
|
|
170
|
+
::Thrift::Struct.generate_accessors self
|
|
171
|
+
end
|
|
172
|
+
|
|
173
|
+
class Get_id_args
|
|
174
|
+
include ::Thrift::Struct, ::Thrift::Struct_Union
|
|
175
|
+
USERAGENT = 1
|
|
176
|
+
|
|
177
|
+
FIELDS = {
|
|
178
|
+
USERAGENT => {:type => ::Thrift::Types::STRING, :name => 'useragent'}
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
def struct_fields; FIELDS; end
|
|
182
|
+
|
|
183
|
+
def validate
|
|
184
|
+
end
|
|
185
|
+
|
|
186
|
+
::Thrift::Struct.generate_accessors self
|
|
187
|
+
end
|
|
188
|
+
|
|
189
|
+
class Get_id_result
|
|
190
|
+
include ::Thrift::Struct, ::Thrift::Struct_Union
|
|
191
|
+
SUCCESS = 0
|
|
192
|
+
|
|
193
|
+
FIELDS = {
|
|
194
|
+
SUCCESS => {:type => ::Thrift::Types::I64, :name => 'success'}
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
def struct_fields; FIELDS; end
|
|
198
|
+
|
|
199
|
+
def validate
|
|
200
|
+
end
|
|
201
|
+
|
|
202
|
+
::Thrift::Struct.generate_accessors self
|
|
203
|
+
end
|
|
204
|
+
|
|
205
|
+
class Get_datacenter_id_args
|
|
206
|
+
include ::Thrift::Struct, ::Thrift::Struct_Union
|
|
207
|
+
|
|
208
|
+
FIELDS = {
|
|
209
|
+
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
def struct_fields; FIELDS; end
|
|
213
|
+
|
|
214
|
+
def validate
|
|
215
|
+
end
|
|
216
|
+
|
|
217
|
+
::Thrift::Struct.generate_accessors self
|
|
218
|
+
end
|
|
219
|
+
|
|
220
|
+
class Get_datacenter_id_result
|
|
221
|
+
include ::Thrift::Struct, ::Thrift::Struct_Union
|
|
222
|
+
SUCCESS = 0
|
|
223
|
+
|
|
224
|
+
FIELDS = {
|
|
225
|
+
SUCCESS => {:type => ::Thrift::Types::I64, :name => 'success'}
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
def struct_fields; FIELDS; end
|
|
229
|
+
|
|
230
|
+
def validate
|
|
231
|
+
end
|
|
232
|
+
|
|
233
|
+
::Thrift::Struct.generate_accessors self
|
|
234
|
+
end
|
|
235
|
+
|
|
236
|
+
end
|
|
237
|
+
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
#
|
|
2
|
+
# Autogenerated by Thrift
|
|
3
|
+
#
|
|
4
|
+
# DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
|
|
5
|
+
#
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class InvalidSystemClock < ::Thrift::Exception
|
|
9
|
+
include ::Thrift::Struct, ::Thrift::Struct_Union
|
|
10
|
+
def initialize(message=nil)
|
|
11
|
+
super()
|
|
12
|
+
self.message = message
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
MESSAGE = 1
|
|
16
|
+
|
|
17
|
+
FIELDS = {
|
|
18
|
+
MESSAGE => {:type => ::Thrift::Types::STRING, :name => 'message'}
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
def struct_fields; FIELDS; end
|
|
22
|
+
|
|
23
|
+
def validate
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
::Thrift::Struct.generate_accessors self
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
class InvalidUserAgentError < ::Thrift::Exception
|
|
30
|
+
include ::Thrift::Struct, ::Thrift::Struct_Union
|
|
31
|
+
def initialize(message=nil)
|
|
32
|
+
super()
|
|
33
|
+
self.message = message
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
MESSAGE = 1
|
|
37
|
+
|
|
38
|
+
FIELDS = {
|
|
39
|
+
MESSAGE => {:type => ::Thrift::Types::STRING, :name => 'message'}
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
def struct_fields; FIELDS; end
|
|
43
|
+
|
|
44
|
+
def validate
|
|
45
|
+
end
|
|
46
|
+
|
|
47
|
+
::Thrift::Struct.generate_accessors self
|
|
48
|
+
end
|
|
49
|
+
|
|
50
|
+
class AuditLogEntry
|
|
51
|
+
include ::Thrift::Struct, ::Thrift::Struct_Union
|
|
52
|
+
ID = 1
|
|
53
|
+
USERAGENT = 2
|
|
54
|
+
TAG = 3
|
|
55
|
+
|
|
56
|
+
FIELDS = {
|
|
57
|
+
ID => {:type => ::Thrift::Types::I64, :name => 'id'},
|
|
58
|
+
USERAGENT => {:type => ::Thrift::Types::STRING, :name => 'useragent'},
|
|
59
|
+
TAG => {:type => ::Thrift::Types::I64, :name => 'tag'}
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
def struct_fields; FIELDS; end
|
|
63
|
+
|
|
64
|
+
def validate
|
|
65
|
+
end
|
|
66
|
+
|
|
67
|
+
::Thrift::Struct.generate_accessors self
|
|
68
|
+
end
|
|
69
|
+
|
metadata
ADDED
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: snowflake-client
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 1.0.2
|
|
5
|
+
prerelease:
|
|
6
|
+
platform: ruby
|
|
7
|
+
authors:
|
|
8
|
+
- Twitter
|
|
9
|
+
autorequire:
|
|
10
|
+
bindir: bin
|
|
11
|
+
cert_chain: []
|
|
12
|
+
date: 2014-04-14 00:00:00.000000000 Z
|
|
13
|
+
dependencies:
|
|
14
|
+
- !ruby/object:Gem::Dependency
|
|
15
|
+
name: thrift
|
|
16
|
+
requirement: &70109549194360 !ruby/object:Gem::Requirement
|
|
17
|
+
none: false
|
|
18
|
+
requirements:
|
|
19
|
+
- - ! '>='
|
|
20
|
+
- !ruby/object:Gem::Version
|
|
21
|
+
version: '0'
|
|
22
|
+
type: :runtime
|
|
23
|
+
prerelease: false
|
|
24
|
+
version_requirements: *70109549194360
|
|
25
|
+
- !ruby/object:Gem::Dependency
|
|
26
|
+
name: thin
|
|
27
|
+
requirement: &70109549193400 !ruby/object:Gem::Requirement
|
|
28
|
+
none: false
|
|
29
|
+
requirements:
|
|
30
|
+
- - ! '>='
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: '0'
|
|
33
|
+
type: :runtime
|
|
34
|
+
prerelease: false
|
|
35
|
+
version_requirements: *70109549193400
|
|
36
|
+
description:
|
|
37
|
+
email: alex@gocarrot.com
|
|
38
|
+
executables: []
|
|
39
|
+
extensions: []
|
|
40
|
+
extra_rdoc_files: []
|
|
41
|
+
files:
|
|
42
|
+
- lib/facebook_service.rb
|
|
43
|
+
- lib/fb303_constants.rb
|
|
44
|
+
- lib/fb303_types.rb
|
|
45
|
+
- lib/scribe.rb
|
|
46
|
+
- lib/scribe_constants.rb
|
|
47
|
+
- lib/scribe_types.rb
|
|
48
|
+
- lib/snowflake.rb
|
|
49
|
+
- lib/snowflake_constants.rb
|
|
50
|
+
- lib/snowflake_types.rb
|
|
51
|
+
homepage: https://github.com/GoCarrot/snowflake-ruby-client.git
|
|
52
|
+
licenses:
|
|
53
|
+
- Apache 2
|
|
54
|
+
post_install_message:
|
|
55
|
+
rdoc_options: []
|
|
56
|
+
require_paths:
|
|
57
|
+
- lib
|
|
58
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
59
|
+
none: false
|
|
60
|
+
requirements:
|
|
61
|
+
- - ! '>='
|
|
62
|
+
- !ruby/object:Gem::Version
|
|
63
|
+
version: '0'
|
|
64
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
65
|
+
none: false
|
|
66
|
+
requirements:
|
|
67
|
+
- - ! '>='
|
|
68
|
+
- !ruby/object:Gem::Version
|
|
69
|
+
version: '0'
|
|
70
|
+
requirements: []
|
|
71
|
+
rubyforge_project:
|
|
72
|
+
rubygems_version: 1.8.10
|
|
73
|
+
signing_key:
|
|
74
|
+
specification_version: 3
|
|
75
|
+
summary: These are the autogenerated thrift bindings for Snowflake
|
|
76
|
+
test_files: []
|