blob: 6778794b9c3f1cf1e2b08401388ce60352ac9590 (
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
|
package com.c2kernel.entity.proxy;
import java.util.ArrayList;
import java.util.concurrent.LinkedBlockingQueue;
import com.c2kernel.process.Gateway;
import com.c2kernel.utils.Logger;
import com.c2kernel.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);
}
}
}
|