Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(252)

Side by Side Diff: talk/app/webrtc/objc/RTCFileLogger.mm

Issue 1432753003: Add oldest rotation type option to RTCFileLogger (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Add whitespace Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * libjingle 2 * libjingle
3 * Copyright 2015 Google Inc. 3 * Copyright 2015 Google Inc.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met: 6 * modification, are permitted provided that the following conditions are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright notice, 8 * 1. Redistributions of source code must retain the above copyright notice,
9 * this list of conditions and the following disclaimer. 9 * this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright notice, 10 * 2. Redistributions in binary form must reproduce the above copyright notice,
(...skipping 17 matching lines...) Expand all
28 #import "RTCFileLogger.h" 28 #import "RTCFileLogger.h"
29 29
30 #include "webrtc/base/checks.h" 30 #include "webrtc/base/checks.h"
31 #include "webrtc/base/filerotatingstream.h" 31 #include "webrtc/base/filerotatingstream.h"
32 #include "webrtc/base/logging.h" 32 #include "webrtc/base/logging.h"
33 #include "webrtc/base/logsinks.h" 33 #include "webrtc/base/logsinks.h"
34 #include "webrtc/base/scoped_ptr.h" 34 #include "webrtc/base/scoped_ptr.h"
35 35
36 NSString *const kDefaultLogDirName = @"webrtc_logs"; 36 NSString *const kDefaultLogDirName = @"webrtc_logs";
37 NSUInteger const kDefaultMaxFileSize = 10 * 1024 * 1024; // 10MB. 37 NSUInteger const kDefaultMaxFileSize = 10 * 1024 * 1024; // 10MB.
38 const char *kRTCFileLoggerRotatingLogPrefix = "rotating_log";
38 39
39 @implementation RTCFileLogger { 40 @implementation RTCFileLogger {
40 BOOL _hasStarted; 41 BOOL _hasStarted;
41 NSString *_dirPath; 42 NSString *_dirPath;
42 NSUInteger _maxFileSize; 43 NSUInteger _maxFileSize;
43 rtc::scoped_ptr<rtc::CallSessionFileRotatingLogSink> _logSink; 44 rtc::scoped_ptr<rtc::FileRotatingLogSink> _logSink;
44 } 45 }
45 46
46 @synthesize severity = _severity; 47 @synthesize severity = _severity;
48 @synthesize rotationType = _rotationType;
47 49
48 - (instancetype)init { 50 - (instancetype)init {
49 NSArray *paths = NSSearchPathForDirectoriesInDomains( 51 NSArray *paths = NSSearchPathForDirectoriesInDomains(
50 NSDocumentDirectory, NSUserDomainMask, YES); 52 NSDocumentDirectory, NSUserDomainMask, YES);
51 NSString *documentsDirPath = [paths firstObject]; 53 NSString *documentsDirPath = [paths firstObject];
52 NSString *defaultDirPath = 54 NSString *defaultDirPath =
53 [documentsDirPath stringByAppendingPathComponent:kDefaultLogDirName]; 55 [documentsDirPath stringByAppendingPathComponent:kDefaultLogDirName];
54 return [self initWithDirPath:defaultDirPath 56 return [self initWithDirPath:defaultDirPath
55 maxFileSize:kDefaultMaxFileSize]; 57 maxFileSize:kDefaultMaxFileSize];
56 } 58 }
57 59
58 - (instancetype)initWithDirPath:(NSString *)dirPath 60 - (instancetype)initWithDirPath:(NSString *)dirPath
59 maxFileSize:(NSUInteger)maxFileSize { 61 maxFileSize:(NSUInteger)maxFileSize {
62 return [self initWithDirPath:dirPath
63 maxFileSize:maxFileSize
64 rotationType:kRTCFileLoggerRotationTypeMiddle];
65 }
66
67 - (instancetype)initWithDirPath:(NSString *)dirPath
68 maxFileSize:(NSUInteger)maxFileSize
69 rotationType:(RTCFileLoggerRotationType)rotationType {
60 NSParameterAssert(dirPath.length); 70 NSParameterAssert(dirPath.length);
61 NSParameterAssert(maxFileSize); 71 NSParameterAssert(maxFileSize);
62 if (self = [super init]) { 72 if (self = [super init]) {
63 BOOL isDir = NO; 73 BOOL isDir = NO;
64 NSFileManager *fileManager = [NSFileManager defaultManager]; 74 NSFileManager *fileManager = [NSFileManager defaultManager];
65 if ([fileManager fileExistsAtPath:dirPath isDirectory:&isDir]) { 75 if ([fileManager fileExistsAtPath:dirPath isDirectory:&isDir]) {
66 if (!isDir) { 76 if (!isDir) {
67 // Bail if something already exists there. 77 // Bail if something already exists there.
68 return nil; 78 return nil;
69 } 79 }
(...skipping 14 matching lines...) Expand all
84 } 94 }
85 95
86 - (void)dealloc { 96 - (void)dealloc {
87 [self stop]; 97 [self stop];
88 } 98 }
89 99
90 - (void)start { 100 - (void)start {
91 if (_hasStarted) { 101 if (_hasStarted) {
92 return; 102 return;
93 } 103 }
94 _logSink.reset(new rtc::CallSessionFileRotatingLogSink(_dirPath.UTF8String, 104 if (_rotationType == kRTCFileLoggerRotationTypeOldest) {
tkchin_webrtc 2015/11/16 21:37:25 use a switch here so we don't miss it if we add ne
Chuck 2015/12/04 22:42:57 Done.
95 _maxFileSize)); 105 _logSink.reset(new rtc::FileRotatingLogSink(_dirPath.UTF8String,
106 kRTCFileLoggerRotatingLogPrefix,
tkchin_webrtc 2015/11/16 21:37:25 suggest using different prefixes for the different
Chuck 2015/12/04 22:42:57 It isn't immediately obvious, but they do use diff
107 _maxFileSize,
108 _maxFileSize / 10));
109 } else {
110 _logSink.reset(new rtc::CallSessionFileRotatingLogSink(_dirPath.UTF8String,
111 _maxFileSize));
112 }
96 if (!_logSink->Init()) { 113 if (!_logSink->Init()) {
97 LOG(LS_ERROR) << "Failed to open log files at path: " 114 LOG(LS_ERROR) << "Failed to open log files at path: "
98 << _dirPath.UTF8String; 115 << _dirPath.UTF8String;
99 _logSink.reset(); 116 _logSink.reset();
100 return; 117 return;
101 } 118 }
102 rtc::LogMessage::LogThreads(true); 119 rtc::LogMessage::LogThreads(true);
103 rtc::LogMessage::LogTimestamps(true); 120 rtc::LogMessage::LogTimestamps(true);
104 rtc::LogMessage::AddLogToStream(_logSink.get(), [self rtcSeverity]); 121 rtc::LogMessage::AddLogToStream(_logSink.get(), [self rtcSeverity]);
105 _hasStarted = YES; 122 _hasStarted = YES;
106 } 123 }
107 124
108 - (void)stop { 125 - (void)stop {
109 if (!_hasStarted) { 126 if (!_hasStarted) {
110 return; 127 return;
111 } 128 }
112 RTC_DCHECK(_logSink); 129 RTC_DCHECK(_logSink);
113 rtc::LogMessage::RemoveLogToStream(_logSink.get()); 130 rtc::LogMessage::RemoveLogToStream(_logSink.get());
114 _hasStarted = NO; 131 _hasStarted = NO;
115 _logSink.reset(); 132 _logSink.reset();
116 } 133 }
117 134
118 - (NSData *)logData { 135 - (NSData *)logData {
119 if (_hasStarted) { 136 if (_hasStarted) {
120 return nil; 137 return nil;
121 } 138 }
122 NSMutableData* logData = [NSMutableData data]; 139 NSMutableData* logData = [NSMutableData data];
123 rtc::scoped_ptr<rtc::CallSessionFileRotatingStream> stream( 140 rtc::scoped_ptr<rtc::FileRotatingStream> stream;
124 new rtc::CallSessionFileRotatingStream(_dirPath.UTF8String)); 141 if (_rotationType == kRTCFileLoggerRotationTypeOldest) {
tkchin_webrtc 2015/11/16 21:37:25 ditto switch
Chuck 2015/12/04 22:42:57 Done.
142 stream.reset(new rtc::FileRotatingStream(_dirPath.UTF8String,
143 kRTCFileLoggerRotatingLogPrefix));
144 } else {
145 stream.reset(new rtc::CallSessionFileRotatingStream(_dirPath.UTF8String));
146 }
125 if (!stream->Open()) { 147 if (!stream->Open()) {
126 return logData; 148 return logData;
127 } 149 }
128 size_t bufferSize = 0; 150 size_t bufferSize = 0;
129 if (!stream->GetSize(&bufferSize) || bufferSize == 0) { 151 if (!stream->GetSize(&bufferSize) || bufferSize == 0) {
130 return logData; 152 return logData;
131 } 153 }
132 size_t read = 0; 154 size_t read = 0;
133 // Allocate memory using malloc so we can pass it direcly to NSData without 155 // Allocate memory using malloc so we can pass it direcly to NSData without
134 // copying. 156 // copying.
(...skipping 13 matching lines...) Expand all
148 case kRTCFileLoggerSeverityInfo: 170 case kRTCFileLoggerSeverityInfo:
149 return rtc::LS_INFO; 171 return rtc::LS_INFO;
150 case kRTCFileLoggerSeverityWarning: 172 case kRTCFileLoggerSeverityWarning:
151 return rtc::LS_WARNING; 173 return rtc::LS_WARNING;
152 case kRTCFileLoggerSeverityError: 174 case kRTCFileLoggerSeverityError:
153 return rtc::LS_ERROR; 175 return rtc::LS_ERROR;
154 } 176 }
155 } 177 }
156 178
157 @end 179 @end
OLDNEW
« no previous file with comments | « no previous file | talk/app/webrtc/objc/public/RTCFileLogger.h » ('j') | talk/app/webrtc/objc/public/RTCFileLogger.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698