Skip to content
Snippets Groups Projects
Commit f0f23e3b authored by brinn's avatar brinn
Browse files

Refactor for server/client/shared package structure.

SVN: 24023
parent b392e927
No related branches found
No related tags found
No related merge requests found
Showing
with 55 additions and 17 deletions
...@@ -27,12 +27,12 @@ import java.io.Serializable; ...@@ -27,12 +27,12 @@ import java.io.Serializable;
public interface IServiceMessenger public interface IServiceMessenger
{ {
/** /**
* Send a message to the client. * Send a message to the counter part.
*/ */
public void send(Serializable message); public void send(Serializable message);
/** /**
* Receive a message from the client. * Receive a message from the counter part.
*/ */
public <T extends Serializable> T receive(Class<T> messageClass); public <T extends Serializable> T receive(Class<T> messageClass);
} }
...@@ -31,7 +31,7 @@ public class ServiceConversationDTO implements Serializable ...@@ -31,7 +31,7 @@ public class ServiceConversationDTO implements Serializable
private int clientTimeoutInMillis; private int clientTimeoutInMillis;
ServiceConversationDTO(String serviceConversationId, int clientTimeout) public ServiceConversationDTO(String serviceConversationId, int clientTimeout)
{ {
this.serviceConversationId = serviceConversationId; this.serviceConversationId = serviceConversationId;
this.clientTimeoutInMillis = clientTimeout; this.clientTimeoutInMillis = clientTimeout;
......
...@@ -14,12 +14,16 @@ ...@@ -14,12 +14,16 @@
* limitations under the License. * limitations under the License.
*/ */
package ch.systemsx.cisd.common.serviceconversation; package ch.systemsx.cisd.common.serviceconversation.client;
import java.io.Serializable; import java.io.Serializable;
import ch.systemsx.cisd.base.exceptions.CheckedExceptionTunnel; import ch.systemsx.cisd.base.exceptions.CheckedExceptionTunnel;
import ch.systemsx.cisd.base.exceptions.TimeoutExceptionUnchecked; import ch.systemsx.cisd.base.exceptions.TimeoutExceptionUnchecked;
import ch.systemsx.cisd.common.serviceconversation.IServiceMessageTransport;
import ch.systemsx.cisd.common.serviceconversation.ServiceConversationDTO;
import ch.systemsx.cisd.common.serviceconversation.ServiceMessage;
import ch.systemsx.cisd.common.serviceconversation.UnexpectedMessagePayloadException;
/** /**
* A class that a client can use to receive messages from a service. * A class that a client can use to receive messages from a service.
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
* limitations under the License. * limitations under the License.
*/ */
package ch.systemsx.cisd.common.serviceconversation; package ch.systemsx.cisd.common.serviceconversation.client;
import java.util.Map; import java.util.Map;
import java.util.concurrent.ConcurrentHashMap; import java.util.concurrent.ConcurrentHashMap;
...@@ -23,6 +23,9 @@ import org.apache.log4j.Logger; ...@@ -23,6 +23,9 @@ import org.apache.log4j.Logger;
import ch.systemsx.cisd.common.logging.LogCategory; import ch.systemsx.cisd.common.logging.LogCategory;
import ch.systemsx.cisd.common.logging.LogFactory; import ch.systemsx.cisd.common.logging.LogFactory;
import ch.systemsx.cisd.common.serviceconversation.IServiceMessageTransport;
import ch.systemsx.cisd.common.serviceconversation.ServiceMessage;
import ch.systemsx.cisd.common.serviceconversation.UnknownServiceConversationException;
/** /**
* A client-side multiplexer for incoming messages from the server. * A client-side multiplexer for incoming messages from the server.
......
...@@ -14,12 +14,15 @@ ...@@ -14,12 +14,15 @@
* limitations under the License. * limitations under the License.
*/ */
package ch.systemsx.cisd.common.serviceconversation; package ch.systemsx.cisd.common.serviceconversation.client;
import java.util.concurrent.BlockingQueue; import java.util.concurrent.BlockingQueue;
import java.util.concurrent.LinkedBlockingQueue; import java.util.concurrent.LinkedBlockingQueue;
import java.util.concurrent.TimeUnit; import java.util.concurrent.TimeUnit;
import ch.systemsx.cisd.common.serviceconversation.IServiceMessageTransport;
import ch.systemsx.cisd.common.serviceconversation.ServiceMessage;
/** /**
* A class that holds a queue for response messages to a client. * A class that holds a queue for response messages to a client.
* *
......
...@@ -14,7 +14,9 @@ ...@@ -14,7 +14,9 @@
* limitations under the License. * limitations under the License.
*/ */
package ch.systemsx.cisd.common.serviceconversation; package ch.systemsx.cisd.common.serviceconversation.client;
import ch.systemsx.cisd.common.serviceconversation.ServiceConversationDTO;
/** /**
* A remote role for starting a service conversation. * A remote role for starting a service conversation.
......
...@@ -14,17 +14,19 @@ ...@@ -14,17 +14,19 @@
* limitations under the License. * limitations under the License.
*/ */
package ch.systemsx.cisd.common.serviceconversation; package ch.systemsx.cisd.common.serviceconversation.client;
import java.io.Closeable; import java.io.Closeable;
import java.io.Serializable; import java.io.Serializable;
import ch.systemsx.cisd.common.serviceconversation.IServiceMessenger;
/** /**
* The service conversation. * The service conversation.
* *
* @author Bernd Rinn * @author Bernd Rinn
*/ */
public interface IServiceConversation extends Closeable public interface IServiceConversation extends IServiceMessenger, Closeable
{ {
/** /**
* Returns the service conversation id. * Returns the service conversation id.
......
...@@ -14,7 +14,10 @@ ...@@ -14,7 +14,10 @@
* limitations under the License. * limitations under the License.
*/ */
package ch.systemsx.cisd.common.serviceconversation; package ch.systemsx.cisd.common.serviceconversation.client;
import ch.systemsx.cisd.common.serviceconversation.IServiceMessageTransport;
import ch.systemsx.cisd.common.serviceconversation.ServiceConversationDTO;
/** /**
* The client for the service conversations. * The client for the service conversations.
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
* limitations under the License. * limitations under the License.
*/ */
package ch.systemsx.cisd.common.serviceconversation; package ch.systemsx.cisd.common.serviceconversation.client;
import java.io.PrintStream; import java.io.PrintStream;
import java.io.PrintWriter; import java.io.PrintWriter;
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
* limitations under the License. * limitations under the License.
*/ */
package ch.systemsx.cisd.common.serviceconversation; package ch.systemsx.cisd.common.serviceconversation.server;
import java.io.Serializable; import java.io.Serializable;
import java.util.concurrent.BlockingQueue; import java.util.concurrent.BlockingQueue;
...@@ -25,6 +25,10 @@ import java.util.concurrent.atomic.AtomicBoolean; ...@@ -25,6 +25,10 @@ import java.util.concurrent.atomic.AtomicBoolean;
import ch.systemsx.cisd.base.exceptions.CheckedExceptionTunnel; import ch.systemsx.cisd.base.exceptions.CheckedExceptionTunnel;
import ch.systemsx.cisd.base.exceptions.InterruptedExceptionUnchecked; import ch.systemsx.cisd.base.exceptions.InterruptedExceptionUnchecked;
import ch.systemsx.cisd.base.exceptions.TimeoutExceptionUnchecked; import ch.systemsx.cisd.base.exceptions.TimeoutExceptionUnchecked;
import ch.systemsx.cisd.common.serviceconversation.IServiceMessageTransport;
import ch.systemsx.cisd.common.serviceconversation.IServiceMessenger;
import ch.systemsx.cisd.common.serviceconversation.ServiceMessage;
import ch.systemsx.cisd.common.serviceconversation.UnexpectedMessagePayloadException;
/** /**
* A bidirectional messenger on the server side. * A bidirectional messenger on the server side.
......
...@@ -14,7 +14,9 @@ ...@@ -14,7 +14,9 @@
* limitations under the License. * limitations under the License.
*/ */
package ch.systemsx.cisd.common.serviceconversation; package ch.systemsx.cisd.common.serviceconversation.server;
import ch.systemsx.cisd.common.serviceconversation.IServiceMessenger;
/** /**
* The interface for a service that can participate in a service conversation. * The interface for a service that can participate in a service conversation.
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
* limitations under the License. * limitations under the License.
*/ */
package ch.systemsx.cisd.common.serviceconversation; package ch.systemsx.cisd.common.serviceconversation.server;
/** /**
* A factory for services. * A factory for services.
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
* limitations under the License. * limitations under the License.
*/ */
package ch.systemsx.cisd.common.serviceconversation; package ch.systemsx.cisd.common.serviceconversation.server;
import ch.systemsx.cisd.common.concurrent.ITerminableFuture; import ch.systemsx.cisd.common.concurrent.ITerminableFuture;
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
* limitations under the License. * limitations under the License.
*/ */
package ch.systemsx.cisd.common.serviceconversation; package ch.systemsx.cisd.common.serviceconversation.server;
import java.util.Map; import java.util.Map;
import java.util.Random; import java.util.Random;
...@@ -33,6 +33,12 @@ import ch.systemsx.cisd.common.concurrent.TerminableCallable.ICallable; ...@@ -33,6 +33,12 @@ import ch.systemsx.cisd.common.concurrent.TerminableCallable.ICallable;
import ch.systemsx.cisd.common.concurrent.TerminableCallable.IStoppableExecutor; import ch.systemsx.cisd.common.concurrent.TerminableCallable.IStoppableExecutor;
import ch.systemsx.cisd.common.logging.LogCategory; import ch.systemsx.cisd.common.logging.LogCategory;
import ch.systemsx.cisd.common.logging.LogFactory; import ch.systemsx.cisd.common.logging.LogFactory;
import ch.systemsx.cisd.common.serviceconversation.IServiceMessageTransport;
import ch.systemsx.cisd.common.serviceconversation.ServiceConversationDTO;
import ch.systemsx.cisd.common.serviceconversation.ServiceMessage;
import ch.systemsx.cisd.common.serviceconversation.UnknownClientException;
import ch.systemsx.cisd.common.serviceconversation.UnknownServiceTypeException;
import ch.systemsx.cisd.common.serviceconversation.client.ServiceExecutionException;
/** /**
* A collection of service conversations. * A collection of service conversations.
...@@ -169,7 +175,9 @@ public class ServiceConversationServer ...@@ -169,7 +175,9 @@ public class ServiceConversationServer
final IServiceMessageTransport responseMessenger = responseMessageMap.get(clientId); final IServiceMessageTransport responseMessenger = responseMessageMap.get(clientId);
if (responseMessenger == null) if (responseMessenger == null)
{ {
throw new UnknownClientException(clientId); final UnknownClientException ex = new UnknownClientException(clientId);
operationLog.error(ex.getMessage());
throw ex;
} }
final IService serviceInstance = serviceFactory.create(); final IService serviceInstance = serviceFactory.create();
final String serviceConversationId = final String serviceConversationId =
......
...@@ -32,6 +32,13 @@ import ch.systemsx.cisd.base.exceptions.InterruptedExceptionUnchecked; ...@@ -32,6 +32,13 @@ import ch.systemsx.cisd.base.exceptions.InterruptedExceptionUnchecked;
import ch.systemsx.cisd.base.exceptions.TimeoutExceptionUnchecked; import ch.systemsx.cisd.base.exceptions.TimeoutExceptionUnchecked;
import ch.systemsx.cisd.common.concurrent.ConcurrencyUtilities; import ch.systemsx.cisd.common.concurrent.ConcurrencyUtilities;
import ch.systemsx.cisd.common.logging.LogInitializer; import ch.systemsx.cisd.common.logging.LogInitializer;
import ch.systemsx.cisd.common.serviceconversation.client.IRemoteServiceConversationServer;
import ch.systemsx.cisd.common.serviceconversation.client.IServiceConversation;
import ch.systemsx.cisd.common.serviceconversation.client.ServiceConversationClient;
import ch.systemsx.cisd.common.serviceconversation.client.ServiceExecutionException;
import ch.systemsx.cisd.common.serviceconversation.server.IService;
import ch.systemsx.cisd.common.serviceconversation.server.IServiceFactory;
import ch.systemsx.cisd.common.serviceconversation.server.ServiceConversationServer;
/** /**
* Test cases for the {@Link ServiceConversationCollection} class. * Test cases for the {@Link ServiceConversationCollection} class.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment