aboutsummaryrefslogtreecommitdiffstats
path: root/jrt_test/src/tests/mockup-invoke/mockup-server.cpp
blob: eaeb08904faa375bf5bbee36a85794d658207365 (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
43
44
45
46
47
48
49
50
51
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include <vespa/fnet/frt/supervisor.h>
#include <vespa/fnet/frt/rpcrequest.h>
#include <vespa/fnet/transport.h>
#include <vespa/vespalib/util/signalhandler.h>

class MockupServer : public FRT_Invokable
{
public:
    MockupServer(const MockupServer &) = delete;
    MockupServer &operator=(const MockupServer &) = delete;
    MockupServer(FRT_Supervisor *s)
    {
        FRT_ReflectionBuilder rb(s);
        //-------------------------------------------------------------------
        rb.DefineMethod("concat", "ss", "s",
                        FRT_METHOD(MockupServer::RPC_concat), this);
        rb.MethodDesc("Concatenate two strings");
        rb.ParamDesc("string1", "a string");
        rb.ParamDesc("string2", "another string");
        rb.ReturnDesc("ret", "the concatenation of string1 and string2");
        //-------------------------------------------------------------------
    }

    void RPC_concat(FRT_RPCRequest *req)
    {
        FRT_Values &params = *req->GetParams();
        FRT_Values &ret    = *req->GetReturn();

        uint32_t len = (params[0]._string._len +
                        params[1]._string._len);
        char *tmp = ret.AddString(len);
        strcpy(tmp, params[0]._string._str);
        strcat(tmp, params[1]._string._str);
    }
};


int main(int argc, char **argv) {
    vespalib::SignalHandler::PIPE.ignore();
    if (argc < 2) {
        printf("usage: %s <listenspec>\n", argv[0]);
        return 1;
    }
    fnet::frt::StandaloneFRT frt;
    MockupServer server(&frt.supervisor());
    frt.supervisor().Listen(argv[1]);
    frt.supervisor().GetTransport()->WaitFinished();
    return 0;
}