io.joynr.messaging.websocket.WebSocketMessagingSkeleton Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of validator Show documentation
Show all versions of validator Show documentation
An HTML-checking library (used by https://html5.validator.nu and the HTML5 facet of the W3C Validator)
The newest version!
/*
* #%L
* %%
* Copyright (C) 2011 - 2017 BMW Car IT GmbH
* %%
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* #L%
*/
package io.joynr.messaging.websocket;
import java.util.Arrays;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.google.inject.Inject;
import com.google.inject.name.Named;
import io.joynr.messaging.FailureAction;
import io.joynr.messaging.JoynrMessageProcessor;
import io.joynr.messaging.routing.MessageRouter;
import joynr.ImmutableMessage;
import joynr.Message;
import joynr.system.RoutingTypes.WebSocketAddress;
public class WebSocketMessagingSkeleton implements IWebSocketMessagingSkeleton {
private static final Logger logger = LoggerFactory.getLogger(WebSocketMessagingSkeleton.class);
public final static String WEBSOCKET_IS_MAIN_TRANSPORT = "io.joynr.websocket.is.main.transport";
public final static List MESSAGE_TYPE_REQUESTS = Collections.unmodifiableList(Arrays.asList(Message.MessageType.VALUE_MESSAGE_TYPE_REQUEST,
Message.MessageType.VALUE_MESSAGE_TYPE_SUBSCRIPTION_REQUEST,
Message.MessageType.VALUE_MESSAGE_TYPE_BROADCAST_SUBSCRIPTION_REQUEST,
Message.MessageType.VALUE_MESSAGE_TYPE_MULTICAST_SUBSCRIPTION_REQUEST));
private MessageRouter messageRouter;
private JoynrWebSocketEndpoint webSocketEndpoint;
private WebSocketEndpointFactory webSocketEndpointFactory;
private WebSocketAddress serverAddress;
private boolean mainTransport;
private Set messageProcessors;
public static class MainTransportFlagBearer {
@Inject(optional = true)
@Named(WEBSOCKET_IS_MAIN_TRANSPORT)
private Boolean mainTransport;
public MainTransportFlagBearer() {
}
protected MainTransportFlagBearer(Boolean mainTransport) {
this.mainTransport = mainTransport;
}
public boolean isMainTransport() {
return Boolean.TRUE.equals(mainTransport);
}
}
@Inject
public WebSocketMessagingSkeleton(@Named(WebsocketModule.WEBSOCKET_SERVER_ADDRESS) WebSocketAddress serverAddress,
WebSocketEndpointFactory webSocketEndpointFactory,
MessageRouter messageRouter,
MainTransportFlagBearer mainTransportFlagBearer,
Set messageProcessors) {
this.serverAddress = (serverAddress != null) ? new WebSocketAddress(serverAddress) : null;
this.webSocketEndpointFactory = webSocketEndpointFactory;
this.messageRouter = messageRouter;
this.mainTransport = mainTransportFlagBearer.isMainTransport();
this.messageProcessors = (messageProcessors != null) ? new HashSet<>(messageProcessors) : null;
}
@Override
public void init() {
logger.debug("Initializing Websocket skeleton ...");
webSocketEndpoint = webSocketEndpointFactory.create(serverAddress);
webSocketEndpoint.setMessageListener(this);
webSocketEndpoint.start();
logger.debug("WebSocketEndpoint started");
}
@Override
public void transmit(byte[] serializedMessage, FailureAction failureAction) {
try {
ImmutableMessage message = new ImmutableMessage(serializedMessage);
if (logger.isTraceEnabled()) {
logger.trace("<<< INCOMING <<< {}", message);
} else {
logger.debug("<<< INCOMING <<< {}", message.getTrackingInfo());
}
if (messageProcessors != null) {
for (JoynrMessageProcessor processor : messageProcessors) {
message = processor.processIncoming(message);
}
}
if (this.isMainTransport()) {
/*
* On LibJoynr side, prevent message loops by marking the messages as
* received from global. The LibJoynrMessageRouter prevents sending
* back the message to the CC.
*/
message.setReceivedFromGlobal(true);
}
messageRouter.routeIn(message);
} catch (Exception error) {
failureAction.execute(error);
}
}
@Override
public void shutdown() {
if (webSocketEndpoint != null) {
webSocketEndpoint.shutdown();
}
}
private boolean isMainTransport() {
return mainTransport;
}
}
© 2015 - 2026 Weber Informatics LLC | Privacy Policy