| // Copyright 2014 The Chromium Authors |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #ifndef MOJO_PUBLIC_CPP_SYSTEM_DATA_PIPE_DRAINER_H_ |
| #define MOJO_PUBLIC_CPP_SYSTEM_DATA_PIPE_DRAINER_H_ |
| |
| #include <stddef.h> |
| |
| #include "base/containers/span.h" |
| #include "base/memory/raw_ptr.h" |
| #include "base/memory/weak_ptr.h" |
| #include "mojo/public/cpp/system/data_pipe.h" |
| #include "mojo/public/cpp/system/simple_watcher.h" |
| #include "mojo/public/cpp/system/system_export.h" |
| |
| namespace mojo { |
| |
| class MOJO_CPP_SYSTEM_EXPORT DataPipeDrainer { |
| public: |
| class Client { |
| public: |
| virtual void OnDataAvailable(base::span<const uint8_t> data) = 0; |
| virtual void OnDataComplete() = 0; |
| |
| protected: |
| virtual ~Client() {} |
| }; |
| |
| DataPipeDrainer(Client*, mojo::ScopedDataPipeConsumerHandle source); |
| |
| DataPipeDrainer(const DataPipeDrainer&) = delete; |
| DataPipeDrainer& operator=(const DataPipeDrainer&) = delete; |
| |
| ~DataPipeDrainer(); |
| |
| private: |
| void ReadData(); |
| void WaitComplete(MojoResult result); |
| |
| raw_ptr<Client> client_; |
| mojo::ScopedDataPipeConsumerHandle source_; |
| mojo::SimpleWatcher handle_watcher_; |
| |
| base::WeakPtrFactory<DataPipeDrainer> weak_factory_{this}; |
| }; |
| |
| } // namespace mojo |
| |
| #endif // MOJO_PUBLIC_CPP_SYSTEM_DATA_PIPE_DRAINER_H_ |