com.eightkdata.mongowp.server.wp.RequestMessageByteHandler.java Source code

Java tutorial

Introduction

Here is the source code for com.eightkdata.mongowp.server.wp.RequestMessageByteHandler.java

Source

/*
 * MongoWP
 * Copyright  2014 8Kdata Technology (www.8kdata.com)
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */

package com.eightkdata.mongowp.server.wp;

import com.eightkdata.mongowp.exceptions.IllegalOperationException;
import com.eightkdata.mongowp.messages.request.RequestBaseMessage;
import com.eightkdata.mongowp.messages.request.RequestOpCode;
import com.eightkdata.mongowp.server.decoder.BaseMessageDecoder;
import com.eightkdata.mongowp.server.decoder.MessageDecoder;
import com.eightkdata.mongowp.server.decoder.MessageDecoderLocator;
import com.eightkdata.mongowp.server.util.ChannelLittleEndianHandler;
import com.google.common.primitives.Ints;
import io.netty.buffer.ByteBuf;
import io.netty.buffer.EmptyByteBuf;
import io.netty.channel.ChannelHandlerContext;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;

import java.util.List;

import javax.inject.Inject;

/**
 *
 */
public class RequestMessageByteHandler extends ChannelLittleEndianHandler {

    private static final Logger LOGGER = LogManager.getLogger(RequestMessageByteHandler.class);
    private static final String INVALID_OPCODE_MESSAGE = "Received and invalid message with opCode ";
    private static final String OPERATION_NOT_IMPLEMENTED = "Message decoder not implemented for opCode ";

    private final MessageDecoderLocator decoderLocator;

    @Inject
    public RequestMessageByteHandler(MessageDecoderLocator decoderLocator) {
        this.decoderLocator = decoderLocator;
    }

    @Override
    protected void decodeLittleEndian(ChannelHandlerContext channelHandlerContext, ByteBuf byteBuf,
            List<Object> objects) throws Exception {
        if (byteBuf instanceof EmptyByteBuf) {
            //TODO: This is a workaround. Check how to prevent calling decode on channel inactive
            return;
        }

        // Header
        final RequestBaseMessage requestBaseMessage = BaseMessageDecoder.decode(channelHandlerContext, byteBuf);
        byteBuf.skipBytes(Ints.BYTES); // Ignore responseTo field in header
        int requestOpCodeInt = byteBuf.readInt();
        RequestOpCode requestOpCode = RequestOpCode.getByOpcode(requestOpCodeInt);
        if (null == requestOpCode) {
            LOGGER.warn(INVALID_OPCODE_MESSAGE + requestOpCodeInt);
            throw new IllegalOperationException(requestOpCodeInt);
        }

        // Body
        MessageDecoder<?> messageDecoder = decoderLocator.getByOpCode(requestOpCode);
        if (null == messageDecoder) {
            LOGGER.error(OPERATION_NOT_IMPLEMENTED + requestOpCode);
            throw new UnsupportedOperationException(OPERATION_NOT_IMPLEMENTED + requestOpCode);
        }

        objects.add(messageDecoder.decode(byteBuf, requestBaseMessage));
    }
}