summaryrefslogtreecommitdiffstats
path: root/mojo/system/waiter_test_utils.cc
blob: 37df6167aea9fee9b6fd869b64fe4717b2fcfe41 (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
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "mojo/system/waiter_test_utils.h"

namespace mojo {
namespace system {
namespace test {

SimpleWaiterThread::SimpleWaiterThread(MojoResult* result)
    : base::SimpleThread("waiter_thread"),
      result_(result) {
  waiter_.Init();
  *result_ = -5420734;  // Totally invalid result.
}

SimpleWaiterThread::~SimpleWaiterThread() {
  Join();
}

void SimpleWaiterThread::Run() {
  *result_ = waiter_.Wait(MOJO_DEADLINE_INDEFINITE);
}

WaiterThread::WaiterThread(scoped_refptr<Dispatcher> dispatcher,
             MojoWaitFlags wait_flags,
             MojoDeadline deadline,
             MojoResult success_result,
             bool* did_wait_out,
             MojoResult* result_out)
    : base::SimpleThread("waiter_thread"),
      dispatcher_(dispatcher),
      wait_flags_(wait_flags),
      deadline_(deadline),
      success_result_(success_result),
      did_wait_out_(did_wait_out),
      result_out_(result_out) {
  *did_wait_out_ = false;
  *result_out_ = -8542346;  // Totally invalid result.
}

WaiterThread::~WaiterThread() {
  Join();
}

void WaiterThread::Run() {
  waiter_.Init();

  *result_out_ = dispatcher_->AddWaiter(&waiter_,
                                        wait_flags_,
                                        success_result_);
  if (*result_out_ != MOJO_RESULT_OK)
    return;

  *did_wait_out_ = true;
  *result_out_ = waiter_.Wait(deadline_);
  dispatcher_->RemoveWaiter(&waiter_);
}

}  // namespace test
}  // namespace system
}  // namespace mojo