aboutsummaryrefslogtreecommitdiffstats
path: root/fnet/src/tests/frt/method_pt/method_pt.cpp
blob: 53960d73466405c5e81375a677b6b17a0dc43b74 (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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#include <vespa/vespalib/testkit/test_kit.h>
#include <vespa/vespalib/util/stringfmt.h>
#include <vespa/fnet/frt/frt.h>

class Test;
class SimpleHandler;

class MediumHandler1;
class MediumHandler2;
class MediumHandler3;

class ComplexHandler1;
class ComplexHandler2;
class ComplexHandler3;

//-------------------------------------------------------------

Test             *_test;

std::unique_ptr<fnet::frt::StandaloneFRT> _server;
FRT_Supervisor   *_supervisor;
FRT_Target       *_target;
SimpleHandler    *_simpleHandler;
MediumHandler1   *_mediumHandler1;
MediumHandler2   *_mediumHandler2;
MediumHandler3   *_mediumHandler3;
ComplexHandler1  *_complexHandler1;
ComplexHandler2  *_complexHandler2;
ComplexHandler3  *_complexHandler3;

bool              _mediumHandlerOK;
bool              _complexHandlerOK;

//-------------------------------------------------------------

class MediumA
{
public:

  /**
   * Destructor.  No cleanup needed for base class.
   */
  virtual ~MediumA(void) { }

  virtual void foo() = 0;
};


class MediumB
{
public:

  /**
   * Destructor.  No cleanup needed for base class.
   */
  virtual ~MediumB(void) { }

  virtual void bar() = 0;
};

//-------------------------------------------------------------

#ifdef __clang__
#define UNUSED_MEMBER [[maybe_unused]]
#else
#define UNUSED_MEMBER
#endif

class ComplexA
{
private:
  UNUSED_MEMBER uint32_t _fill1;
  UNUSED_MEMBER uint32_t _fill2;
  UNUSED_MEMBER uint32_t _fill3;

public:

  /**
   * Destructor.  No cleanup needed for base class.
   */
  virtual ~ComplexA(void) { }

  ComplexA() : _fill1(1), _fill2(2), _fill3(3) {}
  virtual void foo() {}
};


class ComplexB
{
private:
  UNUSED_MEMBER uint32_t _fill1;
  UNUSED_MEMBER uint32_t _fill2;
  UNUSED_MEMBER uint32_t _fill3;

public:

  /**
   * Destructor.  No cleanup needed for base class.
   */
  virtual ~ComplexB(void) { }

  ComplexB() : _fill1(1), _fill2(2), _fill3(3) {}
  virtual void bar() {}
};

//-------------------------------------------------------------

class SimpleHandler : public FRT_Invokable
{
public:
  void RPC_Method(FRT_RPCRequest *req);
};

//-------------------------------------------------------------

class MediumHandler1 : public FRT_Invokable,
                       public MediumA,
                       public MediumB
{
public:
    void foo() override {}
    void bar() override {}
    void RPC_Method(FRT_RPCRequest *req);
};


class MediumHandler2 : public MediumA,
                       public FRT_Invokable,
                       public MediumB
{
public:
    void foo() override {}
    void bar() override {}
    void RPC_Method(FRT_RPCRequest *req);
};


class MediumHandler3 : public MediumA,
                       public MediumB,
                       public FRT_Invokable
{
public:
    void foo() override {}
    void bar() override {}
    void RPC_Method(FRT_RPCRequest *req);
};

//-------------------------------------------------------------

class ComplexHandler1 : public FRT_Invokable,
                        public ComplexA,
                        public ComplexB
{
public:
    void foo() override {}
    void bar() override {}
    void RPC_Method(FRT_RPCRequest *req);
};


class ComplexHandler2 : public ComplexA,
                        public FRT_Invokable,
                        public ComplexB
{
public:
    void foo() override {}
    void bar() override {}
    void RPC_Method(FRT_RPCRequest *req);
};


class ComplexHandler3 : public ComplexA,
                        public ComplexB,
                        public FRT_Invokable
{
public:
    void foo() override {}
    void bar() override {}
    void RPC_Method(FRT_RPCRequest *req);
};

//-------------------------------------------------------------

void initTest() {
    _server = std::make_unique<fnet::frt::StandaloneFRT>();
  _supervisor      = &_server->supervisor();
  _simpleHandler   = new SimpleHandler();
  _mediumHandler1  = new MediumHandler1();
  _mediumHandler2  = new MediumHandler2();
  _mediumHandler3  = new MediumHandler3();
  _complexHandler1 = new ComplexHandler1();
  _complexHandler2 = new ComplexHandler2();
  _complexHandler3 = new ComplexHandler3();

  ASSERT_TRUE(_supervisor != nullptr);
  ASSERT_TRUE(_simpleHandler != nullptr);
  ASSERT_TRUE(_mediumHandler1 != nullptr);
  ASSERT_TRUE(_mediumHandler2 != nullptr);
  ASSERT_TRUE(_mediumHandler3 != nullptr);
  ASSERT_TRUE(_complexHandler1 != nullptr);
  ASSERT_TRUE(_complexHandler2 != nullptr);
  ASSERT_TRUE(_complexHandler3 != nullptr);

  ASSERT_TRUE(_supervisor->Listen(0));
  std::string spec = vespalib::make_string("tcp/localhost:%d",
                                           _supervisor->GetListenPort());
  _target = _supervisor->GetTarget(spec.c_str());
  ASSERT_TRUE(_target != nullptr);

  FRT_ReflectionBuilder rb(_supervisor);

  //-------------------------------------------------------------------

  rb.DefineMethod("simpleMethod", "", "",
                  FRT_METHOD(SimpleHandler::RPC_Method),
                  _simpleHandler);

  //-------------------------------------------------------------------

  rb.DefineMethod("mediumMethod1", "", "",
                  FRT_METHOD(MediumHandler1::RPC_Method),
                  _mediumHandler1);

  rb.DefineMethod("mediumMethod2", "", "",
                  FRT_METHOD(MediumHandler2::RPC_Method),
                  _mediumHandler2);

  rb.DefineMethod("mediumMethod3", "", "",
                  FRT_METHOD(MediumHandler3::RPC_Method),
                  _mediumHandler3);

  //-------------------------------------------------------------------

  rb.DefineMethod("complexMethod1", "", "",
                  FRT_METHOD(ComplexHandler1::RPC_Method),
                  _complexHandler1);

  rb.DefineMethod("complexMethod2", "", "",
                  FRT_METHOD(ComplexHandler2::RPC_Method),
                  _complexHandler2);

  rb.DefineMethod("complexMethod3", "", "",
                  FRT_METHOD(ComplexHandler3::RPC_Method),
                  _complexHandler3);

  //-------------------------------------------------------------------

  _mediumHandlerOK  = true;
  _complexHandlerOK = true;
}


void finiTest() {
  delete _complexHandler1;
  delete _complexHandler2;
  delete _complexHandler3;
  delete _mediumHandler1;
  delete _mediumHandler2;
  delete _mediumHandler3;
  delete _simpleHandler;
  _target->SubRef();
  _server.reset();
}


TEST("method pt") {
  FRT_RPCRequest *req = _supervisor->AllocRPCRequest();
  req->SetMethodName("simpleMethod");
  _target->InvokeSync(req, 60.0);
  EXPECT_TRUE(!req->IsError());

  //-------------------------------- MEDIUM

  req->SubRef();
  req = _supervisor->AllocRPCRequest();
  req->SetMethodName("mediumMethod1");
  _target->InvokeSync(req, 60.0);
  EXPECT_TRUE(!req->IsError());

  req->SubRef();
  req = _supervisor->AllocRPCRequest();
  req->SetMethodName("mediumMethod2");
  _target->InvokeSync(req, 60.0);
  EXPECT_TRUE(!req->IsError());

  req->SubRef();
  req = _supervisor->AllocRPCRequest();
  req->SetMethodName("mediumMethod3");
  _target->InvokeSync(req, 60.0);
  EXPECT_TRUE(!req->IsError());

  //-------------------------------- COMPLEX

  req->SubRef();
  req = _supervisor->AllocRPCRequest();
  req->SetMethodName("complexMethod1");
  _target->InvokeSync(req, 60.0);
  EXPECT_TRUE(!req->IsError());

  req->SubRef();
  req = _supervisor->AllocRPCRequest();
  req->SetMethodName("complexMethod2");
  _target->InvokeSync(req, 60.0);
  EXPECT_TRUE(!req->IsError());

  req->SubRef();
  req = _supervisor->AllocRPCRequest();
  req->SetMethodName("complexMethod3");
  _target->InvokeSync(req, 60.0);
  EXPECT_TRUE(!req->IsError());

  if (_mediumHandlerOK) {
      fprintf(stderr, "Interface inheritance OK for method handlers\n");
  } else {
      fprintf(stderr, "Interface inheritance NOT ok for method handlers\n");
  }

  if (_complexHandlerOK) {
      fprintf(stderr, "Object inheritance OK for method handlers\n");
  } else {
      fprintf(stderr, "Object inheritance NOT ok for method handlers\n");
  }

  req->SubRef();
}

//-------------------------------------------------------------

void
SimpleHandler::RPC_Method(FRT_RPCRequest *req)
{
  (void) req;
  EXPECT_TRUE(this == _simpleHandler);
}

//-------------------------------------------------------------

void
MediumHandler1::RPC_Method(FRT_RPCRequest *req)
{
  (void) req;
  _mediumHandlerOK = (_mediumHandlerOK &&
                      this == _mediumHandler1);
}


void
MediumHandler2::RPC_Method(FRT_RPCRequest *req)
{
  (void) req;
  _mediumHandlerOK = (_mediumHandlerOK &&
                      this == _mediumHandler2);
}


void
MediumHandler3::RPC_Method(FRT_RPCRequest *req)
{
  (void) req;
  _mediumHandlerOK = (_mediumHandlerOK &&
                      this == _mediumHandler3);
}

//-------------------------------------------------------------

void
ComplexHandler1::RPC_Method(FRT_RPCRequest *req)
{
  (void) req;
  _complexHandlerOK = (_complexHandlerOK &&
                       this == _complexHandler1);
}


void
ComplexHandler2::RPC_Method(FRT_RPCRequest *req)
{
  (void) req;
  _complexHandlerOK = (_complexHandlerOK &&
                       this == _complexHandler2);
}


void
ComplexHandler3::RPC_Method(FRT_RPCRequest *req)
{
  (void) req;
  _complexHandlerOK = (_complexHandlerOK &&
                       this == _complexHandler3);
}

//-------------------------------------------------------------

TEST_MAIN() {
    initTest();
    TEST_RUN_ALL();
    finiTest();
}