com.ibasco.agql.protocols.valve.source.query.handlers.SourceRconRequestEncoder.java Source code

Java tutorial

Introduction

Here is the source code for com.ibasco.agql.protocols.valve.source.query.handlers.SourceRconRequestEncoder.java

Source

/*
 * MIT License
 *
 * Copyright (c) 2016 Asynchronous Game Query Library
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NON INFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */

package com.ibasco.agql.protocols.valve.source.query.handlers;

import com.ibasco.agql.core.transport.handlers.AbstractRequestEncoder;
import com.ibasco.agql.protocols.valve.source.query.SourceRconPacket;
import com.ibasco.agql.protocols.valve.source.query.SourceRconPacketBuilder;
import com.ibasco.agql.protocols.valve.source.query.SourceRconRequest;
import com.ibasco.agql.protocols.valve.source.query.packets.request.SourceRconTermRequestPacket;
import com.ibasco.agql.protocols.valve.source.query.request.SourceRconAuthRequest;
import io.netty.buffer.ByteBuf;
import io.netty.buffer.ByteBufUtil;
import io.netty.channel.ChannelHandlerContext;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.util.List;

public class SourceRconRequestEncoder extends AbstractRequestEncoder<SourceRconRequest, SourceRconPacket> {
    private static final Logger log = LoggerFactory.getLogger(SourceRconRequestEncoder.class);

    private boolean sendTerminatorPackets = true;

    public SourceRconRequestEncoder(SourceRconPacketBuilder builder, boolean sendTerminatorPackets) {
        super(builder);
        this.sendTerminatorPackets = sendTerminatorPackets;
    }

    @Override
    protected void encode(ChannelHandlerContext ctx, SourceRconRequest msg, List<Object> out) throws Exception {
        ByteBuf rconRequestPacket = builder.deconstructAsBuffer((SourceRconPacket) msg.getMessage());

        if (log.isDebugEnabled()) {
            log.debug("Encoding Rcon Request: \n{}", ByteBufUtil.prettyHexDump(rconRequestPacket));
        }

        out.add(rconRequestPacket);

        //Send rcon-terminator except if it is an authentication request packet
        if (this.sendTerminatorPackets && !(msg instanceof SourceRconAuthRequest)) {
            ByteBuf terminatorPacket = builder.deconstructAsBuffer(new SourceRconTermRequestPacket());
            log.debug("Sending RCON Terminator ({} bytes): \n{}", terminatorPacket.readableBytes(),
                    ByteBufUtil.prettyHexDump(terminatorPacket));
            out.add(terminatorPacket);
        }
    }
}