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
|
#!/usr/bin/env python
# **********************************************************************
#
# Copyright (c) 2003-2008 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 os, sys, traceback, threading, Ice
slice_dir = Ice.getSliceDir()
if not slice_dir:
print sys.argv[0] + ': Slice directory not found.'
sys.exit(1)
Ice.loadSlice('-I' + slice_dir + ' Callback.ice')
import Demo
class CallbackSenderI(Demo.CallbackSender, threading.Thread):
def __init__(self, communicator):
threading.Thread.__init__(self)
self._communicator = communicator
self._destroy = False
self._clients = []
self._cond = threading.Condition()
def destroy(self):
self._cond.acquire()
print "destroying callback sender"
self._destroy = True
try:
self._cond.notify()
finally:
self._cond.release()
self.join()
def addClient(self, ident, current=None):
self._cond.acquire()
print "adding client `" + self._communicator.identityToString(ident) + "'"
client = Demo.CallbackReceiverPrx.uncheckedCast(current.con.createProxy(ident))
self._clients.append(client)
self._cond.release()
def run(self):
num = 0
while True:
self._cond.acquire()
try:
self._cond.wait(2)
if self._destroy:
break
clients = self._clients[:]
finally:
self._cond.release()
if len(clients) > 0:
num = num + 1
for p in clients:
try:
p.callback(num)
except:
print "removing client `" + self._communicator.identityToString(p.ice_getIdentity()) + "':"
traceback.print_exc()
self._cond.acquire()
try:
self._clients.remove(p)
finally:
self._cond.release()
class Server(Ice.Application):
def run(self, args):
if len(args) > 1:
print self.appName() + ": too many arguments"
return 1
adapter = self.communicator().createObjectAdapter("Callback.Server")
sender = CallbackSenderI(self.communicator())
adapter.add(sender, self.communicator().stringToIdentity("sender"))
adapter.activate()
sender.start()
try:
self.communicator().waitForShutdown()
finally:
sender.destroy()
return 0
app = Server()
sys.exit(app.main(sys.argv, "config.server"))
|