-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChordService.java
8190 lines (6843 loc) · 270 KB
/
ChordService.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* Autogenerated by Thrift Compiler (0.9.1)
*
* DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
* @generated
*/
import org.apache.thrift.scheme.IScheme;
import org.apache.thrift.scheme.SchemeFactory;
import org.apache.thrift.scheme.StandardScheme;
import org.apache.thrift.scheme.TupleScheme;
import org.apache.thrift.protocol.TTupleProtocol;
import org.apache.thrift.protocol.TProtocolException;
import org.apache.thrift.EncodingUtils;
import org.apache.thrift.TException;
import org.apache.thrift.async.AsyncMethodCallback;
import org.apache.thrift.server.AbstractNonblockingServer.*;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.util.HashMap;
import java.util.EnumMap;
import java.util.Set;
import java.util.HashSet;
import java.util.EnumSet;
import java.util.Collections;
import java.util.BitSet;
import java.nio.ByteBuffer;
import java.util.Arrays;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class ChordService {
public interface Iface {
public void insert(int wordKey, String definition) throws org.apache.thrift.TException;
public NodeRef findNode(String word) throws org.apache.thrift.TException;
public String lookup(String word) throws org.apache.thrift.TException;
public boolean join(NodeRef other) throws org.apache.thrift.TException;
public void printFingerTable() throws org.apache.thrift.TException;
public NodeRef findSuccessor(int key) throws org.apache.thrift.TException;
public NodeRef findPredecessor(int key) throws org.apache.thrift.TException;
public NodeRef closestPrecedingFinger(int key) throws org.apache.thrift.TException;
public void updatePredecessor(NodeRef other) throws org.apache.thrift.TException;
public void updateFingerTables(NodeRef s, int i) throws org.apache.thrift.TException;
}
public interface AsyncIface {
public void insert(int wordKey, String definition, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException;
public void findNode(String word, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException;
public void lookup(String word, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException;
public void join(NodeRef other, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException;
public void printFingerTable(org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException;
public void findSuccessor(int key, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException;
public void findPredecessor(int key, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException;
public void closestPrecedingFinger(int key, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException;
public void updatePredecessor(NodeRef other, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException;
public void updateFingerTables(NodeRef s, int i, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException;
}
public static class Client extends org.apache.thrift.TServiceClient implements Iface {
public static class Factory implements org.apache.thrift.TServiceClientFactory<Client> {
public Factory() {}
public Client getClient(org.apache.thrift.protocol.TProtocol prot) {
return new Client(prot);
}
public Client getClient(org.apache.thrift.protocol.TProtocol iprot, org.apache.thrift.protocol.TProtocol oprot) {
return new Client(iprot, oprot);
}
}
public Client(org.apache.thrift.protocol.TProtocol prot)
{
super(prot, prot);
}
public Client(org.apache.thrift.protocol.TProtocol iprot, org.apache.thrift.protocol.TProtocol oprot) {
super(iprot, oprot);
}
public void insert(int wordKey, String definition) throws org.apache.thrift.TException
{
send_insert(wordKey, definition);
recv_insert();
}
public void send_insert(int wordKey, String definition) throws org.apache.thrift.TException
{
insert_args args = new insert_args();
args.setWordKey(wordKey);
args.setDefinition(definition);
sendBase("insert", args);
}
public void recv_insert() throws org.apache.thrift.TException
{
insert_result result = new insert_result();
receiveBase(result, "insert");
return;
}
public NodeRef findNode(String word) throws org.apache.thrift.TException
{
send_findNode(word);
return recv_findNode();
}
public void send_findNode(String word) throws org.apache.thrift.TException
{
findNode_args args = new findNode_args();
args.setWord(word);
sendBase("findNode", args);
}
public NodeRef recv_findNode() throws org.apache.thrift.TException
{
findNode_result result = new findNode_result();
receiveBase(result, "findNode");
if (result.isSetSuccess()) {
return result.success;
}
throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "findNode failed: unknown result");
}
public String lookup(String word) throws org.apache.thrift.TException
{
send_lookup(word);
return recv_lookup();
}
public void send_lookup(String word) throws org.apache.thrift.TException
{
lookup_args args = new lookup_args();
args.setWord(word);
sendBase("lookup", args);
}
public String recv_lookup() throws org.apache.thrift.TException
{
lookup_result result = new lookup_result();
receiveBase(result, "lookup");
if (result.isSetSuccess()) {
return result.success;
}
throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "lookup failed: unknown result");
}
public boolean join(NodeRef other) throws org.apache.thrift.TException
{
send_join(other);
return recv_join();
}
public void send_join(NodeRef other) throws org.apache.thrift.TException
{
join_args args = new join_args();
args.setOther(other);
sendBase("join", args);
}
public boolean recv_join() throws org.apache.thrift.TException
{
join_result result = new join_result();
receiveBase(result, "join");
if (result.isSetSuccess()) {
return result.success;
}
throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "join failed: unknown result");
}
public void printFingerTable() throws org.apache.thrift.TException
{
send_printFingerTable();
recv_printFingerTable();
}
public void send_printFingerTable() throws org.apache.thrift.TException
{
printFingerTable_args args = new printFingerTable_args();
sendBase("printFingerTable", args);
}
public void recv_printFingerTable() throws org.apache.thrift.TException
{
printFingerTable_result result = new printFingerTable_result();
receiveBase(result, "printFingerTable");
return;
}
public NodeRef findSuccessor(int key) throws org.apache.thrift.TException
{
send_findSuccessor(key);
return recv_findSuccessor();
}
public void send_findSuccessor(int key) throws org.apache.thrift.TException
{
findSuccessor_args args = new findSuccessor_args();
args.setKey(key);
sendBase("findSuccessor", args);
}
public NodeRef recv_findSuccessor() throws org.apache.thrift.TException
{
findSuccessor_result result = new findSuccessor_result();
receiveBase(result, "findSuccessor");
if (result.isSetSuccess()) {
return result.success;
}
throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "findSuccessor failed: unknown result");
}
public NodeRef findPredecessor(int key) throws org.apache.thrift.TException
{
send_findPredecessor(key);
return recv_findPredecessor();
}
public void send_findPredecessor(int key) throws org.apache.thrift.TException
{
findPredecessor_args args = new findPredecessor_args();
args.setKey(key);
sendBase("findPredecessor", args);
}
public NodeRef recv_findPredecessor() throws org.apache.thrift.TException
{
findPredecessor_result result = new findPredecessor_result();
receiveBase(result, "findPredecessor");
if (result.isSetSuccess()) {
return result.success;
}
throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "findPredecessor failed: unknown result");
}
public NodeRef closestPrecedingFinger(int key) throws org.apache.thrift.TException
{
send_closestPrecedingFinger(key);
return recv_closestPrecedingFinger();
}
public void send_closestPrecedingFinger(int key) throws org.apache.thrift.TException
{
closestPrecedingFinger_args args = new closestPrecedingFinger_args();
args.setKey(key);
sendBase("closestPrecedingFinger", args);
}
public NodeRef recv_closestPrecedingFinger() throws org.apache.thrift.TException
{
closestPrecedingFinger_result result = new closestPrecedingFinger_result();
receiveBase(result, "closestPrecedingFinger");
if (result.isSetSuccess()) {
return result.success;
}
throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "closestPrecedingFinger failed: unknown result");
}
public void updatePredecessor(NodeRef other) throws org.apache.thrift.TException
{
send_updatePredecessor(other);
recv_updatePredecessor();
}
public void send_updatePredecessor(NodeRef other) throws org.apache.thrift.TException
{
updatePredecessor_args args = new updatePredecessor_args();
args.setOther(other);
sendBase("updatePredecessor", args);
}
public void recv_updatePredecessor() throws org.apache.thrift.TException
{
updatePredecessor_result result = new updatePredecessor_result();
receiveBase(result, "updatePredecessor");
return;
}
public void updateFingerTables(NodeRef s, int i) throws org.apache.thrift.TException
{
send_updateFingerTables(s, i);
recv_updateFingerTables();
}
public void send_updateFingerTables(NodeRef s, int i) throws org.apache.thrift.TException
{
updateFingerTables_args args = new updateFingerTables_args();
args.setS(s);
args.setI(i);
sendBase("updateFingerTables", args);
}
public void recv_updateFingerTables() throws org.apache.thrift.TException
{
updateFingerTables_result result = new updateFingerTables_result();
receiveBase(result, "updateFingerTables");
return;
}
}
public static class AsyncClient extends org.apache.thrift.async.TAsyncClient implements AsyncIface {
public static class Factory implements org.apache.thrift.async.TAsyncClientFactory<AsyncClient> {
private org.apache.thrift.async.TAsyncClientManager clientManager;
private org.apache.thrift.protocol.TProtocolFactory protocolFactory;
public Factory(org.apache.thrift.async.TAsyncClientManager clientManager, org.apache.thrift.protocol.TProtocolFactory protocolFactory) {
this.clientManager = clientManager;
this.protocolFactory = protocolFactory;
}
public AsyncClient getAsyncClient(org.apache.thrift.transport.TNonblockingTransport transport) {
return new AsyncClient(protocolFactory, clientManager, transport);
}
}
public AsyncClient(org.apache.thrift.protocol.TProtocolFactory protocolFactory, org.apache.thrift.async.TAsyncClientManager clientManager, org.apache.thrift.transport.TNonblockingTransport transport) {
super(protocolFactory, clientManager, transport);
}
public void insert(int wordKey, String definition, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException {
checkReady();
insert_call method_call = new insert_call(wordKey, definition, resultHandler, this, ___protocolFactory, ___transport);
this.___currentMethod = method_call;
___manager.call(method_call);
}
public static class insert_call extends org.apache.thrift.async.TAsyncMethodCall {
private int wordKey;
private String definition;
public insert_call(int wordKey, String definition, org.apache.thrift.async.AsyncMethodCallback resultHandler, org.apache.thrift.async.TAsyncClient client, org.apache.thrift.protocol.TProtocolFactory protocolFactory, org.apache.thrift.transport.TNonblockingTransport transport) throws org.apache.thrift.TException {
super(client, protocolFactory, transport, resultHandler, false);
this.wordKey = wordKey;
this.definition = definition;
}
public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException {
prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("insert", org.apache.thrift.protocol.TMessageType.CALL, 0));
insert_args args = new insert_args();
args.setWordKey(wordKey);
args.setDefinition(definition);
args.write(prot);
prot.writeMessageEnd();
}
public void getResult() throws org.apache.thrift.TException {
if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) {
throw new IllegalStateException("Method call not finished!");
}
org.apache.thrift.transport.TMemoryInputTransport memoryTransport = new org.apache.thrift.transport.TMemoryInputTransport(getFrameBuffer().array());
org.apache.thrift.protocol.TProtocol prot = client.getProtocolFactory().getProtocol(memoryTransport);
(new Client(prot)).recv_insert();
}
}
public void findNode(String word, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException {
checkReady();
findNode_call method_call = new findNode_call(word, resultHandler, this, ___protocolFactory, ___transport);
this.___currentMethod = method_call;
___manager.call(method_call);
}
public static class findNode_call extends org.apache.thrift.async.TAsyncMethodCall {
private String word;
public findNode_call(String word, org.apache.thrift.async.AsyncMethodCallback resultHandler, org.apache.thrift.async.TAsyncClient client, org.apache.thrift.protocol.TProtocolFactory protocolFactory, org.apache.thrift.transport.TNonblockingTransport transport) throws org.apache.thrift.TException {
super(client, protocolFactory, transport, resultHandler, false);
this.word = word;
}
public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException {
prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("findNode", org.apache.thrift.protocol.TMessageType.CALL, 0));
findNode_args args = new findNode_args();
args.setWord(word);
args.write(prot);
prot.writeMessageEnd();
}
public NodeRef getResult() throws org.apache.thrift.TException {
if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) {
throw new IllegalStateException("Method call not finished!");
}
org.apache.thrift.transport.TMemoryInputTransport memoryTransport = new org.apache.thrift.transport.TMemoryInputTransport(getFrameBuffer().array());
org.apache.thrift.protocol.TProtocol prot = client.getProtocolFactory().getProtocol(memoryTransport);
return (new Client(prot)).recv_findNode();
}
}
public void lookup(String word, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException {
checkReady();
lookup_call method_call = new lookup_call(word, resultHandler, this, ___protocolFactory, ___transport);
this.___currentMethod = method_call;
___manager.call(method_call);
}
public static class lookup_call extends org.apache.thrift.async.TAsyncMethodCall {
private String word;
public lookup_call(String word, org.apache.thrift.async.AsyncMethodCallback resultHandler, org.apache.thrift.async.TAsyncClient client, org.apache.thrift.protocol.TProtocolFactory protocolFactory, org.apache.thrift.transport.TNonblockingTransport transport) throws org.apache.thrift.TException {
super(client, protocolFactory, transport, resultHandler, false);
this.word = word;
}
public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException {
prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("lookup", org.apache.thrift.protocol.TMessageType.CALL, 0));
lookup_args args = new lookup_args();
args.setWord(word);
args.write(prot);
prot.writeMessageEnd();
}
public String getResult() throws org.apache.thrift.TException {
if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) {
throw new IllegalStateException("Method call not finished!");
}
org.apache.thrift.transport.TMemoryInputTransport memoryTransport = new org.apache.thrift.transport.TMemoryInputTransport(getFrameBuffer().array());
org.apache.thrift.protocol.TProtocol prot = client.getProtocolFactory().getProtocol(memoryTransport);
return (new Client(prot)).recv_lookup();
}
}
public void join(NodeRef other, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException {
checkReady();
join_call method_call = new join_call(other, resultHandler, this, ___protocolFactory, ___transport);
this.___currentMethod = method_call;
___manager.call(method_call);
}
public static class join_call extends org.apache.thrift.async.TAsyncMethodCall {
private NodeRef other;
public join_call(NodeRef other, org.apache.thrift.async.AsyncMethodCallback resultHandler, org.apache.thrift.async.TAsyncClient client, org.apache.thrift.protocol.TProtocolFactory protocolFactory, org.apache.thrift.transport.TNonblockingTransport transport) throws org.apache.thrift.TException {
super(client, protocolFactory, transport, resultHandler, false);
this.other = other;
}
public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException {
prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("join", org.apache.thrift.protocol.TMessageType.CALL, 0));
join_args args = new join_args();
args.setOther(other);
args.write(prot);
prot.writeMessageEnd();
}
public boolean getResult() throws org.apache.thrift.TException {
if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) {
throw new IllegalStateException("Method call not finished!");
}
org.apache.thrift.transport.TMemoryInputTransport memoryTransport = new org.apache.thrift.transport.TMemoryInputTransport(getFrameBuffer().array());
org.apache.thrift.protocol.TProtocol prot = client.getProtocolFactory().getProtocol(memoryTransport);
return (new Client(prot)).recv_join();
}
}
public void printFingerTable(org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException {
checkReady();
printFingerTable_call method_call = new printFingerTable_call(resultHandler, this, ___protocolFactory, ___transport);
this.___currentMethod = method_call;
___manager.call(method_call);
}
public static class printFingerTable_call extends org.apache.thrift.async.TAsyncMethodCall {
public printFingerTable_call(org.apache.thrift.async.AsyncMethodCallback resultHandler, org.apache.thrift.async.TAsyncClient client, org.apache.thrift.protocol.TProtocolFactory protocolFactory, org.apache.thrift.transport.TNonblockingTransport transport) throws org.apache.thrift.TException {
super(client, protocolFactory, transport, resultHandler, false);
}
public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException {
prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("printFingerTable", org.apache.thrift.protocol.TMessageType.CALL, 0));
printFingerTable_args args = new printFingerTable_args();
args.write(prot);
prot.writeMessageEnd();
}
public void getResult() throws org.apache.thrift.TException {
if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) {
throw new IllegalStateException("Method call not finished!");
}
org.apache.thrift.transport.TMemoryInputTransport memoryTransport = new org.apache.thrift.transport.TMemoryInputTransport(getFrameBuffer().array());
org.apache.thrift.protocol.TProtocol prot = client.getProtocolFactory().getProtocol(memoryTransport);
(new Client(prot)).recv_printFingerTable();
}
}
public void findSuccessor(int key, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException {
checkReady();
findSuccessor_call method_call = new findSuccessor_call(key, resultHandler, this, ___protocolFactory, ___transport);
this.___currentMethod = method_call;
___manager.call(method_call);
}
public static class findSuccessor_call extends org.apache.thrift.async.TAsyncMethodCall {
private int key;
public findSuccessor_call(int key, org.apache.thrift.async.AsyncMethodCallback resultHandler, org.apache.thrift.async.TAsyncClient client, org.apache.thrift.protocol.TProtocolFactory protocolFactory, org.apache.thrift.transport.TNonblockingTransport transport) throws org.apache.thrift.TException {
super(client, protocolFactory, transport, resultHandler, false);
this.key = key;
}
public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException {
prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("findSuccessor", org.apache.thrift.protocol.TMessageType.CALL, 0));
findSuccessor_args args = new findSuccessor_args();
args.setKey(key);
args.write(prot);
prot.writeMessageEnd();
}
public NodeRef getResult() throws org.apache.thrift.TException {
if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) {
throw new IllegalStateException("Method call not finished!");
}
org.apache.thrift.transport.TMemoryInputTransport memoryTransport = new org.apache.thrift.transport.TMemoryInputTransport(getFrameBuffer().array());
org.apache.thrift.protocol.TProtocol prot = client.getProtocolFactory().getProtocol(memoryTransport);
return (new Client(prot)).recv_findSuccessor();
}
}
public void findPredecessor(int key, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException {
checkReady();
findPredecessor_call method_call = new findPredecessor_call(key, resultHandler, this, ___protocolFactory, ___transport);
this.___currentMethod = method_call;
___manager.call(method_call);
}
public static class findPredecessor_call extends org.apache.thrift.async.TAsyncMethodCall {
private int key;
public findPredecessor_call(int key, org.apache.thrift.async.AsyncMethodCallback resultHandler, org.apache.thrift.async.TAsyncClient client, org.apache.thrift.protocol.TProtocolFactory protocolFactory, org.apache.thrift.transport.TNonblockingTransport transport) throws org.apache.thrift.TException {
super(client, protocolFactory, transport, resultHandler, false);
this.key = key;
}
public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException {
prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("findPredecessor", org.apache.thrift.protocol.TMessageType.CALL, 0));
findPredecessor_args args = new findPredecessor_args();
args.setKey(key);
args.write(prot);
prot.writeMessageEnd();
}
public NodeRef getResult() throws org.apache.thrift.TException {
if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) {
throw new IllegalStateException("Method call not finished!");
}
org.apache.thrift.transport.TMemoryInputTransport memoryTransport = new org.apache.thrift.transport.TMemoryInputTransport(getFrameBuffer().array());
org.apache.thrift.protocol.TProtocol prot = client.getProtocolFactory().getProtocol(memoryTransport);
return (new Client(prot)).recv_findPredecessor();
}
}
public void closestPrecedingFinger(int key, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException {
checkReady();
closestPrecedingFinger_call method_call = new closestPrecedingFinger_call(key, resultHandler, this, ___protocolFactory, ___transport);
this.___currentMethod = method_call;
___manager.call(method_call);
}
public static class closestPrecedingFinger_call extends org.apache.thrift.async.TAsyncMethodCall {
private int key;
public closestPrecedingFinger_call(int key, org.apache.thrift.async.AsyncMethodCallback resultHandler, org.apache.thrift.async.TAsyncClient client, org.apache.thrift.protocol.TProtocolFactory protocolFactory, org.apache.thrift.transport.TNonblockingTransport transport) throws org.apache.thrift.TException {
super(client, protocolFactory, transport, resultHandler, false);
this.key = key;
}
public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException {
prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("closestPrecedingFinger", org.apache.thrift.protocol.TMessageType.CALL, 0));
closestPrecedingFinger_args args = new closestPrecedingFinger_args();
args.setKey(key);
args.write(prot);
prot.writeMessageEnd();
}
public NodeRef getResult() throws org.apache.thrift.TException {
if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) {
throw new IllegalStateException("Method call not finished!");
}
org.apache.thrift.transport.TMemoryInputTransport memoryTransport = new org.apache.thrift.transport.TMemoryInputTransport(getFrameBuffer().array());
org.apache.thrift.protocol.TProtocol prot = client.getProtocolFactory().getProtocol(memoryTransport);
return (new Client(prot)).recv_closestPrecedingFinger();
}
}
public void updatePredecessor(NodeRef other, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException {
checkReady();
updatePredecessor_call method_call = new updatePredecessor_call(other, resultHandler, this, ___protocolFactory, ___transport);
this.___currentMethod = method_call;
___manager.call(method_call);
}
public static class updatePredecessor_call extends org.apache.thrift.async.TAsyncMethodCall {
private NodeRef other;
public updatePredecessor_call(NodeRef other, org.apache.thrift.async.AsyncMethodCallback resultHandler, org.apache.thrift.async.TAsyncClient client, org.apache.thrift.protocol.TProtocolFactory protocolFactory, org.apache.thrift.transport.TNonblockingTransport transport) throws org.apache.thrift.TException {
super(client, protocolFactory, transport, resultHandler, false);
this.other = other;
}
public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException {
prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("updatePredecessor", org.apache.thrift.protocol.TMessageType.CALL, 0));
updatePredecessor_args args = new updatePredecessor_args();
args.setOther(other);
args.write(prot);
prot.writeMessageEnd();
}
public void getResult() throws org.apache.thrift.TException {
if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) {
throw new IllegalStateException("Method call not finished!");
}
org.apache.thrift.transport.TMemoryInputTransport memoryTransport = new org.apache.thrift.transport.TMemoryInputTransport(getFrameBuffer().array());
org.apache.thrift.protocol.TProtocol prot = client.getProtocolFactory().getProtocol(memoryTransport);
(new Client(prot)).recv_updatePredecessor();
}
}
public void updateFingerTables(NodeRef s, int i, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException {
checkReady();
updateFingerTables_call method_call = new updateFingerTables_call(s, i, resultHandler, this, ___protocolFactory, ___transport);
this.___currentMethod = method_call;
___manager.call(method_call);
}
public static class updateFingerTables_call extends org.apache.thrift.async.TAsyncMethodCall {
private NodeRef s;
private int i;
public updateFingerTables_call(NodeRef s, int i, org.apache.thrift.async.AsyncMethodCallback resultHandler, org.apache.thrift.async.TAsyncClient client, org.apache.thrift.protocol.TProtocolFactory protocolFactory, org.apache.thrift.transport.TNonblockingTransport transport) throws org.apache.thrift.TException {
super(client, protocolFactory, transport, resultHandler, false);
this.s = s;
this.i = i;
}
public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException {
prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("updateFingerTables", org.apache.thrift.protocol.TMessageType.CALL, 0));
updateFingerTables_args args = new updateFingerTables_args();
args.setS(s);
args.setI(i);
args.write(prot);
prot.writeMessageEnd();
}
public void getResult() throws org.apache.thrift.TException {
if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) {
throw new IllegalStateException("Method call not finished!");
}
org.apache.thrift.transport.TMemoryInputTransport memoryTransport = new org.apache.thrift.transport.TMemoryInputTransport(getFrameBuffer().array());
org.apache.thrift.protocol.TProtocol prot = client.getProtocolFactory().getProtocol(memoryTransport);
(new Client(prot)).recv_updateFingerTables();
}
}
}
public static class Processor<I extends Iface> extends org.apache.thrift.TBaseProcessor<I> implements org.apache.thrift.TProcessor {
private static final Logger LOGGER = LoggerFactory.getLogger(Processor.class.getName());
public Processor(I iface) {
super(iface, getProcessMap(new HashMap<String, org.apache.thrift.ProcessFunction<I, ? extends org.apache.thrift.TBase>>()));
}
protected Processor(I iface, Map<String, org.apache.thrift.ProcessFunction<I, ? extends org.apache.thrift.TBase>> processMap) {
super(iface, getProcessMap(processMap));
}
private static <I extends Iface> Map<String, org.apache.thrift.ProcessFunction<I, ? extends org.apache.thrift.TBase>> getProcessMap(Map<String, org.apache.thrift.ProcessFunction<I, ? extends org.apache.thrift.TBase>> processMap) {
processMap.put("insert", new insert());
processMap.put("findNode", new findNode());
processMap.put("lookup", new lookup());
processMap.put("join", new join());
processMap.put("printFingerTable", new printFingerTable());
processMap.put("findSuccessor", new findSuccessor());
processMap.put("findPredecessor", new findPredecessor());
processMap.put("closestPrecedingFinger", new closestPrecedingFinger());
processMap.put("updatePredecessor", new updatePredecessor());
processMap.put("updateFingerTables", new updateFingerTables());
return processMap;
}
public static class insert<I extends Iface> extends org.apache.thrift.ProcessFunction<I, insert_args> {
public insert() {
super("insert");
}
public insert_args getEmptyArgsInstance() {
return new insert_args();
}
protected boolean isOneway() {
return false;
}
public insert_result getResult(I iface, insert_args args) throws org.apache.thrift.TException {
insert_result result = new insert_result();
iface.insert(args.wordKey, args.definition);
return result;
}
}
public static class findNode<I extends Iface> extends org.apache.thrift.ProcessFunction<I, findNode_args> {
public findNode() {
super("findNode");
}
public findNode_args getEmptyArgsInstance() {
return new findNode_args();
}
protected boolean isOneway() {
return false;
}
public findNode_result getResult(I iface, findNode_args args) throws org.apache.thrift.TException {
findNode_result result = new findNode_result();
result.success = iface.findNode(args.word);
return result;
}
}
public static class lookup<I extends Iface> extends org.apache.thrift.ProcessFunction<I, lookup_args> {
public lookup() {
super("lookup");
}
public lookup_args getEmptyArgsInstance() {
return new lookup_args();
}
protected boolean isOneway() {
return false;
}
public lookup_result getResult(I iface, lookup_args args) throws org.apache.thrift.TException {
lookup_result result = new lookup_result();
result.success = iface.lookup(args.word);
return result;
}
}
public static class join<I extends Iface> extends org.apache.thrift.ProcessFunction<I, join_args> {
public join() {
super("join");
}
public join_args getEmptyArgsInstance() {
return new join_args();
}
protected boolean isOneway() {
return false;
}
public join_result getResult(I iface, join_args args) throws org.apache.thrift.TException {
join_result result = new join_result();
result.success = iface.join(args.other);
result.setSuccessIsSet(true);
return result;
}
}
public static class printFingerTable<I extends Iface> extends org.apache.thrift.ProcessFunction<I, printFingerTable_args> {
public printFingerTable() {
super("printFingerTable");
}
public printFingerTable_args getEmptyArgsInstance() {
return new printFingerTable_args();
}
protected boolean isOneway() {
return false;
}
public printFingerTable_result getResult(I iface, printFingerTable_args args) throws org.apache.thrift.TException {
printFingerTable_result result = new printFingerTable_result();
iface.printFingerTable();
return result;
}
}
public static class findSuccessor<I extends Iface> extends org.apache.thrift.ProcessFunction<I, findSuccessor_args> {
public findSuccessor() {
super("findSuccessor");
}
public findSuccessor_args getEmptyArgsInstance() {
return new findSuccessor_args();
}
protected boolean isOneway() {
return false;
}
public findSuccessor_result getResult(I iface, findSuccessor_args args) throws org.apache.thrift.TException {
findSuccessor_result result = new findSuccessor_result();
result.success = iface.findSuccessor(args.key);
return result;
}
}
public static class findPredecessor<I extends Iface> extends org.apache.thrift.ProcessFunction<I, findPredecessor_args> {
public findPredecessor() {
super("findPredecessor");
}
public findPredecessor_args getEmptyArgsInstance() {
return new findPredecessor_args();
}
protected boolean isOneway() {
return false;
}
public findPredecessor_result getResult(I iface, findPredecessor_args args) throws org.apache.thrift.TException {
findPredecessor_result result = new findPredecessor_result();
result.success = iface.findPredecessor(args.key);
return result;
}
}
public static class closestPrecedingFinger<I extends Iface> extends org.apache.thrift.ProcessFunction<I, closestPrecedingFinger_args> {
public closestPrecedingFinger() {
super("closestPrecedingFinger");
}
public closestPrecedingFinger_args getEmptyArgsInstance() {
return new closestPrecedingFinger_args();
}
protected boolean isOneway() {
return false;
}
public closestPrecedingFinger_result getResult(I iface, closestPrecedingFinger_args args) throws org.apache.thrift.TException {
closestPrecedingFinger_result result = new closestPrecedingFinger_result();
result.success = iface.closestPrecedingFinger(args.key);
return result;
}
}
public static class updatePredecessor<I extends Iface> extends org.apache.thrift.ProcessFunction<I, updatePredecessor_args> {
public updatePredecessor() {
super("updatePredecessor");
}
public updatePredecessor_args getEmptyArgsInstance() {
return new updatePredecessor_args();
}
protected boolean isOneway() {
return false;
}
public updatePredecessor_result getResult(I iface, updatePredecessor_args args) throws org.apache.thrift.TException {
updatePredecessor_result result = new updatePredecessor_result();
iface.updatePredecessor(args.other);
return result;
}
}
public static class updateFingerTables<I extends Iface> extends org.apache.thrift.ProcessFunction<I, updateFingerTables_args> {
public updateFingerTables() {
super("updateFingerTables");
}
public updateFingerTables_args getEmptyArgsInstance() {
return new updateFingerTables_args();
}
protected boolean isOneway() {
return false;
}
public updateFingerTables_result getResult(I iface, updateFingerTables_args args) throws org.apache.thrift.TException {
updateFingerTables_result result = new updateFingerTables_result();
iface.updateFingerTables(args.s, args.i);
return result;
}
}
}
public static class AsyncProcessor<I extends AsyncIface> extends org.apache.thrift.TBaseAsyncProcessor<I> {
private static final Logger LOGGER = LoggerFactory.getLogger(AsyncProcessor.class.getName());
public AsyncProcessor(I iface) {
super(iface, getProcessMap(new HashMap<String, org.apache.thrift.AsyncProcessFunction<I, ? extends org.apache.thrift.TBase, ?>>()));
}
protected AsyncProcessor(I iface, Map<String, org.apache.thrift.AsyncProcessFunction<I, ? extends org.apache.thrift.TBase, ?>> processMap) {
super(iface, getProcessMap(processMap));
}
private static <I extends AsyncIface> Map<String, org.apache.thrift.AsyncProcessFunction<I, ? extends org.apache.thrift.TBase,?>> getProcessMap(Map<String, org.apache.thrift.AsyncProcessFunction<I, ? extends org.apache.thrift.TBase, ?>> processMap) {
processMap.put("insert", new insert());
processMap.put("findNode", new findNode());
processMap.put("lookup", new lookup());
processMap.put("join", new join());
processMap.put("printFingerTable", new printFingerTable());
processMap.put("findSuccessor", new findSuccessor());
processMap.put("findPredecessor", new findPredecessor());
processMap.put("closestPrecedingFinger", new closestPrecedingFinger());
processMap.put("updatePredecessor", new updatePredecessor());
processMap.put("updateFingerTables", new updateFingerTables());
return processMap;
}
public static class insert<I extends AsyncIface> extends org.apache.thrift.AsyncProcessFunction<I, insert_args, Void> {
public insert() {
super("insert");
}
public insert_args getEmptyArgsInstance() {
return new insert_args();
}
public AsyncMethodCallback<Void> getResultHandler(final AsyncFrameBuffer fb, final int seqid) {
final org.apache.thrift.AsyncProcessFunction fcall = this;
return new AsyncMethodCallback<Void>() {
public void onComplete(Void o) {
insert_result result = new insert_result();
try {
fcall.sendResponse(fb,result, org.apache.thrift.protocol.TMessageType.REPLY,seqid);
return;
} catch (Exception e) {
LOGGER.error("Exception writing to internal frame buffer", e);
}
fb.close();
}
public void onError(Exception e) {
byte msgType = org.apache.thrift.protocol.TMessageType.REPLY;
org.apache.thrift.TBase msg;
insert_result result = new insert_result();
{
msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION;
msg = (org.apache.thrift.TBase)new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.INTERNAL_ERROR, e.getMessage());
}
try {
fcall.sendResponse(fb,msg,msgType,seqid);
return;
} catch (Exception ex) {
LOGGER.error("Exception writing to internal frame buffer", ex);
}
fb.close();
}
};
}
protected boolean isOneway() {
return false;
}
public void start(I iface, insert_args args, org.apache.thrift.async.AsyncMethodCallback<Void> resultHandler) throws TException {
iface.insert(args.wordKey, args.definition,resultHandler);
}
}
public static class findNode<I extends AsyncIface> extends org.apache.thrift.AsyncProcessFunction<I, findNode_args, NodeRef> {
public findNode() {
super("findNode");
}
public findNode_args getEmptyArgsInstance() {
return new findNode_args();
}
public AsyncMethodCallback<NodeRef> getResultHandler(final AsyncFrameBuffer fb, final int seqid) {
final org.apache.thrift.AsyncProcessFunction fcall = this;
return new AsyncMethodCallback<NodeRef>() {
public void onComplete(NodeRef o) {
findNode_result result = new findNode_result();
result.success = o;
try {
fcall.sendResponse(fb,result, org.apache.thrift.protocol.TMessageType.REPLY,seqid);
return;
} catch (Exception e) {
LOGGER.error("Exception writing to internal frame buffer", e);
}
fb.close();
}
public void onError(Exception e) {
byte msgType = org.apache.thrift.protocol.TMessageType.REPLY;
org.apache.thrift.TBase msg;
findNode_result result = new findNode_result();
{
msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION;
msg = (org.apache.thrift.TBase)new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.INTERNAL_ERROR, e.getMessage());
}
try {
fcall.sendResponse(fb,msg,msgType,seqid);
return;
} catch (Exception ex) {