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
|
#!/usr/bin/env python
# **********************************************************************
#
# Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved.
#
# This copy of Ice is licensed to you under the terms described in the
# ICE_LICENSE file included in this distribution.
#
# **********************************************************************
import sys, threading, Ice, Glacier2
Ice.loadSlice('Callback.ice')
import Demo
def menu():
print("""
usage:
t: send callback as twoway
o: send callback as oneway
O: send callback as batch oneway
f: flush all batch requests
v: set/reset override context field
F: set/reset fake category
s: shutdown server
r: restart the session
x: exit
?: help
""")
class CallbackReceiverI(Demo.CallbackReceiver):
def callback(self, current=None):
print("received callback")
class Client(Glacier2.Application):
def createSession(self):
session = None
while True:
print("This demo accepts any user-id / password combination.")
sys.stdout.write("user id: ")
sys.stdout.flush()
id = sys.stdin.readline().strip()
sys.stdout.write("password: ")
sys.stdout.flush()
pw = sys.stdin.readline().strip()
try:
session = self.router().createSession(id, pw)
break
except Glacier2.PermissionDeniedException as ex:
print("permission denied:\n" + ex.reason)
except Glacier2.CannotCreateSessionException as ex:
print("cannot create session:\n" + ex.reason)
return session
def runWithSession(self, args):
if len(args) > 1:
print(self.appName() + ": too many arguments")
return 1
callbackReceiverIdent = self.createCallbackIdentity("callbackReceiver")
callbackReceiverFakeIdent = Ice.Identity()
callbackReceiverFakeIdent.name = "callbackReceiver"
callbackReceiverFakeIdent.category = "fake"
base = self.communicator().propertyToProxy('Callback.Proxy')
twoway = Demo.CallbackPrx.checkedCast(base)
oneway = Demo.CallbackPrx.uncheckedCast(twoway.ice_oneway())
batchOneway = Demo.CallbackPrx.uncheckedCast(twoway.ice_batchOneway())
self.objectAdapter().add(CallbackReceiverI(), callbackReceiverIdent)
# Should never be called for the fake identity.
self.objectAdapter().add(CallbackReceiverI(), callbackReceiverFakeIdent)
twowayR = Demo.CallbackReceiverPrx.uncheckedCast(self.objectAdapter().createProxy(callbackReceiverIdent))
onewayR = Demo.CallbackReceiverPrx.uncheckedCast(twowayR.ice_oneway())
override = ''
fake = False
menu()
c = None
while c != 'x':
try:
sys.stdout.write("==> ")
sys.stdout.flush()
c = sys.stdin.readline().strip()
if c == 't':
context = {}
context["_fwd"] = "t"
if not len(override) == 0:
context["_ovrd"] = override
twoway.initiateCallback(twowayR, context)
elif c == 'o':
context = {}
context["_fwd"] = "o"
if not len(override) == 0:
context["_ovrd"] = override
oneway.initiateCallback(onewayR, context)
elif c == 'O':
context = {}
context["_fwd"] = "O"
if not len(override) == 0:
context["_ovrd"] = override
batchOneway.initiateCallback(onewayR, context)
elif c == 'f':
self.communicator().flushBatchRequests()
elif c == 'v':
if len(override) == 0:
override = "some_value"
print("override context field is now `" + override + "'")
else:
override = ''
print("override context field is empty")
elif c == 'F':
fake = not fake
if fake:
twowayR = Demo.CallbackReceiverPrx.uncheckedCast(twowayR.ice_identity(callbackReceiverFakeIdent))
onewayR = Demo.CallbackReceiverPrx.uncheckedCast(onewayR.ice_identity(callbackReceiverFakeIdent))
else:
twowayR = Demo.CallbackReceiverPrx.uncheckedCast(twowayR.ice_identity(callbackReceiverIdent))
onewayR = Demo.CallbackReceiverPrx.uncheckedCast(twowayR.ice_identity(callbackReceiverIdent))
elif c == 's':
twoway.shutdown()
elif c == 'r':
self.restart()
elif c == 'x':
pass # Nothing to do
elif c == '?':
menu()
else:
print("unknown command `" + c + "'")
menu()
except KeyboardInterrupt:
break
except EOFError:
break
return 0
app = Client()
sys.exit(app.main(sys.argv, "config.client"))
|