blob: 404eb3138b89dee58317d69d5ec8bc4509a02bed [file] [log] [blame]
Elad Alon83ccca12017-10-04 13:18:26 +02001/*
2 * Copyright (c) 2017 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 */
10
11#include <limits>
Niels Möllere3962762019-05-06 09:14:31 +020012#include <utility>
Elad Alon83ccca12017-10-04 13:18:26 +020013
Danil Chapovalovb32f2c72019-05-22 13:39:25 +020014#include "api/rtc_event_log/rtc_event_log.h"
Niels Möllerd8b9ed72019-05-08 13:53:51 +020015#include "api/rtc_event_log_output_file.h"
Elad Alon83ccca12017-10-04 13:18:26 +020016#include "rtc_base/checks.h"
17#include "rtc_base/logging.h"
Elad Alon83ccca12017-10-04 13:18:26 +020018
19namespace webrtc {
20
21// Together with the assumption of no single Write() would ever be called on
22// an input with length greater-than-or-equal-to (max(size_t) / 2), this
23// guarantees no overflow of the check for remaining file capacity in Write().
24// This does *not* apply to files with unlimited size.
25const size_t RtcEventLogOutputFile::kMaxReasonableFileSize =
26 std::numeric_limits<size_t>::max() / 2;
27
28RtcEventLogOutputFile::RtcEventLogOutputFile(const std::string& file_name)
Niels Möllere3962762019-05-06 09:14:31 +020029 : RtcEventLogOutputFile(FileWrapper::OpenWriteOnly(file_name),
30 RtcEventLog::kUnlimitedOutput) {}
Elad Alon83ccca12017-10-04 13:18:26 +020031
32RtcEventLogOutputFile::RtcEventLogOutputFile(const std::string& file_name,
33 size_t max_size_bytes)
Elad Alon83ccca12017-10-04 13:18:26 +020034
Niels Möllere3962762019-05-06 09:14:31 +020035 // Unlike plain fopen, FileWrapper takes care of filename utf8 ->
36 // wchar conversion on Windows.
37 : RtcEventLogOutputFile(FileWrapper::OpenWriteOnly(file_name),
Niels Möllerd4d39902017-12-07 09:35:23 +010038 max_size_bytes) {}
Elad Alon83ccca12017-10-04 13:18:26 +020039
Niels Möllere3962762019-05-06 09:14:31 +020040RtcEventLogOutputFile::RtcEventLogOutputFile(FILE* file, size_t max_size_bytes)
41 : RtcEventLogOutputFile(FileWrapper(file), max_size_bytes) {}
42
43RtcEventLogOutputFile::RtcEventLogOutputFile(FileWrapper file,
44 size_t max_size_bytes)
45 : max_size_bytes_(max_size_bytes), file_(std::move(file)) {
46 RTC_CHECK_LE(max_size_bytes_, kMaxReasonableFileSize);
47 if (!file_.is_open()) {
48 RTC_LOG(LS_ERROR) << "Invalid file. WebRTC event log not started.";
49 }
50}
Elad Alon83ccca12017-10-04 13:18:26 +020051
Elad Alon83ccca12017-10-04 13:18:26 +020052bool RtcEventLogOutputFile::IsActive() const {
53 return IsActiveInternal();
54}
55
56bool RtcEventLogOutputFile::Write(const std::string& output) {
57 RTC_DCHECK(IsActiveInternal());
58 // No single write may be so big, that it would risk overflowing the
59 // calculation of (written_bytes_ + output.length()).
60 RTC_DCHECK_LT(output.length(), kMaxReasonableFileSize);
61
Elad Alon83ccca12017-10-04 13:18:26 +020062 if (max_size_bytes_ == RtcEventLog::kUnlimitedOutput ||
63 written_bytes_ + output.length() <= max_size_bytes_) {
Niels Möllere3962762019-05-06 09:14:31 +020064 if (file_.Write(output.c_str(), output.size())) {
Niels Möllerd4d39902017-12-07 09:35:23 +010065 written_bytes_ += output.size();
66 return true;
67 } else {
68 RTC_LOG(LS_ERROR) << "Write to WebRtcEventLog file failed.";
Elad Alon83ccca12017-10-04 13:18:26 +020069 }
70 } else {
Mirko Bonadei675513b2017-11-09 11:09:25 +010071 RTC_LOG(LS_VERBOSE) << "Max file size reached.";
Elad Alon83ccca12017-10-04 13:18:26 +020072 }
73
Niels Möllerd4d39902017-12-07 09:35:23 +010074 // Failed, for one of above reasons. Close output file.
Niels Möllere3962762019-05-06 09:14:31 +020075 file_.Close();
Niels Möllerd4d39902017-12-07 09:35:23 +010076 return false;
Elad Alon83ccca12017-10-04 13:18:26 +020077}
78
Niels Möllerd4d39902017-12-07 09:35:23 +010079// Internal non-virtual method.
Elad Alon83ccca12017-10-04 13:18:26 +020080bool RtcEventLogOutputFile::IsActiveInternal() const {
Niels Möllere3962762019-05-06 09:14:31 +020081 return file_.is_open();
Elad Alon83ccca12017-10-04 13:18:26 +020082}
83
84} // namespace webrtc