/* * Copyright 2004 The WebRTC Project Authors. All rights reserved. * * Use of this source code is governed by a BSD-style license * that can be found in the LICENSE file in the root of the source * tree. An additional intellectual property rights grant can be found * in the file PATENTS. All contributing project authors may * be found in the AUTHORS file in the root of the source tree. */ #ifndef RTC_BASE_STREAM_H_ #define RTC_BASE_STREAM_H_ #include <memory> #include "absl/functional/any_invocable.h" #include "api/array_view.h" #include "api/sequence_checker.h" #include "rtc_base/buffer.h" #include "rtc_base/logging.h" #include "rtc_base/system/no_unique_address.h" #include "rtc_base/system/rtc_export.h" #include "rtc_base/third_party/sigslot/sigslot.h" #include "rtc_base/thread.h" namespace rtc { /////////////////////////////////////////////////////////////////////////////// // StreamInterface is a generic asynchronous stream interface, supporting read, // write, and close operations, and asynchronous signalling of state changes. // The interface is designed with file, memory, and socket implementations in // mind. Some implementations offer extended operations, such as seeking. /////////////////////////////////////////////////////////////////////////////// // The following enumerations are declared outside of the StreamInterface // class for brevity in use. // The SS_OPENING state indicates that the stream will signal open or closed // in the future. enum StreamState { … }; // Stream read/write methods return this value to indicate various success // and failure conditions described below. enum StreamResult { … }; // StreamEvents are used to asynchronously signal state transitionss. The flags // may be combined. // SE_OPEN: The stream has transitioned to the SS_OPEN state // SE_CLOSE: The stream has transitioned to the SS_CLOSED state // SE_READ: Data is available, so Read is likely to not return SR_BLOCK // SE_WRITE: Data can be written, so Write is likely to not return SR_BLOCK enum StreamEvent { … }; class RTC_EXPORT StreamInterface { … }; } // namespace rtc #endif // RTC_BASE_STREAM_H_