/* * Copyright (c) 2017, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. * * WSO2 Inc. licenses this file to you 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. */ package org.wso2.carbon.transport.http.netty.contentaware; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.wso2.carbon.messaging.CarbonCallback; import org.wso2.carbon.messaging.CarbonMessage; import org.wso2.carbon.messaging.CarbonMessageProcessor; import org.wso2.carbon.messaging.ClientConnector; import org.wso2.carbon.messaging.TransportSender; import org.wso2.carbon.messaging.exceptions.ClientConnectorException; import org.wso2.carbon.transport.http.netty.common.Constants; import org.wso2.carbon.transport.http.netty.util.TestUtil; import java.io.IOException; import java.io.UnsupportedEncodingException; import java.nio.ByteBuffer; import java.util.List; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; /** * Transform message in request and response path */ public class RequestResponseTransformProcessor implements CarbonMessageProcessor { private static final Logger logger = LoggerFactory.getLogger(RequestResponseTransformProcessor.class); private ExecutorService executor = Executors.newSingleThreadExecutor(); private String responseValue; private ClientConnector clientConnector; public RequestResponseTransformProcessor(String responseValue) { this.responseValue = responseValue; } @Override public boolean receive(CarbonMessage carbonMessage, CarbonCallback carbonCallback) throws Exception { executor.execute(new Runnable() { @Override public void run() { try { if (carbonMessage.getProperty(org.wso2.carbon.messaging.Constants.DIRECTION) != null && carbonMessage.getProperty(org.wso2.carbon.messaging.Constants.DIRECTION) .equals(org.wso2.carbon.messaging.Constants.DIRECTION_RESPONSE)) { carbonCallback.done(carbonMessage); } else { int length = carbonMessage.getFullMessageLength(); List<ByteBuffer> byteBufferList = carbonMessage.getFullMessageBody(); ByteBuffer byteBuff = ByteBuffer.allocate(length); byteBufferList.forEach(buf -> byteBuff.put(buf)); String requestValue = new String(byteBuff.array()); carbonMessage.setProperty(Constants.HOST, TestUtil.TEST_HOST); carbonMessage.setProperty(Constants.PORT, TestUtil.TEST_SERVER_PORT); if (responseValue != null) { byte[] array = responseValue.getBytes("UTF-8"); ByteBuffer byteBuffer = ByteBuffer.allocate(array.length); byteBuffer.put(array); carbonMessage.setHeader(Constants.HTTP_CONTENT_LENGTH, String.valueOf(array.length)); byteBuffer.flip(); carbonMessage.addMessageBody(byteBuffer); carbonMessage.setEndOfMsgAdded(true); EngineCallBack engineCallBack = new EngineCallBack(requestValue, carbonCallback); clientConnector.send(carbonMessage, engineCallBack); } } } catch (IOException e) { logger.error("Error while reading stream", e); } catch (ClientConnectorException e) { logger.error("MessageProcessor is not supported ", e); } } }); return false; } @Override public void setTransportSender(TransportSender transportSender) { } @Override public void setClientConnector(ClientConnector clientConnector) { this.clientConnector = clientConnector; } @Override public String getId() { return null; } private class EngineCallBack implements CarbonCallback { String requestValue = "test"; CarbonCallback requestCallBack; EngineCallBack(String requestValue, CarbonCallback carbonCallback) { this.requestValue = requestValue; requestCallBack = carbonCallback; } @Override public void done(CarbonMessage carbonMessage) { int length = carbonMessage.getFullMessageLength(); List<ByteBuffer> byteBufferList = carbonMessage.getFullMessageBody(); ByteBuffer byteBuffer = ByteBuffer.allocate(length); byteBufferList.forEach(buf -> byteBuffer.put(buf)); String responseValue = new String(byteBuffer.array()) + ":" + requestValue; if (requestValue != null) { byte[] array = new byte[0]; try { array = responseValue.getBytes("UTF-8"); } catch (UnsupportedEncodingException e) { } ByteBuffer byteBuff = ByteBuffer.allocate(array.length); byteBuff.put(array); carbonMessage.setHeader(Constants.HTTP_CONTENT_LENGTH, String.valueOf(array.length)); byteBuff.flip(); carbonMessage.addMessageBody(byteBuff); carbonMessage.setEndOfMsgAdded(true); requestCallBack.done(carbonMessage); } } } }