com.codnos.dbgp.internal.impl.DBGpEngineImpl.java Source code

Java tutorial

Introduction

Here is the source code for com.codnos.dbgp.internal.impl.DBGpEngineImpl.java

Source

/*
 * Copyright 2016 Codnos Ltd.
 *
 * 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.
 */

package com.codnos.dbgp.internal.impl;

import com.codnos.dbgp.api.DBGpEngine;
import com.codnos.dbgp.api.DebuggerEngine;
import com.codnos.dbgp.internal.arguments.ArgumentConfiguration;
import com.codnos.dbgp.internal.commands.Init;
import com.codnos.dbgp.internal.commands.breakpoint.BreakpointGetCommandHandler;
import com.codnos.dbgp.internal.commands.breakpoint.BreakpointRemoveCommandHandler;
import com.codnos.dbgp.internal.commands.breakpoint.BreakpointSetCommandHandler;
import com.codnos.dbgp.internal.commands.breakpoint.BreakpointUpdateCommandHandler;
import com.codnos.dbgp.internal.commands.context.ContextGetCommandHandler;
import com.codnos.dbgp.internal.commands.eval.EvalCommandHandler;
import com.codnos.dbgp.internal.commands.run.BreakNowCommandHandler;
import com.codnos.dbgp.internal.commands.run.RunCommandHandler;
import com.codnos.dbgp.internal.commands.stack.StackDepthCommandHandler;
import com.codnos.dbgp.internal.commands.stack.StackGetCommandHandler;
import com.codnos.dbgp.internal.commands.status.StatusCommandHandler;
import com.codnos.dbgp.internal.commands.step.StepIntoCommandHandler;
import com.codnos.dbgp.internal.commands.step.StepOutCommandHandler;
import com.codnos.dbgp.internal.commands.step.StepOverCommandHandler;
import com.codnos.dbgp.internal.handlers.DBGpCommandDecoder;
import com.codnos.dbgp.internal.handlers.DBGpInitHandler;
import com.codnos.dbgp.internal.handlers.DBGpResponseEncoder;
import io.netty.bootstrap.Bootstrap;
import io.netty.channel.ChannelInitializer;
import io.netty.channel.ChannelOption;
import io.netty.channel.EventLoopGroup;
import io.netty.channel.nio.NioEventLoopGroup;
import io.netty.channel.socket.SocketChannel;
import io.netty.channel.socket.nio.NioSocketChannel;

import static com.codnos.dbgp.internal.arguments.ArgumentConfiguration.Builder.configuration;
import static com.codnos.dbgp.internal.arguments.ArgumentFormat.bool;
import static com.codnos.dbgp.internal.arguments.ArgumentFormat.numeric;
import static com.codnos.dbgp.internal.arguments.ArgumentFormat.string;

public class DBGpEngineImpl implements DBGpEngine {
    private final int port;
    private final DebuggerEngine debuggerEngine;
    private final StatusChangeHandlerFactory statusChangeHandlerFactory;
    private final ArgumentConfiguration argumentConfiguration = configuration()
            .withCommand("breakpoint_set", numeric("i"), string("t"), string("f"), numeric("n"), bool("r"),
                    string("-"))
            .withCommand("breakpoint_remove", numeric("i"), string("d"))
            .withCommand("breakpoint_get", numeric("i"), string("d"))
            .withCommand("breakpoint_update", numeric("i"), string("d"), string("s"))
            .withCommand("run", numeric("i")).withCommand("context_get", numeric("i"), numeric("d"))
            .withCommand("stack_depth", numeric("i")).withCommand("stack_get", numeric("i"), numeric("d"))
            .withCommand("status", numeric("i")).withCommand("step_over", numeric("i"))
            .withCommand("step_into", numeric("i")).withCommand("step_out", numeric("i"))
            .withCommand("break", numeric("i")).withCommand("eval", numeric("i"), numeric("d"), string("-"))
            .build();
    private EventLoopGroup workerGroup;

    public DBGpEngineImpl(int port, DebuggerEngine debuggerEngine,
            StatusChangeHandlerFactory statusChangeHandlerFactory) {
        this.port = port;
        this.debuggerEngine = debuggerEngine;
        this.statusChangeHandlerFactory = statusChangeHandlerFactory;
    }

    @Override
    public void connect() throws InterruptedException {
        workerGroup = new NioEventLoopGroup();
        connectToIde(workerGroup);
    }

    private void connectToIde(EventLoopGroup workerGroup) throws InterruptedException {
        Bootstrap b = new Bootstrap();
        b.group(workerGroup);
        b.channel(NioSocketChannel.class);
        b.option(ChannelOption.SO_KEEPALIVE, true);
        b.handler(new ChannelInitializer<SocketChannel>() {
            @Override
            public void initChannel(SocketChannel ch) throws Exception {
                ch.pipeline().addLast(new DBGpInitHandler(new Init(debuggerEngine)), new DBGpCommandDecoder(),
                        new DBGpResponseEncoder(),
                        new BreakpointSetCommandHandler(debuggerEngine, argumentConfiguration),
                        new BreakpointGetCommandHandler(debuggerEngine, argumentConfiguration),
                        new BreakpointRemoveCommandHandler(debuggerEngine, argumentConfiguration),
                        new BreakpointUpdateCommandHandler(debuggerEngine, argumentConfiguration),
                        new StackDepthCommandHandler(debuggerEngine, argumentConfiguration),
                        new RunCommandHandler(debuggerEngine, statusChangeHandlerFactory, argumentConfiguration),
                        new StepOverCommandHandler(debuggerEngine, statusChangeHandlerFactory,
                                argumentConfiguration),
                        new StepIntoCommandHandler(debuggerEngine, statusChangeHandlerFactory,
                                argumentConfiguration),
                        new StepOutCommandHandler(debuggerEngine, statusChangeHandlerFactory,
                                argumentConfiguration),
                        new StackGetCommandHandler(debuggerEngine, argumentConfiguration),
                        new ContextGetCommandHandler(debuggerEngine, argumentConfiguration),
                        new StatusCommandHandler(debuggerEngine, argumentConfiguration),
                        new BreakNowCommandHandler(debuggerEngine, argumentConfiguration),
                        new EvalCommandHandler(debuggerEngine, argumentConfiguration));
            }
        });
        b.connect("localhost", port).sync();
    }

    @Override
    public void disconnect() {
        if (workerGroup != null) {
            workerGroup.shutdownGracefully();
        }
    }
}