summaryrefslogtreecommitdiffstats
path: root/mojo/shell/tests/lifecycle/parent.cc
blob: 27b20997c0cf6d0f930ec5da2393152e097b57bd (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
// Copyright 2016 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 "base/bind.h"
#include "base/message_loop/message_loop.h"
#include "base/run_loop.h"
#include "mojo/public/c/system/main.h"
#include "mojo/public/cpp/bindings/binding_set.h"
#include "mojo/shell/public/cpp/application_runner.h"
#include "mojo/shell/public/cpp/connector.h"
#include "mojo/shell/public/cpp/shell_client.h"
#include "mojo/shell/tests/lifecycle/lifecycle_unittest.mojom.h"

namespace {

void QuitLoop(base::RunLoop* loop) {
  loop->Quit();
}

class Parent
    : public mojo::ShellClient,
      public mojo::InterfaceFactory<mojo::shell::test::mojom::Parent>,
      public mojo::shell::test::mojom::Parent {
 public:
  Parent() {}
  ~Parent() override {
    connector_ = nullptr;
    child_connection_.reset();
    parent_bindings_.CloseAllBindings();
  }

 private:
  // ShellClient:
  void Initialize(mojo::Connector* connector, const mojo::Identity& identity,
                  uint32_t id) override {
    connector_ = connector;
  }
  bool AcceptConnection(mojo::Connection* connection) override {
    connection->AddInterface<mojo::shell::test::mojom::Parent>(this);
    return true;
  }

  // InterfaceFactory<mojo::shell::test::mojom::Parent>:
  void Create(mojo::Connection* connection,
              mojo::shell::test::mojom::ParentRequest request) override {
    parent_bindings_.AddBinding(this, std::move(request));
  }

  // Parent:
  void ConnectToChild(const ConnectToChildCallback& callback) override {
    child_connection_ = connector_->Connect("mojo:lifecycle_unittest_app");
    mojo::shell::test::mojom::LifecycleControlPtr lifecycle;
    child_connection_->GetInterface(&lifecycle);
    {
      base::RunLoop loop;
      lifecycle->Ping(base::Bind(&QuitLoop, &loop));
      base::MessageLoop::ScopedNestableTaskAllower allow(
          base::MessageLoop::current());
      loop.Run();
    }
    callback.Run();
  }
  void Quit() override {
    base::MessageLoop::current()->QuitWhenIdle();
  }

  mojo::Connector* connector_;
  scoped_ptr<mojo::Connection> child_connection_;
  mojo::BindingSet<mojo::shell::test::mojom::Parent> parent_bindings_;

  DISALLOW_COPY_AND_ASSIGN(Parent);
};

}  // namespace

MojoResult MojoMain(MojoHandle shell_handle) {
  Parent* parent = new Parent;
  return mojo::ApplicationRunner(parent).Run(shell_handle);
}