| OLD | NEW |
| (Empty) |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "mojo/services/catalog/factory.h" | |
| 6 | |
| 7 #include "base/bind.h" | |
| 8 #include "mojo/services/catalog/catalog.h" | |
| 9 #include "services/shell/public/cpp/connection.h" | |
| 10 #include "services/shell/public/cpp/shell_connection.h" | |
| 11 | |
| 12 namespace catalog { | |
| 13 | |
| 14 Factory::Factory(base::TaskRunner* file_task_runner, | |
| 15 scoped_ptr<Store> store, | |
| 16 ManifestProvider* manifest_provider) | |
| 17 : file_task_runner_(file_task_runner), | |
| 18 store_(std::move(store)), | |
| 19 manifest_provider_(manifest_provider), | |
| 20 weak_factory_(this) { | |
| 21 mojo::shell::mojom::ShellClientRequest request = GetProxy(&shell_client_); | |
| 22 shell_connection_.reset(new mojo::ShellConnection(this, std::move(request))); | |
| 23 } | |
| 24 | |
| 25 Factory::~Factory() {} | |
| 26 | |
| 27 mojo::shell::mojom::ShellClientPtr Factory::TakeShellClient() { | |
| 28 return std::move(shell_client_); | |
| 29 } | |
| 30 | |
| 31 bool Factory::AcceptConnection(mojo::Connection* connection) { | |
| 32 connection->AddInterface<mojom::Catalog>(this); | |
| 33 connection->AddInterface<mojom::Resolver>(this); | |
| 34 connection->AddInterface<mojo::shell::mojom::ShellResolver>(this); | |
| 35 return true; | |
| 36 } | |
| 37 | |
| 38 void Factory::Create(mojo::Connection* connection, | |
| 39 mojom::ResolverRequest request) { | |
| 40 Catalog* instance = | |
| 41 GetCatalogForUserId(connection->GetRemoteIdentity().user_id()); | |
| 42 instance->BindResolver(std::move(request)); | |
| 43 } | |
| 44 | |
| 45 void Factory::Create(mojo::Connection* connection, | |
| 46 mojo::shell::mojom::ShellResolverRequest request) { | |
| 47 Catalog* instance = | |
| 48 GetCatalogForUserId(connection->GetRemoteIdentity().user_id()); | |
| 49 instance->BindShellResolver(std::move(request)); | |
| 50 } | |
| 51 | |
| 52 void Factory::Create(mojo::Connection* connection, | |
| 53 mojom::CatalogRequest request) { | |
| 54 Catalog* instance = | |
| 55 GetCatalogForUserId(connection->GetRemoteIdentity().user_id()); | |
| 56 instance->BindCatalog(std::move(request)); | |
| 57 } | |
| 58 | |
| 59 Catalog* Factory::GetCatalogForUserId(const std::string& user_id) { | |
| 60 auto it = catalogs_.find(user_id); | |
| 61 if (it != catalogs_.end()) | |
| 62 return it->second.get(); | |
| 63 | |
| 64 // TODO(beng): There needs to be a way to load the store from different users. | |
| 65 Catalog* instance = new Catalog(std::move(store_), file_task_runner_, | |
| 66 &system_catalog_, manifest_provider_); | |
| 67 catalogs_[user_id] = make_scoped_ptr(instance); | |
| 68 return instance; | |
| 69 } | |
| 70 | |
| 71 } // namespace catalog | |
| OLD | NEW |