blob: bf2ca40dd7d4a42d054c53e9eb17471aeeee8266 (
plain)
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
|
#!/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, traceback, Ice
Ice.loadSlice('Hello.ice')
import Demo
def menu():
print """
usage:
t: send greeting as twoway
o: send greeting as oneway
O: send greeting as batch oneway
d: send greeting as datagram
D: send greeting as batch datagram
f: flush all batch requests
T: set a timeout
S: switch secure mode on/off
s: shutdown server
x: exit
?: help
"""
class Client(Ice.Application):
def run(self, args):
properties = self.communicator().getProperties()
refProperty = 'Hello.Proxy'
proxy = properties.getProperty(refProperty)
if len(proxy) == 0:
print args[0] + ": property `" + refProperty + "' not set"
return False
twoway = Demo.HelloPrx.checkedCast(\
self.communicator().stringToProxy(proxy).ice_twoway().ice_timeout(-1).ice_secure(False))
if not twoway:
print args[0] + ": invalid proxy"
return False
oneway = Demo.HelloPrx.uncheckedCast(twoway.ice_oneway())
batchOneway = Demo.HelloPrx.uncheckedCast(twoway.ice_batchOneway())
datagram = Demo.HelloPrx.uncheckedCast(twoway.ice_datagram())
batchDatagram = Demo.HelloPrx.uncheckedCast(twoway.ice_batchDatagram())
secure = False
timeout = -1
menu()
c = None
while c != 'x':
try:
c = raw_input("==> ")
if c == 't':
twoway.sayHello()
elif c == 'o':
oneway.sayHello()
elif c == 'O':
batchOneway.sayHello()
elif c == 'd':
if secure:
print "secure datagrams are not supported"
else:
datagram.sayHello()
elif c == 'D':
if secure:
print "secure datagrams are not supported"
else:
batchDatagram.sayHello()
elif c == 'f':
self.communicator().flushBatchRequests()
elif c == 'T':
if timeout == -1:
timeout = 2000
else:
timeout = -1
twoway = Demo.HelloPrx.uncheckedCast(twoway.ice_timeout(timeout))
oneway = Demo.HelloPrx.uncheckedCast(oneway.ice_timeout(timeout))
batchOneway = Demo.HelloPrx.uncheckedCast(batchOneway.ice_timeout(timeout))
if timeout == -1:
print "timeout is now switched off"
else:
print "timeout is now set to 2000ms"
elif c == 'S':
secure = not secure
twoway = Demo.HelloPrx.uncheckedCast(twoway.ice_secure(secure))
oneway = Demo.HelloPrx.uncheckedCast(oneway.ice_secure(secure))
batchOneway = Demo.HelloPrx.uncheckedCast(batchOneway.ice_secure(secure))
datagram = Demo.HelloPrx.uncheckedCast(datagram.ice_secure(secure))
batchDatagram = Demo.HelloPrx.uncheckedCast(batchDatagram.ice_secure(secure))
if secure:
print "secure mode is now on"
else:
print "secure mode is now off"
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 True
app = Client()
sys.exit(app.main(sys.argv, "config"))
|