summaryrefslogtreecommitdiffstats
path: root/components/leveldb/leveldb_app.cc
blob: aad49e2882cd472f320252d7ffee99d56b3256a5 (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
// 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 "components/leveldb/leveldb_app.h"

#include "components/leveldb/leveldb_service_impl.h"
#include "mojo/shell/public/cpp/connection.h"

namespace leveldb {

LevelDBApp::LevelDBApp() {}

LevelDBApp::~LevelDBApp() {}

void LevelDBApp::Initialize(mojo::Connector* connector,
                            const mojo::Identity& identity,
                            uint32_t id) {
  tracing_.Initialize(connector, identity.name());
  service_.reset(new LevelDBServiceImpl);
}

bool LevelDBApp::AcceptConnection(mojo::Connection* connection) {
  connection->AddInterface<LevelDBService>(this);
  return true;
}

void LevelDBApp::ShellConnectionLost() {
  // TODO: This should exit cleanly.
  _exit(1);
}

void LevelDBApp::Create(mojo::Connection* connection,
                        mojo::InterfaceRequest<LevelDBService> request) {
  bindings_.AddBinding(service_.get(), std::move(request));
}

}  // namespace leveldb