stat-analysis-query 0.0.5 → 0.0.6
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.
- checksums.yaml +4 -4
- data/lib/t_hot_service.rb +480 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 87975d5b272499a6d9af0c4ef0962ba67f2394b1
|
4
|
+
data.tar.gz: 1b957a15147080d2f1889ce1b1c13e138bc311a1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1a6bc0e24a167e8f4eeed4ae7b7a874c22ce18a546e929a28186b2db47bf5045437cc8f0af674ded9e3df12eb5f04a99af5b16bc413b8da47967b942ac6e0063
|
7
|
+
data.tar.gz: 7a181f3d46420b18668aa6e17d1321b9189f5445b533ae0669581970ac3af09d7a25bd520581bf683f649cc66a72d39026086db91d11791d1adb9e5f9eb38b41
|
data/lib/t_hot_service.rb
CHANGED
@@ -163,6 +163,126 @@ module Stat
|
|
163
163
|
raise ::Thrift::ApplicationException.new(::Thrift::ApplicationException::MISSING_RESULT, 'hotSelectedAlbum failed: unknown result')
|
164
164
|
end
|
165
165
|
|
166
|
+
def recentAlbum(id, tagName, pageNo, pageSize)
|
167
|
+
send_recentAlbum(id, tagName, pageNo, pageSize)
|
168
|
+
return recv_recentAlbum()
|
169
|
+
end
|
170
|
+
|
171
|
+
def send_recentAlbum(id, tagName, pageNo, pageSize)
|
172
|
+
send_message('recentAlbum', RecentAlbum_args, :id => id, :tagName => tagName, :pageNo => pageNo, :pageSize => pageSize)
|
173
|
+
end
|
174
|
+
|
175
|
+
def recv_recentAlbum()
|
176
|
+
result = receive_message(RecentAlbum_result)
|
177
|
+
return result.success unless result.success.nil?
|
178
|
+
raise ::Thrift::ApplicationException.new(::Thrift::ApplicationException::MISSING_RESULT, 'recentAlbum failed: unknown result')
|
179
|
+
end
|
180
|
+
|
181
|
+
def recentFinishedAlbum(id, tagName, pageNo, pageSize)
|
182
|
+
send_recentFinishedAlbum(id, tagName, pageNo, pageSize)
|
183
|
+
return recv_recentFinishedAlbum()
|
184
|
+
end
|
185
|
+
|
186
|
+
def send_recentFinishedAlbum(id, tagName, pageNo, pageSize)
|
187
|
+
send_message('recentFinishedAlbum', RecentFinishedAlbum_args, :id => id, :tagName => tagName, :pageNo => pageNo, :pageSize => pageSize)
|
188
|
+
end
|
189
|
+
|
190
|
+
def recv_recentFinishedAlbum()
|
191
|
+
result = receive_message(RecentFinishedAlbum_result)
|
192
|
+
return result.success unless result.success.nil?
|
193
|
+
raise ::Thrift::ApplicationException.new(::Thrift::ApplicationException::MISSING_RESULT, 'recentFinishedAlbum failed: unknown result')
|
194
|
+
end
|
195
|
+
|
196
|
+
def recentUnfinishedAlbum(id, tagName, pageNo, pageSize)
|
197
|
+
send_recentUnfinishedAlbum(id, tagName, pageNo, pageSize)
|
198
|
+
return recv_recentUnfinishedAlbum()
|
199
|
+
end
|
200
|
+
|
201
|
+
def send_recentUnfinishedAlbum(id, tagName, pageNo, pageSize)
|
202
|
+
send_message('recentUnfinishedAlbum', RecentUnfinishedAlbum_args, :id => id, :tagName => tagName, :pageNo => pageNo, :pageSize => pageSize)
|
203
|
+
end
|
204
|
+
|
205
|
+
def recv_recentUnfinishedAlbum()
|
206
|
+
result = receive_message(RecentUnfinishedAlbum_result)
|
207
|
+
return result.success unless result.success.nil?
|
208
|
+
raise ::Thrift::ApplicationException.new(::Thrift::ApplicationException::MISSING_RESULT, 'recentUnfinishedAlbum failed: unknown result')
|
209
|
+
end
|
210
|
+
|
211
|
+
def hotFinishedAlbum(id, tagName, pageNo, pageSize)
|
212
|
+
send_hotFinishedAlbum(id, tagName, pageNo, pageSize)
|
213
|
+
return recv_hotFinishedAlbum()
|
214
|
+
end
|
215
|
+
|
216
|
+
def send_hotFinishedAlbum(id, tagName, pageNo, pageSize)
|
217
|
+
send_message('hotFinishedAlbum', HotFinishedAlbum_args, :id => id, :tagName => tagName, :pageNo => pageNo, :pageSize => pageSize)
|
218
|
+
end
|
219
|
+
|
220
|
+
def recv_hotFinishedAlbum()
|
221
|
+
result = receive_message(HotFinishedAlbum_result)
|
222
|
+
return result.success unless result.success.nil?
|
223
|
+
raise ::Thrift::ApplicationException.new(::Thrift::ApplicationException::MISSING_RESULT, 'hotFinishedAlbum failed: unknown result')
|
224
|
+
end
|
225
|
+
|
226
|
+
def hotUnfinishedAlbum(id, tagName, pageNo, pageSize)
|
227
|
+
send_hotUnfinishedAlbum(id, tagName, pageNo, pageSize)
|
228
|
+
return recv_hotUnfinishedAlbum()
|
229
|
+
end
|
230
|
+
|
231
|
+
def send_hotUnfinishedAlbum(id, tagName, pageNo, pageSize)
|
232
|
+
send_message('hotUnfinishedAlbum', HotUnfinishedAlbum_args, :id => id, :tagName => tagName, :pageNo => pageNo, :pageSize => pageSize)
|
233
|
+
end
|
234
|
+
|
235
|
+
def recv_hotUnfinishedAlbum()
|
236
|
+
result = receive_message(HotUnfinishedAlbum_result)
|
237
|
+
return result.success unless result.success.nil?
|
238
|
+
raise ::Thrift::ApplicationException.new(::Thrift::ApplicationException::MISSING_RESULT, 'hotUnfinishedAlbum failed: unknown result')
|
239
|
+
end
|
240
|
+
|
241
|
+
def mostPlayFinishedAlbum(id, tagName, pageNo, pageSize)
|
242
|
+
send_mostPlayFinishedAlbum(id, tagName, pageNo, pageSize)
|
243
|
+
return recv_mostPlayFinishedAlbum()
|
244
|
+
end
|
245
|
+
|
246
|
+
def send_mostPlayFinishedAlbum(id, tagName, pageNo, pageSize)
|
247
|
+
send_message('mostPlayFinishedAlbum', MostPlayFinishedAlbum_args, :id => id, :tagName => tagName, :pageNo => pageNo, :pageSize => pageSize)
|
248
|
+
end
|
249
|
+
|
250
|
+
def recv_mostPlayFinishedAlbum()
|
251
|
+
result = receive_message(MostPlayFinishedAlbum_result)
|
252
|
+
return result.success unless result.success.nil?
|
253
|
+
raise ::Thrift::ApplicationException.new(::Thrift::ApplicationException::MISSING_RESULT, 'mostPlayFinishedAlbum failed: unknown result')
|
254
|
+
end
|
255
|
+
|
256
|
+
def mostPlayUnfinishedAlbum(id, tagName, pageNo, pageSize)
|
257
|
+
send_mostPlayUnfinishedAlbum(id, tagName, pageNo, pageSize)
|
258
|
+
return recv_mostPlayUnfinishedAlbum()
|
259
|
+
end
|
260
|
+
|
261
|
+
def send_mostPlayUnfinishedAlbum(id, tagName, pageNo, pageSize)
|
262
|
+
send_message('mostPlayUnfinishedAlbum', MostPlayUnfinishedAlbum_args, :id => id, :tagName => tagName, :pageNo => pageNo, :pageSize => pageSize)
|
263
|
+
end
|
264
|
+
|
265
|
+
def recv_mostPlayUnfinishedAlbum()
|
266
|
+
result = receive_message(MostPlayUnfinishedAlbum_result)
|
267
|
+
return result.success unless result.success.nil?
|
268
|
+
raise ::Thrift::ApplicationException.new(::Thrift::ApplicationException::MISSING_RESULT, 'mostPlayUnfinishedAlbum failed: unknown result')
|
269
|
+
end
|
270
|
+
|
271
|
+
def mostPlayAlbum(id, tagName, pageNo, pageSize)
|
272
|
+
send_mostPlayAlbum(id, tagName, pageNo, pageSize)
|
273
|
+
return recv_mostPlayAlbum()
|
274
|
+
end
|
275
|
+
|
276
|
+
def send_mostPlayAlbum(id, tagName, pageNo, pageSize)
|
277
|
+
send_message('mostPlayAlbum', MostPlayAlbum_args, :id => id, :tagName => tagName, :pageNo => pageNo, :pageSize => pageSize)
|
278
|
+
end
|
279
|
+
|
280
|
+
def recv_mostPlayAlbum()
|
281
|
+
result = receive_message(MostPlayAlbum_result)
|
282
|
+
return result.success unless result.success.nil?
|
283
|
+
raise ::Thrift::ApplicationException.new(::Thrift::ApplicationException::MISSING_RESULT, 'mostPlayAlbum failed: unknown result')
|
284
|
+
end
|
285
|
+
|
166
286
|
def hotRadioAndSound(categoryIds)
|
167
287
|
send_hotRadioAndSound(categoryIds)
|
168
288
|
return recv_hotRadioAndSound()
|
@@ -283,6 +403,62 @@ module Stat
|
|
283
403
|
write_result(result, oprot, 'hotSelectedAlbum', seqid)
|
284
404
|
end
|
285
405
|
|
406
|
+
def process_recentAlbum(seqid, iprot, oprot)
|
407
|
+
args = read_args(iprot, RecentAlbum_args)
|
408
|
+
result = RecentAlbum_result.new()
|
409
|
+
result.success = @handler.recentAlbum(args.id, args.tagName, args.pageNo, args.pageSize)
|
410
|
+
write_result(result, oprot, 'recentAlbum', seqid)
|
411
|
+
end
|
412
|
+
|
413
|
+
def process_recentFinishedAlbum(seqid, iprot, oprot)
|
414
|
+
args = read_args(iprot, RecentFinishedAlbum_args)
|
415
|
+
result = RecentFinishedAlbum_result.new()
|
416
|
+
result.success = @handler.recentFinishedAlbum(args.id, args.tagName, args.pageNo, args.pageSize)
|
417
|
+
write_result(result, oprot, 'recentFinishedAlbum', seqid)
|
418
|
+
end
|
419
|
+
|
420
|
+
def process_recentUnfinishedAlbum(seqid, iprot, oprot)
|
421
|
+
args = read_args(iprot, RecentUnfinishedAlbum_args)
|
422
|
+
result = RecentUnfinishedAlbum_result.new()
|
423
|
+
result.success = @handler.recentUnfinishedAlbum(args.id, args.tagName, args.pageNo, args.pageSize)
|
424
|
+
write_result(result, oprot, 'recentUnfinishedAlbum', seqid)
|
425
|
+
end
|
426
|
+
|
427
|
+
def process_hotFinishedAlbum(seqid, iprot, oprot)
|
428
|
+
args = read_args(iprot, HotFinishedAlbum_args)
|
429
|
+
result = HotFinishedAlbum_result.new()
|
430
|
+
result.success = @handler.hotFinishedAlbum(args.id, args.tagName, args.pageNo, args.pageSize)
|
431
|
+
write_result(result, oprot, 'hotFinishedAlbum', seqid)
|
432
|
+
end
|
433
|
+
|
434
|
+
def process_hotUnfinishedAlbum(seqid, iprot, oprot)
|
435
|
+
args = read_args(iprot, HotUnfinishedAlbum_args)
|
436
|
+
result = HotUnfinishedAlbum_result.new()
|
437
|
+
result.success = @handler.hotUnfinishedAlbum(args.id, args.tagName, args.pageNo, args.pageSize)
|
438
|
+
write_result(result, oprot, 'hotUnfinishedAlbum', seqid)
|
439
|
+
end
|
440
|
+
|
441
|
+
def process_mostPlayFinishedAlbum(seqid, iprot, oprot)
|
442
|
+
args = read_args(iprot, MostPlayFinishedAlbum_args)
|
443
|
+
result = MostPlayFinishedAlbum_result.new()
|
444
|
+
result.success = @handler.mostPlayFinishedAlbum(args.id, args.tagName, args.pageNo, args.pageSize)
|
445
|
+
write_result(result, oprot, 'mostPlayFinishedAlbum', seqid)
|
446
|
+
end
|
447
|
+
|
448
|
+
def process_mostPlayUnfinishedAlbum(seqid, iprot, oprot)
|
449
|
+
args = read_args(iprot, MostPlayUnfinishedAlbum_args)
|
450
|
+
result = MostPlayUnfinishedAlbum_result.new()
|
451
|
+
result.success = @handler.mostPlayUnfinishedAlbum(args.id, args.tagName, args.pageNo, args.pageSize)
|
452
|
+
write_result(result, oprot, 'mostPlayUnfinishedAlbum', seqid)
|
453
|
+
end
|
454
|
+
|
455
|
+
def process_mostPlayAlbum(seqid, iprot, oprot)
|
456
|
+
args = read_args(iprot, MostPlayAlbum_args)
|
457
|
+
result = MostPlayAlbum_result.new()
|
458
|
+
result.success = @handler.mostPlayAlbum(args.id, args.tagName, args.pageNo, args.pageSize)
|
459
|
+
write_result(result, oprot, 'mostPlayAlbum', seqid)
|
460
|
+
end
|
461
|
+
|
286
462
|
def process_hotRadioAndSound(seqid, iprot, oprot)
|
287
463
|
args = read_args(iprot, HotRadioAndSound_args)
|
288
464
|
result = HotRadioAndSound_result.new()
|
@@ -680,6 +856,310 @@ module Stat
|
|
680
856
|
::Thrift::Struct.generate_accessors self
|
681
857
|
end
|
682
858
|
|
859
|
+
class RecentAlbum_args
|
860
|
+
include ::Thrift::Struct, ::Thrift::Struct_Union
|
861
|
+
ID = 1
|
862
|
+
TAGNAME = 2
|
863
|
+
PAGENO = 3
|
864
|
+
PAGESIZE = 4
|
865
|
+
|
866
|
+
FIELDS = {
|
867
|
+
ID => {:type => ::Thrift::Types::I32, :name => 'id'},
|
868
|
+
TAGNAME => {:type => ::Thrift::Types::STRING, :name => 'tagName'},
|
869
|
+
PAGENO => {:type => ::Thrift::Types::I32, :name => 'pageNo'},
|
870
|
+
PAGESIZE => {:type => ::Thrift::Types::I32, :name => 'pageSize'}
|
871
|
+
}
|
872
|
+
|
873
|
+
def struct_fields; FIELDS; end
|
874
|
+
|
875
|
+
def validate
|
876
|
+
end
|
877
|
+
|
878
|
+
::Thrift::Struct.generate_accessors self
|
879
|
+
end
|
880
|
+
|
881
|
+
class RecentAlbum_result
|
882
|
+
include ::Thrift::Struct, ::Thrift::Struct_Union
|
883
|
+
SUCCESS = 0
|
884
|
+
|
885
|
+
FIELDS = {
|
886
|
+
SUCCESS => {:type => ::Thrift::Types::STRUCT, :name => 'success', :class => ::Stat::Query::HotResult}
|
887
|
+
}
|
888
|
+
|
889
|
+
def struct_fields; FIELDS; end
|
890
|
+
|
891
|
+
def validate
|
892
|
+
end
|
893
|
+
|
894
|
+
::Thrift::Struct.generate_accessors self
|
895
|
+
end
|
896
|
+
|
897
|
+
class RecentFinishedAlbum_args
|
898
|
+
include ::Thrift::Struct, ::Thrift::Struct_Union
|
899
|
+
ID = 1
|
900
|
+
TAGNAME = 2
|
901
|
+
PAGENO = 3
|
902
|
+
PAGESIZE = 4
|
903
|
+
|
904
|
+
FIELDS = {
|
905
|
+
ID => {:type => ::Thrift::Types::I32, :name => 'id'},
|
906
|
+
TAGNAME => {:type => ::Thrift::Types::STRING, :name => 'tagName'},
|
907
|
+
PAGENO => {:type => ::Thrift::Types::I32, :name => 'pageNo'},
|
908
|
+
PAGESIZE => {:type => ::Thrift::Types::I32, :name => 'pageSize'}
|
909
|
+
}
|
910
|
+
|
911
|
+
def struct_fields; FIELDS; end
|
912
|
+
|
913
|
+
def validate
|
914
|
+
end
|
915
|
+
|
916
|
+
::Thrift::Struct.generate_accessors self
|
917
|
+
end
|
918
|
+
|
919
|
+
class RecentFinishedAlbum_result
|
920
|
+
include ::Thrift::Struct, ::Thrift::Struct_Union
|
921
|
+
SUCCESS = 0
|
922
|
+
|
923
|
+
FIELDS = {
|
924
|
+
SUCCESS => {:type => ::Thrift::Types::STRUCT, :name => 'success', :class => ::Stat::Query::HotResult}
|
925
|
+
}
|
926
|
+
|
927
|
+
def struct_fields; FIELDS; end
|
928
|
+
|
929
|
+
def validate
|
930
|
+
end
|
931
|
+
|
932
|
+
::Thrift::Struct.generate_accessors self
|
933
|
+
end
|
934
|
+
|
935
|
+
class RecentUnfinishedAlbum_args
|
936
|
+
include ::Thrift::Struct, ::Thrift::Struct_Union
|
937
|
+
ID = 1
|
938
|
+
TAGNAME = 2
|
939
|
+
PAGENO = 3
|
940
|
+
PAGESIZE = 4
|
941
|
+
|
942
|
+
FIELDS = {
|
943
|
+
ID => {:type => ::Thrift::Types::I32, :name => 'id'},
|
944
|
+
TAGNAME => {:type => ::Thrift::Types::STRING, :name => 'tagName'},
|
945
|
+
PAGENO => {:type => ::Thrift::Types::I32, :name => 'pageNo'},
|
946
|
+
PAGESIZE => {:type => ::Thrift::Types::I32, :name => 'pageSize'}
|
947
|
+
}
|
948
|
+
|
949
|
+
def struct_fields; FIELDS; end
|
950
|
+
|
951
|
+
def validate
|
952
|
+
end
|
953
|
+
|
954
|
+
::Thrift::Struct.generate_accessors self
|
955
|
+
end
|
956
|
+
|
957
|
+
class RecentUnfinishedAlbum_result
|
958
|
+
include ::Thrift::Struct, ::Thrift::Struct_Union
|
959
|
+
SUCCESS = 0
|
960
|
+
|
961
|
+
FIELDS = {
|
962
|
+
SUCCESS => {:type => ::Thrift::Types::STRUCT, :name => 'success', :class => ::Stat::Query::HotResult}
|
963
|
+
}
|
964
|
+
|
965
|
+
def struct_fields; FIELDS; end
|
966
|
+
|
967
|
+
def validate
|
968
|
+
end
|
969
|
+
|
970
|
+
::Thrift::Struct.generate_accessors self
|
971
|
+
end
|
972
|
+
|
973
|
+
class HotFinishedAlbum_args
|
974
|
+
include ::Thrift::Struct, ::Thrift::Struct_Union
|
975
|
+
ID = 1
|
976
|
+
TAGNAME = 2
|
977
|
+
PAGENO = 3
|
978
|
+
PAGESIZE = 4
|
979
|
+
|
980
|
+
FIELDS = {
|
981
|
+
ID => {:type => ::Thrift::Types::I32, :name => 'id'},
|
982
|
+
TAGNAME => {:type => ::Thrift::Types::STRING, :name => 'tagName'},
|
983
|
+
PAGENO => {:type => ::Thrift::Types::I32, :name => 'pageNo'},
|
984
|
+
PAGESIZE => {:type => ::Thrift::Types::I32, :name => 'pageSize'}
|
985
|
+
}
|
986
|
+
|
987
|
+
def struct_fields; FIELDS; end
|
988
|
+
|
989
|
+
def validate
|
990
|
+
end
|
991
|
+
|
992
|
+
::Thrift::Struct.generate_accessors self
|
993
|
+
end
|
994
|
+
|
995
|
+
class HotFinishedAlbum_result
|
996
|
+
include ::Thrift::Struct, ::Thrift::Struct_Union
|
997
|
+
SUCCESS = 0
|
998
|
+
|
999
|
+
FIELDS = {
|
1000
|
+
SUCCESS => {:type => ::Thrift::Types::STRUCT, :name => 'success', :class => ::Stat::Query::HotResult}
|
1001
|
+
}
|
1002
|
+
|
1003
|
+
def struct_fields; FIELDS; end
|
1004
|
+
|
1005
|
+
def validate
|
1006
|
+
end
|
1007
|
+
|
1008
|
+
::Thrift::Struct.generate_accessors self
|
1009
|
+
end
|
1010
|
+
|
1011
|
+
class HotUnfinishedAlbum_args
|
1012
|
+
include ::Thrift::Struct, ::Thrift::Struct_Union
|
1013
|
+
ID = 1
|
1014
|
+
TAGNAME = 2
|
1015
|
+
PAGENO = 3
|
1016
|
+
PAGESIZE = 4
|
1017
|
+
|
1018
|
+
FIELDS = {
|
1019
|
+
ID => {:type => ::Thrift::Types::I32, :name => 'id'},
|
1020
|
+
TAGNAME => {:type => ::Thrift::Types::STRING, :name => 'tagName'},
|
1021
|
+
PAGENO => {:type => ::Thrift::Types::I32, :name => 'pageNo'},
|
1022
|
+
PAGESIZE => {:type => ::Thrift::Types::I32, :name => 'pageSize'}
|
1023
|
+
}
|
1024
|
+
|
1025
|
+
def struct_fields; FIELDS; end
|
1026
|
+
|
1027
|
+
def validate
|
1028
|
+
end
|
1029
|
+
|
1030
|
+
::Thrift::Struct.generate_accessors self
|
1031
|
+
end
|
1032
|
+
|
1033
|
+
class HotUnfinishedAlbum_result
|
1034
|
+
include ::Thrift::Struct, ::Thrift::Struct_Union
|
1035
|
+
SUCCESS = 0
|
1036
|
+
|
1037
|
+
FIELDS = {
|
1038
|
+
SUCCESS => {:type => ::Thrift::Types::STRUCT, :name => 'success', :class => ::Stat::Query::HotResult}
|
1039
|
+
}
|
1040
|
+
|
1041
|
+
def struct_fields; FIELDS; end
|
1042
|
+
|
1043
|
+
def validate
|
1044
|
+
end
|
1045
|
+
|
1046
|
+
::Thrift::Struct.generate_accessors self
|
1047
|
+
end
|
1048
|
+
|
1049
|
+
class MostPlayFinishedAlbum_args
|
1050
|
+
include ::Thrift::Struct, ::Thrift::Struct_Union
|
1051
|
+
ID = 1
|
1052
|
+
TAGNAME = 2
|
1053
|
+
PAGENO = 3
|
1054
|
+
PAGESIZE = 4
|
1055
|
+
|
1056
|
+
FIELDS = {
|
1057
|
+
ID => {:type => ::Thrift::Types::I32, :name => 'id'},
|
1058
|
+
TAGNAME => {:type => ::Thrift::Types::STRING, :name => 'tagName'},
|
1059
|
+
PAGENO => {:type => ::Thrift::Types::I32, :name => 'pageNo'},
|
1060
|
+
PAGESIZE => {:type => ::Thrift::Types::I32, :name => 'pageSize'}
|
1061
|
+
}
|
1062
|
+
|
1063
|
+
def struct_fields; FIELDS; end
|
1064
|
+
|
1065
|
+
def validate
|
1066
|
+
end
|
1067
|
+
|
1068
|
+
::Thrift::Struct.generate_accessors self
|
1069
|
+
end
|
1070
|
+
|
1071
|
+
class MostPlayFinishedAlbum_result
|
1072
|
+
include ::Thrift::Struct, ::Thrift::Struct_Union
|
1073
|
+
SUCCESS = 0
|
1074
|
+
|
1075
|
+
FIELDS = {
|
1076
|
+
SUCCESS => {:type => ::Thrift::Types::STRUCT, :name => 'success', :class => ::Stat::Query::HotResult}
|
1077
|
+
}
|
1078
|
+
|
1079
|
+
def struct_fields; FIELDS; end
|
1080
|
+
|
1081
|
+
def validate
|
1082
|
+
end
|
1083
|
+
|
1084
|
+
::Thrift::Struct.generate_accessors self
|
1085
|
+
end
|
1086
|
+
|
1087
|
+
class MostPlayUnfinishedAlbum_args
|
1088
|
+
include ::Thrift::Struct, ::Thrift::Struct_Union
|
1089
|
+
ID = 1
|
1090
|
+
TAGNAME = 2
|
1091
|
+
PAGENO = 3
|
1092
|
+
PAGESIZE = 4
|
1093
|
+
|
1094
|
+
FIELDS = {
|
1095
|
+
ID => {:type => ::Thrift::Types::I32, :name => 'id'},
|
1096
|
+
TAGNAME => {:type => ::Thrift::Types::STRING, :name => 'tagName'},
|
1097
|
+
PAGENO => {:type => ::Thrift::Types::I32, :name => 'pageNo'},
|
1098
|
+
PAGESIZE => {:type => ::Thrift::Types::I32, :name => 'pageSize'}
|
1099
|
+
}
|
1100
|
+
|
1101
|
+
def struct_fields; FIELDS; end
|
1102
|
+
|
1103
|
+
def validate
|
1104
|
+
end
|
1105
|
+
|
1106
|
+
::Thrift::Struct.generate_accessors self
|
1107
|
+
end
|
1108
|
+
|
1109
|
+
class MostPlayUnfinishedAlbum_result
|
1110
|
+
include ::Thrift::Struct, ::Thrift::Struct_Union
|
1111
|
+
SUCCESS = 0
|
1112
|
+
|
1113
|
+
FIELDS = {
|
1114
|
+
SUCCESS => {:type => ::Thrift::Types::STRUCT, :name => 'success', :class => ::Stat::Query::HotResult}
|
1115
|
+
}
|
1116
|
+
|
1117
|
+
def struct_fields; FIELDS; end
|
1118
|
+
|
1119
|
+
def validate
|
1120
|
+
end
|
1121
|
+
|
1122
|
+
::Thrift::Struct.generate_accessors self
|
1123
|
+
end
|
1124
|
+
|
1125
|
+
class MostPlayAlbum_args
|
1126
|
+
include ::Thrift::Struct, ::Thrift::Struct_Union
|
1127
|
+
ID = 1
|
1128
|
+
TAGNAME = 2
|
1129
|
+
PAGENO = 3
|
1130
|
+
PAGESIZE = 4
|
1131
|
+
|
1132
|
+
FIELDS = {
|
1133
|
+
ID => {:type => ::Thrift::Types::I32, :name => 'id'},
|
1134
|
+
TAGNAME => {:type => ::Thrift::Types::STRING, :name => 'tagName'},
|
1135
|
+
PAGENO => {:type => ::Thrift::Types::I32, :name => 'pageNo'},
|
1136
|
+
PAGESIZE => {:type => ::Thrift::Types::I32, :name => 'pageSize'}
|
1137
|
+
}
|
1138
|
+
|
1139
|
+
def struct_fields; FIELDS; end
|
1140
|
+
|
1141
|
+
def validate
|
1142
|
+
end
|
1143
|
+
|
1144
|
+
::Thrift::Struct.generate_accessors self
|
1145
|
+
end
|
1146
|
+
|
1147
|
+
class MostPlayAlbum_result
|
1148
|
+
include ::Thrift::Struct, ::Thrift::Struct_Union
|
1149
|
+
SUCCESS = 0
|
1150
|
+
|
1151
|
+
FIELDS = {
|
1152
|
+
SUCCESS => {:type => ::Thrift::Types::STRUCT, :name => 'success', :class => ::Stat::Query::HotResult}
|
1153
|
+
}
|
1154
|
+
|
1155
|
+
def struct_fields; FIELDS; end
|
1156
|
+
|
1157
|
+
def validate
|
1158
|
+
end
|
1159
|
+
|
1160
|
+
::Thrift::Struct.generate_accessors self
|
1161
|
+
end
|
1162
|
+
|
683
1163
|
class HotRadioAndSound_args
|
684
1164
|
include ::Thrift::Struct, ::Thrift::Struct_Union
|
685
1165
|
CATEGORYIDS = 1
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: stat-analysis-query
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ted Wang
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-03-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: thrift
|