| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "mojo/edk/system/data_pipe_producer_dispatcher.h" | 5 #include "mojo/edk/system/data_pipe_producer_dispatcher.h" |
| 6 | 6 |
| 7 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "mojo/edk/system/data_pipe.h" | 10 #include "mojo/edk/system/data_pipe.h" |
| 11 #include "mojo/edk/system/memory.h" | 11 #include "mojo/edk/system/memory.h" |
| 12 #include "mojo/edk/system/options_validation.h" | 12 #include "mojo/edk/system/options_validation.h" |
| 13 | 13 |
| 14 using mojo::platform::ScopedPlatformHandle; | 14 using mojo::platform::ScopedPlatformHandle; |
| 15 using mojo::util::MutexLocker; | 15 using mojo::util::MutexLocker; |
| 16 using mojo::util::RefPtr; | 16 using mojo::util::RefPtr; |
| 17 | 17 |
| 18 namespace mojo { | 18 namespace mojo { |
| 19 namespace system { | 19 namespace system { |
| 20 | 20 |
| 21 void DataPipeProducerDispatcher::Init(RefPtr<DataPipe>&& data_pipe) { | 21 void DataPipeProducerDispatcher::Init(RefPtr<DataPipe>&& data_pipe) { |
| 22 DCHECK(data_pipe); | 22 DCHECK(data_pipe); |
| 23 data_pipe_ = std::move(data_pipe); | 23 data_pipe_ = std::move(data_pipe); |
| 24 } | 24 } |
| 25 | 25 |
| 26 Dispatcher::Type DataPipeProducerDispatcher::GetType() const { | 26 Dispatcher::Type DataPipeProducerDispatcher::GetType() const { |
| 27 return Type::DATA_PIPE_PRODUCER; | 27 return Type::DATA_PIPE_PRODUCER; |
| 28 } | 28 } |
| 29 | 29 |
| 30 bool DataPipeProducerDispatcher::SupportsEntrypointClass( |
| 31 EntrypointClass entrypoint_class) const { |
| 32 return (entrypoint_class == EntrypointClass::DATA_PIPE_PRODUCER); |
| 33 } |
| 34 |
| 30 // static | 35 // static |
| 31 RefPtr<DataPipeProducerDispatcher> DataPipeProducerDispatcher::Deserialize( | 36 RefPtr<DataPipeProducerDispatcher> DataPipeProducerDispatcher::Deserialize( |
| 32 Channel* channel, | 37 Channel* channel, |
| 33 const void* source, | 38 const void* source, |
| 34 size_t size) { | 39 size_t size) { |
| 35 RefPtr<DataPipe> data_pipe; | 40 RefPtr<DataPipe> data_pipe; |
| 36 if (!DataPipe::ProducerDeserialize(channel, source, size, &data_pipe)) | 41 if (!DataPipe::ProducerDeserialize(channel, source, size, &data_pipe)) |
| 37 return nullptr; | 42 return nullptr; |
| 38 DCHECK(data_pipe); | 43 DCHECK(data_pipe); |
| 39 | 44 |
| (...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 return rv; | 198 return rv; |
| 194 } | 199 } |
| 195 | 200 |
| 196 bool DataPipeProducerDispatcher::IsBusyNoLock() const { | 201 bool DataPipeProducerDispatcher::IsBusyNoLock() const { |
| 197 mutex().AssertHeld(); | 202 mutex().AssertHeld(); |
| 198 return data_pipe_->ProducerIsBusy(); | 203 return data_pipe_->ProducerIsBusy(); |
| 199 } | 204 } |
| 200 | 205 |
| 201 } // namespace system | 206 } // namespace system |
| 202 } // namespace mojo | 207 } // namespace mojo |
| OLD | NEW |