summaryrefslogtreecommitdiffstats
path: root/ipc/ipdl/test/cxx/TestInterruptRaces.cpp
blob: 02b42cfbc3728af948879827c3ec8d37d8dc3412 (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
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
#include "TestInterruptRaces.h"

#include "IPDLUnitTests.h"  // fail etc.

using mozilla::ipc::MessageChannel;

namespace mozilla {
namespace _ipdltest {

ipc::RacyInterruptPolicy MediateRace(const MessageChannel::MessageInfo& parent,
                                     const MessageChannel::MessageInfo& child) {
  return (PTestInterruptRaces::Msg_Child__ID == parent.type())
             ? ipc::RIPParentWins
             : ipc::RIPChildWins;
}

//-----------------------------------------------------------------------------
// parent
void TestInterruptRacesParent::Main() {
  if (!SendStart()) fail("sending Start()");
}

mozilla::ipc::IPCResult TestInterruptRacesParent::RecvStartRace() {
  MessageLoop::current()->PostTask(NewNonOwningRunnableMethod(
      "_ipdltest::TestInterruptRacesParent::OnRaceTime", this,
      &TestInterruptRacesParent::OnRaceTime));
  return IPC_OK();
}

void TestInterruptRacesParent::OnRaceTime() {
  if (!CallRace(&mChildHasReply)) fail("problem calling Race()");

  if (!mChildHasReply) fail("child should have got a reply already");

  mHasReply = true;

  MessageLoop::current()->PostTask(
      NewNonOwningRunnableMethod("_ipdltest::TestInterruptRacesParent::Test2",
                                 this, &TestInterruptRacesParent::Test2));
}

mozilla::ipc::IPCResult TestInterruptRacesParent::AnswerRace(bool* hasReply) {
  if (mHasReply) fail("apparently the parent won the Interrupt race!");
  *hasReply = hasReply;
  return IPC_OK();
}

void TestInterruptRacesParent::Test2() {
  puts("  passed");
  puts("Test 2");

  mHasReply = false;
  mChildHasReply = false;

  if (!CallStackFrame()) fail("can't set up a stack frame");

  puts("  passed");

  MessageLoop::current()->PostTask(
      NewNonOwningRunnableMethod("_ipdltest::TestInterruptRacesParent::Test3",
                                 this, &TestInterruptRacesParent::Test3));
}

mozilla::ipc::IPCResult TestInterruptRacesParent::AnswerStackFrame() {
  if (!SendWakeup()) fail("can't wake up the child");

  if (!CallRace(&mChildHasReply)) fail("can't set up race condition");
  mHasReply = true;

  if (!mChildHasReply) fail("child should have got a reply already");

  return IPC_OK();
}

void TestInterruptRacesParent::Test3() {
  puts("Test 3");

  if (!CallStackFrame3()) fail("can't set up a stack frame");

  puts("  passed");

  Close();
}

mozilla::ipc::IPCResult TestInterruptRacesParent::AnswerStackFrame3() {
  if (!SendWakeup3()) fail("can't wake up the child");

  if (!CallChild()) fail("can't set up race condition");

  return IPC_OK();
}

mozilla::ipc::IPCResult TestInterruptRacesParent::AnswerParent() {
  mAnsweredParent = true;
  return IPC_OK();
}

mozilla::ipc::IPCResult TestInterruptRacesParent::RecvGetAnsweredParent(
    bool* answeredParent) {
  *answeredParent = mAnsweredParent;
  return IPC_OK();
}

//-----------------------------------------------------------------------------
// child
mozilla::ipc::IPCResult TestInterruptRacesChild::RecvStart() {
  puts("Test 1");

  if (!SendStartRace()) fail("problem sending StartRace()");

  bool dontcare;
  if (!CallRace(&dontcare)) fail("problem calling Race()");

  mHasReply = true;
  return IPC_OK();
}

mozilla::ipc::IPCResult TestInterruptRacesChild::AnswerRace(bool* hasReply) {
  if (!mHasReply) fail("apparently the child lost the Interrupt race!");

  *hasReply = mHasReply;

  return IPC_OK();
}

mozilla::ipc::IPCResult TestInterruptRacesChild::AnswerStackFrame() {
  // reset for the second test
  mHasReply = false;

  if (!CallStackFrame()) fail("can't set up stack frame");

  if (!mHasReply) fail("should have had reply by now");

  return IPC_OK();
}

mozilla::ipc::IPCResult TestInterruptRacesChild::RecvWakeup() {
  bool dontcare;
  if (!CallRace(&dontcare)) fail("can't set up race condition");

  mHasReply = true;
  return IPC_OK();
}

mozilla::ipc::IPCResult TestInterruptRacesChild::AnswerStackFrame3() {
  if (!CallStackFrame3()) fail("can't set up stack frame");
  return IPC_OK();
}

mozilla::ipc::IPCResult TestInterruptRacesChild::RecvWakeup3() {
  if (!CallParent()) fail("can't set up race condition");
  return IPC_OK();
}

mozilla::ipc::IPCResult TestInterruptRacesChild::AnswerChild() {
  bool parentAnsweredParent;
  // the parent is supposed to win the race, which means its
  // message, Child(), is supposed to be processed before the
  // child's message, Parent()
  if (!SendGetAnsweredParent(&parentAnsweredParent))
    fail("sending GetAnsweredParent");

  if (parentAnsweredParent) fail("parent was supposed to win the race!");

  return IPC_OK();
}

}  // namespace _ipdltest
}  // namespace mozilla