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
|
#!/usr/bin/env python
# **********************************************************************
#
# Copyright (c) 2003-2006 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, 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
x: exit
?: help
"""
class CallbackReceiverI(Demo.CallbackReceiver):
def callback(self, current=None):
print "received callback"
class Client(Ice.Application):
def run(self, args):
defaultRouter = self.communicator().getDefaultRouter()
if not defaultRouter:
print self.appName() + ": no default router set"
return 1
router = Glacier2.RouterPrx.checkedCast(defaultRouter)
if not router:
print self.appName() + ": configured router is not a Glacier2 router"
return 1
while True:
print "This demo accepts any user-id / password combination."
id = raw_input("user id: ")
pw = raw_input("password: ")
try:
router.createSession(id, pw)
break
except Glacier2.PermissionDeniedException, ex:
print "permission denied:\n" + ex.reason
category = router.getCategoryForClient()
callbackReceiverIdent = Ice.Identity()
callbackReceiverIdent.name = "callbackReceiver"
callbackReceiverIdent.category = category
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())
adapter = self.communicator().createObjectAdapter("Callback.Client")
adapter.add(CallbackReceiverI(), callbackReceiverIdent)
adapter.add(CallbackReceiverI(), callbackReceiverFakeIdent)
adapter.activate()
twowayR = Demo.CallbackReceiverPrx.uncheckedCast(adapter.createProxy(callbackReceiverIdent))
onewayR = Demo.CallbackReceiverPrx.uncheckedCast(twowayR.ice_oneway())
override = ''
fake = False
menu()
c = None
while c != 'x':
try:
c = raw_input("==> ")
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 == 'x':
pass # Nothing to do
elif c == '?':
menu()
else:
print "unknown command `" + c + "'"
menu()
except EOFError:
break
return 0
app = Client()
sys.exit(app.main(sys.argv, "config.client"))
|