blob: f3d7a00651e45442f753cdbbccab41d621c673dc [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 IBM Corporation and others All rights reserved. This
* program and the accompanying materials are made available under the terms of
* the Eclipse Public License v1.0 which accompanies this distribution, and is
* available at http://www.eclipse.org/legal/epl-v10.html
*
* Contributors: IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.wst.jsdt.debug.internal.rhino.transport;
import java.io.EOFException;
import java.io.IOException;
import java.io.Reader;
import java.io.Writer;
import java.net.Socket;
import java.util.Map;
import org.eclipse.wst.jsdt.debug.transport.Connection;
import org.eclipse.wst.jsdt.debug.transport.packet.Packet;
import org.eclipse.wst.jsdt.debug.transport.socket.SocketConnection;
/**
* A specialized {@link Connection} that communicates using {@link Socket}s
*
* @since 1.0
*/
public class RhinoSocketConnection extends SocketConnection {
/**
* Constructor
*
* @param socket the underlying {@link Socket}, <code>null</code> is not accepted
*
* @throws IOException
*/
public RhinoSocketConnection(Socket socket) throws IOException {
super(socket);
}
/* (non-Javadoc)
* @see org.eclipse.wst.jsdt.debug.transport.socket.SocketConnection#writePacket(org.eclipse.wst.jsdt.debug.transport.packet.Packet)
*/
public void writePacket(Packet packet) throws IOException {
String jsonString = JSONUtil.write(packet.toJSON());
String count = Integer.toString(jsonString.length());
Writer writer = getWriter();
writer.write(count);
writer.write('\r');
writer.write('\n');
writer.write(jsonString);
writer.flush();
}
/* (non-Javadoc)
* @see org.eclipse.wst.jsdt.debug.transport.socket.SocketConnection#readPacket()
*/
public Packet readPacket() throws IOException {
if(!isOpen()) {
throw new IOException("Failed to read more packets: the socket is closed"); //$NON-NLS-1$
}
StringBuffer buffer = new StringBuffer();
int c;
Reader reader = getReader();
while ((c = reader.read()) != -1) {
if (c == '\r')
break;
buffer.append((char) c);
if (buffer.length() > 10) {
throw new IOException("Invalid content length: " + buffer.toString()); //$NON-NLS-1$
}
}
int length = 0;
try {
length = Integer.parseInt(buffer.toString());
} catch (NumberFormatException e) {
throw new IOException("Failed to parse content length: " + buffer.toString()); //$NON-NLS-1$
}
if ('\r' != c || '\n' != (char) reader.read())
throw new IOException("Missing CRLF after content length"); //$NON-NLS-1$
char[] message = new char[length];
int n = 0;
int off = 0;
while (n < length) {
int count = reader.read(message, off + n, length - n);
if (count < 0)
throw new EOFException();
n += count;
}
Map json = (Map) JSONUtil.read(new String(message));
String type = RhinoPacket.getType(json);
if (EventPacket.TYPE.equals(type))
return new EventPacket(json);
if (JSONConstants.REQUEST.equals(type))
return new RhinoRequest(json);
if (JSONConstants.RESPONSE.equals(type))
return new RhinoResponse(json);
throw new IOException("Unknown packet type: " + type); //$NON-NLS-1$
}
}