| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "components/arc/arc_bridge_bootstrap.h" | 5 #include "components/arc/arc_bridge_bootstrap.h" |
| 6 | 6 |
| 7 #include <fcntl.h> | 7 #include <fcntl.h> |
| 8 #include <grp.h> | 8 #include <grp.h> |
| 9 #include <unistd.h> | 9 #include <unistd.h> |
| 10 | 10 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 #include "mojo/edk/embedder/platform_channel_pair.h" | 27 #include "mojo/edk/embedder/platform_channel_pair.h" |
| 28 #include "mojo/edk/embedder/platform_channel_utils_posix.h" | 28 #include "mojo/edk/embedder/platform_channel_utils_posix.h" |
| 29 #include "mojo/edk/embedder/platform_handle_vector.h" | 29 #include "mojo/edk/embedder/platform_handle_vector.h" |
| 30 #include "mojo/edk/embedder/scoped_platform_handle.h" | 30 #include "mojo/edk/embedder/scoped_platform_handle.h" |
| 31 #include "mojo/public/cpp/bindings/binding.h" | 31 #include "mojo/public/cpp/bindings/binding.h" |
| 32 | 32 |
| 33 namespace arc { | 33 namespace arc { |
| 34 | 34 |
| 35 namespace { | 35 namespace { |
| 36 | 36 |
| 37 ArcBridgeBootstrap* g_bootstrap_for_testing = nullptr; |
| 38 |
| 37 // We do not know the PID of ARC, since Chrome does not create it directly. | 39 // We do not know the PID of ARC, since Chrome does not create it directly. |
| 38 // Since Mojo in POSIX does not use the child PID except as an unique | 40 // Since Mojo in POSIX does not use the child PID except as an unique |
| 39 // identifier for the routing table, rather than doing a lot of plumbing in the | 41 // identifier for the routing table, rather than doing a lot of plumbing in the |
| 40 // whole system to get the correct PID, just use an arbitrary number that will | 42 // whole system to get the correct PID, just use an arbitrary number that will |
| 41 // never be used by a legitimate process. Chrome OS assigns unassigned PIDs | 43 // never be used by a legitimate process. Chrome OS assigns unassigned PIDs |
| 42 // sequentially until it reaches a certain maximum value (Chrome OS uses the | 44 // sequentially until it reaches a certain maximum value (Chrome OS uses the |
| 43 // default value of 32k), at which point it loops around to zero. An arbitrary | 45 // default value of 32k), at which point it loops around to zero. An arbitrary |
| 44 // number larger than the maximum should be safe. | 46 // number larger than the maximum should be safe. |
| 45 const pid_t kArcPid = 0x3DE0EA7C; | 47 const pid_t kArcPid = 0x3DE0EA7C; |
| 46 | 48 |
| (...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 334 void ArcBridgeBootstrapImpl::SetState(State state) { | 336 void ArcBridgeBootstrapImpl::SetState(State state) { |
| 335 DCHECK(thread_checker_.CalledOnValidThread()); | 337 DCHECK(thread_checker_.CalledOnValidThread()); |
| 336 // DCHECK on enum classes not supported. | 338 // DCHECK on enum classes not supported. |
| 337 DCHECK(state_ != state); | 339 DCHECK(state_ != state); |
| 338 state_ = state; | 340 state_ = state; |
| 339 } | 341 } |
| 340 | 342 |
| 341 } // namespace | 343 } // namespace |
| 342 | 344 |
| 343 ArcBridgeBootstrap::ArcBridgeBootstrap() {} | 345 ArcBridgeBootstrap::ArcBridgeBootstrap() {} |
| 344 ArcBridgeBootstrap::~ArcBridgeBootstrap() {} | 346 |
| 347 ArcBridgeBootstrap::~ArcBridgeBootstrap() { |
| 348 if (g_bootstrap_for_testing) { |
| 349 delete g_bootstrap_for_testing; |
| 350 } |
| 351 } |
| 345 | 352 |
| 346 // static | 353 // static |
| 347 scoped_ptr<ArcBridgeBootstrap> ArcBridgeBootstrap::Create() { | 354 scoped_ptr<ArcBridgeBootstrap> ArcBridgeBootstrap::Create() { |
| 348 return make_scoped_ptr(new ArcBridgeBootstrapImpl()); | 355 if (g_bootstrap_for_testing) { |
| 356 ArcBridgeBootstrap* const result = g_bootstrap_for_testing; |
| 357 g_bootstrap_for_testing = nullptr; |
| 358 return make_scoped_ptr(result); |
| 359 } else { |
| 360 return make_scoped_ptr(new ArcBridgeBootstrapImpl()); |
| 361 } |
| 362 } |
| 363 |
| 364 // static |
| 365 void ArcBridgeBootstrap::SetBootstrapForTesting( |
| 366 scoped_ptr<ArcBridgeBootstrap> bootstrap) { |
| 367 if (g_bootstrap_for_testing) { |
| 368 delete g_bootstrap_for_testing; |
| 369 } |
| 370 g_bootstrap_for_testing = bootstrap.release(); |
| 349 } | 371 } |
| 350 | 372 |
| 351 } // namespace arc | 373 } // namespace arc |
| OLD | NEW |