summaryrefslogtreecommitdiff
path: root/src/main/java/org/cristalise/kernel/entity/proxy/ProxyClientConnection.java
blob: 9f65afa002c23a25f2351c97384e7ddc945b1184 (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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
/**
 * 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.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.InterruptedIOException;
import java.io.PrintWriter;
import java.net.Socket;
import java.net.SocketException;
import java.util.ArrayList;
import java.util.Iterator;

import org.cristalise.kernel.common.InvalidDataException;
import org.cristalise.kernel.lookup.ItemPath;
import org.cristalise.kernel.process.Gateway;
import org.cristalise.kernel.utils.Logger;
import org.cristalise.kernel.utils.server.SocketHandler;


/**************************************************************************
 *
 * $Revision: 1.18 $
 * $Date: 2005/05/10 11:40:09 $
 *
 * Copyright (C) 2003 CERN - European Organization for Nuclear Research
 * All rights reserved.
 **************************************************************************/

public class ProxyClientConnection implements SocketHandler {

	Socket clientSocket = null;
    static int clientId = -1;
    int thisClientId;
    ArrayList<ItemPath> subscribedItems;
    PrintWriter response;
    BufferedReader request;
    boolean closing = false;

    public ProxyClientConnection() {
        super();
        thisClientId = ++clientId;
        Gateway.getProxyServer().registerProxyClient(this);
        Logger.msg(1, "Proxy Client Connection Handler "+thisClientId+" ready.");
    }


    @Override
	public String getName() {
        return "Proxy Client Connection";
    }

    @Override
	public boolean isBusy() {
        return clientSocket != null;
    }

    @Override
	public synchronized void setSocket(Socket newSocket) {
        try {
            Logger.msg(1, "Proxy Client Connection "+thisClientId+" connect from "+newSocket.getInetAddress()+":"+newSocket.getPort());
            newSocket.setSoTimeout(500);
            clientSocket = newSocket;
            response = new PrintWriter(clientSocket.getOutputStream(), true);
            subscribedItems = new ArrayList<ItemPath>();
        } catch (SocketException ex) {
            Logger.msg("Could not set socket timeout:");
            Logger.error(ex);
            closeSocket();
        } catch (IOException ex) {
            Logger.msg("Could not setup output stream:");
            Logger.error(ex);
            closeSocket();
        }
    }

    /**
     * Main loop. Reads proxy commands from the client and acts on them.
     */
    @Override
	public void run() {
        Thread.currentThread().setName("Proxy Client Connection: "+clientSocket.getInetAddress());
        Logger.msg(7, "ProxyClientConnection "+thisClientId+" - Setting up proxy client connection with "+clientSocket.getInetAddress());
        try {
            request = new BufferedReader(new InputStreamReader(clientSocket.getInputStream()));
            String input = null;
            ProxyMessage thisMessage;
            while (clientSocket != null) {
                try {
                    input = request.readLine();
                    Logger.msg(9, "ProxyClientConnection "+thisClientId+" - received "+input);
                    thisMessage = new ProxyMessage(input);
                    processMessage(thisMessage);
                } catch (InterruptedIOException ex) { //timeout
                } catch (InvalidDataException ex) { // invalid proxy message
                    Logger.error("ProxyClientConnection "+thisClientId+" - Invalid proxy message: "+input);
                }

            }
        } catch (IOException ex) {
            if (!closing)
                Logger.error("ProxyClientConnection "+thisClientId+" - Error reading from socket.");
        }
        closeSocket();
        Logger.msg(1, "ProxyClientConnection "+thisClientId+" closed.");
    }

    private void processMessage(ProxyMessage message) throws InvalidDataException {

        // proxy disconnection
        if (message.getPath().equals(ProxyMessage.BYEPATH)) {
            Logger.msg(7, "ProxyClientConnection "+thisClientId+" disconnecting");
            closeSocket();
        }

        // proxy checking connection
        else if (message.getPath().equals(ProxyMessage.PINGPATH))
        response.println(ProxyMessage.pingMessage);

        // new subscription to entity changes
        else if (message.getPath().equals(ProxyMessage.ADDPATH)) {
            Logger.msg(7, "ProxyClientConnection "+thisClientId+" subscribed to "+message.getItemPath());
            synchronized (subscribedItems) {
            	subscribedItems.add(message.getItemPath());
            }
        }

        // remove of subscription to entity changes
        else if (message.getPath().equals(ProxyMessage.DELPATH)) {
            synchronized (subscribedItems) {
            	subscribedItems.remove(message.getItemPath());
            }
            Logger.msg(7, "ProxyClientConnection "+thisClientId+" unsubscribed from "+message.getItemPath());
        }

        else // unknown message
            Logger.error("ProxyClientConnection "+thisClientId+" - Unknown message type: "+message);

    }

    public synchronized void sendMessage(ProxyMessage message) {
        if (clientSocket==null) return; // idle
        boolean relevant = message.getItemPath() == null;
        synchronized (subscribedItems) {
            for (Iterator<ItemPath> iter = subscribedItems.iterator(); iter.hasNext() && !relevant;) {
                ItemPath thisKey = iter.next();
                if (thisKey.equals(message.getItemPath()))
                    relevant = true;
            }
        }
        if (!relevant) return; // not for our client

        response.println(message);
    }

    @Override
	public void shutdown() {
        if (isBusy()) {
            closing = true;
            Logger.msg("ProxyClientConnection "+thisClientId+" closing.");
            closeSocket();
        }
    }

    @Override
	public String toString() {
        if (clientSocket == null) return thisClientId+": idle";
        else return thisClientId+": "+clientSocket.getInetAddress();
    }

    private synchronized void closeSocket() {
        if (clientSocket==null) return;
        try {
            request.close();
            response.close();
            clientSocket.close();
        } catch (IOException e) {
            Logger.error("ProxyClientConnection "+thisClientId+" - Could not close socket.");
            Logger.error(e);
        }
        synchronized (subscribedItems) {
        	subscribedItems = null;
        }

        clientSocket = null;

    }

}