blob: 738f05dee19e4ef1da432f92c772e32175f30503 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2014 Xored Software Inc 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:
* Xored Software Inc - initial API and implementation and/or initial documentation
*******************************************************************************/
package org.eclipse.rcptt.ecl.server.tcp;
import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.net.Socket;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import org.eclipse.emf.ecore.util.EcoreUtil;
import org.eclipse.rcptt.ecl.internal.core.CorePlugin;
public class SessionManager {
private ExecutorService executor;
int count = 0;
private boolean useJobs = false;;
public SessionManager(boolean useJobs) {
executor = Executors.newCachedThreadPool();
this.useJobs = useJobs;
}
public void acceptNewConnection(Socket client) throws IOException {
count++;
String uuid = initRecover(client);
if (uuid != null) {
executor.execute(new SessionRequestHandler(client, useJobs));
} else {
client.close();
}
}
private String initRecover(Socket client) throws IOException {
InputStream stream = client.getInputStream();
DataInputStream din = new DataInputStream(stream);
DataOutputStream dout = new DataOutputStream(client.getOutputStream());
String utf = din.readUTF();
if ("newsession".equals(utf)) {
String uuid = EcoreUtil.generateUUID();
uuid = EcoreUtil.generateUUID();
dout.writeUTF(uuid);
dout.flush();
return uuid;
}
return null;
}
}