Communication
Since version 7 Microstream provides a module for simple object based network communication over TCP connections.
This module utilizes the Microstream engine to serialize and deserialize java objects and provides additional APIs to setup the required TCP connections.
Prerequisites
If using Maven just add module microstream-communication-binary into your pom.xml dependencies.
<dependencies>
<dependency>
<groupId>one.microstream</groupId>
<artifactId>microstream-communication-binary</artifactId>
<version>08.01.02-MS-GA</version>
</dependency>
</dependencies>
Hello World
The Hello World example consists out of two applications. The Host and the Client application. The Host will open a network port and listen for incoming connections of the client. If a client connects successfully it awaits data from the client that will be send back to the client. The basic example won’t do any configuration so the connection is not secured and the client and host use the local system address at port 1099.
Host
public class EchoServer
{
public static void main(final String[] args)
{
final ComHost<?> host = ComBinaryDynamic.Foundation()
.setHostChannelAcceptor(channel ->
{
final Object received = channel.receive();
System.out.println("received: " + received);
channel.send(received);
})
.createHost();
// run the host, making it constantly listen for new connections and relaying them to the logic
host.run();
}
}
Client
public class EchoClient
{
public static void main(final String[] args)
{
//create the client
final ComClient<?> client = ComBinaryDynamic.Foundation()
.createClient();
//connect to the host and communicate
try(final ComChannel channel = client.connect())
{
channel.send("Hello Host");
final Object received = channel.receive();
System.out.println("received: " + received);
}
}
}
Configuration
Configuration of host and client is done using the ComFoundation.Default
implementation of the ComFoundation
interface.
To get a preconfigured foundation instance the classes ComBinaryDynamic
and ComBinary
provide the convenient method Foundation()
.
ComBinaryDynamic and ComBinary
The Object communication of Microstream is available in two flavors: Dynamic and non dynamic.
They differ in the way classes that should be serialized and transfered are handled:
The non dynamic version requires all classes that should be transfered to be registered at initialization time.
This can be done with the registerEntityType
methods of the ComFoundation
.
If a transfered object graph references any unregistered class an exception will occur!
The dynamic implementation automatically registers all classes that are part of the communication at runtime. It will also do a type-mapping if classes with the same name have different implementations on client and host.
Common configuration values
host binding address |
client target address |
port only |
registering entity types |
TLS
In order to use TLS encrypted communication you need to setup a ComTLSConnectionHandler
and supply it
using ComFoundation.setConnectionHandler(ComConnectionHandler<C>)
.
The default implementation of the ComTLSConnectionHandler uses the java SSLEngine .
The required configuration elements have to be provided using either the provided implementations of the
TLSKeyManagerProvider
,
TLSTrustManagerProvider
,
TLSParametersProvider
and
SecureRandomProvider
interfaces or by custom implementations.
public class EchoServerTLS
{
public static void main(final String[] args)
{
Path serverKeyStore = Paths.get(args[0]);
Path serverTrustStore = Paths.get(args[1]);
char[] serverKeyStorePassword = args[2].toCharArray();
char[] serverTrustStorePassword = args[2].toCharArray();
final ComHost<?> host = ComBinaryDynamic.Foundation()
.setConnectionHandler(ComTLSConnectionHandler.New(
new TLSKeyManagerProvider.PKCS12(
serverKeyStore,
serverKeyStorePassword),
new TLSTrustManagerProvider.PKCS12(
serverTrustStore,
serverTrustStorePassword),
new TLSParametersProvider.Default(),
new SecureRandomProvider.Default()
))
.setHostChannelAcceptor(channel ->
{
final Object received = channel.receive();
System.out.println("received: " + received);
channel.send(received);
})
.createHost();
// run the host, making it constantly listen for new connections and relaying them to the logic
host.run();
}
}
The provided implementations are:
one.microstream.communication.tls.TLSKeyManagerProvider.Default |
one.microstream.communication.tls.TLSKeyManagerProvider.PKCS12 |
one.microstream.communication.tls.TLSTrustManagerProvider.Default |
one.microstream.communication.tls.TLSTrustManagerProvider.PKCS12 |
one.microstream.communication.tls.TLSParametersProvider.Default |
one.microstream.communication.tls.SecureRandomProvider.Default |