henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2004 The WebRTC Project Authors. All rights reserved. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license |
| 5 | * that can be found in the LICENSE file in the root of the source |
| 6 | * tree. An additional intellectual property rights grant can be found |
| 7 | * in the file PATENTS. All contributing project authors may |
| 8 | * be found in the AUTHORS file in the root of the source tree. |
| 9 | */ |
Jonas Olsson | a4d8737 | 2019-07-05 17:08:33 | [diff] [blame] | 10 | #include "rtc_base/stream.h" |
| 11 | |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 | [diff] [blame] | 12 | #include <errno.h> |
Yves Gerey | 988cc08 | 2018-10-23 10:03:01 | [diff] [blame] | 13 | #include <string.h> |
Jonas Olsson | a4d8737 | 2019-07-05 17:08:33 | [diff] [blame] | 14 | |
andresp@webrtc.org | ff689be | 2015-02-12 11:54:26 | [diff] [blame] | 15 | #include <algorithm> |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 | [diff] [blame] | 16 | #include <string> |
andresp@webrtc.org | ff689be | 2015-02-12 11:54:26 | [diff] [blame] | 17 | |
Mirko Bonadei | 92ea95e | 2017-09-15 04:47:31 | [diff] [blame] | 18 | #include "rtc_base/checks.h" |
Mirko Bonadei | 92ea95e | 2017-09-15 04:47:31 | [diff] [blame] | 19 | #include "rtc_base/thread.h" |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 | [diff] [blame] | 20 | |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 | [diff] [blame] | 21 | namespace rtc { |
| 22 | |
| 23 | /////////////////////////////////////////////////////////////////////////////// |
| 24 | // StreamInterface |
| 25 | /////////////////////////////////////////////////////////////////////////////// |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 | [diff] [blame] | 26 | |
Yves Gerey | 665174f | 2018-06-19 13:03:05 | [diff] [blame] | 27 | StreamResult StreamInterface::WriteAll(const void* data, |
| 28 | size_t data_len, |
| 29 | size_t* written, |
| 30 | int* error) { |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 | [diff] [blame] | 31 | StreamResult result = SR_SUCCESS; |
| 32 | size_t total_written = 0, current_written; |
| 33 | while (total_written < data_len) { |
| 34 | result = Write(static_cast<const char*>(data) + total_written, |
| 35 | data_len - total_written, ¤t_written, error); |
| 36 | if (result != SR_SUCCESS) |
| 37 | break; |
| 38 | total_written += current_written; |
| 39 | } |
| 40 | if (written) |
| 41 | *written = total_written; |
| 42 | return result; |
| 43 | } |
| 44 | |
kwiberg@webrtc.org | 67186fe | 2015-03-09 22:21:53 | [diff] [blame] | 45 | bool StreamInterface::Flush() { |
| 46 | return false; |
| 47 | } |
| 48 | |
Yves Gerey | 665174f | 2018-06-19 13:03:05 | [diff] [blame] | 49 | StreamInterface::StreamInterface() {} |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 | [diff] [blame] | 50 | |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 | [diff] [blame] | 51 | } // namespace rtc |