aboutsummaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/search/debug/DebugRpcAdaptor.java
blob: e196c11e31debcd0894f04bf509116c57dd0a113 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.search.debug;

import com.yahoo.container.osgi.AbstractRpcAdaptor;
import com.yahoo.jrt.Method;
import com.yahoo.jrt.Supervisor;
import com.yahoo.fs4.PacketDumper.PacketType;

/**
 * Handles rpc calls for retrieving debug information.
 *
 * @author tonytv
 */
public final class DebugRpcAdaptor extends AbstractRpcAdaptor {
    private static final String debugPrefix = "debug.";

    public void bindCommands(Supervisor supervisor) {
        addTraceMethod(supervisor, "query", PacketType.query);
        addTraceMethod(supervisor, "result", PacketType.result);
        addMethod(supervisor, "output-search-chain", new OutputSearchChain());
        addMethod(supervisor, "backend-statistics", new BackendStatistics());
    }

    private void addTraceMethod(Supervisor supervisor, String name, PacketType packetType) {
        addMethod(supervisor, constructTraceMethodName(name), new TracePackets(packetType));
    }

    private void addMethod(Supervisor supervisor, String name, DebugMethodHandler handler) {
        JrtMethodSignature typeStrings = handler.getSignature();
        supervisor.addMethod(
                new Method(debugPrefix + name,
                        typeStrings.parametersTypes,
                        typeStrings.returnTypes,
                        handler));

    }

    //example: debug.dump-query-packets
    private String constructTraceMethodName(String name) {
        return debugPrefix + "dump-" + name + "-packets";
    }
}