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
|
/**
* This file is part of the CRISTAL-iSE kernel.
* Copyright (c) 2001-2014 The CRISTAL Consortium. All rights reserved.
*
* This library is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published
* by the Free Software Foundation; either version 3 of the License, or (at
* your option) any later version.
*
* This library is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; with out even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
* License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this library; if not, write to the Free Software Foundation,
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
*
* http://www.fsf.org/licensing/licenses/lgpl.html
*/
package org.cristalise.kernel.entity.proxy;
import java.util.ArrayList;
import java.util.concurrent.LinkedBlockingQueue;
import org.cristalise.kernel.process.Gateway;
import org.cristalise.kernel.utils.Logger;
import org.cristalise.kernel.utils.server.SimpleTCPIPServer;
public class ProxyServer implements Runnable {
// server objects
ArrayList<ProxyClientConnection> proxyClients;
SimpleTCPIPServer proxyListener = null;
String serverName = null;
boolean keepRunning = true;
LinkedBlockingQueue<ProxyMessage> messageQueue;
public ProxyServer(String serverName) {
Logger.msg(5, "ProxyManager::initServer - Starting.....");
int port = Gateway.getProperties().getInt("ItemServer.Proxy.port", 0);
this.serverName = serverName;
this.proxyClients = new ArrayList<ProxyClientConnection>();
this.messageQueue = new LinkedBlockingQueue<ProxyMessage>();
if (port == 0) {
Logger.error("ItemServer.Proxy.port not defined in connect file. Remote proxies will not be informed of changes.");
return;
}
// set up the proxy server
try {
Logger.msg(5, "ProxyManager::initServer - Initialising proxy informer on port "+port);
proxyListener = new SimpleTCPIPServer(port, ProxyClientConnection.class, 200);
proxyListener.startListening();
} catch (Exception ex) {
Logger.error("Error setting up Proxy Server. Remote proxies will not be informed of changes.");
Logger.error(ex);
}
// start the message queue delivery thread
new Thread(this).start();
}
@Override
public void run() {
while(keepRunning) {
ProxyMessage message = messageQueue.poll();
if (message != null) {
synchronized(proxyClients) {
for (ProxyClientConnection client : proxyClients) {
client.sendMessage(message);
}
}
} else
try {
synchronized(this) {
if (messageQueue.isEmpty()) wait();
}
} catch (InterruptedException e) { }
}
}
public String getServerName() {
return serverName;
}
public void sendProxyEvent(ProxyMessage message) {
try {
synchronized(this) {
messageQueue.put(message);
notify();
}
} catch (InterruptedException e) { }
}
public void reportConnections(int logLevel) {
synchronized(proxyClients) {
Logger.msg(logLevel, "Currently connected proxy clients:");
for (ProxyClientConnection client : proxyClients) {
Logger.msg(logLevel, " "+client);
}
}
}
public void shutdownServer() {
Logger.msg(1, "ProxyManager: Closing Server.");
proxyListener.stopListening();
synchronized(this) {
keepRunning = false;
notify();
}
}
public void registerProxyClient(ProxyClientConnection client) {
synchronized(proxyClients) {
proxyClients.add(client);
}
}
public void unRegisterProxyClient(ProxyClientConnection client) {
synchronized(proxyClients) {
proxyClients.remove(client);
}
}
}
|