sessionm-cassandra 1.0.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.
Files changed (96) hide show
  1. data/CHANGELOG +135 -0
  2. data/Gemfile +8 -0
  3. data/LICENSE +202 -0
  4. data/Manifest +94 -0
  5. data/README.md +373 -0
  6. data/Rakefile +195 -0
  7. data/bin/cassandra_helper +16 -0
  8. data/conf/0.6/cassandra.in.sh +47 -0
  9. data/conf/0.6/log4j.properties +38 -0
  10. data/conf/0.6/schema.json +57 -0
  11. data/conf/0.6/storage-conf.xml +352 -0
  12. data/conf/0.7/cassandra.in.sh +46 -0
  13. data/conf/0.7/cassandra.yaml +336 -0
  14. data/conf/0.7/log4j-server.properties +41 -0
  15. data/conf/0.7/schema.json +57 -0
  16. data/conf/0.7/schema.txt +45 -0
  17. data/conf/0.8/cassandra.in.sh +41 -0
  18. data/conf/0.8/cassandra.yaml +61 -0
  19. data/conf/0.8/log4j-server.properties +40 -0
  20. data/conf/0.8/schema.json +72 -0
  21. data/conf/0.8/schema.txt +57 -0
  22. data/conf/1.0/cassandra.in.sh +41 -0
  23. data/conf/1.0/cassandra.yaml +415 -0
  24. data/conf/1.0/log4j-server.properties +40 -0
  25. data/conf/1.0/schema.json +72 -0
  26. data/conf/1.0/schema.txt +57 -0
  27. data/conf/1.1/cassandra.in.sh +41 -0
  28. data/conf/1.1/cassandra.yaml +567 -0
  29. data/conf/1.1/log4j-server.properties +44 -0
  30. data/conf/1.1/schema.json +72 -0
  31. data/conf/1.1/schema.txt +57 -0
  32. data/ext/cassandra_native.c +34 -0
  33. data/ext/extconf.rb +9 -0
  34. data/lib/cassandra/0.6/cassandra.rb +113 -0
  35. data/lib/cassandra/0.6/columns.rb +78 -0
  36. data/lib/cassandra/0.6/protocol.rb +91 -0
  37. data/lib/cassandra/0.6.rb +7 -0
  38. data/lib/cassandra/0.7/cassandra.rb +2 -0
  39. data/lib/cassandra/0.7/columns.rb +4 -0
  40. data/lib/cassandra/0.7/protocol.rb +5 -0
  41. data/lib/cassandra/0.7.rb +7 -0
  42. data/lib/cassandra/0.8/cassandra.rb +51 -0
  43. data/lib/cassandra/0.8/columns.rb +28 -0
  44. data/lib/cassandra/0.8/protocol.rb +10 -0
  45. data/lib/cassandra/0.8.rb +7 -0
  46. data/lib/cassandra/1.0/cassandra.rb +1 -0
  47. data/lib/cassandra/1.0/columns.rb +1 -0
  48. data/lib/cassandra/1.0/protocol.rb +1 -0
  49. data/lib/cassandra/1.0.rb +7 -0
  50. data/lib/cassandra/1.1/cassandra.rb +1 -0
  51. data/lib/cassandra/1.1/columns.rb +1 -0
  52. data/lib/cassandra/1.1/protocol.rb +1 -0
  53. data/lib/cassandra/1.1.rb +7 -0
  54. data/lib/cassandra/array.rb +8 -0
  55. data/lib/cassandra/batch.rb +41 -0
  56. data/lib/cassandra/cassandra.rb +1088 -0
  57. data/lib/cassandra/column_family.rb +3 -0
  58. data/lib/cassandra/columns.rb +172 -0
  59. data/lib/cassandra/comparable.rb +28 -0
  60. data/lib/cassandra/composite.rb +140 -0
  61. data/lib/cassandra/constants.rb +11 -0
  62. data/lib/cassandra/debug.rb +9 -0
  63. data/lib/cassandra/dynamic_composite.rb +96 -0
  64. data/lib/cassandra/helpers.rb +41 -0
  65. data/lib/cassandra/keyspace.rb +3 -0
  66. data/lib/cassandra/long.rb +58 -0
  67. data/lib/cassandra/mock.rb +525 -0
  68. data/lib/cassandra/ordered_hash.rb +192 -0
  69. data/lib/cassandra/protocol.rb +137 -0
  70. data/lib/cassandra/time.rb +11 -0
  71. data/lib/cassandra.rb +41 -0
  72. data/sessionm-cassandra.gemspec +47 -0
  73. data/test/cassandra_client_test.rb +20 -0
  74. data/test/cassandra_mock_test.rb +128 -0
  75. data/test/cassandra_test.rb +1353 -0
  76. data/test/comparable_types_test.rb +45 -0
  77. data/test/composite_type_test.rb +64 -0
  78. data/test/eventmachine_test.rb +42 -0
  79. data/test/ordered_hash_test.rb +386 -0
  80. data/test/test_helper.rb +19 -0
  81. data/vendor/0.6/gen-rb/cassandra.rb +1481 -0
  82. data/vendor/0.6/gen-rb/cassandra_constants.rb +12 -0
  83. data/vendor/0.6/gen-rb/cassandra_types.rb +482 -0
  84. data/vendor/0.7/gen-rb/cassandra.rb +1936 -0
  85. data/vendor/0.7/gen-rb/cassandra_constants.rb +12 -0
  86. data/vendor/0.7/gen-rb/cassandra_types.rb +681 -0
  87. data/vendor/0.8/gen-rb/cassandra.rb +2215 -0
  88. data/vendor/0.8/gen-rb/cassandra_constants.rb +12 -0
  89. data/vendor/0.8/gen-rb/cassandra_types.rb +824 -0
  90. data/vendor/1.0/gen-rb/cassandra.rb +2215 -0
  91. data/vendor/1.0/gen-rb/cassandra_constants.rb +12 -0
  92. data/vendor/1.0/gen-rb/cassandra_types.rb +857 -0
  93. data/vendor/1.1/gen-rb/cassandra.rb +2571 -0
  94. data/vendor/1.1/gen-rb/cassandra_constants.rb +12 -0
  95. data/vendor/1.1/gen-rb/cassandra_types.rb +928 -0
  96. metadata +287 -0
@@ -0,0 +1,1936 @@
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 'cassandra_types'
9
+
10
+ module CassandraThrift
11
+ module Cassandra
12
+ class Client
13
+ include ::Thrift::Client
14
+
15
+ def login(auth_request)
16
+ send_login(auth_request)
17
+ recv_login()
18
+ end
19
+
20
+ def send_login(auth_request)
21
+ send_message('login', Login_args, :auth_request => auth_request)
22
+ end
23
+
24
+ def recv_login()
25
+ result = receive_message(Login_result)
26
+ raise result.authnx unless result.authnx.nil?
27
+ raise result.authzx unless result.authzx.nil?
28
+ return
29
+ end
30
+
31
+ def set_keyspace(keyspace)
32
+ send_set_keyspace(keyspace)
33
+ recv_set_keyspace()
34
+ end
35
+
36
+ def send_set_keyspace(keyspace)
37
+ send_message('set_keyspace', Set_keyspace_args, :keyspace => keyspace)
38
+ end
39
+
40
+ def recv_set_keyspace()
41
+ result = receive_message(Set_keyspace_result)
42
+ raise result.ire unless result.ire.nil?
43
+ return
44
+ end
45
+
46
+ def get(key, column_path, consistency_level)
47
+ send_get(key, column_path, consistency_level)
48
+ return recv_get()
49
+ end
50
+
51
+ def send_get(key, column_path, consistency_level)
52
+ send_message('get', Get_args, :key => key, :column_path => column_path, :consistency_level => consistency_level)
53
+ end
54
+
55
+ def recv_get()
56
+ result = receive_message(Get_result)
57
+ return result.success unless result.success.nil?
58
+ raise result.ire unless result.ire.nil?
59
+ raise result.nfe unless result.nfe.nil?
60
+ raise result.ue unless result.ue.nil?
61
+ raise result.te unless result.te.nil?
62
+ raise ::Thrift::ApplicationException.new(::Thrift::ApplicationException::MISSING_RESULT, 'get failed: unknown result')
63
+ end
64
+
65
+ def get_slice(key, column_parent, predicate, consistency_level)
66
+ send_get_slice(key, column_parent, predicate, consistency_level)
67
+ return recv_get_slice()
68
+ end
69
+
70
+ def send_get_slice(key, column_parent, predicate, consistency_level)
71
+ send_message('get_slice', Get_slice_args, :key => key, :column_parent => column_parent, :predicate => predicate, :consistency_level => consistency_level)
72
+ end
73
+
74
+ def recv_get_slice()
75
+ result = receive_message(Get_slice_result)
76
+ return result.success unless result.success.nil?
77
+ raise result.ire unless result.ire.nil?
78
+ raise result.ue unless result.ue.nil?
79
+ raise result.te unless result.te.nil?
80
+ raise ::Thrift::ApplicationException.new(::Thrift::ApplicationException::MISSING_RESULT, 'get_slice failed: unknown result')
81
+ end
82
+
83
+ def get_count(key, column_parent, predicate, consistency_level)
84
+ send_get_count(key, column_parent, predicate, consistency_level)
85
+ return recv_get_count()
86
+ end
87
+
88
+ def send_get_count(key, column_parent, predicate, consistency_level)
89
+ send_message('get_count', Get_count_args, :key => key, :column_parent => column_parent, :predicate => predicate, :consistency_level => consistency_level)
90
+ end
91
+
92
+ def recv_get_count()
93
+ result = receive_message(Get_count_result)
94
+ return result.success unless result.success.nil?
95
+ raise result.ire unless result.ire.nil?
96
+ raise result.ue unless result.ue.nil?
97
+ raise result.te unless result.te.nil?
98
+ raise ::Thrift::ApplicationException.new(::Thrift::ApplicationException::MISSING_RESULT, 'get_count failed: unknown result')
99
+ end
100
+
101
+ def multiget_slice(keys, column_parent, predicate, consistency_level)
102
+ send_multiget_slice(keys, column_parent, predicate, consistency_level)
103
+ return recv_multiget_slice()
104
+ end
105
+
106
+ def send_multiget_slice(keys, column_parent, predicate, consistency_level)
107
+ send_message('multiget_slice', Multiget_slice_args, :keys => keys, :column_parent => column_parent, :predicate => predicate, :consistency_level => consistency_level)
108
+ end
109
+
110
+ def recv_multiget_slice()
111
+ result = receive_message(Multiget_slice_result)
112
+ return result.success unless result.success.nil?
113
+ raise result.ire unless result.ire.nil?
114
+ raise result.ue unless result.ue.nil?
115
+ raise result.te unless result.te.nil?
116
+ raise ::Thrift::ApplicationException.new(::Thrift::ApplicationException::MISSING_RESULT, 'multiget_slice failed: unknown result')
117
+ end
118
+
119
+ def multiget_count(keys, column_parent, predicate, consistency_level)
120
+ send_multiget_count(keys, column_parent, predicate, consistency_level)
121
+ return recv_multiget_count()
122
+ end
123
+
124
+ def send_multiget_count(keys, column_parent, predicate, consistency_level)
125
+ send_message('multiget_count', Multiget_count_args, :keys => keys, :column_parent => column_parent, :predicate => predicate, :consistency_level => consistency_level)
126
+ end
127
+
128
+ def recv_multiget_count()
129
+ result = receive_message(Multiget_count_result)
130
+ return result.success unless result.success.nil?
131
+ raise result.ire unless result.ire.nil?
132
+ raise result.ue unless result.ue.nil?
133
+ raise result.te unless result.te.nil?
134
+ raise ::Thrift::ApplicationException.new(::Thrift::ApplicationException::MISSING_RESULT, 'multiget_count failed: unknown result')
135
+ end
136
+
137
+ def get_range_slices(column_parent, predicate, range, consistency_level)
138
+ send_get_range_slices(column_parent, predicate, range, consistency_level)
139
+ return recv_get_range_slices()
140
+ end
141
+
142
+ def send_get_range_slices(column_parent, predicate, range, consistency_level)
143
+ send_message('get_range_slices', Get_range_slices_args, :column_parent => column_parent, :predicate => predicate, :range => range, :consistency_level => consistency_level)
144
+ end
145
+
146
+ def recv_get_range_slices()
147
+ result = receive_message(Get_range_slices_result)
148
+ return result.success unless result.success.nil?
149
+ raise result.ire unless result.ire.nil?
150
+ raise result.ue unless result.ue.nil?
151
+ raise result.te unless result.te.nil?
152
+ raise ::Thrift::ApplicationException.new(::Thrift::ApplicationException::MISSING_RESULT, 'get_range_slices failed: unknown result')
153
+ end
154
+
155
+ def get_indexed_slices(column_parent, index_clause, column_predicate, consistency_level)
156
+ send_get_indexed_slices(column_parent, index_clause, column_predicate, consistency_level)
157
+ return recv_get_indexed_slices()
158
+ end
159
+
160
+ def send_get_indexed_slices(column_parent, index_clause, column_predicate, consistency_level)
161
+ send_message('get_indexed_slices', Get_indexed_slices_args, :column_parent => column_parent, :index_clause => index_clause, :column_predicate => column_predicate, :consistency_level => consistency_level)
162
+ end
163
+
164
+ def recv_get_indexed_slices()
165
+ result = receive_message(Get_indexed_slices_result)
166
+ return result.success unless result.success.nil?
167
+ raise result.ire unless result.ire.nil?
168
+ raise result.ue unless result.ue.nil?
169
+ raise result.te unless result.te.nil?
170
+ raise ::Thrift::ApplicationException.new(::Thrift::ApplicationException::MISSING_RESULT, 'get_indexed_slices failed: unknown result')
171
+ end
172
+
173
+ def insert(key, column_parent, column, consistency_level)
174
+ send_insert(key, column_parent, column, consistency_level)
175
+ recv_insert()
176
+ end
177
+
178
+ def send_insert(key, column_parent, column, consistency_level)
179
+ send_message('insert', Insert_args, :key => key, :column_parent => column_parent, :column => column, :consistency_level => consistency_level)
180
+ end
181
+
182
+ def recv_insert()
183
+ result = receive_message(Insert_result)
184
+ raise result.ire unless result.ire.nil?
185
+ raise result.ue unless result.ue.nil?
186
+ raise result.te unless result.te.nil?
187
+ return
188
+ end
189
+
190
+ def remove(key, column_path, timestamp, consistency_level)
191
+ send_remove(key, column_path, timestamp, consistency_level)
192
+ recv_remove()
193
+ end
194
+
195
+ def send_remove(key, column_path, timestamp, consistency_level)
196
+ send_message('remove', Remove_args, :key => key, :column_path => column_path, :timestamp => timestamp, :consistency_level => consistency_level)
197
+ end
198
+
199
+ def recv_remove()
200
+ result = receive_message(Remove_result)
201
+ raise result.ire unless result.ire.nil?
202
+ raise result.ue unless result.ue.nil?
203
+ raise result.te unless result.te.nil?
204
+ return
205
+ end
206
+
207
+ def batch_mutate(mutation_map, consistency_level)
208
+ send_batch_mutate(mutation_map, consistency_level)
209
+ recv_batch_mutate()
210
+ end
211
+
212
+ def send_batch_mutate(mutation_map, consistency_level)
213
+ send_message('batch_mutate', Batch_mutate_args, :mutation_map => mutation_map, :consistency_level => consistency_level)
214
+ end
215
+
216
+ def recv_batch_mutate()
217
+ result = receive_message(Batch_mutate_result)
218
+ raise result.ire unless result.ire.nil?
219
+ raise result.ue unless result.ue.nil?
220
+ raise result.te unless result.te.nil?
221
+ return
222
+ end
223
+
224
+ def truncate(cfname)
225
+ send_truncate(cfname)
226
+ recv_truncate()
227
+ end
228
+
229
+ def send_truncate(cfname)
230
+ send_message('truncate', Truncate_args, :cfname => cfname)
231
+ end
232
+
233
+ def recv_truncate()
234
+ result = receive_message(Truncate_result)
235
+ raise result.ire unless result.ire.nil?
236
+ raise result.ue unless result.ue.nil?
237
+ return
238
+ end
239
+
240
+ def describe_schema_versions()
241
+ send_describe_schema_versions()
242
+ return recv_describe_schema_versions()
243
+ end
244
+
245
+ def send_describe_schema_versions()
246
+ send_message('describe_schema_versions', Describe_schema_versions_args)
247
+ end
248
+
249
+ def recv_describe_schema_versions()
250
+ result = receive_message(Describe_schema_versions_result)
251
+ return result.success unless result.success.nil?
252
+ raise result.ire unless result.ire.nil?
253
+ raise ::Thrift::ApplicationException.new(::Thrift::ApplicationException::MISSING_RESULT, 'describe_schema_versions failed: unknown result')
254
+ end
255
+
256
+ def describe_keyspaces()
257
+ send_describe_keyspaces()
258
+ return recv_describe_keyspaces()
259
+ end
260
+
261
+ def send_describe_keyspaces()
262
+ send_message('describe_keyspaces', Describe_keyspaces_args)
263
+ end
264
+
265
+ def recv_describe_keyspaces()
266
+ result = receive_message(Describe_keyspaces_result)
267
+ return result.success unless result.success.nil?
268
+ raise result.ire unless result.ire.nil?
269
+ raise ::Thrift::ApplicationException.new(::Thrift::ApplicationException::MISSING_RESULT, 'describe_keyspaces failed: unknown result')
270
+ end
271
+
272
+ def describe_cluster_name()
273
+ send_describe_cluster_name()
274
+ return recv_describe_cluster_name()
275
+ end
276
+
277
+ def send_describe_cluster_name()
278
+ send_message('describe_cluster_name', Describe_cluster_name_args)
279
+ end
280
+
281
+ def recv_describe_cluster_name()
282
+ result = receive_message(Describe_cluster_name_result)
283
+ return result.success unless result.success.nil?
284
+ raise ::Thrift::ApplicationException.new(::Thrift::ApplicationException::MISSING_RESULT, 'describe_cluster_name failed: unknown result')
285
+ end
286
+
287
+ def describe_version()
288
+ send_describe_version()
289
+ return recv_describe_version()
290
+ end
291
+
292
+ def send_describe_version()
293
+ send_message('describe_version', Describe_version_args)
294
+ end
295
+
296
+ def recv_describe_version()
297
+ result = receive_message(Describe_version_result)
298
+ return result.success unless result.success.nil?
299
+ raise ::Thrift::ApplicationException.new(::Thrift::ApplicationException::MISSING_RESULT, 'describe_version failed: unknown result')
300
+ end
301
+
302
+ def describe_ring(keyspace)
303
+ send_describe_ring(keyspace)
304
+ return recv_describe_ring()
305
+ end
306
+
307
+ def send_describe_ring(keyspace)
308
+ send_message('describe_ring', Describe_ring_args, :keyspace => keyspace)
309
+ end
310
+
311
+ def recv_describe_ring()
312
+ result = receive_message(Describe_ring_result)
313
+ return result.success unless result.success.nil?
314
+ raise result.ire unless result.ire.nil?
315
+ raise ::Thrift::ApplicationException.new(::Thrift::ApplicationException::MISSING_RESULT, 'describe_ring failed: unknown result')
316
+ end
317
+
318
+ def describe_partitioner()
319
+ send_describe_partitioner()
320
+ return recv_describe_partitioner()
321
+ end
322
+
323
+ def send_describe_partitioner()
324
+ send_message('describe_partitioner', Describe_partitioner_args)
325
+ end
326
+
327
+ def recv_describe_partitioner()
328
+ result = receive_message(Describe_partitioner_result)
329
+ return result.success unless result.success.nil?
330
+ raise ::Thrift::ApplicationException.new(::Thrift::ApplicationException::MISSING_RESULT, 'describe_partitioner failed: unknown result')
331
+ end
332
+
333
+ def describe_snitch()
334
+ send_describe_snitch()
335
+ return recv_describe_snitch()
336
+ end
337
+
338
+ def send_describe_snitch()
339
+ send_message('describe_snitch', Describe_snitch_args)
340
+ end
341
+
342
+ def recv_describe_snitch()
343
+ result = receive_message(Describe_snitch_result)
344
+ return result.success unless result.success.nil?
345
+ raise ::Thrift::ApplicationException.new(::Thrift::ApplicationException::MISSING_RESULT, 'describe_snitch failed: unknown result')
346
+ end
347
+
348
+ def describe_keyspace(keyspace)
349
+ send_describe_keyspace(keyspace)
350
+ return recv_describe_keyspace()
351
+ end
352
+
353
+ def send_describe_keyspace(keyspace)
354
+ send_message('describe_keyspace', Describe_keyspace_args, :keyspace => keyspace)
355
+ end
356
+
357
+ def recv_describe_keyspace()
358
+ result = receive_message(Describe_keyspace_result)
359
+ return result.success unless result.success.nil?
360
+ raise result.nfe unless result.nfe.nil?
361
+ raise result.ire unless result.ire.nil?
362
+ raise ::Thrift::ApplicationException.new(::Thrift::ApplicationException::MISSING_RESULT, 'describe_keyspace failed: unknown result')
363
+ end
364
+
365
+ def describe_splits(cfName, start_token, end_token, keys_per_split)
366
+ send_describe_splits(cfName, start_token, end_token, keys_per_split)
367
+ return recv_describe_splits()
368
+ end
369
+
370
+ def send_describe_splits(cfName, start_token, end_token, keys_per_split)
371
+ send_message('describe_splits', Describe_splits_args, :cfName => cfName, :start_token => start_token, :end_token => end_token, :keys_per_split => keys_per_split)
372
+ end
373
+
374
+ def recv_describe_splits()
375
+ result = receive_message(Describe_splits_result)
376
+ return result.success unless result.success.nil?
377
+ raise ::Thrift::ApplicationException.new(::Thrift::ApplicationException::MISSING_RESULT, 'describe_splits failed: unknown result')
378
+ end
379
+
380
+ def system_add_column_family(cf_def)
381
+ send_system_add_column_family(cf_def)
382
+ return recv_system_add_column_family()
383
+ end
384
+
385
+ def send_system_add_column_family(cf_def)
386
+ send_message('system_add_column_family', System_add_column_family_args, :cf_def => cf_def)
387
+ end
388
+
389
+ def recv_system_add_column_family()
390
+ result = receive_message(System_add_column_family_result)
391
+ return result.success unless result.success.nil?
392
+ raise result.ire unless result.ire.nil?
393
+ raise ::Thrift::ApplicationException.new(::Thrift::ApplicationException::MISSING_RESULT, 'system_add_column_family failed: unknown result')
394
+ end
395
+
396
+ def system_drop_column_family(column_family)
397
+ send_system_drop_column_family(column_family)
398
+ return recv_system_drop_column_family()
399
+ end
400
+
401
+ def send_system_drop_column_family(column_family)
402
+ send_message('system_drop_column_family', System_drop_column_family_args, :column_family => column_family)
403
+ end
404
+
405
+ def recv_system_drop_column_family()
406
+ result = receive_message(System_drop_column_family_result)
407
+ return result.success unless result.success.nil?
408
+ raise result.ire unless result.ire.nil?
409
+ raise ::Thrift::ApplicationException.new(::Thrift::ApplicationException::MISSING_RESULT, 'system_drop_column_family failed: unknown result')
410
+ end
411
+
412
+ def system_add_keyspace(ks_def)
413
+ send_system_add_keyspace(ks_def)
414
+ return recv_system_add_keyspace()
415
+ end
416
+
417
+ def send_system_add_keyspace(ks_def)
418
+ send_message('system_add_keyspace', System_add_keyspace_args, :ks_def => ks_def)
419
+ end
420
+
421
+ def recv_system_add_keyspace()
422
+ result = receive_message(System_add_keyspace_result)
423
+ return result.success unless result.success.nil?
424
+ raise result.ire unless result.ire.nil?
425
+ raise ::Thrift::ApplicationException.new(::Thrift::ApplicationException::MISSING_RESULT, 'system_add_keyspace failed: unknown result')
426
+ end
427
+
428
+ def system_drop_keyspace(keyspace)
429
+ send_system_drop_keyspace(keyspace)
430
+ return recv_system_drop_keyspace()
431
+ end
432
+
433
+ def send_system_drop_keyspace(keyspace)
434
+ send_message('system_drop_keyspace', System_drop_keyspace_args, :keyspace => keyspace)
435
+ end
436
+
437
+ def recv_system_drop_keyspace()
438
+ result = receive_message(System_drop_keyspace_result)
439
+ return result.success unless result.success.nil?
440
+ raise result.ire unless result.ire.nil?
441
+ raise ::Thrift::ApplicationException.new(::Thrift::ApplicationException::MISSING_RESULT, 'system_drop_keyspace failed: unknown result')
442
+ end
443
+
444
+ def system_update_keyspace(ks_def)
445
+ send_system_update_keyspace(ks_def)
446
+ return recv_system_update_keyspace()
447
+ end
448
+
449
+ def send_system_update_keyspace(ks_def)
450
+ send_message('system_update_keyspace', System_update_keyspace_args, :ks_def => ks_def)
451
+ end
452
+
453
+ def recv_system_update_keyspace()
454
+ result = receive_message(System_update_keyspace_result)
455
+ return result.success unless result.success.nil?
456
+ raise result.ire unless result.ire.nil?
457
+ raise ::Thrift::ApplicationException.new(::Thrift::ApplicationException::MISSING_RESULT, 'system_update_keyspace failed: unknown result')
458
+ end
459
+
460
+ def system_update_column_family(cf_def)
461
+ send_system_update_column_family(cf_def)
462
+ return recv_system_update_column_family()
463
+ end
464
+
465
+ def send_system_update_column_family(cf_def)
466
+ send_message('system_update_column_family', System_update_column_family_args, :cf_def => cf_def)
467
+ end
468
+
469
+ def recv_system_update_column_family()
470
+ result = receive_message(System_update_column_family_result)
471
+ return result.success unless result.success.nil?
472
+ raise result.ire unless result.ire.nil?
473
+ raise ::Thrift::ApplicationException.new(::Thrift::ApplicationException::MISSING_RESULT, 'system_update_column_family failed: unknown result')
474
+ end
475
+
476
+ end
477
+
478
+ class Processor
479
+ include ::Thrift::Processor
480
+
481
+ def process_login(seqid, iprot, oprot)
482
+ args = read_args(iprot, Login_args)
483
+ result = Login_result.new()
484
+ begin
485
+ @handler.login(args.auth_request)
486
+ rescue CassandraThrift::AuthenticationException => authnx
487
+ result.authnx = authnx
488
+ rescue CassandraThrift::AuthorizationException => authzx
489
+ result.authzx = authzx
490
+ end
491
+ write_result(result, oprot, 'login', seqid)
492
+ end
493
+
494
+ def process_set_keyspace(seqid, iprot, oprot)
495
+ args = read_args(iprot, Set_keyspace_args)
496
+ result = Set_keyspace_result.new()
497
+ begin
498
+ @handler.set_keyspace(args.keyspace)
499
+ rescue CassandraThrift::InvalidRequestException => ire
500
+ result.ire = ire
501
+ end
502
+ write_result(result, oprot, 'set_keyspace', seqid)
503
+ end
504
+
505
+ def process_get(seqid, iprot, oprot)
506
+ args = read_args(iprot, Get_args)
507
+ result = Get_result.new()
508
+ begin
509
+ result.success = @handler.get(args.key, args.column_path, args.consistency_level)
510
+ rescue CassandraThrift::InvalidRequestException => ire
511
+ result.ire = ire
512
+ rescue CassandraThrift::NotFoundException => nfe
513
+ result.nfe = nfe
514
+ rescue CassandraThrift::UnavailableException => ue
515
+ result.ue = ue
516
+ rescue CassandraThrift::TimedOutException => te
517
+ result.te = te
518
+ end
519
+ write_result(result, oprot, 'get', seqid)
520
+ end
521
+
522
+ def process_get_slice(seqid, iprot, oprot)
523
+ args = read_args(iprot, Get_slice_args)
524
+ result = Get_slice_result.new()
525
+ begin
526
+ result.success = @handler.get_slice(args.key, args.column_parent, args.predicate, args.consistency_level)
527
+ rescue CassandraThrift::InvalidRequestException => ire
528
+ result.ire = ire
529
+ rescue CassandraThrift::UnavailableException => ue
530
+ result.ue = ue
531
+ rescue CassandraThrift::TimedOutException => te
532
+ result.te = te
533
+ end
534
+ write_result(result, oprot, 'get_slice', seqid)
535
+ end
536
+
537
+ def process_get_count(seqid, iprot, oprot)
538
+ args = read_args(iprot, Get_count_args)
539
+ result = Get_count_result.new()
540
+ begin
541
+ result.success = @handler.get_count(args.key, args.column_parent, args.predicate, args.consistency_level)
542
+ rescue CassandraThrift::InvalidRequestException => ire
543
+ result.ire = ire
544
+ rescue CassandraThrift::UnavailableException => ue
545
+ result.ue = ue
546
+ rescue CassandraThrift::TimedOutException => te
547
+ result.te = te
548
+ end
549
+ write_result(result, oprot, 'get_count', seqid)
550
+ end
551
+
552
+ def process_multiget_slice(seqid, iprot, oprot)
553
+ args = read_args(iprot, Multiget_slice_args)
554
+ result = Multiget_slice_result.new()
555
+ begin
556
+ result.success = @handler.multiget_slice(args.keys, args.column_parent, args.predicate, args.consistency_level)
557
+ rescue CassandraThrift::InvalidRequestException => ire
558
+ result.ire = ire
559
+ rescue CassandraThrift::UnavailableException => ue
560
+ result.ue = ue
561
+ rescue CassandraThrift::TimedOutException => te
562
+ result.te = te
563
+ end
564
+ write_result(result, oprot, 'multiget_slice', seqid)
565
+ end
566
+
567
+ def process_multiget_count(seqid, iprot, oprot)
568
+ args = read_args(iprot, Multiget_count_args)
569
+ result = Multiget_count_result.new()
570
+ begin
571
+ result.success = @handler.multiget_count(args.keys, args.column_parent, args.predicate, args.consistency_level)
572
+ rescue CassandraThrift::InvalidRequestException => ire
573
+ result.ire = ire
574
+ rescue CassandraThrift::UnavailableException => ue
575
+ result.ue = ue
576
+ rescue CassandraThrift::TimedOutException => te
577
+ result.te = te
578
+ end
579
+ write_result(result, oprot, 'multiget_count', seqid)
580
+ end
581
+
582
+ def process_get_range_slices(seqid, iprot, oprot)
583
+ args = read_args(iprot, Get_range_slices_args)
584
+ result = Get_range_slices_result.new()
585
+ begin
586
+ result.success = @handler.get_range_slices(args.column_parent, args.predicate, args.range, args.consistency_level)
587
+ rescue CassandraThrift::InvalidRequestException => ire
588
+ result.ire = ire
589
+ rescue CassandraThrift::UnavailableException => ue
590
+ result.ue = ue
591
+ rescue CassandraThrift::TimedOutException => te
592
+ result.te = te
593
+ end
594
+ write_result(result, oprot, 'get_range_slices', seqid)
595
+ end
596
+
597
+ def process_get_indexed_slices(seqid, iprot, oprot)
598
+ args = read_args(iprot, Get_indexed_slices_args)
599
+ result = Get_indexed_slices_result.new()
600
+ begin
601
+ result.success = @handler.get_indexed_slices(args.column_parent, args.index_clause, args.column_predicate, args.consistency_level)
602
+ rescue CassandraThrift::InvalidRequestException => ire
603
+ result.ire = ire
604
+ rescue CassandraThrift::UnavailableException => ue
605
+ result.ue = ue
606
+ rescue CassandraThrift::TimedOutException => te
607
+ result.te = te
608
+ end
609
+ write_result(result, oprot, 'get_indexed_slices', seqid)
610
+ end
611
+
612
+ def process_insert(seqid, iprot, oprot)
613
+ args = read_args(iprot, Insert_args)
614
+ result = Insert_result.new()
615
+ begin
616
+ @handler.insert(args.key, args.column_parent, args.column, args.consistency_level)
617
+ rescue CassandraThrift::InvalidRequestException => ire
618
+ result.ire = ire
619
+ rescue CassandraThrift::UnavailableException => ue
620
+ result.ue = ue
621
+ rescue CassandraThrift::TimedOutException => te
622
+ result.te = te
623
+ end
624
+ write_result(result, oprot, 'insert', seqid)
625
+ end
626
+
627
+ def process_remove(seqid, iprot, oprot)
628
+ args = read_args(iprot, Remove_args)
629
+ result = Remove_result.new()
630
+ begin
631
+ @handler.remove(args.key, args.column_path, args.timestamp, args.consistency_level)
632
+ rescue CassandraThrift::InvalidRequestException => ire
633
+ result.ire = ire
634
+ rescue CassandraThrift::UnavailableException => ue
635
+ result.ue = ue
636
+ rescue CassandraThrift::TimedOutException => te
637
+ result.te = te
638
+ end
639
+ write_result(result, oprot, 'remove', seqid)
640
+ end
641
+
642
+ def process_batch_mutate(seqid, iprot, oprot)
643
+ args = read_args(iprot, Batch_mutate_args)
644
+ result = Batch_mutate_result.new()
645
+ begin
646
+ @handler.batch_mutate(args.mutation_map, args.consistency_level)
647
+ rescue CassandraThrift::InvalidRequestException => ire
648
+ result.ire = ire
649
+ rescue CassandraThrift::UnavailableException => ue
650
+ result.ue = ue
651
+ rescue CassandraThrift::TimedOutException => te
652
+ result.te = te
653
+ end
654
+ write_result(result, oprot, 'batch_mutate', seqid)
655
+ end
656
+
657
+ def process_truncate(seqid, iprot, oprot)
658
+ args = read_args(iprot, Truncate_args)
659
+ result = Truncate_result.new()
660
+ begin
661
+ @handler.truncate(args.cfname)
662
+ rescue CassandraThrift::InvalidRequestException => ire
663
+ result.ire = ire
664
+ rescue CassandraThrift::UnavailableException => ue
665
+ result.ue = ue
666
+ end
667
+ write_result(result, oprot, 'truncate', seqid)
668
+ end
669
+
670
+ def process_describe_schema_versions(seqid, iprot, oprot)
671
+ args = read_args(iprot, Describe_schema_versions_args)
672
+ result = Describe_schema_versions_result.new()
673
+ begin
674
+ result.success = @handler.describe_schema_versions()
675
+ rescue CassandraThrift::InvalidRequestException => ire
676
+ result.ire = ire
677
+ end
678
+ write_result(result, oprot, 'describe_schema_versions', seqid)
679
+ end
680
+
681
+ def process_describe_keyspaces(seqid, iprot, oprot)
682
+ args = read_args(iprot, Describe_keyspaces_args)
683
+ result = Describe_keyspaces_result.new()
684
+ begin
685
+ result.success = @handler.describe_keyspaces()
686
+ rescue CassandraThrift::InvalidRequestException => ire
687
+ result.ire = ire
688
+ end
689
+ write_result(result, oprot, 'describe_keyspaces', seqid)
690
+ end
691
+
692
+ def process_describe_cluster_name(seqid, iprot, oprot)
693
+ args = read_args(iprot, Describe_cluster_name_args)
694
+ result = Describe_cluster_name_result.new()
695
+ result.success = @handler.describe_cluster_name()
696
+ write_result(result, oprot, 'describe_cluster_name', seqid)
697
+ end
698
+
699
+ def process_describe_version(seqid, iprot, oprot)
700
+ args = read_args(iprot, Describe_version_args)
701
+ result = Describe_version_result.new()
702
+ result.success = @handler.describe_version()
703
+ write_result(result, oprot, 'describe_version', seqid)
704
+ end
705
+
706
+ def process_describe_ring(seqid, iprot, oprot)
707
+ args = read_args(iprot, Describe_ring_args)
708
+ result = Describe_ring_result.new()
709
+ begin
710
+ result.success = @handler.describe_ring(args.keyspace)
711
+ rescue CassandraThrift::InvalidRequestException => ire
712
+ result.ire = ire
713
+ end
714
+ write_result(result, oprot, 'describe_ring', seqid)
715
+ end
716
+
717
+ def process_describe_partitioner(seqid, iprot, oprot)
718
+ args = read_args(iprot, Describe_partitioner_args)
719
+ result = Describe_partitioner_result.new()
720
+ result.success = @handler.describe_partitioner()
721
+ write_result(result, oprot, 'describe_partitioner', seqid)
722
+ end
723
+
724
+ def process_describe_snitch(seqid, iprot, oprot)
725
+ args = read_args(iprot, Describe_snitch_args)
726
+ result = Describe_snitch_result.new()
727
+ result.success = @handler.describe_snitch()
728
+ write_result(result, oprot, 'describe_snitch', seqid)
729
+ end
730
+
731
+ def process_describe_keyspace(seqid, iprot, oprot)
732
+ args = read_args(iprot, Describe_keyspace_args)
733
+ result = Describe_keyspace_result.new()
734
+ begin
735
+ result.success = @handler.describe_keyspace(args.keyspace)
736
+ rescue CassandraThrift::NotFoundException => nfe
737
+ result.nfe = nfe
738
+ rescue CassandraThrift::InvalidRequestException => ire
739
+ result.ire = ire
740
+ end
741
+ write_result(result, oprot, 'describe_keyspace', seqid)
742
+ end
743
+
744
+ def process_describe_splits(seqid, iprot, oprot)
745
+ args = read_args(iprot, Describe_splits_args)
746
+ result = Describe_splits_result.new()
747
+ result.success = @handler.describe_splits(args.cfName, args.start_token, args.end_token, args.keys_per_split)
748
+ write_result(result, oprot, 'describe_splits', seqid)
749
+ end
750
+
751
+ def process_system_add_column_family(seqid, iprot, oprot)
752
+ args = read_args(iprot, System_add_column_family_args)
753
+ result = System_add_column_family_result.new()
754
+ begin
755
+ result.success = @handler.system_add_column_family(args.cf_def)
756
+ rescue CassandraThrift::InvalidRequestException => ire
757
+ result.ire = ire
758
+ end
759
+ write_result(result, oprot, 'system_add_column_family', seqid)
760
+ end
761
+
762
+ def process_system_drop_column_family(seqid, iprot, oprot)
763
+ args = read_args(iprot, System_drop_column_family_args)
764
+ result = System_drop_column_family_result.new()
765
+ begin
766
+ result.success = @handler.system_drop_column_family(args.column_family)
767
+ rescue CassandraThrift::InvalidRequestException => ire
768
+ result.ire = ire
769
+ end
770
+ write_result(result, oprot, 'system_drop_column_family', seqid)
771
+ end
772
+
773
+ def process_system_add_keyspace(seqid, iprot, oprot)
774
+ args = read_args(iprot, System_add_keyspace_args)
775
+ result = System_add_keyspace_result.new()
776
+ begin
777
+ result.success = @handler.system_add_keyspace(args.ks_def)
778
+ rescue CassandraThrift::InvalidRequestException => ire
779
+ result.ire = ire
780
+ end
781
+ write_result(result, oprot, 'system_add_keyspace', seqid)
782
+ end
783
+
784
+ def process_system_drop_keyspace(seqid, iprot, oprot)
785
+ args = read_args(iprot, System_drop_keyspace_args)
786
+ result = System_drop_keyspace_result.new()
787
+ begin
788
+ result.success = @handler.system_drop_keyspace(args.keyspace)
789
+ rescue CassandraThrift::InvalidRequestException => ire
790
+ result.ire = ire
791
+ end
792
+ write_result(result, oprot, 'system_drop_keyspace', seqid)
793
+ end
794
+
795
+ def process_system_update_keyspace(seqid, iprot, oprot)
796
+ args = read_args(iprot, System_update_keyspace_args)
797
+ result = System_update_keyspace_result.new()
798
+ begin
799
+ result.success = @handler.system_update_keyspace(args.ks_def)
800
+ rescue CassandraThrift::InvalidRequestException => ire
801
+ result.ire = ire
802
+ end
803
+ write_result(result, oprot, 'system_update_keyspace', seqid)
804
+ end
805
+
806
+ def process_system_update_column_family(seqid, iprot, oprot)
807
+ args = read_args(iprot, System_update_column_family_args)
808
+ result = System_update_column_family_result.new()
809
+ begin
810
+ result.success = @handler.system_update_column_family(args.cf_def)
811
+ rescue CassandraThrift::InvalidRequestException => ire
812
+ result.ire = ire
813
+ end
814
+ write_result(result, oprot, 'system_update_column_family', seqid)
815
+ end
816
+
817
+ end
818
+
819
+ # HELPER FUNCTIONS AND STRUCTURES
820
+
821
+ class Login_args
822
+ include ::Thrift::Struct, ::Thrift::Struct_Union
823
+ AUTH_REQUEST = 1
824
+
825
+ FIELDS = {
826
+ AUTH_REQUEST => {:type => ::Thrift::Types::STRUCT, :name => 'auth_request', :class => CassandraThrift::AuthenticationRequest}
827
+ }
828
+
829
+ def struct_fields; FIELDS; end
830
+
831
+ def validate
832
+ raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field auth_request is unset!') unless @auth_request
833
+ end
834
+
835
+ ::Thrift::Struct.generate_accessors self
836
+ end
837
+
838
+ class Login_result
839
+ include ::Thrift::Struct, ::Thrift::Struct_Union
840
+ AUTHNX = 1
841
+ AUTHZX = 2
842
+
843
+ FIELDS = {
844
+ AUTHNX => {:type => ::Thrift::Types::STRUCT, :name => 'authnx', :class => CassandraThrift::AuthenticationException},
845
+ AUTHZX => {:type => ::Thrift::Types::STRUCT, :name => 'authzx', :class => CassandraThrift::AuthorizationException}
846
+ }
847
+
848
+ def struct_fields; FIELDS; end
849
+
850
+ def validate
851
+ end
852
+
853
+ ::Thrift::Struct.generate_accessors self
854
+ end
855
+
856
+ class Set_keyspace_args
857
+ include ::Thrift::Struct, ::Thrift::Struct_Union
858
+ KEYSPACE = 1
859
+
860
+ FIELDS = {
861
+ KEYSPACE => {:type => ::Thrift::Types::STRING, :name => 'keyspace'}
862
+ }
863
+
864
+ def struct_fields; FIELDS; end
865
+
866
+ def validate
867
+ raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field keyspace is unset!') unless @keyspace
868
+ end
869
+
870
+ ::Thrift::Struct.generate_accessors self
871
+ end
872
+
873
+ class Set_keyspace_result
874
+ include ::Thrift::Struct, ::Thrift::Struct_Union
875
+ IRE = 1
876
+
877
+ FIELDS = {
878
+ IRE => {:type => ::Thrift::Types::STRUCT, :name => 'ire', :class => CassandraThrift::InvalidRequestException}
879
+ }
880
+
881
+ def struct_fields; FIELDS; end
882
+
883
+ def validate
884
+ end
885
+
886
+ ::Thrift::Struct.generate_accessors self
887
+ end
888
+
889
+ class Get_args
890
+ include ::Thrift::Struct, ::Thrift::Struct_Union
891
+ KEY = 1
892
+ COLUMN_PATH = 2
893
+ CONSISTENCY_LEVEL = 3
894
+
895
+ FIELDS = {
896
+ KEY => {:type => ::Thrift::Types::STRING, :name => 'key', :binary => true},
897
+ COLUMN_PATH => {:type => ::Thrift::Types::STRUCT, :name => 'column_path', :class => CassandraThrift::ColumnPath},
898
+ CONSISTENCY_LEVEL => {:type => ::Thrift::Types::I32, :name => 'consistency_level', :default => 1, :enum_class => CassandraThrift::ConsistencyLevel}
899
+ }
900
+
901
+ def struct_fields; FIELDS; end
902
+
903
+ def validate
904
+ raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field key is unset!') unless @key
905
+ raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field column_path is unset!') unless @column_path
906
+ raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field consistency_level is unset!') unless @consistency_level
907
+ unless @consistency_level.nil? || CassandraThrift::ConsistencyLevel::VALID_VALUES.include?(@consistency_level)
908
+ raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Invalid value of field consistency_level!')
909
+ end
910
+ end
911
+
912
+ ::Thrift::Struct.generate_accessors self
913
+ end
914
+
915
+ class Get_result
916
+ include ::Thrift::Struct, ::Thrift::Struct_Union
917
+ SUCCESS = 0
918
+ IRE = 1
919
+ NFE = 2
920
+ UE = 3
921
+ TE = 4
922
+
923
+ FIELDS = {
924
+ SUCCESS => {:type => ::Thrift::Types::STRUCT, :name => 'success', :class => CassandraThrift::ColumnOrSuperColumn},
925
+ IRE => {:type => ::Thrift::Types::STRUCT, :name => 'ire', :class => CassandraThrift::InvalidRequestException},
926
+ NFE => {:type => ::Thrift::Types::STRUCT, :name => 'nfe', :class => CassandraThrift::NotFoundException},
927
+ UE => {:type => ::Thrift::Types::STRUCT, :name => 'ue', :class => CassandraThrift::UnavailableException},
928
+ TE => {:type => ::Thrift::Types::STRUCT, :name => 'te', :class => CassandraThrift::TimedOutException}
929
+ }
930
+
931
+ def struct_fields; FIELDS; end
932
+
933
+ def validate
934
+ end
935
+
936
+ ::Thrift::Struct.generate_accessors self
937
+ end
938
+
939
+ class Get_slice_args
940
+ include ::Thrift::Struct, ::Thrift::Struct_Union
941
+ KEY = 1
942
+ COLUMN_PARENT = 2
943
+ PREDICATE = 3
944
+ CONSISTENCY_LEVEL = 4
945
+
946
+ FIELDS = {
947
+ KEY => {:type => ::Thrift::Types::STRING, :name => 'key', :binary => true},
948
+ COLUMN_PARENT => {:type => ::Thrift::Types::STRUCT, :name => 'column_parent', :class => CassandraThrift::ColumnParent},
949
+ PREDICATE => {:type => ::Thrift::Types::STRUCT, :name => 'predicate', :class => CassandraThrift::SlicePredicate},
950
+ CONSISTENCY_LEVEL => {:type => ::Thrift::Types::I32, :name => 'consistency_level', :default => 1, :enum_class => CassandraThrift::ConsistencyLevel}
951
+ }
952
+
953
+ def struct_fields; FIELDS; end
954
+
955
+ def validate
956
+ raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field key is unset!') unless @key
957
+ raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field column_parent is unset!') unless @column_parent
958
+ raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field predicate is unset!') unless @predicate
959
+ raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field consistency_level is unset!') unless @consistency_level
960
+ unless @consistency_level.nil? || CassandraThrift::ConsistencyLevel::VALID_VALUES.include?(@consistency_level)
961
+ raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Invalid value of field consistency_level!')
962
+ end
963
+ end
964
+
965
+ ::Thrift::Struct.generate_accessors self
966
+ end
967
+
968
+ class Get_slice_result
969
+ include ::Thrift::Struct, ::Thrift::Struct_Union
970
+ SUCCESS = 0
971
+ IRE = 1
972
+ UE = 2
973
+ TE = 3
974
+
975
+ FIELDS = {
976
+ SUCCESS => {:type => ::Thrift::Types::LIST, :name => 'success', :element => {:type => ::Thrift::Types::STRUCT, :class => CassandraThrift::ColumnOrSuperColumn}},
977
+ IRE => {:type => ::Thrift::Types::STRUCT, :name => 'ire', :class => CassandraThrift::InvalidRequestException},
978
+ UE => {:type => ::Thrift::Types::STRUCT, :name => 'ue', :class => CassandraThrift::UnavailableException},
979
+ TE => {:type => ::Thrift::Types::STRUCT, :name => 'te', :class => CassandraThrift::TimedOutException}
980
+ }
981
+
982
+ def struct_fields; FIELDS; end
983
+
984
+ def validate
985
+ end
986
+
987
+ ::Thrift::Struct.generate_accessors self
988
+ end
989
+
990
+ class Get_count_args
991
+ include ::Thrift::Struct, ::Thrift::Struct_Union
992
+ KEY = 1
993
+ COLUMN_PARENT = 2
994
+ PREDICATE = 3
995
+ CONSISTENCY_LEVEL = 4
996
+
997
+ FIELDS = {
998
+ KEY => {:type => ::Thrift::Types::STRING, :name => 'key', :binary => true},
999
+ COLUMN_PARENT => {:type => ::Thrift::Types::STRUCT, :name => 'column_parent', :class => CassandraThrift::ColumnParent},
1000
+ PREDICATE => {:type => ::Thrift::Types::STRUCT, :name => 'predicate', :class => CassandraThrift::SlicePredicate},
1001
+ CONSISTENCY_LEVEL => {:type => ::Thrift::Types::I32, :name => 'consistency_level', :default => 1, :enum_class => CassandraThrift::ConsistencyLevel}
1002
+ }
1003
+
1004
+ def struct_fields; FIELDS; end
1005
+
1006
+ def validate
1007
+ raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field key is unset!') unless @key
1008
+ raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field column_parent is unset!') unless @column_parent
1009
+ raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field predicate is unset!') unless @predicate
1010
+ raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field consistency_level is unset!') unless @consistency_level
1011
+ unless @consistency_level.nil? || CassandraThrift::ConsistencyLevel::VALID_VALUES.include?(@consistency_level)
1012
+ raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Invalid value of field consistency_level!')
1013
+ end
1014
+ end
1015
+
1016
+ ::Thrift::Struct.generate_accessors self
1017
+ end
1018
+
1019
+ class Get_count_result
1020
+ include ::Thrift::Struct, ::Thrift::Struct_Union
1021
+ SUCCESS = 0
1022
+ IRE = 1
1023
+ UE = 2
1024
+ TE = 3
1025
+
1026
+ FIELDS = {
1027
+ SUCCESS => {:type => ::Thrift::Types::I32, :name => 'success'},
1028
+ IRE => {:type => ::Thrift::Types::STRUCT, :name => 'ire', :class => CassandraThrift::InvalidRequestException},
1029
+ UE => {:type => ::Thrift::Types::STRUCT, :name => 'ue', :class => CassandraThrift::UnavailableException},
1030
+ TE => {:type => ::Thrift::Types::STRUCT, :name => 'te', :class => CassandraThrift::TimedOutException}
1031
+ }
1032
+
1033
+ def struct_fields; FIELDS; end
1034
+
1035
+ def validate
1036
+ end
1037
+
1038
+ ::Thrift::Struct.generate_accessors self
1039
+ end
1040
+
1041
+ class Multiget_slice_args
1042
+ include ::Thrift::Struct, ::Thrift::Struct_Union
1043
+ KEYS = 1
1044
+ COLUMN_PARENT = 2
1045
+ PREDICATE = 3
1046
+ CONSISTENCY_LEVEL = 4
1047
+
1048
+ FIELDS = {
1049
+ KEYS => {:type => ::Thrift::Types::LIST, :name => 'keys', :element => {:type => ::Thrift::Types::STRING, :binary => true}},
1050
+ COLUMN_PARENT => {:type => ::Thrift::Types::STRUCT, :name => 'column_parent', :class => CassandraThrift::ColumnParent},
1051
+ PREDICATE => {:type => ::Thrift::Types::STRUCT, :name => 'predicate', :class => CassandraThrift::SlicePredicate},
1052
+ CONSISTENCY_LEVEL => {:type => ::Thrift::Types::I32, :name => 'consistency_level', :default => 1, :enum_class => CassandraThrift::ConsistencyLevel}
1053
+ }
1054
+
1055
+ def struct_fields; FIELDS; end
1056
+
1057
+ def validate
1058
+ raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field keys is unset!') unless @keys
1059
+ raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field column_parent is unset!') unless @column_parent
1060
+ raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field predicate is unset!') unless @predicate
1061
+ raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field consistency_level is unset!') unless @consistency_level
1062
+ unless @consistency_level.nil? || CassandraThrift::ConsistencyLevel::VALID_VALUES.include?(@consistency_level)
1063
+ raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Invalid value of field consistency_level!')
1064
+ end
1065
+ end
1066
+
1067
+ ::Thrift::Struct.generate_accessors self
1068
+ end
1069
+
1070
+ class Multiget_slice_result
1071
+ include ::Thrift::Struct, ::Thrift::Struct_Union
1072
+ SUCCESS = 0
1073
+ IRE = 1
1074
+ UE = 2
1075
+ TE = 3
1076
+
1077
+ FIELDS = {
1078
+ SUCCESS => {:type => ::Thrift::Types::MAP, :name => 'success', :key => {:type => ::Thrift::Types::STRING, :binary => true}, :value => {:type => ::Thrift::Types::LIST, :element => {:type => ::Thrift::Types::STRUCT, :class => CassandraThrift::ColumnOrSuperColumn}}},
1079
+ IRE => {:type => ::Thrift::Types::STRUCT, :name => 'ire', :class => CassandraThrift::InvalidRequestException},
1080
+ UE => {:type => ::Thrift::Types::STRUCT, :name => 'ue', :class => CassandraThrift::UnavailableException},
1081
+ TE => {:type => ::Thrift::Types::STRUCT, :name => 'te', :class => CassandraThrift::TimedOutException}
1082
+ }
1083
+
1084
+ def struct_fields; FIELDS; end
1085
+
1086
+ def validate
1087
+ end
1088
+
1089
+ ::Thrift::Struct.generate_accessors self
1090
+ end
1091
+
1092
+ class Multiget_count_args
1093
+ include ::Thrift::Struct, ::Thrift::Struct_Union
1094
+ KEYS = 1
1095
+ COLUMN_PARENT = 2
1096
+ PREDICATE = 3
1097
+ CONSISTENCY_LEVEL = 4
1098
+
1099
+ FIELDS = {
1100
+ KEYS => {:type => ::Thrift::Types::LIST, :name => 'keys', :element => {:type => ::Thrift::Types::STRING, :binary => true}},
1101
+ COLUMN_PARENT => {:type => ::Thrift::Types::STRUCT, :name => 'column_parent', :class => CassandraThrift::ColumnParent},
1102
+ PREDICATE => {:type => ::Thrift::Types::STRUCT, :name => 'predicate', :class => CassandraThrift::SlicePredicate},
1103
+ CONSISTENCY_LEVEL => {:type => ::Thrift::Types::I32, :name => 'consistency_level', :default => 1, :enum_class => CassandraThrift::ConsistencyLevel}
1104
+ }
1105
+
1106
+ def struct_fields; FIELDS; end
1107
+
1108
+ def validate
1109
+ raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field keys is unset!') unless @keys
1110
+ raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field column_parent is unset!') unless @column_parent
1111
+ raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field predicate is unset!') unless @predicate
1112
+ raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field consistency_level is unset!') unless @consistency_level
1113
+ unless @consistency_level.nil? || CassandraThrift::ConsistencyLevel::VALID_VALUES.include?(@consistency_level)
1114
+ raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Invalid value of field consistency_level!')
1115
+ end
1116
+ end
1117
+
1118
+ ::Thrift::Struct.generate_accessors self
1119
+ end
1120
+
1121
+ class Multiget_count_result
1122
+ include ::Thrift::Struct, ::Thrift::Struct_Union
1123
+ SUCCESS = 0
1124
+ IRE = 1
1125
+ UE = 2
1126
+ TE = 3
1127
+
1128
+ FIELDS = {
1129
+ SUCCESS => {:type => ::Thrift::Types::MAP, :name => 'success', :key => {:type => ::Thrift::Types::STRING, :binary => true}, :value => {:type => ::Thrift::Types::I32}},
1130
+ IRE => {:type => ::Thrift::Types::STRUCT, :name => 'ire', :class => CassandraThrift::InvalidRequestException},
1131
+ UE => {:type => ::Thrift::Types::STRUCT, :name => 'ue', :class => CassandraThrift::UnavailableException},
1132
+ TE => {:type => ::Thrift::Types::STRUCT, :name => 'te', :class => CassandraThrift::TimedOutException}
1133
+ }
1134
+
1135
+ def struct_fields; FIELDS; end
1136
+
1137
+ def validate
1138
+ end
1139
+
1140
+ ::Thrift::Struct.generate_accessors self
1141
+ end
1142
+
1143
+ class Get_range_slices_args
1144
+ include ::Thrift::Struct, ::Thrift::Struct_Union
1145
+ COLUMN_PARENT = 1
1146
+ PREDICATE = 2
1147
+ RANGE = 3
1148
+ CONSISTENCY_LEVEL = 4
1149
+
1150
+ FIELDS = {
1151
+ COLUMN_PARENT => {:type => ::Thrift::Types::STRUCT, :name => 'column_parent', :class => CassandraThrift::ColumnParent},
1152
+ PREDICATE => {:type => ::Thrift::Types::STRUCT, :name => 'predicate', :class => CassandraThrift::SlicePredicate},
1153
+ RANGE => {:type => ::Thrift::Types::STRUCT, :name => 'range', :class => CassandraThrift::KeyRange},
1154
+ CONSISTENCY_LEVEL => {:type => ::Thrift::Types::I32, :name => 'consistency_level', :default => 1, :enum_class => CassandraThrift::ConsistencyLevel}
1155
+ }
1156
+
1157
+ def struct_fields; FIELDS; end
1158
+
1159
+ def validate
1160
+ raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field column_parent is unset!') unless @column_parent
1161
+ raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field predicate is unset!') unless @predicate
1162
+ raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field range is unset!') unless @range
1163
+ raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field consistency_level is unset!') unless @consistency_level
1164
+ unless @consistency_level.nil? || CassandraThrift::ConsistencyLevel::VALID_VALUES.include?(@consistency_level)
1165
+ raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Invalid value of field consistency_level!')
1166
+ end
1167
+ end
1168
+
1169
+ ::Thrift::Struct.generate_accessors self
1170
+ end
1171
+
1172
+ class Get_range_slices_result
1173
+ include ::Thrift::Struct, ::Thrift::Struct_Union
1174
+ SUCCESS = 0
1175
+ IRE = 1
1176
+ UE = 2
1177
+ TE = 3
1178
+
1179
+ FIELDS = {
1180
+ SUCCESS => {:type => ::Thrift::Types::LIST, :name => 'success', :element => {:type => ::Thrift::Types::STRUCT, :class => CassandraThrift::KeySlice}},
1181
+ IRE => {:type => ::Thrift::Types::STRUCT, :name => 'ire', :class => CassandraThrift::InvalidRequestException},
1182
+ UE => {:type => ::Thrift::Types::STRUCT, :name => 'ue', :class => CassandraThrift::UnavailableException},
1183
+ TE => {:type => ::Thrift::Types::STRUCT, :name => 'te', :class => CassandraThrift::TimedOutException}
1184
+ }
1185
+
1186
+ def struct_fields; FIELDS; end
1187
+
1188
+ def validate
1189
+ end
1190
+
1191
+ ::Thrift::Struct.generate_accessors self
1192
+ end
1193
+
1194
+ class Get_indexed_slices_args
1195
+ include ::Thrift::Struct, ::Thrift::Struct_Union
1196
+ COLUMN_PARENT = 1
1197
+ INDEX_CLAUSE = 2
1198
+ COLUMN_PREDICATE = 3
1199
+ CONSISTENCY_LEVEL = 4
1200
+
1201
+ FIELDS = {
1202
+ COLUMN_PARENT => {:type => ::Thrift::Types::STRUCT, :name => 'column_parent', :class => CassandraThrift::ColumnParent},
1203
+ INDEX_CLAUSE => {:type => ::Thrift::Types::STRUCT, :name => 'index_clause', :class => CassandraThrift::IndexClause},
1204
+ COLUMN_PREDICATE => {:type => ::Thrift::Types::STRUCT, :name => 'column_predicate', :class => CassandraThrift::SlicePredicate},
1205
+ CONSISTENCY_LEVEL => {:type => ::Thrift::Types::I32, :name => 'consistency_level', :default => 1, :enum_class => CassandraThrift::ConsistencyLevel}
1206
+ }
1207
+
1208
+ def struct_fields; FIELDS; end
1209
+
1210
+ def validate
1211
+ raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field column_parent is unset!') unless @column_parent
1212
+ raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field index_clause is unset!') unless @index_clause
1213
+ raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field column_predicate is unset!') unless @column_predicate
1214
+ raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field consistency_level is unset!') unless @consistency_level
1215
+ unless @consistency_level.nil? || CassandraThrift::ConsistencyLevel::VALID_VALUES.include?(@consistency_level)
1216
+ raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Invalid value of field consistency_level!')
1217
+ end
1218
+ end
1219
+
1220
+ ::Thrift::Struct.generate_accessors self
1221
+ end
1222
+
1223
+ class Get_indexed_slices_result
1224
+ include ::Thrift::Struct, ::Thrift::Struct_Union
1225
+ SUCCESS = 0
1226
+ IRE = 1
1227
+ UE = 2
1228
+ TE = 3
1229
+
1230
+ FIELDS = {
1231
+ SUCCESS => {:type => ::Thrift::Types::LIST, :name => 'success', :element => {:type => ::Thrift::Types::STRUCT, :class => CassandraThrift::KeySlice}},
1232
+ IRE => {:type => ::Thrift::Types::STRUCT, :name => 'ire', :class => CassandraThrift::InvalidRequestException},
1233
+ UE => {:type => ::Thrift::Types::STRUCT, :name => 'ue', :class => CassandraThrift::UnavailableException},
1234
+ TE => {:type => ::Thrift::Types::STRUCT, :name => 'te', :class => CassandraThrift::TimedOutException}
1235
+ }
1236
+
1237
+ def struct_fields; FIELDS; end
1238
+
1239
+ def validate
1240
+ end
1241
+
1242
+ ::Thrift::Struct.generate_accessors self
1243
+ end
1244
+
1245
+ class Insert_args
1246
+ include ::Thrift::Struct, ::Thrift::Struct_Union
1247
+ KEY = 1
1248
+ COLUMN_PARENT = 2
1249
+ COLUMN = 3
1250
+ CONSISTENCY_LEVEL = 4
1251
+
1252
+ FIELDS = {
1253
+ KEY => {:type => ::Thrift::Types::STRING, :name => 'key', :binary => true},
1254
+ COLUMN_PARENT => {:type => ::Thrift::Types::STRUCT, :name => 'column_parent', :class => CassandraThrift::ColumnParent},
1255
+ COLUMN => {:type => ::Thrift::Types::STRUCT, :name => 'column', :class => CassandraThrift::Column},
1256
+ CONSISTENCY_LEVEL => {:type => ::Thrift::Types::I32, :name => 'consistency_level', :default => 1, :enum_class => CassandraThrift::ConsistencyLevel}
1257
+ }
1258
+
1259
+ def struct_fields; FIELDS; end
1260
+
1261
+ def validate
1262
+ raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field key is unset!') unless @key
1263
+ raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field column_parent is unset!') unless @column_parent
1264
+ raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field column is unset!') unless @column
1265
+ raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field consistency_level is unset!') unless @consistency_level
1266
+ unless @consistency_level.nil? || CassandraThrift::ConsistencyLevel::VALID_VALUES.include?(@consistency_level)
1267
+ raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Invalid value of field consistency_level!')
1268
+ end
1269
+ end
1270
+
1271
+ ::Thrift::Struct.generate_accessors self
1272
+ end
1273
+
1274
+ class Insert_result
1275
+ include ::Thrift::Struct, ::Thrift::Struct_Union
1276
+ IRE = 1
1277
+ UE = 2
1278
+ TE = 3
1279
+
1280
+ FIELDS = {
1281
+ IRE => {:type => ::Thrift::Types::STRUCT, :name => 'ire', :class => CassandraThrift::InvalidRequestException},
1282
+ UE => {:type => ::Thrift::Types::STRUCT, :name => 'ue', :class => CassandraThrift::UnavailableException},
1283
+ TE => {:type => ::Thrift::Types::STRUCT, :name => 'te', :class => CassandraThrift::TimedOutException}
1284
+ }
1285
+
1286
+ def struct_fields; FIELDS; end
1287
+
1288
+ def validate
1289
+ end
1290
+
1291
+ ::Thrift::Struct.generate_accessors self
1292
+ end
1293
+
1294
+ class Remove_args
1295
+ include ::Thrift::Struct, ::Thrift::Struct_Union
1296
+ KEY = 1
1297
+ COLUMN_PATH = 2
1298
+ TIMESTAMP = 3
1299
+ CONSISTENCY_LEVEL = 4
1300
+
1301
+ FIELDS = {
1302
+ KEY => {:type => ::Thrift::Types::STRING, :name => 'key', :binary => true},
1303
+ COLUMN_PATH => {:type => ::Thrift::Types::STRUCT, :name => 'column_path', :class => CassandraThrift::ColumnPath},
1304
+ TIMESTAMP => {:type => ::Thrift::Types::I64, :name => 'timestamp'},
1305
+ CONSISTENCY_LEVEL => {:type => ::Thrift::Types::I32, :name => 'consistency_level', :default => 1, :enum_class => CassandraThrift::ConsistencyLevel}
1306
+ }
1307
+
1308
+ def struct_fields; FIELDS; end
1309
+
1310
+ def validate
1311
+ raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field key is unset!') unless @key
1312
+ raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field column_path is unset!') unless @column_path
1313
+ raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field timestamp is unset!') unless @timestamp
1314
+ unless @consistency_level.nil? || CassandraThrift::ConsistencyLevel::VALID_VALUES.include?(@consistency_level)
1315
+ raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Invalid value of field consistency_level!')
1316
+ end
1317
+ end
1318
+
1319
+ ::Thrift::Struct.generate_accessors self
1320
+ end
1321
+
1322
+ class Remove_result
1323
+ include ::Thrift::Struct, ::Thrift::Struct_Union
1324
+ IRE = 1
1325
+ UE = 2
1326
+ TE = 3
1327
+
1328
+ FIELDS = {
1329
+ IRE => {:type => ::Thrift::Types::STRUCT, :name => 'ire', :class => CassandraThrift::InvalidRequestException},
1330
+ UE => {:type => ::Thrift::Types::STRUCT, :name => 'ue', :class => CassandraThrift::UnavailableException},
1331
+ TE => {:type => ::Thrift::Types::STRUCT, :name => 'te', :class => CassandraThrift::TimedOutException}
1332
+ }
1333
+
1334
+ def struct_fields; FIELDS; end
1335
+
1336
+ def validate
1337
+ end
1338
+
1339
+ ::Thrift::Struct.generate_accessors self
1340
+ end
1341
+
1342
+ class Batch_mutate_args
1343
+ include ::Thrift::Struct, ::Thrift::Struct_Union
1344
+ MUTATION_MAP = 1
1345
+ CONSISTENCY_LEVEL = 2
1346
+
1347
+ FIELDS = {
1348
+ MUTATION_MAP => {:type => ::Thrift::Types::MAP, :name => 'mutation_map', :key => {:type => ::Thrift::Types::STRING, :binary => true}, :value => {:type => ::Thrift::Types::MAP, :key => {:type => ::Thrift::Types::STRING}, :value => {:type => ::Thrift::Types::LIST, :element => {:type => ::Thrift::Types::STRUCT, :class => CassandraThrift::Mutation}}}},
1349
+ CONSISTENCY_LEVEL => {:type => ::Thrift::Types::I32, :name => 'consistency_level', :default => 1, :enum_class => CassandraThrift::ConsistencyLevel}
1350
+ }
1351
+
1352
+ def struct_fields; FIELDS; end
1353
+
1354
+ def validate
1355
+ raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field mutation_map is unset!') unless @mutation_map
1356
+ raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field consistency_level is unset!') unless @consistency_level
1357
+ unless @consistency_level.nil? || CassandraThrift::ConsistencyLevel::VALID_VALUES.include?(@consistency_level)
1358
+ raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Invalid value of field consistency_level!')
1359
+ end
1360
+ end
1361
+
1362
+ ::Thrift::Struct.generate_accessors self
1363
+ end
1364
+
1365
+ class Batch_mutate_result
1366
+ include ::Thrift::Struct, ::Thrift::Struct_Union
1367
+ IRE = 1
1368
+ UE = 2
1369
+ TE = 3
1370
+
1371
+ FIELDS = {
1372
+ IRE => {:type => ::Thrift::Types::STRUCT, :name => 'ire', :class => CassandraThrift::InvalidRequestException},
1373
+ UE => {:type => ::Thrift::Types::STRUCT, :name => 'ue', :class => CassandraThrift::UnavailableException},
1374
+ TE => {:type => ::Thrift::Types::STRUCT, :name => 'te', :class => CassandraThrift::TimedOutException}
1375
+ }
1376
+
1377
+ def struct_fields; FIELDS; end
1378
+
1379
+ def validate
1380
+ end
1381
+
1382
+ ::Thrift::Struct.generate_accessors self
1383
+ end
1384
+
1385
+ class Truncate_args
1386
+ include ::Thrift::Struct, ::Thrift::Struct_Union
1387
+ CFNAME = 1
1388
+
1389
+ FIELDS = {
1390
+ CFNAME => {:type => ::Thrift::Types::STRING, :name => 'cfname'}
1391
+ }
1392
+
1393
+ def struct_fields; FIELDS; end
1394
+
1395
+ def validate
1396
+ raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field cfname is unset!') unless @cfname
1397
+ end
1398
+
1399
+ ::Thrift::Struct.generate_accessors self
1400
+ end
1401
+
1402
+ class Truncate_result
1403
+ include ::Thrift::Struct, ::Thrift::Struct_Union
1404
+ IRE = 1
1405
+ UE = 2
1406
+
1407
+ FIELDS = {
1408
+ IRE => {:type => ::Thrift::Types::STRUCT, :name => 'ire', :class => CassandraThrift::InvalidRequestException},
1409
+ UE => {:type => ::Thrift::Types::STRUCT, :name => 'ue', :class => CassandraThrift::UnavailableException}
1410
+ }
1411
+
1412
+ def struct_fields; FIELDS; end
1413
+
1414
+ def validate
1415
+ end
1416
+
1417
+ ::Thrift::Struct.generate_accessors self
1418
+ end
1419
+
1420
+ class Describe_schema_versions_args
1421
+ include ::Thrift::Struct, ::Thrift::Struct_Union
1422
+
1423
+ FIELDS = {
1424
+
1425
+ }
1426
+
1427
+ def struct_fields; FIELDS; end
1428
+
1429
+ def validate
1430
+ end
1431
+
1432
+ ::Thrift::Struct.generate_accessors self
1433
+ end
1434
+
1435
+ class Describe_schema_versions_result
1436
+ include ::Thrift::Struct, ::Thrift::Struct_Union
1437
+ SUCCESS = 0
1438
+ IRE = 1
1439
+
1440
+ FIELDS = {
1441
+ SUCCESS => {:type => ::Thrift::Types::MAP, :name => 'success', :key => {:type => ::Thrift::Types::STRING}, :value => {:type => ::Thrift::Types::LIST, :element => {:type => ::Thrift::Types::STRING}}},
1442
+ IRE => {:type => ::Thrift::Types::STRUCT, :name => 'ire', :class => CassandraThrift::InvalidRequestException}
1443
+ }
1444
+
1445
+ def struct_fields; FIELDS; end
1446
+
1447
+ def validate
1448
+ end
1449
+
1450
+ ::Thrift::Struct.generate_accessors self
1451
+ end
1452
+
1453
+ class Describe_keyspaces_args
1454
+ include ::Thrift::Struct, ::Thrift::Struct_Union
1455
+
1456
+ FIELDS = {
1457
+
1458
+ }
1459
+
1460
+ def struct_fields; FIELDS; end
1461
+
1462
+ def validate
1463
+ end
1464
+
1465
+ ::Thrift::Struct.generate_accessors self
1466
+ end
1467
+
1468
+ class Describe_keyspaces_result
1469
+ include ::Thrift::Struct, ::Thrift::Struct_Union
1470
+ SUCCESS = 0
1471
+ IRE = 1
1472
+
1473
+ FIELDS = {
1474
+ SUCCESS => {:type => ::Thrift::Types::LIST, :name => 'success', :element => {:type => ::Thrift::Types::STRUCT, :class => CassandraThrift::KsDef}},
1475
+ IRE => {:type => ::Thrift::Types::STRUCT, :name => 'ire', :class => CassandraThrift::InvalidRequestException}
1476
+ }
1477
+
1478
+ def struct_fields; FIELDS; end
1479
+
1480
+ def validate
1481
+ end
1482
+
1483
+ ::Thrift::Struct.generate_accessors self
1484
+ end
1485
+
1486
+ class Describe_cluster_name_args
1487
+ include ::Thrift::Struct, ::Thrift::Struct_Union
1488
+
1489
+ FIELDS = {
1490
+
1491
+ }
1492
+
1493
+ def struct_fields; FIELDS; end
1494
+
1495
+ def validate
1496
+ end
1497
+
1498
+ ::Thrift::Struct.generate_accessors self
1499
+ end
1500
+
1501
+ class Describe_cluster_name_result
1502
+ include ::Thrift::Struct, ::Thrift::Struct_Union
1503
+ SUCCESS = 0
1504
+
1505
+ FIELDS = {
1506
+ SUCCESS => {:type => ::Thrift::Types::STRING, :name => 'success'}
1507
+ }
1508
+
1509
+ def struct_fields; FIELDS; end
1510
+
1511
+ def validate
1512
+ end
1513
+
1514
+ ::Thrift::Struct.generate_accessors self
1515
+ end
1516
+
1517
+ class Describe_version_args
1518
+ include ::Thrift::Struct, ::Thrift::Struct_Union
1519
+
1520
+ FIELDS = {
1521
+
1522
+ }
1523
+
1524
+ def struct_fields; FIELDS; end
1525
+
1526
+ def validate
1527
+ end
1528
+
1529
+ ::Thrift::Struct.generate_accessors self
1530
+ end
1531
+
1532
+ class Describe_version_result
1533
+ include ::Thrift::Struct, ::Thrift::Struct_Union
1534
+ SUCCESS = 0
1535
+
1536
+ FIELDS = {
1537
+ SUCCESS => {:type => ::Thrift::Types::STRING, :name => 'success'}
1538
+ }
1539
+
1540
+ def struct_fields; FIELDS; end
1541
+
1542
+ def validate
1543
+ end
1544
+
1545
+ ::Thrift::Struct.generate_accessors self
1546
+ end
1547
+
1548
+ class Describe_ring_args
1549
+ include ::Thrift::Struct, ::Thrift::Struct_Union
1550
+ KEYSPACE = 1
1551
+
1552
+ FIELDS = {
1553
+ KEYSPACE => {:type => ::Thrift::Types::STRING, :name => 'keyspace'}
1554
+ }
1555
+
1556
+ def struct_fields; FIELDS; end
1557
+
1558
+ def validate
1559
+ raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field keyspace is unset!') unless @keyspace
1560
+ end
1561
+
1562
+ ::Thrift::Struct.generate_accessors self
1563
+ end
1564
+
1565
+ class Describe_ring_result
1566
+ include ::Thrift::Struct, ::Thrift::Struct_Union
1567
+ SUCCESS = 0
1568
+ IRE = 1
1569
+
1570
+ FIELDS = {
1571
+ SUCCESS => {:type => ::Thrift::Types::LIST, :name => 'success', :element => {:type => ::Thrift::Types::STRUCT, :class => CassandraThrift::TokenRange}},
1572
+ IRE => {:type => ::Thrift::Types::STRUCT, :name => 'ire', :class => CassandraThrift::InvalidRequestException}
1573
+ }
1574
+
1575
+ def struct_fields; FIELDS; end
1576
+
1577
+ def validate
1578
+ end
1579
+
1580
+ ::Thrift::Struct.generate_accessors self
1581
+ end
1582
+
1583
+ class Describe_partitioner_args
1584
+ include ::Thrift::Struct, ::Thrift::Struct_Union
1585
+
1586
+ FIELDS = {
1587
+
1588
+ }
1589
+
1590
+ def struct_fields; FIELDS; end
1591
+
1592
+ def validate
1593
+ end
1594
+
1595
+ ::Thrift::Struct.generate_accessors self
1596
+ end
1597
+
1598
+ class Describe_partitioner_result
1599
+ include ::Thrift::Struct, ::Thrift::Struct_Union
1600
+ SUCCESS = 0
1601
+
1602
+ FIELDS = {
1603
+ SUCCESS => {:type => ::Thrift::Types::STRING, :name => 'success'}
1604
+ }
1605
+
1606
+ def struct_fields; FIELDS; end
1607
+
1608
+ def validate
1609
+ end
1610
+
1611
+ ::Thrift::Struct.generate_accessors self
1612
+ end
1613
+
1614
+ class Describe_snitch_args
1615
+ include ::Thrift::Struct, ::Thrift::Struct_Union
1616
+
1617
+ FIELDS = {
1618
+
1619
+ }
1620
+
1621
+ def struct_fields; FIELDS; end
1622
+
1623
+ def validate
1624
+ end
1625
+
1626
+ ::Thrift::Struct.generate_accessors self
1627
+ end
1628
+
1629
+ class Describe_snitch_result
1630
+ include ::Thrift::Struct, ::Thrift::Struct_Union
1631
+ SUCCESS = 0
1632
+
1633
+ FIELDS = {
1634
+ SUCCESS => {:type => ::Thrift::Types::STRING, :name => 'success'}
1635
+ }
1636
+
1637
+ def struct_fields; FIELDS; end
1638
+
1639
+ def validate
1640
+ end
1641
+
1642
+ ::Thrift::Struct.generate_accessors self
1643
+ end
1644
+
1645
+ class Describe_keyspace_args
1646
+ include ::Thrift::Struct, ::Thrift::Struct_Union
1647
+ KEYSPACE = 1
1648
+
1649
+ FIELDS = {
1650
+ KEYSPACE => {:type => ::Thrift::Types::STRING, :name => 'keyspace'}
1651
+ }
1652
+
1653
+ def struct_fields; FIELDS; end
1654
+
1655
+ def validate
1656
+ raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field keyspace is unset!') unless @keyspace
1657
+ end
1658
+
1659
+ ::Thrift::Struct.generate_accessors self
1660
+ end
1661
+
1662
+ class Describe_keyspace_result
1663
+ include ::Thrift::Struct, ::Thrift::Struct_Union
1664
+ SUCCESS = 0
1665
+ NFE = 1
1666
+ IRE = 2
1667
+
1668
+ FIELDS = {
1669
+ SUCCESS => {:type => ::Thrift::Types::STRUCT, :name => 'success', :class => CassandraThrift::KsDef},
1670
+ NFE => {:type => ::Thrift::Types::STRUCT, :name => 'nfe', :class => CassandraThrift::NotFoundException},
1671
+ IRE => {:type => ::Thrift::Types::STRUCT, :name => 'ire', :class => CassandraThrift::InvalidRequestException}
1672
+ }
1673
+
1674
+ def struct_fields; FIELDS; end
1675
+
1676
+ def validate
1677
+ end
1678
+
1679
+ ::Thrift::Struct.generate_accessors self
1680
+ end
1681
+
1682
+ class Describe_splits_args
1683
+ include ::Thrift::Struct, ::Thrift::Struct_Union
1684
+ CFNAME = 1
1685
+ START_TOKEN = 2
1686
+ END_TOKEN = 3
1687
+ KEYS_PER_SPLIT = 4
1688
+
1689
+ FIELDS = {
1690
+ CFNAME => {:type => ::Thrift::Types::STRING, :name => 'cfName'},
1691
+ START_TOKEN => {:type => ::Thrift::Types::STRING, :name => 'start_token'},
1692
+ END_TOKEN => {:type => ::Thrift::Types::STRING, :name => 'end_token'},
1693
+ KEYS_PER_SPLIT => {:type => ::Thrift::Types::I32, :name => 'keys_per_split'}
1694
+ }
1695
+
1696
+ def struct_fields; FIELDS; end
1697
+
1698
+ def validate
1699
+ raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field cfName is unset!') unless @cfName
1700
+ raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field start_token is unset!') unless @start_token
1701
+ raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field end_token is unset!') unless @end_token
1702
+ raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field keys_per_split is unset!') unless @keys_per_split
1703
+ end
1704
+
1705
+ ::Thrift::Struct.generate_accessors self
1706
+ end
1707
+
1708
+ class Describe_splits_result
1709
+ include ::Thrift::Struct, ::Thrift::Struct_Union
1710
+ SUCCESS = 0
1711
+
1712
+ FIELDS = {
1713
+ SUCCESS => {:type => ::Thrift::Types::LIST, :name => 'success', :element => {:type => ::Thrift::Types::STRING}}
1714
+ }
1715
+
1716
+ def struct_fields; FIELDS; end
1717
+
1718
+ def validate
1719
+ end
1720
+
1721
+ ::Thrift::Struct.generate_accessors self
1722
+ end
1723
+
1724
+ class System_add_column_family_args
1725
+ include ::Thrift::Struct, ::Thrift::Struct_Union
1726
+ CF_DEF = 1
1727
+
1728
+ FIELDS = {
1729
+ CF_DEF => {:type => ::Thrift::Types::STRUCT, :name => 'cf_def', :class => CassandraThrift::CfDef}
1730
+ }
1731
+
1732
+ def struct_fields; FIELDS; end
1733
+
1734
+ def validate
1735
+ raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field cf_def is unset!') unless @cf_def
1736
+ end
1737
+
1738
+ ::Thrift::Struct.generate_accessors self
1739
+ end
1740
+
1741
+ class System_add_column_family_result
1742
+ include ::Thrift::Struct, ::Thrift::Struct_Union
1743
+ SUCCESS = 0
1744
+ IRE = 1
1745
+
1746
+ FIELDS = {
1747
+ SUCCESS => {:type => ::Thrift::Types::STRING, :name => 'success'},
1748
+ IRE => {:type => ::Thrift::Types::STRUCT, :name => 'ire', :class => CassandraThrift::InvalidRequestException}
1749
+ }
1750
+
1751
+ def struct_fields; FIELDS; end
1752
+
1753
+ def validate
1754
+ end
1755
+
1756
+ ::Thrift::Struct.generate_accessors self
1757
+ end
1758
+
1759
+ class System_drop_column_family_args
1760
+ include ::Thrift::Struct, ::Thrift::Struct_Union
1761
+ COLUMN_FAMILY = 1
1762
+
1763
+ FIELDS = {
1764
+ COLUMN_FAMILY => {:type => ::Thrift::Types::STRING, :name => 'column_family'}
1765
+ }
1766
+
1767
+ def struct_fields; FIELDS; end
1768
+
1769
+ def validate
1770
+ raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field column_family is unset!') unless @column_family
1771
+ end
1772
+
1773
+ ::Thrift::Struct.generate_accessors self
1774
+ end
1775
+
1776
+ class System_drop_column_family_result
1777
+ include ::Thrift::Struct, ::Thrift::Struct_Union
1778
+ SUCCESS = 0
1779
+ IRE = 1
1780
+
1781
+ FIELDS = {
1782
+ SUCCESS => {:type => ::Thrift::Types::STRING, :name => 'success'},
1783
+ IRE => {:type => ::Thrift::Types::STRUCT, :name => 'ire', :class => CassandraThrift::InvalidRequestException}
1784
+ }
1785
+
1786
+ def struct_fields; FIELDS; end
1787
+
1788
+ def validate
1789
+ end
1790
+
1791
+ ::Thrift::Struct.generate_accessors self
1792
+ end
1793
+
1794
+ class System_add_keyspace_args
1795
+ include ::Thrift::Struct, ::Thrift::Struct_Union
1796
+ KS_DEF = 1
1797
+
1798
+ FIELDS = {
1799
+ KS_DEF => {:type => ::Thrift::Types::STRUCT, :name => 'ks_def', :class => CassandraThrift::KsDef}
1800
+ }
1801
+
1802
+ def struct_fields; FIELDS; end
1803
+
1804
+ def validate
1805
+ raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field ks_def is unset!') unless @ks_def
1806
+ end
1807
+
1808
+ ::Thrift::Struct.generate_accessors self
1809
+ end
1810
+
1811
+ class System_add_keyspace_result
1812
+ include ::Thrift::Struct, ::Thrift::Struct_Union
1813
+ SUCCESS = 0
1814
+ IRE = 1
1815
+
1816
+ FIELDS = {
1817
+ SUCCESS => {:type => ::Thrift::Types::STRING, :name => 'success'},
1818
+ IRE => {:type => ::Thrift::Types::STRUCT, :name => 'ire', :class => CassandraThrift::InvalidRequestException}
1819
+ }
1820
+
1821
+ def struct_fields; FIELDS; end
1822
+
1823
+ def validate
1824
+ end
1825
+
1826
+ ::Thrift::Struct.generate_accessors self
1827
+ end
1828
+
1829
+ class System_drop_keyspace_args
1830
+ include ::Thrift::Struct, ::Thrift::Struct_Union
1831
+ KEYSPACE = 1
1832
+
1833
+ FIELDS = {
1834
+ KEYSPACE => {:type => ::Thrift::Types::STRING, :name => 'keyspace'}
1835
+ }
1836
+
1837
+ def struct_fields; FIELDS; end
1838
+
1839
+ def validate
1840
+ raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field keyspace is unset!') unless @keyspace
1841
+ end
1842
+
1843
+ ::Thrift::Struct.generate_accessors self
1844
+ end
1845
+
1846
+ class System_drop_keyspace_result
1847
+ include ::Thrift::Struct, ::Thrift::Struct_Union
1848
+ SUCCESS = 0
1849
+ IRE = 1
1850
+
1851
+ FIELDS = {
1852
+ SUCCESS => {:type => ::Thrift::Types::STRING, :name => 'success'},
1853
+ IRE => {:type => ::Thrift::Types::STRUCT, :name => 'ire', :class => CassandraThrift::InvalidRequestException}
1854
+ }
1855
+
1856
+ def struct_fields; FIELDS; end
1857
+
1858
+ def validate
1859
+ end
1860
+
1861
+ ::Thrift::Struct.generate_accessors self
1862
+ end
1863
+
1864
+ class System_update_keyspace_args
1865
+ include ::Thrift::Struct, ::Thrift::Struct_Union
1866
+ KS_DEF = 1
1867
+
1868
+ FIELDS = {
1869
+ KS_DEF => {:type => ::Thrift::Types::STRUCT, :name => 'ks_def', :class => CassandraThrift::KsDef}
1870
+ }
1871
+
1872
+ def struct_fields; FIELDS; end
1873
+
1874
+ def validate
1875
+ raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field ks_def is unset!') unless @ks_def
1876
+ end
1877
+
1878
+ ::Thrift::Struct.generate_accessors self
1879
+ end
1880
+
1881
+ class System_update_keyspace_result
1882
+ include ::Thrift::Struct, ::Thrift::Struct_Union
1883
+ SUCCESS = 0
1884
+ IRE = 1
1885
+
1886
+ FIELDS = {
1887
+ SUCCESS => {:type => ::Thrift::Types::STRING, :name => 'success'},
1888
+ IRE => {:type => ::Thrift::Types::STRUCT, :name => 'ire', :class => CassandraThrift::InvalidRequestException}
1889
+ }
1890
+
1891
+ def struct_fields; FIELDS; end
1892
+
1893
+ def validate
1894
+ end
1895
+
1896
+ ::Thrift::Struct.generate_accessors self
1897
+ end
1898
+
1899
+ class System_update_column_family_args
1900
+ include ::Thrift::Struct, ::Thrift::Struct_Union
1901
+ CF_DEF = 1
1902
+
1903
+ FIELDS = {
1904
+ CF_DEF => {:type => ::Thrift::Types::STRUCT, :name => 'cf_def', :class => CassandraThrift::CfDef}
1905
+ }
1906
+
1907
+ def struct_fields; FIELDS; end
1908
+
1909
+ def validate
1910
+ raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field cf_def is unset!') unless @cf_def
1911
+ end
1912
+
1913
+ ::Thrift::Struct.generate_accessors self
1914
+ end
1915
+
1916
+ class System_update_column_family_result
1917
+ include ::Thrift::Struct, ::Thrift::Struct_Union
1918
+ SUCCESS = 0
1919
+ IRE = 1
1920
+
1921
+ FIELDS = {
1922
+ SUCCESS => {:type => ::Thrift::Types::STRING, :name => 'success'},
1923
+ IRE => {:type => ::Thrift::Types::STRUCT, :name => 'ire', :class => CassandraThrift::InvalidRequestException}
1924
+ }
1925
+
1926
+ def struct_fields; FIELDS; end
1927
+
1928
+ def validate
1929
+ end
1930
+
1931
+ ::Thrift::Struct.generate_accessors self
1932
+ end
1933
+
1934
+ end
1935
+
1936
+ end