summaryrefslogtreecommitdiffstats
path: root/ipc/ipdl/test/cxx/TestEndpointOpens.h
blob: 672127493702cc5de7f7cbc9bdf83cd739616f61 (plain)
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
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */

#ifndef mozilla__ipdltest_TestEndpointOpens_h
#define mozilla__ipdltest_TestEndpointOpens_h 1

#include "mozilla/_ipdltest/IPDLUnitTests.h"

#include "mozilla/_ipdltest/PTestEndpointOpensParent.h"
#include "mozilla/_ipdltest/PTestEndpointOpensChild.h"

#include "mozilla/_ipdltest2/PTestEndpointOpensOpenedParent.h"
#include "mozilla/_ipdltest2/PTestEndpointOpensOpenedChild.h"

namespace mozilla {

// parent process

namespace _ipdltest {

class TestEndpointOpensParent : public PTestEndpointOpensParent {
  friend class PTestEndpointOpensParent;

 public:
  TestEndpointOpensParent() {}
  virtual ~TestEndpointOpensParent() {}

  static bool RunTestInProcesses() { return true; }
  static bool RunTestInThreads() { return false; }

  void Main();

 protected:
  mozilla::ipc::IPCResult RecvStartSubprotocol(
      mozilla::ipc::Endpoint<PTestEndpointOpensOpenedParent>&& endpoint);

  virtual void ActorDestroy(ActorDestroyReason why) override;
};

}  // namespace _ipdltest

namespace _ipdltest2 {

class TestEndpointOpensOpenedParent : public PTestEndpointOpensOpenedParent {
  friend class PTestEndpointOpensOpenedParent;

 public:
  explicit TestEndpointOpensOpenedParent() {}
  virtual ~TestEndpointOpensOpenedParent() {}

 protected:
  mozilla::ipc::IPCResult RecvHello();
  mozilla::ipc::IPCResult RecvHelloSync();
  mozilla::ipc::IPCResult AnswerHelloRpc();

  virtual void ActorDestroy(ActorDestroyReason why) override;
};

}  // namespace _ipdltest2

// child process

namespace _ipdltest {

class TestEndpointOpensChild : public PTestEndpointOpensChild {
  friend class PTestEndpointOpensChild;

 public:
  TestEndpointOpensChild();
  virtual ~TestEndpointOpensChild() {}

 protected:
  mozilla::ipc::IPCResult RecvStart();

  virtual void ActorDestroy(ActorDestroyReason why) override;
};

}  // namespace _ipdltest

namespace _ipdltest2 {

class TestEndpointOpensOpenedChild : public PTestEndpointOpensOpenedChild {
  friend class PTestEndpointOpensOpenedChild;

 public:
  explicit TestEndpointOpensOpenedChild() : mGotHi(false) {}
  virtual ~TestEndpointOpensOpenedChild() {}

 protected:
  mozilla::ipc::IPCResult RecvHi();
  mozilla::ipc::IPCResult AnswerHiRpc();

  virtual void ActorDestroy(ActorDestroyReason why) override;

  bool mGotHi;
};

}  // namespace _ipdltest2

}  // namespace mozilla

#endif  // ifndef mozilla__ipdltest_TestEndpointOpens_h