murmur-rpc 0.0.8 → 0.1.1
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 +7 -0
- data/README.md +11 -0
- data/lib/murmur-rpc/interfaces/ice.rb +161 -0
- data/lib/murmur-rpc/version.rb +3 -0
- data/lib/murmur-rpc.rb +1 -5
- data/vendor/ice/Murmur.ice +37 -3
- data/vendor/ice/Murmur.rb +252 -143
- metadata +49 -47
- data/README.rdoc +0 -83
- data/lib/interfaces/ice.rb +0 -159
data/vendor/ice/Murmur.rb
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
# **********************************************************************
|
2
2
|
#
|
3
|
-
# Copyright (c) 2003-
|
3
|
+
# Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved.
|
4
4
|
#
|
5
5
|
# This copy of Ice is licensed to you under the terms described in the
|
6
6
|
# ICE_LICENSE file included in this distribution.
|
7
7
|
#
|
8
8
|
# **********************************************************************
|
9
|
-
|
10
|
-
# Ice version 3.
|
11
|
-
|
9
|
+
#
|
10
|
+
# Ice version 3.6.1
|
11
|
+
#
|
12
12
|
# <auto-generated>
|
13
13
|
#
|
14
14
|
# Generated from file `Murmur.ice'
|
@@ -16,6 +16,7 @@
|
|
16
16
|
# Warning: do not edit this file.
|
17
17
|
#
|
18
18
|
# </auto-generated>
|
19
|
+
#
|
19
20
|
|
20
21
|
require 'Ice'
|
21
22
|
require 'Ice/SliceChecksumDict.rb'
|
@@ -28,7 +29,7 @@ module Murmur
|
|
28
29
|
|
29
30
|
if not defined?(::Murmur::User)
|
30
31
|
class User
|
31
|
-
def initialize(session=0, userid=0, mute=false, deaf=false, suppress=false, prioritySpeaker=false, selfMute=false, selfDeaf=false, recording=false, channel=0, name='', onlinesecs=0, bytespersec=0, version=0, release='', os='', osversion='', identity='', context='', comment='', address=nil, tcponly=false, idlesecs=0)
|
32
|
+
def initialize(session=0, userid=0, mute=false, deaf=false, suppress=false, prioritySpeaker=false, selfMute=false, selfDeaf=false, recording=false, channel=0, name='', onlinesecs=0, bytespersec=0, version=0, release='', os='', osversion='', identity='', context='', comment='', address=nil, tcponly=false, idlesecs=0, udpPing=0.0, tcpPing=0.0)
|
32
33
|
@session = session
|
33
34
|
@userid = userid
|
34
35
|
@mute = mute
|
@@ -52,6 +53,8 @@ module Murmur
|
|
52
53
|
@address = address
|
53
54
|
@tcponly = tcponly
|
54
55
|
@idlesecs = idlesecs
|
56
|
+
@udpPing = udpPing
|
57
|
+
@tcpPing = tcpPing
|
55
58
|
end
|
56
59
|
|
57
60
|
def hash
|
@@ -79,6 +82,8 @@ module Murmur
|
|
79
82
|
_h = 5 * _h + @address.hash
|
80
83
|
_h = 5 * _h + @tcponly.hash
|
81
84
|
_h = 5 * _h + @idlesecs.hash
|
85
|
+
_h = 5 * _h + @udpPing.hash
|
86
|
+
_h = 5 * _h + @tcpPing.hash
|
82
87
|
_h % 0x7fffffff
|
83
88
|
end
|
84
89
|
|
@@ -106,7 +111,9 @@ module Murmur
|
|
106
111
|
@comment != other.comment or
|
107
112
|
@address != other.address or
|
108
113
|
@tcponly != other.tcponly or
|
109
|
-
@idlesecs != other.idlesecs
|
114
|
+
@idlesecs != other.idlesecs or
|
115
|
+
@udpPing != other.udpPing or
|
116
|
+
@tcpPing != other.tcpPing
|
110
117
|
true
|
111
118
|
end
|
112
119
|
|
@@ -118,7 +125,7 @@ module Murmur
|
|
118
125
|
::Ice::__stringify(self, T_User)
|
119
126
|
end
|
120
127
|
|
121
|
-
attr_accessor :session, :userid, :mute, :deaf, :suppress, :prioritySpeaker, :selfMute, :selfDeaf, :recording, :channel, :name, :onlinesecs, :bytespersec, :version, :release, :os, :osversion, :identity, :context, :comment, :address, :tcponly, :idlesecs
|
128
|
+
attr_accessor :session, :userid, :mute, :deaf, :suppress, :prioritySpeaker, :selfMute, :selfDeaf, :recording, :channel, :name, :onlinesecs, :bytespersec, :version, :release, :os, :osversion, :identity, :context, :comment, :address, :tcponly, :idlesecs, :udpPing, :tcpPing
|
122
129
|
end
|
123
130
|
|
124
131
|
T_User = ::Ice::__defineStruct('::Murmur::User', User, [
|
@@ -144,7 +151,9 @@ module Murmur
|
|
144
151
|
["comment", ::Ice::T_string],
|
145
152
|
["address", ::Murmur::T_NetAddress],
|
146
153
|
["tcponly", ::Ice::T_bool],
|
147
|
-
["idlesecs", ::Ice::T_int]
|
154
|
+
["idlesecs", ::Ice::T_int],
|
155
|
+
["udpPing", ::Ice::T_float],
|
156
|
+
["tcpPing", ::Ice::T_float]
|
148
157
|
])
|
149
158
|
end
|
150
159
|
|
@@ -152,6 +161,52 @@ module Murmur
|
|
152
161
|
T_IntList = ::Ice::__defineSequence('::Murmur::IntList', ::Ice::T_int)
|
153
162
|
end
|
154
163
|
|
164
|
+
if not defined?(::Murmur::TextMessage)
|
165
|
+
class TextMessage
|
166
|
+
def initialize(sessions=nil, channels=nil, trees=nil, text='')
|
167
|
+
@sessions = sessions
|
168
|
+
@channels = channels
|
169
|
+
@trees = trees
|
170
|
+
@text = text
|
171
|
+
end
|
172
|
+
|
173
|
+
def hash
|
174
|
+
_h = 0
|
175
|
+
_h = 5 * _h + @sessions.hash
|
176
|
+
_h = 5 * _h + @channels.hash
|
177
|
+
_h = 5 * _h + @trees.hash
|
178
|
+
_h = 5 * _h + @text.hash
|
179
|
+
_h % 0x7fffffff
|
180
|
+
end
|
181
|
+
|
182
|
+
def ==(other)
|
183
|
+
return false if
|
184
|
+
@sessions != other.sessions or
|
185
|
+
@channels != other.channels or
|
186
|
+
@trees != other.trees or
|
187
|
+
@text != other.text
|
188
|
+
true
|
189
|
+
end
|
190
|
+
|
191
|
+
def eql?(other)
|
192
|
+
return other.class == self.class && other == self
|
193
|
+
end
|
194
|
+
|
195
|
+
def inspect
|
196
|
+
::Ice::__stringify(self, T_TextMessage)
|
197
|
+
end
|
198
|
+
|
199
|
+
attr_accessor :sessions, :channels, :trees, :text
|
200
|
+
end
|
201
|
+
|
202
|
+
T_TextMessage = ::Ice::__defineStruct('::Murmur::TextMessage', TextMessage, [
|
203
|
+
["sessions", ::Murmur::T_IntList],
|
204
|
+
["channels", ::Murmur::T_IntList],
|
205
|
+
["trees", ::Murmur::T_IntList],
|
206
|
+
["text", ::Ice::T_string]
|
207
|
+
])
|
208
|
+
end
|
209
|
+
|
155
210
|
if not defined?(::Murmur::Channel)
|
156
211
|
class Channel
|
157
212
|
def initialize(id=0, name='', parent=0, links=nil, description='', temporary=false, position=0)
|
@@ -465,106 +520,110 @@ module Murmur
|
|
465
520
|
class ChannelInfo
|
466
521
|
include Comparable
|
467
522
|
|
468
|
-
def initialize(
|
469
|
-
|
470
|
-
@
|
523
|
+
def initialize(name, value)
|
524
|
+
@name = name
|
525
|
+
@value = value
|
471
526
|
end
|
472
527
|
|
473
528
|
def ChannelInfo.from_int(val)
|
474
|
-
|
475
|
-
@@_values[val]
|
529
|
+
@@_enumerators[val]
|
476
530
|
end
|
477
531
|
|
478
532
|
def to_s
|
479
|
-
|
533
|
+
@name
|
480
534
|
end
|
481
535
|
|
482
536
|
def to_i
|
483
|
-
@
|
537
|
+
@value
|
484
538
|
end
|
485
539
|
|
486
540
|
def <=>(other)
|
487
541
|
other.is_a?(ChannelInfo) or raise ArgumentError, "value must be a ChannelInfo"
|
488
|
-
@
|
542
|
+
@value <=> other.to_i
|
489
543
|
end
|
490
544
|
|
491
545
|
def hash
|
492
|
-
@
|
546
|
+
@value.hash
|
493
547
|
end
|
494
548
|
|
495
549
|
def inspect
|
496
|
-
|
550
|
+
@name + "(#{@value})"
|
497
551
|
end
|
498
552
|
|
499
553
|
def ChannelInfo.each(&block)
|
500
|
-
@@
|
554
|
+
@@_enumerators.each_value(&block)
|
501
555
|
end
|
502
556
|
|
503
|
-
|
504
|
-
|
557
|
+
ChannelDescription = ChannelInfo.new("ChannelDescription", 0)
|
558
|
+
ChannelPosition = ChannelInfo.new("ChannelPosition", 1)
|
505
559
|
|
506
|
-
|
507
|
-
|
560
|
+
@@_enumerators = {0=>ChannelDescription, 1=>ChannelPosition}
|
561
|
+
|
562
|
+
def ChannelInfo._enumerators
|
563
|
+
@@_enumerators
|
564
|
+
end
|
508
565
|
|
509
566
|
private_class_method :new
|
510
567
|
end
|
511
568
|
|
512
|
-
T_ChannelInfo = ::Ice::__defineEnum('::Murmur::ChannelInfo', ChannelInfo,
|
569
|
+
T_ChannelInfo = ::Ice::__defineEnum('::Murmur::ChannelInfo', ChannelInfo, ChannelInfo::_enumerators)
|
513
570
|
end
|
514
571
|
|
515
572
|
if not defined?(::Murmur::UserInfo)
|
516
573
|
class UserInfo
|
517
574
|
include Comparable
|
518
575
|
|
519
|
-
def initialize(
|
520
|
-
|
521
|
-
@
|
576
|
+
def initialize(name, value)
|
577
|
+
@name = name
|
578
|
+
@value = value
|
522
579
|
end
|
523
580
|
|
524
581
|
def UserInfo.from_int(val)
|
525
|
-
|
526
|
-
@@_values[val]
|
582
|
+
@@_enumerators[val]
|
527
583
|
end
|
528
584
|
|
529
585
|
def to_s
|
530
|
-
|
586
|
+
@name
|
531
587
|
end
|
532
588
|
|
533
589
|
def to_i
|
534
|
-
@
|
590
|
+
@value
|
535
591
|
end
|
536
592
|
|
537
593
|
def <=>(other)
|
538
594
|
other.is_a?(UserInfo) or raise ArgumentError, "value must be a UserInfo"
|
539
|
-
@
|
595
|
+
@value <=> other.to_i
|
540
596
|
end
|
541
597
|
|
542
598
|
def hash
|
543
|
-
@
|
599
|
+
@value.hash
|
544
600
|
end
|
545
601
|
|
546
602
|
def inspect
|
547
|
-
|
603
|
+
@name + "(#{@value})"
|
548
604
|
end
|
549
605
|
|
550
606
|
def UserInfo.each(&block)
|
551
|
-
@@
|
607
|
+
@@_enumerators.each_value(&block)
|
552
608
|
end
|
553
609
|
|
554
|
-
|
555
|
-
|
610
|
+
UserName = UserInfo.new("UserName", 0)
|
611
|
+
UserEmail = UserInfo.new("UserEmail", 1)
|
612
|
+
UserComment = UserInfo.new("UserComment", 2)
|
613
|
+
UserHash = UserInfo.new("UserHash", 3)
|
614
|
+
UserPassword = UserInfo.new("UserPassword", 4)
|
615
|
+
UserLastActive = UserInfo.new("UserLastActive", 5)
|
616
|
+
|
617
|
+
@@_enumerators = {0=>UserName, 1=>UserEmail, 2=>UserComment, 3=>UserHash, 4=>UserPassword, 5=>UserLastActive}
|
556
618
|
|
557
|
-
|
558
|
-
|
559
|
-
|
560
|
-
UserHash = @@_values[3]
|
561
|
-
UserPassword = @@_values[4]
|
562
|
-
UserLastActive = @@_values[5]
|
619
|
+
def UserInfo._enumerators
|
620
|
+
@@_enumerators
|
621
|
+
end
|
563
622
|
|
564
623
|
private_class_method :new
|
565
624
|
end
|
566
625
|
|
567
|
-
T_UserInfo = ::Ice::__defineEnum('::Murmur::UserInfo', UserInfo,
|
626
|
+
T_UserInfo = ::Ice::__defineEnum('::Murmur::UserInfo', UserInfo, UserInfo::_enumerators)
|
568
627
|
end
|
569
628
|
|
570
629
|
if not defined?(::Murmur::T_UserMap)
|
@@ -682,6 +741,9 @@ module Murmur
|
|
682
741
|
def TreePrx.uncheckedCast(proxy, facet=nil)
|
683
742
|
ice_uncheckedCast(proxy, facet)
|
684
743
|
end
|
744
|
+
def TreePrx.ice_staticId()
|
745
|
+
'::Murmur::Tree'
|
746
|
+
end
|
685
747
|
end
|
686
748
|
|
687
749
|
if not defined?(::Murmur::T_Tree)
|
@@ -689,10 +751,10 @@ module Murmur
|
|
689
751
|
T_TreePrx = ::Ice::__declareProxy('::Murmur::Tree')
|
690
752
|
end
|
691
753
|
|
692
|
-
T_Tree.defineClass(Tree, false, nil, [], [
|
693
|
-
['c', ::Murmur::T_Channel],
|
694
|
-
['children', ::Murmur::T_TreeList],
|
695
|
-
['users', ::Murmur::T_UserList]
|
754
|
+
T_Tree.defineClass(Tree, -1, false, false, nil, [], [
|
755
|
+
['c', ::Murmur::T_Channel, false, 0],
|
756
|
+
['children', ::Murmur::T_TreeList, false, 0],
|
757
|
+
['users', ::Murmur::T_UserList, false, 0]
|
696
758
|
])
|
697
759
|
Tree_mixin::ICE_TYPE = T_Tree
|
698
760
|
|
@@ -710,7 +772,7 @@ module Murmur
|
|
710
772
|
end
|
711
773
|
end
|
712
774
|
|
713
|
-
T_MurmurException = ::Ice::__defineException('::Murmur::MurmurException', MurmurException, nil, [])
|
775
|
+
T_MurmurException = ::Ice::__defineException('::Murmur::MurmurException', MurmurException, false, nil, [])
|
714
776
|
MurmurException::ICE_TYPE = T_MurmurException
|
715
777
|
end
|
716
778
|
|
@@ -724,7 +786,7 @@ module Murmur
|
|
724
786
|
end
|
725
787
|
end
|
726
788
|
|
727
|
-
T_InvalidSessionException = ::Ice::__defineException('::Murmur::InvalidSessionException', InvalidSessionException, ::Murmur::T_MurmurException, [])
|
789
|
+
T_InvalidSessionException = ::Ice::__defineException('::Murmur::InvalidSessionException', InvalidSessionException, false, ::Murmur::T_MurmurException, [])
|
728
790
|
InvalidSessionException::ICE_TYPE = T_InvalidSessionException
|
729
791
|
end
|
730
792
|
|
@@ -738,7 +800,7 @@ module Murmur
|
|
738
800
|
end
|
739
801
|
end
|
740
802
|
|
741
|
-
T_InvalidChannelException = ::Ice::__defineException('::Murmur::InvalidChannelException', InvalidChannelException, ::Murmur::T_MurmurException, [])
|
803
|
+
T_InvalidChannelException = ::Ice::__defineException('::Murmur::InvalidChannelException', InvalidChannelException, false, ::Murmur::T_MurmurException, [])
|
742
804
|
InvalidChannelException::ICE_TYPE = T_InvalidChannelException
|
743
805
|
end
|
744
806
|
|
@@ -752,7 +814,7 @@ module Murmur
|
|
752
814
|
end
|
753
815
|
end
|
754
816
|
|
755
|
-
T_InvalidServerException = ::Ice::__defineException('::Murmur::InvalidServerException', InvalidServerException, ::Murmur::T_MurmurException, [])
|
817
|
+
T_InvalidServerException = ::Ice::__defineException('::Murmur::InvalidServerException', InvalidServerException, false, ::Murmur::T_MurmurException, [])
|
756
818
|
InvalidServerException::ICE_TYPE = T_InvalidServerException
|
757
819
|
end
|
758
820
|
|
@@ -766,7 +828,7 @@ module Murmur
|
|
766
828
|
end
|
767
829
|
end
|
768
830
|
|
769
|
-
T_ServerBootedException = ::Ice::__defineException('::Murmur::ServerBootedException', ServerBootedException, ::Murmur::T_MurmurException, [])
|
831
|
+
T_ServerBootedException = ::Ice::__defineException('::Murmur::ServerBootedException', ServerBootedException, false, ::Murmur::T_MurmurException, [])
|
770
832
|
ServerBootedException::ICE_TYPE = T_ServerBootedException
|
771
833
|
end
|
772
834
|
|
@@ -780,7 +842,7 @@ module Murmur
|
|
780
842
|
end
|
781
843
|
end
|
782
844
|
|
783
|
-
T_ServerFailureException = ::Ice::__defineException('::Murmur::ServerFailureException', ServerFailureException, ::Murmur::T_MurmurException, [])
|
845
|
+
T_ServerFailureException = ::Ice::__defineException('::Murmur::ServerFailureException', ServerFailureException, false, ::Murmur::T_MurmurException, [])
|
784
846
|
ServerFailureException::ICE_TYPE = T_ServerFailureException
|
785
847
|
end
|
786
848
|
|
@@ -794,7 +856,7 @@ module Murmur
|
|
794
856
|
end
|
795
857
|
end
|
796
858
|
|
797
|
-
T_InvalidUserException = ::Ice::__defineException('::Murmur::InvalidUserException', InvalidUserException, ::Murmur::T_MurmurException, [])
|
859
|
+
T_InvalidUserException = ::Ice::__defineException('::Murmur::InvalidUserException', InvalidUserException, false, ::Murmur::T_MurmurException, [])
|
798
860
|
InvalidUserException::ICE_TYPE = T_InvalidUserException
|
799
861
|
end
|
800
862
|
|
@@ -808,7 +870,7 @@ module Murmur
|
|
808
870
|
end
|
809
871
|
end
|
810
872
|
|
811
|
-
T_InvalidTextureException = ::Ice::__defineException('::Murmur::InvalidTextureException', InvalidTextureException, ::Murmur::T_MurmurException, [])
|
873
|
+
T_InvalidTextureException = ::Ice::__defineException('::Murmur::InvalidTextureException', InvalidTextureException, false, ::Murmur::T_MurmurException, [])
|
812
874
|
InvalidTextureException::ICE_TYPE = T_InvalidTextureException
|
813
875
|
end
|
814
876
|
|
@@ -822,7 +884,7 @@ module Murmur
|
|
822
884
|
end
|
823
885
|
end
|
824
886
|
|
825
|
-
T_InvalidCallbackException = ::Ice::__defineException('::Murmur::InvalidCallbackException', InvalidCallbackException, ::Murmur::T_MurmurException, [])
|
887
|
+
T_InvalidCallbackException = ::Ice::__defineException('::Murmur::InvalidCallbackException', InvalidCallbackException, false, ::Murmur::T_MurmurException, [])
|
826
888
|
InvalidCallbackException::ICE_TYPE = T_InvalidCallbackException
|
827
889
|
end
|
828
890
|
|
@@ -836,10 +898,24 @@ module Murmur
|
|
836
898
|
end
|
837
899
|
end
|
838
900
|
|
839
|
-
T_InvalidSecretException = ::Ice::__defineException('::Murmur::InvalidSecretException', InvalidSecretException, ::Murmur::T_MurmurException, [])
|
901
|
+
T_InvalidSecretException = ::Ice::__defineException('::Murmur::InvalidSecretException', InvalidSecretException, false, ::Murmur::T_MurmurException, [])
|
840
902
|
InvalidSecretException::ICE_TYPE = T_InvalidSecretException
|
841
903
|
end
|
842
904
|
|
905
|
+
if not defined?(::Murmur::NestingLimitException)
|
906
|
+
class NestingLimitException < ::Murmur::MurmurException
|
907
|
+
def initialize
|
908
|
+
end
|
909
|
+
|
910
|
+
def to_s
|
911
|
+
'Murmur::NestingLimitException'
|
912
|
+
end
|
913
|
+
end
|
914
|
+
|
915
|
+
T_NestingLimitException = ::Ice::__defineException('::Murmur::NestingLimitException', NestingLimitException, false, ::Murmur::T_MurmurException, [])
|
916
|
+
NestingLimitException::ICE_TYPE = T_NestingLimitException
|
917
|
+
end
|
918
|
+
|
843
919
|
if not defined?(::Murmur::ServerCallback_mixin)
|
844
920
|
module ServerCallback_mixin
|
845
921
|
include ::Ice::Object_mixin
|
@@ -858,6 +934,7 @@ module Murmur
|
|
858
934
|
# def userConnected(state, current=nil)
|
859
935
|
# def userDisconnected(state, current=nil)
|
860
936
|
# def userStateChanged(state, current=nil)
|
937
|
+
# def userTextMessage(state, message, current=nil)
|
861
938
|
# def channelCreated(state, current=nil)
|
862
939
|
# def channelRemoved(state, current=nil)
|
863
940
|
# def channelStateChanged(state, current=nil)
|
@@ -887,6 +964,10 @@ module Murmur
|
|
887
964
|
ServerCallback_mixin::OP_userStateChanged.invoke(self, [state], _ctx)
|
888
965
|
end
|
889
966
|
|
967
|
+
def userTextMessage(state, message, _ctx=nil)
|
968
|
+
ServerCallback_mixin::OP_userTextMessage.invoke(self, [state, message], _ctx)
|
969
|
+
end
|
970
|
+
|
890
971
|
def channelCreated(state, _ctx=nil)
|
891
972
|
ServerCallback_mixin::OP_channelCreated.invoke(self, [state], _ctx)
|
892
973
|
end
|
@@ -909,6 +990,9 @@ module Murmur
|
|
909
990
|
def ServerCallbackPrx.uncheckedCast(proxy, facet=nil)
|
910
991
|
ice_uncheckedCast(proxy, facet)
|
911
992
|
end
|
993
|
+
def ServerCallbackPrx.ice_staticId()
|
994
|
+
'::Murmur::ServerCallback'
|
995
|
+
end
|
912
996
|
end
|
913
997
|
|
914
998
|
if not defined?(::Murmur::T_ServerCallback)
|
@@ -916,18 +1000,19 @@ module Murmur
|
|
916
1000
|
T_ServerCallbackPrx = ::Ice::__declareProxy('::Murmur::ServerCallback')
|
917
1001
|
end
|
918
1002
|
|
919
|
-
T_ServerCallback.defineClass(ServerCallback, true, nil, [], [])
|
1003
|
+
T_ServerCallback.defineClass(ServerCallback, -1, true, false, nil, [], [])
|
920
1004
|
ServerCallback_mixin::ICE_TYPE = T_ServerCallback
|
921
1005
|
|
922
1006
|
T_ServerCallbackPrx.defineProxy(ServerCallbackPrx, T_ServerCallback)
|
923
1007
|
ServerCallbackPrx::ICE_TYPE = T_ServerCallbackPrx
|
924
1008
|
|
925
|
-
ServerCallback_mixin::OP_userConnected = ::Ice::__defineOperation('userConnected', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, false, [::Murmur::T_User], [], nil, [])
|
926
|
-
ServerCallback_mixin::OP_userDisconnected = ::Ice::__defineOperation('userDisconnected', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, false, [::Murmur::T_User], [], nil, [])
|
927
|
-
ServerCallback_mixin::OP_userStateChanged = ::Ice::__defineOperation('userStateChanged', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, false, [::Murmur::T_User], [], nil, [])
|
928
|
-
ServerCallback_mixin::
|
929
|
-
ServerCallback_mixin::
|
930
|
-
ServerCallback_mixin::
|
1009
|
+
ServerCallback_mixin::OP_userConnected = ::Ice::__defineOperation('userConnected', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, false, nil, [[::Murmur::T_User, false, 0]], [], nil, [])
|
1010
|
+
ServerCallback_mixin::OP_userDisconnected = ::Ice::__defineOperation('userDisconnected', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, false, nil, [[::Murmur::T_User, false, 0]], [], nil, [])
|
1011
|
+
ServerCallback_mixin::OP_userStateChanged = ::Ice::__defineOperation('userStateChanged', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, false, nil, [[::Murmur::T_User, false, 0]], [], nil, [])
|
1012
|
+
ServerCallback_mixin::OP_userTextMessage = ::Ice::__defineOperation('userTextMessage', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, false, nil, [[::Murmur::T_User, false, 0], [::Murmur::T_TextMessage, false, 0]], [], nil, [])
|
1013
|
+
ServerCallback_mixin::OP_channelCreated = ::Ice::__defineOperation('channelCreated', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, false, nil, [[::Murmur::T_Channel, false, 0]], [], nil, [])
|
1014
|
+
ServerCallback_mixin::OP_channelRemoved = ::Ice::__defineOperation('channelRemoved', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, false, nil, [[::Murmur::T_Channel, false, 0]], [], nil, [])
|
1015
|
+
ServerCallback_mixin::OP_channelStateChanged = ::Ice::__defineOperation('channelStateChanged', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, false, nil, [[::Murmur::T_Channel, false, 0]], [], nil, [])
|
931
1016
|
end
|
932
1017
|
|
933
1018
|
ContextServer = 1
|
@@ -980,6 +1065,9 @@ module Murmur
|
|
980
1065
|
def ServerContextCallbackPrx.uncheckedCast(proxy, facet=nil)
|
981
1066
|
ice_uncheckedCast(proxy, facet)
|
982
1067
|
end
|
1068
|
+
def ServerContextCallbackPrx.ice_staticId()
|
1069
|
+
'::Murmur::ServerContextCallback'
|
1070
|
+
end
|
983
1071
|
end
|
984
1072
|
|
985
1073
|
if not defined?(::Murmur::T_ServerContextCallback)
|
@@ -987,13 +1075,13 @@ module Murmur
|
|
987
1075
|
T_ServerContextCallbackPrx = ::Ice::__declareProxy('::Murmur::ServerContextCallback')
|
988
1076
|
end
|
989
1077
|
|
990
|
-
T_ServerContextCallback.defineClass(ServerContextCallback, true, nil, [], [])
|
1078
|
+
T_ServerContextCallback.defineClass(ServerContextCallback, -1, true, false, nil, [], [])
|
991
1079
|
ServerContextCallback_mixin::ICE_TYPE = T_ServerContextCallback
|
992
1080
|
|
993
1081
|
T_ServerContextCallbackPrx.defineProxy(ServerContextCallbackPrx, T_ServerContextCallback)
|
994
1082
|
ServerContextCallbackPrx::ICE_TYPE = T_ServerContextCallbackPrx
|
995
1083
|
|
996
|
-
ServerContextCallback_mixin::OP_contextAction = ::Ice::__defineOperation('contextAction', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, false, [::Ice::T_string, ::Murmur::T_User, ::Ice::T_int, ::Ice::T_int], [], nil, [])
|
1084
|
+
ServerContextCallback_mixin::OP_contextAction = ::Ice::__defineOperation('contextAction', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, false, nil, [[::Ice::T_string, false, 0], [::Murmur::T_User, false, 0], [::Ice::T_int, false, 0], [::Ice::T_int, false, 0]], [], nil, [])
|
997
1085
|
end
|
998
1086
|
|
999
1087
|
if not defined?(::Murmur::ServerAuthenticator_mixin)
|
@@ -1060,6 +1148,9 @@ module Murmur
|
|
1060
1148
|
def ServerAuthenticatorPrx.uncheckedCast(proxy, facet=nil)
|
1061
1149
|
ice_uncheckedCast(proxy, facet)
|
1062
1150
|
end
|
1151
|
+
def ServerAuthenticatorPrx.ice_staticId()
|
1152
|
+
'::Murmur::ServerAuthenticator'
|
1153
|
+
end
|
1063
1154
|
end
|
1064
1155
|
|
1065
1156
|
if not defined?(::Murmur::T_ServerAuthenticator)
|
@@ -1067,17 +1158,17 @@ module Murmur
|
|
1067
1158
|
T_ServerAuthenticatorPrx = ::Ice::__declareProxy('::Murmur::ServerAuthenticator')
|
1068
1159
|
end
|
1069
1160
|
|
1070
|
-
T_ServerAuthenticator.defineClass(ServerAuthenticator, true, nil, [], [])
|
1161
|
+
T_ServerAuthenticator.defineClass(ServerAuthenticator, -1, true, false, nil, [], [])
|
1071
1162
|
ServerAuthenticator_mixin::ICE_TYPE = T_ServerAuthenticator
|
1072
1163
|
|
1073
1164
|
T_ServerAuthenticatorPrx.defineProxy(ServerAuthenticatorPrx, T_ServerAuthenticator)
|
1074
1165
|
ServerAuthenticatorPrx::ICE_TYPE = T_ServerAuthenticatorPrx
|
1075
1166
|
|
1076
|
-
ServerAuthenticator_mixin::OP_authenticate = ::Ice::__defineOperation('authenticate', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, false, [::Ice::T_string, ::Ice::T_string, ::Murmur::T_CertificateList, ::Ice::T_string, ::Ice::T_bool], [::Ice::T_string, ::Murmur::T_GroupNameList], ::Ice::T_int, [])
|
1077
|
-
ServerAuthenticator_mixin::OP_getInfo = ::Ice::__defineOperation('getInfo', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, false, [::Ice::T_int], [::Murmur::T_UserInfoMap], ::Ice::T_bool, [])
|
1078
|
-
ServerAuthenticator_mixin::OP_nameToId = ::Ice::__defineOperation('nameToId', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, false, [::Ice::T_string], [], ::Ice::T_int, [])
|
1079
|
-
ServerAuthenticator_mixin::OP_idToName = ::Ice::__defineOperation('idToName', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, false, [::Ice::T_int], [], ::Ice::T_string, [])
|
1080
|
-
ServerAuthenticator_mixin::OP_idToTexture = ::Ice::__defineOperation('idToTexture', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, false, [::Ice::T_int], [], ::Murmur::T_Texture, [])
|
1167
|
+
ServerAuthenticator_mixin::OP_authenticate = ::Ice::__defineOperation('authenticate', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, false, nil, [[::Ice::T_string, false, 0], [::Ice::T_string, false, 0], [::Murmur::T_CertificateList, false, 0], [::Ice::T_string, false, 0], [::Ice::T_bool, false, 0]], [[::Ice::T_string, false, 0], [::Murmur::T_GroupNameList, false, 0]], [::Ice::T_int, false, 0], [])
|
1168
|
+
ServerAuthenticator_mixin::OP_getInfo = ::Ice::__defineOperation('getInfo', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, false, nil, [[::Ice::T_int, false, 0]], [[::Murmur::T_UserInfoMap, false, 0]], [::Ice::T_bool, false, 0], [])
|
1169
|
+
ServerAuthenticator_mixin::OP_nameToId = ::Ice::__defineOperation('nameToId', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, false, nil, [[::Ice::T_string, false, 0]], [], [::Ice::T_int, false, 0], [])
|
1170
|
+
ServerAuthenticator_mixin::OP_idToName = ::Ice::__defineOperation('idToName', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, false, nil, [[::Ice::T_int, false, 0]], [], [::Ice::T_string, false, 0], [])
|
1171
|
+
ServerAuthenticator_mixin::OP_idToTexture = ::Ice::__defineOperation('idToTexture', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, false, nil, [[::Ice::T_int, false, 0]], [], [::Murmur::T_Texture, false, 0], [])
|
1081
1172
|
end
|
1082
1173
|
|
1083
1174
|
if not defined?(::Murmur::ServerUpdatingAuthenticator_mixin)
|
@@ -1145,6 +1236,9 @@ module Murmur
|
|
1145
1236
|
def ServerUpdatingAuthenticatorPrx.uncheckedCast(proxy, facet=nil)
|
1146
1237
|
ice_uncheckedCast(proxy, facet)
|
1147
1238
|
end
|
1239
|
+
def ServerUpdatingAuthenticatorPrx.ice_staticId()
|
1240
|
+
'::Murmur::ServerUpdatingAuthenticator'
|
1241
|
+
end
|
1148
1242
|
end
|
1149
1243
|
|
1150
1244
|
if not defined?(::Murmur::T_ServerUpdatingAuthenticator)
|
@@ -1152,17 +1246,17 @@ module Murmur
|
|
1152
1246
|
T_ServerUpdatingAuthenticatorPrx = ::Ice::__declareProxy('::Murmur::ServerUpdatingAuthenticator')
|
1153
1247
|
end
|
1154
1248
|
|
1155
|
-
T_ServerUpdatingAuthenticator.defineClass(ServerUpdatingAuthenticator, true, nil, [::Murmur::T_ServerAuthenticator], [])
|
1249
|
+
T_ServerUpdatingAuthenticator.defineClass(ServerUpdatingAuthenticator, -1, true, false, nil, [::Murmur::T_ServerAuthenticator], [])
|
1156
1250
|
ServerUpdatingAuthenticator_mixin::ICE_TYPE = T_ServerUpdatingAuthenticator
|
1157
1251
|
|
1158
1252
|
T_ServerUpdatingAuthenticatorPrx.defineProxy(ServerUpdatingAuthenticatorPrx, T_ServerUpdatingAuthenticator)
|
1159
1253
|
ServerUpdatingAuthenticatorPrx::ICE_TYPE = T_ServerUpdatingAuthenticatorPrx
|
1160
1254
|
|
1161
|
-
ServerUpdatingAuthenticator_mixin::OP_registerUser = ::Ice::__defineOperation('registerUser', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, false, [::Murmur::T_UserInfoMap], [], ::Ice::T_int, [])
|
1162
|
-
ServerUpdatingAuthenticator_mixin::OP_unregisterUser = ::Ice::__defineOperation('unregisterUser', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, false, [::Ice::T_int], [], ::Ice::T_int, [])
|
1163
|
-
ServerUpdatingAuthenticator_mixin::OP_getRegisteredUsers = ::Ice::__defineOperation('getRegisteredUsers', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, false, [::Ice::T_string], [], ::Murmur::T_NameMap, [])
|
1164
|
-
ServerUpdatingAuthenticator_mixin::OP_setInfo = ::Ice::__defineOperation('setInfo', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, false, [::Ice::T_int, ::Murmur::T_UserInfoMap], [], ::Ice::T_int, [])
|
1165
|
-
ServerUpdatingAuthenticator_mixin::OP_setTexture = ::Ice::__defineOperation('setTexture', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, false, [::Ice::T_int, ::Murmur::T_Texture], [], ::Ice::T_int, [])
|
1255
|
+
ServerUpdatingAuthenticator_mixin::OP_registerUser = ::Ice::__defineOperation('registerUser', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, false, nil, [[::Murmur::T_UserInfoMap, false, 0]], [], [::Ice::T_int, false, 0], [])
|
1256
|
+
ServerUpdatingAuthenticator_mixin::OP_unregisterUser = ::Ice::__defineOperation('unregisterUser', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, false, nil, [[::Ice::T_int, false, 0]], [], [::Ice::T_int, false, 0], [])
|
1257
|
+
ServerUpdatingAuthenticator_mixin::OP_getRegisteredUsers = ::Ice::__defineOperation('getRegisteredUsers', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, false, nil, [[::Ice::T_string, false, 0]], [], [::Murmur::T_NameMap, false, 0], [])
|
1258
|
+
ServerUpdatingAuthenticator_mixin::OP_setInfo = ::Ice::__defineOperation('setInfo', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, false, nil, [[::Ice::T_int, false, 0], [::Murmur::T_UserInfoMap, false, 0]], [], [::Ice::T_int, false, 0], [])
|
1259
|
+
ServerUpdatingAuthenticator_mixin::OP_setTexture = ::Ice::__defineOperation('setTexture', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, false, nil, [[::Ice::T_int, false, 0], [::Murmur::T_Texture, false, 0]], [], [::Ice::T_int, false, 0], [])
|
1166
1260
|
end
|
1167
1261
|
|
1168
1262
|
if not defined?(::Murmur::Server_mixin)
|
@@ -1205,6 +1299,7 @@ module Murmur
|
|
1205
1299
|
# def setState(state, current=nil)
|
1206
1300
|
# def sendMessage(session, text, current=nil)
|
1207
1301
|
# def hasPermission(session, channelid, perm, current=nil)
|
1302
|
+
# def effectivePermissions(session, channelid, current=nil)
|
1208
1303
|
# def addContextCallback(session, action, text, cb, ctx, current=nil)
|
1209
1304
|
# def removeContextCallback(cb, current=nil)
|
1210
1305
|
# def getChannelState(channelid, current=nil)
|
@@ -1342,6 +1437,10 @@ module Murmur
|
|
1342
1437
|
Server_mixin::OP_hasPermission.invoke(self, [session, channelid, perm], _ctx)
|
1343
1438
|
end
|
1344
1439
|
|
1440
|
+
def effectivePermissions(session, channelid, _ctx=nil)
|
1441
|
+
Server_mixin::OP_effectivePermissions.invoke(self, [session, channelid], _ctx)
|
1442
|
+
end
|
1443
|
+
|
1345
1444
|
def addContextCallback(session, action, text, cb, ctx, _ctx=nil)
|
1346
1445
|
Server_mixin::OP_addContextCallback.invoke(self, [session, action, text, cb, ctx], _ctx)
|
1347
1446
|
end
|
@@ -1444,6 +1543,9 @@ module Murmur
|
|
1444
1543
|
def ServerPrx.uncheckedCast(proxy, facet=nil)
|
1445
1544
|
ice_uncheckedCast(proxy, facet)
|
1446
1545
|
end
|
1546
|
+
def ServerPrx.ice_staticId()
|
1547
|
+
'::Murmur::Server'
|
1548
|
+
end
|
1447
1549
|
end
|
1448
1550
|
|
1449
1551
|
if not defined?(::Murmur::T_Server)
|
@@ -1451,60 +1553,61 @@ module Murmur
|
|
1451
1553
|
T_ServerPrx = ::Ice::__declareProxy('::Murmur::Server')
|
1452
1554
|
end
|
1453
1555
|
|
1454
|
-
T_Server.defineClass(Server, true, nil, [], [])
|
1556
|
+
T_Server.defineClass(Server, -1, true, false, nil, [], [])
|
1455
1557
|
Server_mixin::ICE_TYPE = T_Server
|
1456
1558
|
|
1457
1559
|
T_ServerPrx.defineProxy(ServerPrx, T_Server)
|
1458
1560
|
ServerPrx::ICE_TYPE = T_ServerPrx
|
1459
1561
|
|
1460
|
-
Server_mixin::OP_isRunning = ::Ice::__defineOperation('isRunning', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, true, [], [], ::Ice::T_bool, [::Murmur::T_InvalidSecretException])
|
1461
|
-
Server_mixin::OP_start = ::Ice::__defineOperation('start', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, true, [], [], nil, [::Murmur::T_ServerBootedException, ::Murmur::T_ServerFailureException, ::Murmur::T_InvalidSecretException])
|
1462
|
-
Server_mixin::OP_stop = ::Ice::__defineOperation('stop', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, true, [], [], nil, [::Murmur::T_ServerBootedException, ::Murmur::T_InvalidSecretException])
|
1463
|
-
Server_mixin::OP_delete = ::Ice::__defineOperation('delete', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, true, [], [], nil, [::Murmur::T_ServerBootedException, ::Murmur::T_InvalidSecretException])
|
1464
|
-
Server_mixin::OP_id = ::Ice::__defineOperation('id', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, true, [], [], ::Ice::T_int, [::Murmur::T_InvalidSecretException])
|
1465
|
-
Server_mixin::OP_addCallback = ::Ice::__defineOperation('addCallback', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, true, [::Murmur::T_ServerCallbackPrx], [], nil, [::Murmur::T_ServerBootedException, ::Murmur::T_InvalidCallbackException, ::Murmur::T_InvalidSecretException])
|
1466
|
-
Server_mixin::OP_removeCallback = ::Ice::__defineOperation('removeCallback', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, true, [::Murmur::T_ServerCallbackPrx], [], nil, [::Murmur::T_ServerBootedException, ::Murmur::T_InvalidCallbackException, ::Murmur::T_InvalidSecretException])
|
1467
|
-
Server_mixin::OP_setAuthenticator = ::Ice::__defineOperation('setAuthenticator', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, true, [::Murmur::T_ServerAuthenticatorPrx], [], nil, [::Murmur::T_ServerBootedException, ::Murmur::T_InvalidCallbackException, ::Murmur::T_InvalidSecretException])
|
1468
|
-
Server_mixin::OP_getConf = ::Ice::__defineOperation('getConf', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, true, [::Ice::T_string], [], ::Ice::T_string, [::Murmur::T_InvalidSecretException])
|
1469
|
-
Server_mixin::OP_getAllConf = ::Ice::__defineOperation('getAllConf', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, true, [], [], ::Murmur::T_ConfigMap, [::Murmur::T_InvalidSecretException])
|
1470
|
-
Server_mixin::OP_setConf = ::Ice::__defineOperation('setConf', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, true, [::Ice::T_string, ::Ice::T_string], [], nil, [::Murmur::T_InvalidSecretException])
|
1471
|
-
Server_mixin::OP_setSuperuserPassword = ::Ice::__defineOperation('setSuperuserPassword', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, true, [::Ice::T_string], [], nil, [::Murmur::T_InvalidSecretException])
|
1472
|
-
Server_mixin::OP_getLog = ::Ice::__defineOperation('getLog', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, true, [::Ice::T_int, ::Ice::T_int], [], ::Murmur::T_LogList, [::Murmur::T_InvalidSecretException])
|
1473
|
-
Server_mixin::OP_getLogLen = ::Ice::__defineOperation('getLogLen', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, true, [], [], ::Ice::T_int, [::Murmur::T_InvalidSecretException])
|
1474
|
-
Server_mixin::OP_getUsers = ::Ice::__defineOperation('getUsers', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, true, [], [], ::Murmur::T_UserMap, [::Murmur::T_ServerBootedException, ::Murmur::T_InvalidSecretException])
|
1475
|
-
Server_mixin::OP_getChannels = ::Ice::__defineOperation('getChannels', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, true, [], [], ::Murmur::T_ChannelMap, [::Murmur::T_ServerBootedException, ::Murmur::T_InvalidSecretException])
|
1476
|
-
Server_mixin::OP_getCertificateList = ::Ice::__defineOperation('getCertificateList', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, true, [::Ice::T_int], [], ::Murmur::T_CertificateList, [::Murmur::T_ServerBootedException, ::Murmur::T_InvalidSessionException, ::Murmur::T_InvalidSecretException])
|
1477
|
-
Server_mixin::OP_getTree = ::Ice::__defineOperation('getTree', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, true, [], [], ::Murmur::T_Tree, [::Murmur::T_ServerBootedException, ::Murmur::T_InvalidSecretException])
|
1478
|
-
Server_mixin::OP_getBans = ::Ice::__defineOperation('getBans', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, true, [], [], ::Murmur::T_BanList, [::Murmur::T_ServerBootedException, ::Murmur::T_InvalidSecretException])
|
1479
|
-
Server_mixin::OP_setBans = ::Ice::__defineOperation('setBans', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, true, [::Murmur::T_BanList], [], nil, [::Murmur::T_ServerBootedException, ::Murmur::T_InvalidSecretException])
|
1480
|
-
Server_mixin::OP_kickUser = ::Ice::__defineOperation('kickUser', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, true, [::Ice::T_int, ::Ice::T_string], [], nil, [::Murmur::T_ServerBootedException, ::Murmur::T_InvalidSessionException, ::Murmur::T_InvalidSecretException])
|
1481
|
-
Server_mixin::OP_getState = ::Ice::__defineOperation('getState', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, true, [::Ice::T_int], [], ::Murmur::T_User, [::Murmur::T_ServerBootedException, ::Murmur::T_InvalidSessionException, ::Murmur::T_InvalidSecretException])
|
1482
|
-
Server_mixin::OP_setState = ::Ice::__defineOperation('setState', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, true, [::Murmur::T_User], [], nil, [::Murmur::T_ServerBootedException, ::Murmur::T_InvalidSessionException, ::Murmur::T_InvalidChannelException, ::Murmur::T_InvalidSecretException])
|
1483
|
-
Server_mixin::OP_sendMessage = ::Ice::__defineOperation('sendMessage', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, true, [::Ice::T_int, ::Ice::T_string], [], nil, [::Murmur::T_ServerBootedException, ::Murmur::T_InvalidSessionException, ::Murmur::T_InvalidSecretException])
|
1484
|
-
Server_mixin::OP_hasPermission = ::Ice::__defineOperation('hasPermission', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, true, [::Ice::T_int, ::Ice::T_int, ::Ice::T_int], [], ::Ice::T_bool, [::Murmur::T_ServerBootedException, ::Murmur::T_InvalidSessionException, ::Murmur::T_InvalidChannelException, ::Murmur::T_InvalidSecretException])
|
1485
|
-
Server_mixin::
|
1486
|
-
Server_mixin::
|
1487
|
-
Server_mixin::
|
1488
|
-
Server_mixin::
|
1489
|
-
Server_mixin::
|
1490
|
-
Server_mixin::
|
1491
|
-
Server_mixin::
|
1492
|
-
Server_mixin::
|
1493
|
-
Server_mixin::
|
1494
|
-
Server_mixin::
|
1495
|
-
Server_mixin::
|
1496
|
-
Server_mixin::
|
1497
|
-
Server_mixin::
|
1498
|
-
Server_mixin::
|
1499
|
-
Server_mixin::
|
1500
|
-
Server_mixin::
|
1501
|
-
Server_mixin::
|
1502
|
-
Server_mixin::
|
1503
|
-
Server_mixin::
|
1504
|
-
Server_mixin::
|
1505
|
-
Server_mixin::
|
1506
|
-
Server_mixin::
|
1507
|
-
Server_mixin::
|
1562
|
+
Server_mixin::OP_isRunning = ::Ice::__defineOperation('isRunning', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, true, nil, [], [], [::Ice::T_bool, false, 0], [::Murmur::T_InvalidSecretException])
|
1563
|
+
Server_mixin::OP_start = ::Ice::__defineOperation('start', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, true, nil, [], [], nil, [::Murmur::T_ServerBootedException, ::Murmur::T_ServerFailureException, ::Murmur::T_InvalidSecretException])
|
1564
|
+
Server_mixin::OP_stop = ::Ice::__defineOperation('stop', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, true, nil, [], [], nil, [::Murmur::T_ServerBootedException, ::Murmur::T_InvalidSecretException])
|
1565
|
+
Server_mixin::OP_delete = ::Ice::__defineOperation('delete', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, true, nil, [], [], nil, [::Murmur::T_ServerBootedException, ::Murmur::T_InvalidSecretException])
|
1566
|
+
Server_mixin::OP_id = ::Ice::__defineOperation('id', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, true, nil, [], [], [::Ice::T_int, false, 0], [::Murmur::T_InvalidSecretException])
|
1567
|
+
Server_mixin::OP_addCallback = ::Ice::__defineOperation('addCallback', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, true, nil, [[::Murmur::T_ServerCallbackPrx, false, 0]], [], nil, [::Murmur::T_ServerBootedException, ::Murmur::T_InvalidCallbackException, ::Murmur::T_InvalidSecretException])
|
1568
|
+
Server_mixin::OP_removeCallback = ::Ice::__defineOperation('removeCallback', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, true, nil, [[::Murmur::T_ServerCallbackPrx, false, 0]], [], nil, [::Murmur::T_ServerBootedException, ::Murmur::T_InvalidCallbackException, ::Murmur::T_InvalidSecretException])
|
1569
|
+
Server_mixin::OP_setAuthenticator = ::Ice::__defineOperation('setAuthenticator', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, true, nil, [[::Murmur::T_ServerAuthenticatorPrx, false, 0]], [], nil, [::Murmur::T_ServerBootedException, ::Murmur::T_InvalidCallbackException, ::Murmur::T_InvalidSecretException])
|
1570
|
+
Server_mixin::OP_getConf = ::Ice::__defineOperation('getConf', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, true, nil, [[::Ice::T_string, false, 0]], [], [::Ice::T_string, false, 0], [::Murmur::T_InvalidSecretException])
|
1571
|
+
Server_mixin::OP_getAllConf = ::Ice::__defineOperation('getAllConf', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, true, nil, [], [], [::Murmur::T_ConfigMap, false, 0], [::Murmur::T_InvalidSecretException])
|
1572
|
+
Server_mixin::OP_setConf = ::Ice::__defineOperation('setConf', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, true, nil, [[::Ice::T_string, false, 0], [::Ice::T_string, false, 0]], [], nil, [::Murmur::T_InvalidSecretException])
|
1573
|
+
Server_mixin::OP_setSuperuserPassword = ::Ice::__defineOperation('setSuperuserPassword', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, true, nil, [[::Ice::T_string, false, 0]], [], nil, [::Murmur::T_InvalidSecretException])
|
1574
|
+
Server_mixin::OP_getLog = ::Ice::__defineOperation('getLog', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, true, nil, [[::Ice::T_int, false, 0], [::Ice::T_int, false, 0]], [], [::Murmur::T_LogList, false, 0], [::Murmur::T_InvalidSecretException])
|
1575
|
+
Server_mixin::OP_getLogLen = ::Ice::__defineOperation('getLogLen', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, true, nil, [], [], [::Ice::T_int, false, 0], [::Murmur::T_InvalidSecretException])
|
1576
|
+
Server_mixin::OP_getUsers = ::Ice::__defineOperation('getUsers', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, true, nil, [], [], [::Murmur::T_UserMap, false, 0], [::Murmur::T_ServerBootedException, ::Murmur::T_InvalidSecretException])
|
1577
|
+
Server_mixin::OP_getChannels = ::Ice::__defineOperation('getChannels', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, true, nil, [], [], [::Murmur::T_ChannelMap, false, 0], [::Murmur::T_ServerBootedException, ::Murmur::T_InvalidSecretException])
|
1578
|
+
Server_mixin::OP_getCertificateList = ::Ice::__defineOperation('getCertificateList', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, true, nil, [[::Ice::T_int, false, 0]], [], [::Murmur::T_CertificateList, false, 0], [::Murmur::T_ServerBootedException, ::Murmur::T_InvalidSessionException, ::Murmur::T_InvalidSecretException])
|
1579
|
+
Server_mixin::OP_getTree = ::Ice::__defineOperation('getTree', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, true, nil, [], [], [::Murmur::T_Tree, false, 0], [::Murmur::T_ServerBootedException, ::Murmur::T_InvalidSecretException])
|
1580
|
+
Server_mixin::OP_getBans = ::Ice::__defineOperation('getBans', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, true, nil, [], [], [::Murmur::T_BanList, false, 0], [::Murmur::T_ServerBootedException, ::Murmur::T_InvalidSecretException])
|
1581
|
+
Server_mixin::OP_setBans = ::Ice::__defineOperation('setBans', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, true, nil, [[::Murmur::T_BanList, false, 0]], [], nil, [::Murmur::T_ServerBootedException, ::Murmur::T_InvalidSecretException])
|
1582
|
+
Server_mixin::OP_kickUser = ::Ice::__defineOperation('kickUser', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, true, nil, [[::Ice::T_int, false, 0], [::Ice::T_string, false, 0]], [], nil, [::Murmur::T_ServerBootedException, ::Murmur::T_InvalidSessionException, ::Murmur::T_InvalidSecretException])
|
1583
|
+
Server_mixin::OP_getState = ::Ice::__defineOperation('getState', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, true, nil, [[::Ice::T_int, false, 0]], [], [::Murmur::T_User, false, 0], [::Murmur::T_ServerBootedException, ::Murmur::T_InvalidSessionException, ::Murmur::T_InvalidSecretException])
|
1584
|
+
Server_mixin::OP_setState = ::Ice::__defineOperation('setState', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, true, nil, [[::Murmur::T_User, false, 0]], [], nil, [::Murmur::T_ServerBootedException, ::Murmur::T_InvalidSessionException, ::Murmur::T_InvalidChannelException, ::Murmur::T_InvalidSecretException])
|
1585
|
+
Server_mixin::OP_sendMessage = ::Ice::__defineOperation('sendMessage', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, true, nil, [[::Ice::T_int, false, 0], [::Ice::T_string, false, 0]], [], nil, [::Murmur::T_ServerBootedException, ::Murmur::T_InvalidSessionException, ::Murmur::T_InvalidSecretException])
|
1586
|
+
Server_mixin::OP_hasPermission = ::Ice::__defineOperation('hasPermission', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, true, nil, [[::Ice::T_int, false, 0], [::Ice::T_int, false, 0], [::Ice::T_int, false, 0]], [], [::Ice::T_bool, false, 0], [::Murmur::T_ServerBootedException, ::Murmur::T_InvalidSessionException, ::Murmur::T_InvalidChannelException, ::Murmur::T_InvalidSecretException])
|
1587
|
+
Server_mixin::OP_effectivePermissions = ::Ice::__defineOperation('effectivePermissions', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, true, nil, [[::Ice::T_int, false, 0], [::Ice::T_int, false, 0]], [], [::Ice::T_int, false, 0], [::Murmur::T_ServerBootedException, ::Murmur::T_InvalidSessionException, ::Murmur::T_InvalidChannelException, ::Murmur::T_InvalidSecretException])
|
1588
|
+
Server_mixin::OP_addContextCallback = ::Ice::__defineOperation('addContextCallback', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, true, nil, [[::Ice::T_int, false, 0], [::Ice::T_string, false, 0], [::Ice::T_string, false, 0], [::Murmur::T_ServerContextCallbackPrx, false, 0], [::Ice::T_int, false, 0]], [], nil, [::Murmur::T_ServerBootedException, ::Murmur::T_InvalidCallbackException, ::Murmur::T_InvalidSecretException])
|
1589
|
+
Server_mixin::OP_removeContextCallback = ::Ice::__defineOperation('removeContextCallback', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, true, nil, [[::Murmur::T_ServerContextCallbackPrx, false, 0]], [], nil, [::Murmur::T_ServerBootedException, ::Murmur::T_InvalidCallbackException, ::Murmur::T_InvalidSecretException])
|
1590
|
+
Server_mixin::OP_getChannelState = ::Ice::__defineOperation('getChannelState', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, true, nil, [[::Ice::T_int, false, 0]], [], [::Murmur::T_Channel, false, 0], [::Murmur::T_ServerBootedException, ::Murmur::T_InvalidChannelException, ::Murmur::T_InvalidSecretException])
|
1591
|
+
Server_mixin::OP_setChannelState = ::Ice::__defineOperation('setChannelState', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, true, nil, [[::Murmur::T_Channel, false, 0]], [], nil, [::Murmur::T_ServerBootedException, ::Murmur::T_InvalidChannelException, ::Murmur::T_InvalidSecretException, ::Murmur::T_NestingLimitException])
|
1592
|
+
Server_mixin::OP_removeChannel = ::Ice::__defineOperation('removeChannel', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, true, nil, [[::Ice::T_int, false, 0]], [], nil, [::Murmur::T_ServerBootedException, ::Murmur::T_InvalidChannelException, ::Murmur::T_InvalidSecretException])
|
1593
|
+
Server_mixin::OP_addChannel = ::Ice::__defineOperation('addChannel', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, true, nil, [[::Ice::T_string, false, 0], [::Ice::T_int, false, 0]], [], [::Ice::T_int, false, 0], [::Murmur::T_ServerBootedException, ::Murmur::T_InvalidChannelException, ::Murmur::T_InvalidSecretException, ::Murmur::T_NestingLimitException])
|
1594
|
+
Server_mixin::OP_sendMessageChannel = ::Ice::__defineOperation('sendMessageChannel', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, true, nil, [[::Ice::T_int, false, 0], [::Ice::T_bool, false, 0], [::Ice::T_string, false, 0]], [], nil, [::Murmur::T_ServerBootedException, ::Murmur::T_InvalidChannelException, ::Murmur::T_InvalidSecretException])
|
1595
|
+
Server_mixin::OP_getACL = ::Ice::__defineOperation('getACL', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, true, nil, [[::Ice::T_int, false, 0]], [[::Murmur::T_ACLList, false, 0], [::Murmur::T_GroupList, false, 0], [::Ice::T_bool, false, 0]], nil, [::Murmur::T_ServerBootedException, ::Murmur::T_InvalidChannelException, ::Murmur::T_InvalidSecretException])
|
1596
|
+
Server_mixin::OP_setACL = ::Ice::__defineOperation('setACL', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, true, nil, [[::Ice::T_int, false, 0], [::Murmur::T_ACLList, false, 0], [::Murmur::T_GroupList, false, 0], [::Ice::T_bool, false, 0]], [], nil, [::Murmur::T_ServerBootedException, ::Murmur::T_InvalidChannelException, ::Murmur::T_InvalidSecretException])
|
1597
|
+
Server_mixin::OP_addUserToGroup = ::Ice::__defineOperation('addUserToGroup', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, true, nil, [[::Ice::T_int, false, 0], [::Ice::T_int, false, 0], [::Ice::T_string, false, 0]], [], nil, [::Murmur::T_ServerBootedException, ::Murmur::T_InvalidChannelException, ::Murmur::T_InvalidSessionException, ::Murmur::T_InvalidSecretException])
|
1598
|
+
Server_mixin::OP_removeUserFromGroup = ::Ice::__defineOperation('removeUserFromGroup', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, true, nil, [[::Ice::T_int, false, 0], [::Ice::T_int, false, 0], [::Ice::T_string, false, 0]], [], nil, [::Murmur::T_ServerBootedException, ::Murmur::T_InvalidChannelException, ::Murmur::T_InvalidSessionException, ::Murmur::T_InvalidSecretException])
|
1599
|
+
Server_mixin::OP_redirectWhisperGroup = ::Ice::__defineOperation('redirectWhisperGroup', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, true, nil, [[::Ice::T_int, false, 0], [::Ice::T_string, false, 0], [::Ice::T_string, false, 0]], [], nil, [::Murmur::T_ServerBootedException, ::Murmur::T_InvalidSessionException, ::Murmur::T_InvalidSecretException])
|
1600
|
+
Server_mixin::OP_getUserNames = ::Ice::__defineOperation('getUserNames', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, true, nil, [[::Murmur::T_IdList, false, 0]], [], [::Murmur::T_NameMap, false, 0], [::Murmur::T_ServerBootedException, ::Murmur::T_InvalidSecretException])
|
1601
|
+
Server_mixin::OP_getUserIds = ::Ice::__defineOperation('getUserIds', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, true, nil, [[::Murmur::T_NameList, false, 0]], [], [::Murmur::T_IdMap, false, 0], [::Murmur::T_ServerBootedException, ::Murmur::T_InvalidSecretException])
|
1602
|
+
Server_mixin::OP_registerUser = ::Ice::__defineOperation('registerUser', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, true, nil, [[::Murmur::T_UserInfoMap, false, 0]], [], [::Ice::T_int, false, 0], [::Murmur::T_ServerBootedException, ::Murmur::T_InvalidUserException, ::Murmur::T_InvalidSecretException])
|
1603
|
+
Server_mixin::OP_unregisterUser = ::Ice::__defineOperation('unregisterUser', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, true, nil, [[::Ice::T_int, false, 0]], [], nil, [::Murmur::T_ServerBootedException, ::Murmur::T_InvalidUserException, ::Murmur::T_InvalidSecretException])
|
1604
|
+
Server_mixin::OP_updateRegistration = ::Ice::__defineOperation('updateRegistration', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, true, nil, [[::Ice::T_int, false, 0], [::Murmur::T_UserInfoMap, false, 0]], [], nil, [::Murmur::T_ServerBootedException, ::Murmur::T_InvalidUserException, ::Murmur::T_InvalidSecretException])
|
1605
|
+
Server_mixin::OP_getRegistration = ::Ice::__defineOperation('getRegistration', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, true, nil, [[::Ice::T_int, false, 0]], [], [::Murmur::T_UserInfoMap, false, 0], [::Murmur::T_ServerBootedException, ::Murmur::T_InvalidUserException, ::Murmur::T_InvalidSecretException])
|
1606
|
+
Server_mixin::OP_getRegisteredUsers = ::Ice::__defineOperation('getRegisteredUsers', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, true, nil, [[::Ice::T_string, false, 0]], [], [::Murmur::T_NameMap, false, 0], [::Murmur::T_ServerBootedException, ::Murmur::T_InvalidSecretException])
|
1607
|
+
Server_mixin::OP_verifyPassword = ::Ice::__defineOperation('verifyPassword', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, true, nil, [[::Ice::T_string, false, 0], [::Ice::T_string, false, 0]], [], [::Ice::T_int, false, 0], [::Murmur::T_ServerBootedException, ::Murmur::T_InvalidSecretException])
|
1608
|
+
Server_mixin::OP_getTexture = ::Ice::__defineOperation('getTexture', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, true, nil, [[::Ice::T_int, false, 0]], [], [::Murmur::T_Texture, false, 0], [::Murmur::T_ServerBootedException, ::Murmur::T_InvalidUserException, ::Murmur::T_InvalidSecretException])
|
1609
|
+
Server_mixin::OP_setTexture = ::Ice::__defineOperation('setTexture', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, true, nil, [[::Ice::T_int, false, 0], [::Murmur::T_Texture, false, 0]], [], nil, [::Murmur::T_ServerBootedException, ::Murmur::T_InvalidUserException, ::Murmur::T_InvalidTextureException, ::Murmur::T_InvalidSecretException])
|
1610
|
+
Server_mixin::OP_getUptime = ::Ice::__defineOperation('getUptime', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, true, nil, [], [], [::Ice::T_int, false, 0], [::Murmur::T_ServerBootedException, ::Murmur::T_InvalidSecretException])
|
1508
1611
|
end
|
1509
1612
|
|
1510
1613
|
if not defined?(::Murmur::MetaCallback_mixin)
|
@@ -1556,6 +1659,9 @@ module Murmur
|
|
1556
1659
|
def MetaCallbackPrx.uncheckedCast(proxy, facet=nil)
|
1557
1660
|
ice_uncheckedCast(proxy, facet)
|
1558
1661
|
end
|
1662
|
+
def MetaCallbackPrx.ice_staticId()
|
1663
|
+
'::Murmur::MetaCallback'
|
1664
|
+
end
|
1559
1665
|
end
|
1560
1666
|
|
1561
1667
|
if not defined?(::Murmur::T_MetaCallback)
|
@@ -1563,14 +1669,14 @@ module Murmur
|
|
1563
1669
|
T_MetaCallbackPrx = ::Ice::__declareProxy('::Murmur::MetaCallback')
|
1564
1670
|
end
|
1565
1671
|
|
1566
|
-
T_MetaCallback.defineClass(MetaCallback, true, nil, [], [])
|
1672
|
+
T_MetaCallback.defineClass(MetaCallback, -1, true, false, nil, [], [])
|
1567
1673
|
MetaCallback_mixin::ICE_TYPE = T_MetaCallback
|
1568
1674
|
|
1569
1675
|
T_MetaCallbackPrx.defineProxy(MetaCallbackPrx, T_MetaCallback)
|
1570
1676
|
MetaCallbackPrx::ICE_TYPE = T_MetaCallbackPrx
|
1571
1677
|
|
1572
|
-
MetaCallback_mixin::OP_started = ::Ice::__defineOperation('started', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, false, [::Murmur::T_ServerPrx], [], nil, [])
|
1573
|
-
MetaCallback_mixin::OP_stopped = ::Ice::__defineOperation('stopped', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, false, [::Murmur::T_ServerPrx], [], nil, [])
|
1678
|
+
MetaCallback_mixin::OP_started = ::Ice::__defineOperation('started', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, false, nil, [[::Murmur::T_ServerPrx, false, 0]], [], nil, [])
|
1679
|
+
MetaCallback_mixin::OP_stopped = ::Ice::__defineOperation('stopped', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, false, nil, [[::Murmur::T_ServerPrx, false, 0]], [], nil, [])
|
1574
1680
|
end
|
1575
1681
|
|
1576
1682
|
if not defined?(::Murmur::T_ServerList)
|
@@ -1671,6 +1777,9 @@ module Murmur
|
|
1671
1777
|
def MetaPrx.uncheckedCast(proxy, facet=nil)
|
1672
1778
|
ice_uncheckedCast(proxy, facet)
|
1673
1779
|
end
|
1780
|
+
def MetaPrx.ice_staticId()
|
1781
|
+
'::Murmur::Meta'
|
1782
|
+
end
|
1674
1783
|
end
|
1675
1784
|
|
1676
1785
|
if not defined?(::Murmur::T_Meta)
|
@@ -1678,22 +1787,22 @@ module Murmur
|
|
1678
1787
|
T_MetaPrx = ::Ice::__declareProxy('::Murmur::Meta')
|
1679
1788
|
end
|
1680
1789
|
|
1681
|
-
T_Meta.defineClass(Meta, true, nil, [], [])
|
1790
|
+
T_Meta.defineClass(Meta, -1, true, false, nil, [], [])
|
1682
1791
|
Meta_mixin::ICE_TYPE = T_Meta
|
1683
1792
|
|
1684
1793
|
T_MetaPrx.defineProxy(MetaPrx, T_Meta)
|
1685
1794
|
MetaPrx::ICE_TYPE = T_MetaPrx
|
1686
1795
|
|
1687
|
-
Meta_mixin::OP_getServer = ::Ice::__defineOperation('getServer', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, true, [::Ice::T_int], [], ::Murmur::T_ServerPrx, [::Murmur::T_InvalidSecretException])
|
1688
|
-
Meta_mixin::OP_newServer = ::Ice::__defineOperation('newServer', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, true, [], [], ::Murmur::T_ServerPrx, [::Murmur::T_InvalidSecretException])
|
1689
|
-
Meta_mixin::OP_getBootedServers = ::Ice::__defineOperation('getBootedServers', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, true, [], [], ::Murmur::T_ServerList, [::Murmur::T_InvalidSecretException])
|
1690
|
-
Meta_mixin::OP_getAllServers = ::Ice::__defineOperation('getAllServers', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, true, [], [], ::Murmur::T_ServerList, [::Murmur::T_InvalidSecretException])
|
1691
|
-
Meta_mixin::OP_getDefaultConf = ::Ice::__defineOperation('getDefaultConf', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, true, [], [], ::Murmur::T_ConfigMap, [::Murmur::T_InvalidSecretException])
|
1692
|
-
Meta_mixin::OP_getVersion = ::Ice::__defineOperation('getVersion', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, true, [], [::Ice::T_int, ::Ice::T_int, ::Ice::T_int, ::Ice::T_string], nil, [])
|
1693
|
-
Meta_mixin::OP_addCallback = ::Ice::__defineOperation('addCallback', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, true, [::Murmur::T_MetaCallbackPrx], [], nil, [::Murmur::T_InvalidCallbackException, ::Murmur::T_InvalidSecretException])
|
1694
|
-
Meta_mixin::OP_removeCallback = ::Ice::__defineOperation('removeCallback', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, true, [::Murmur::T_MetaCallbackPrx], [], nil, [::Murmur::T_InvalidCallbackException, ::Murmur::T_InvalidSecretException])
|
1695
|
-
Meta_mixin::OP_getUptime = ::Ice::__defineOperation('getUptime', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, true, [], [], ::Ice::T_int, [])
|
1696
|
-
Meta_mixin::OP_getSlice = ::Ice::__defineOperation('getSlice', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, true, [], [], ::Ice::T_string, [])
|
1697
|
-
Meta_mixin::OP_getSliceChecksums = ::Ice::__defineOperation('getSliceChecksums', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, true, [], [], ::Ice::T_SliceChecksumDict, [])
|
1796
|
+
Meta_mixin::OP_getServer = ::Ice::__defineOperation('getServer', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, true, nil, [[::Ice::T_int, false, 0]], [], [::Murmur::T_ServerPrx, false, 0], [::Murmur::T_InvalidSecretException])
|
1797
|
+
Meta_mixin::OP_newServer = ::Ice::__defineOperation('newServer', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, true, nil, [], [], [::Murmur::T_ServerPrx, false, 0], [::Murmur::T_InvalidSecretException])
|
1798
|
+
Meta_mixin::OP_getBootedServers = ::Ice::__defineOperation('getBootedServers', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, true, nil, [], [], [::Murmur::T_ServerList, false, 0], [::Murmur::T_InvalidSecretException])
|
1799
|
+
Meta_mixin::OP_getAllServers = ::Ice::__defineOperation('getAllServers', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, true, nil, [], [], [::Murmur::T_ServerList, false, 0], [::Murmur::T_InvalidSecretException])
|
1800
|
+
Meta_mixin::OP_getDefaultConf = ::Ice::__defineOperation('getDefaultConf', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, true, nil, [], [], [::Murmur::T_ConfigMap, false, 0], [::Murmur::T_InvalidSecretException])
|
1801
|
+
Meta_mixin::OP_getVersion = ::Ice::__defineOperation('getVersion', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, true, nil, [], [[::Ice::T_int, false, 0], [::Ice::T_int, false, 0], [::Ice::T_int, false, 0], [::Ice::T_string, false, 0]], nil, [])
|
1802
|
+
Meta_mixin::OP_addCallback = ::Ice::__defineOperation('addCallback', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, true, nil, [[::Murmur::T_MetaCallbackPrx, false, 0]], [], nil, [::Murmur::T_InvalidCallbackException, ::Murmur::T_InvalidSecretException])
|
1803
|
+
Meta_mixin::OP_removeCallback = ::Ice::__defineOperation('removeCallback', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, true, nil, [[::Murmur::T_MetaCallbackPrx, false, 0]], [], nil, [::Murmur::T_InvalidCallbackException, ::Murmur::T_InvalidSecretException])
|
1804
|
+
Meta_mixin::OP_getUptime = ::Ice::__defineOperation('getUptime', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, true, nil, [], [], [::Ice::T_int, false, 0], [])
|
1805
|
+
Meta_mixin::OP_getSlice = ::Ice::__defineOperation('getSlice', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, true, nil, [], [], [::Ice::T_string, false, 0], [])
|
1806
|
+
Meta_mixin::OP_getSliceChecksums = ::Ice::__defineOperation('getSliceChecksums', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, true, nil, [], [], [::Ice::T_SliceChecksumDict, false, 0], [])
|
1698
1807
|
end
|
1699
1808
|
end
|