blob: e1aab8cc22f1d5b1302182fc4836e6aaf1e070b3 [file] [log] [blame]
henrike@webrtc.orgf0488722014-05-13 18:00:261/*
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 Olssona4d87372019-07-05 17:08:3310#include "rtc_base/stream.h"
11
henrike@webrtc.orgf0488722014-05-13 18:00:2612#include <errno.h>
Yves Gerey988cc082018-10-23 10:03:0113#include <string.h>
Jonas Olssona4d87372019-07-05 17:08:3314
andresp@webrtc.orgff689be2015-02-12 11:54:2615#include <algorithm>
henrike@webrtc.orgf0488722014-05-13 18:00:2616#include <string>
andresp@webrtc.orgff689be2015-02-12 11:54:2617
Mirko Bonadei92ea95e2017-09-15 04:47:3118#include "rtc_base/checks.h"
Mirko Bonadei92ea95e2017-09-15 04:47:3119#include "rtc_base/thread.h"
henrike@webrtc.orgf0488722014-05-13 18:00:2620
henrike@webrtc.orgf0488722014-05-13 18:00:2621namespace rtc {
22
23///////////////////////////////////////////////////////////////////////////////
24// StreamInterface
25///////////////////////////////////////////////////////////////////////////////
henrike@webrtc.orgf0488722014-05-13 18:00:2626
Yves Gerey665174f2018-06-19 13:03:0527StreamResult StreamInterface::WriteAll(const void* data,
28 size_t data_len,
29 size_t* written,
30 int* error) {
henrike@webrtc.orgf0488722014-05-13 18:00:2631 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, &current_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.org67186fe2015-03-09 22:21:5345bool StreamInterface::Flush() {
46 return false;
47}
48
Yves Gerey665174f2018-06-19 13:03:0549StreamInterface::StreamInterface() {}
henrike@webrtc.orgf0488722014-05-13 18:00:2650
henrike@webrtc.orgf0488722014-05-13 18:00:2651} // namespace rtc