2007-11-19 18:13:41 +00:00
|
|
|
/******************************************************************************
|
|
|
|
* $Id$
|
|
|
|
*
|
2011-01-01 20:42:14 +00:00
|
|
|
* Copyright (c) 2007-2011 Transmission authors and contributors
|
2007-11-19 18:13:41 +00:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
|
* DEALINGS IN THE SOFTWARE.
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
#import "StatsWindowController.h"
|
|
|
|
#import "NSStringAdditions.h"
|
|
|
|
|
|
|
|
#define UPDATE_SECONDS 1.0
|
|
|
|
|
|
|
|
@interface StatsWindowController (Private)
|
|
|
|
|
|
|
|
- (void) updateStats;
|
|
|
|
|
2008-04-22 21:04:01 +00:00
|
|
|
- (void) performResetStats;
|
2008-10-28 00:08:49 +00:00
|
|
|
- (void) resetSheetClosed: (NSAlert *) alert returnCode: (NSInteger) code contextInfo: (void *) info;
|
2008-04-22 21:04:01 +00:00
|
|
|
|
2007-11-19 18:13:41 +00:00
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation StatsWindowController
|
|
|
|
|
|
|
|
StatsWindowController * fStatsWindowInstance = nil;
|
2008-12-22 19:14:43 +00:00
|
|
|
tr_session * fLib;
|
|
|
|
+ (StatsWindowController *) statsWindow: (tr_session *) lib
|
2007-11-19 18:13:41 +00:00
|
|
|
{
|
|
|
|
if (!fStatsWindowInstance)
|
|
|
|
{
|
|
|
|
if ((fStatsWindowInstance = [[self alloc] initWithWindowNibName: @"StatsWindow"]))
|
|
|
|
{
|
|
|
|
fLib = lib;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return fStatsWindowInstance;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) awakeFromNib
|
|
|
|
{
|
|
|
|
[self updateStats];
|
|
|
|
|
|
|
|
fTimer = [NSTimer scheduledTimerWithTimeInterval: UPDATE_SECONDS target: self
|
|
|
|
selector: @selector(updateStats) userInfo: nil repeats: YES];
|
|
|
|
[[NSRunLoop currentRunLoop] addTimer: fTimer forMode: NSModalPanelRunLoopMode];
|
|
|
|
[[NSRunLoop currentRunLoop] addTimer: fTimer forMode: NSEventTrackingRunLoopMode];
|
2008-03-16 06:20:35 +00:00
|
|
|
|
2008-03-26 18:40:41 +00:00
|
|
|
[[self window] setTitle: NSLocalizedString(@"Statistics", "Stats window -> title")];
|
|
|
|
|
2008-03-16 06:20:35 +00:00
|
|
|
//set label text
|
2008-03-18 21:59:17 +00:00
|
|
|
[fUploadedLabelField setStringValue: [NSLocalizedString(@"Uploaded", "Stats window -> label") stringByAppendingString: @":"]];
|
|
|
|
[fDownloadedLabelField setStringValue: [NSLocalizedString(@"Downloaded", "Stats window -> label") stringByAppendingString: @":"]];
|
|
|
|
[fRatioLabelField setStringValue: [NSLocalizedString(@"Ratio", "Stats window -> label") stringByAppendingString: @":"]];
|
|
|
|
[fTimeLabelField setStringValue: [NSLocalizedString(@"Running Time", "Stats window -> label") stringByAppendingString: @":"]];
|
|
|
|
[fNumOpenedLabelField setStringValue: [NSLocalizedString(@"Program Started", "Stats window -> label")
|
|
|
|
stringByAppendingString: @":"]];
|
2008-03-16 06:20:35 +00:00
|
|
|
|
|
|
|
//size all elements
|
2009-10-17 17:15:37 +00:00
|
|
|
const CGFloat oldWidth = [fUploadedLabelField frame].size.width;
|
2008-03-16 06:20:35 +00:00
|
|
|
|
|
|
|
[fUploadedLabelField sizeToFit];
|
|
|
|
[fDownloadedLabelField sizeToFit];
|
|
|
|
[fRatioLabelField sizeToFit];
|
|
|
|
[fTimeLabelField sizeToFit];
|
|
|
|
[fNumOpenedLabelField sizeToFit];
|
|
|
|
|
2008-10-28 00:08:49 +00:00
|
|
|
CGFloat maxWidth = MAX([fUploadedLabelField frame].size.width, [fDownloadedLabelField frame].size.width);
|
2008-03-16 06:20:35 +00:00
|
|
|
maxWidth = MAX(maxWidth, [fRatioLabelField frame].size.width);
|
|
|
|
maxWidth = MAX(maxWidth, [fTimeLabelField frame].size.width);
|
|
|
|
maxWidth = MAX(maxWidth, [fNumOpenedLabelField frame].size.width);
|
|
|
|
|
|
|
|
NSRect frame = [fUploadedLabelField frame];
|
|
|
|
frame.size.width = maxWidth;
|
|
|
|
[fUploadedLabelField setFrame: frame];
|
|
|
|
|
|
|
|
frame = [fDownloadedLabelField frame];
|
|
|
|
frame.size.width = maxWidth;
|
|
|
|
[fDownloadedLabelField setFrame: frame];
|
|
|
|
|
|
|
|
frame = [fRatioLabelField frame];
|
|
|
|
frame.size.width = maxWidth;
|
|
|
|
[fRatioLabelField setFrame: frame];
|
|
|
|
|
|
|
|
frame = [fTimeLabelField frame];
|
|
|
|
frame.size.width = maxWidth;
|
|
|
|
[fTimeLabelField setFrame: frame];
|
|
|
|
|
|
|
|
frame = [fNumOpenedLabelField frame];
|
|
|
|
frame.size.width = maxWidth;
|
|
|
|
[fNumOpenedLabelField setFrame: frame];
|
|
|
|
|
2008-03-25 23:10:49 +00:00
|
|
|
//resize window for new label width - fields are set in nib to adjust correctly
|
|
|
|
NSRect windowRect = [[self window] frame];
|
|
|
|
windowRect.size.width += maxWidth - oldWidth;
|
|
|
|
[[self window] setFrame: windowRect display: YES];
|
2008-04-22 21:04:01 +00:00
|
|
|
|
|
|
|
//resize reset button
|
2009-10-17 17:15:37 +00:00
|
|
|
const CGFloat oldButtonWidth = [fResetButton frame].size.width;
|
2008-04-22 21:04:01 +00:00
|
|
|
|
|
|
|
[fResetButton setTitle: NSLocalizedString(@"Reset", "Stats window -> reset button")];
|
|
|
|
[fResetButton sizeToFit];
|
|
|
|
|
|
|
|
NSRect buttonFrame = [fResetButton frame];
|
2009-03-01 17:02:58 +00:00
|
|
|
buttonFrame.size.width += 10.0;
|
2008-04-22 21:04:01 +00:00
|
|
|
buttonFrame.origin.x -= buttonFrame.size.width - oldButtonWidth;
|
|
|
|
[fResetButton setFrame: buttonFrame];
|
2007-11-19 18:13:41 +00:00
|
|
|
}
|
|
|
|
|
2008-04-22 21:04:01 +00:00
|
|
|
- (void) windowWillClose: (id) sender
|
2007-11-19 18:13:41 +00:00
|
|
|
{
|
2007-12-24 17:57:19 +00:00
|
|
|
[fTimer invalidate];
|
2007-11-19 18:13:41 +00:00
|
|
|
|
2007-12-25 19:08:06 +00:00
|
|
|
[fStatsWindowInstance release];
|
2007-11-19 18:13:41 +00:00
|
|
|
fStatsWindowInstance = nil;
|
|
|
|
}
|
|
|
|
|
2008-04-22 21:04:01 +00:00
|
|
|
- (void) resetStats: (id) sender
|
|
|
|
{
|
|
|
|
if (![[NSUserDefaults standardUserDefaults] boolForKey: @"WarningResetStats"])
|
|
|
|
{
|
|
|
|
[self performResetStats];
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
NSAlert * alert = [[NSAlert alloc] init];
|
|
|
|
[alert setMessageText: NSLocalizedString(@"Are you sure you want to reset usage statistics?", "Stats reset -> title")];
|
2008-04-23 12:44:11 +00:00
|
|
|
[alert setInformativeText: NSLocalizedString(@"This will clear the global statistics displayed by Transmission."
|
2008-10-23 21:19:30 +00:00
|
|
|
" Individual transfer statistics will not be affected.", "Stats reset -> message")];
|
2008-04-22 21:04:01 +00:00
|
|
|
[alert setAlertStyle: NSWarningAlertStyle];
|
|
|
|
[alert addButtonWithTitle: NSLocalizedString(@"Reset", "Stats reset -> button")];
|
|
|
|
[alert addButtonWithTitle: NSLocalizedString(@"Cancel", "Stats reset -> button")];
|
2008-12-26 05:57:51 +00:00
|
|
|
[alert setShowsSuppressionButton: YES];
|
2008-04-22 21:04:01 +00:00
|
|
|
|
|
|
|
[alert beginSheetModalForWindow: [self window] modalDelegate: self
|
|
|
|
didEndSelector: @selector(resetSheetClosed:returnCode:contextInfo:) contextInfo: nil];
|
|
|
|
}
|
|
|
|
|
2009-09-12 02:39:45 +00:00
|
|
|
- (NSString *) windowFrameAutosaveName
|
|
|
|
{
|
|
|
|
return @"StatsWindow";
|
|
|
|
}
|
|
|
|
|
2007-11-19 18:13:41 +00:00
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation StatsWindowController (Private)
|
|
|
|
|
|
|
|
- (void) updateStats
|
|
|
|
{
|
2007-11-20 13:08:10 +00:00
|
|
|
tr_session_stats statsAll, statsSession;
|
2008-05-22 20:44:41 +00:00
|
|
|
tr_sessionGetCumulativeStats(fLib, &statsAll);
|
|
|
|
tr_sessionGetStats(fLib, &statsSession);
|
2007-11-19 18:13:41 +00:00
|
|
|
|
2007-11-26 20:23:12 +00:00
|
|
|
[fUploadedField setStringValue: [NSString stringForFileSize: statsSession.uploadedBytes]];
|
2010-11-14 21:51:56 +00:00
|
|
|
[fUploadedField setToolTip: [NSString stringWithFormat: NSLocalizedString(@"%@ bytes", "stats -> bytes"),
|
|
|
|
[NSString formattedUInteger: statsSession.uploadedBytes]]];
|
2008-03-25 01:01:28 +00:00
|
|
|
[fUploadedAllField setStringValue: [NSString stringWithFormat: NSLocalizedString(@"%@ total", "stats total"),
|
|
|
|
[NSString stringForFileSize: statsAll.uploadedBytes]]];
|
2010-11-14 21:51:56 +00:00
|
|
|
[fUploadedAllField setToolTip: [NSString stringWithFormat: NSLocalizedString(@"%@ bytes", "stats -> bytes"),
|
|
|
|
[NSString formattedUInteger: statsAll.uploadedBytes]]];
|
2007-11-19 18:28:24 +00:00
|
|
|
|
2007-11-26 20:23:12 +00:00
|
|
|
[fDownloadedField setStringValue: [NSString stringForFileSize: statsSession.downloadedBytes]];
|
2010-11-14 21:51:56 +00:00
|
|
|
[fDownloadedField setToolTip: [NSString stringWithFormat: NSLocalizedString(@"%@ bytes", "stats -> bytes"),
|
|
|
|
[NSString formattedUInteger: statsSession.downloadedBytes]]];
|
2008-03-25 01:01:28 +00:00
|
|
|
[fDownloadedAllField setStringValue: [NSString stringWithFormat: NSLocalizedString(@"%@ total", "stats total"),
|
|
|
|
[NSString stringForFileSize: statsAll.downloadedBytes]]];
|
2010-11-14 21:51:56 +00:00
|
|
|
[fDownloadedAllField setToolTip: [NSString stringWithFormat: NSLocalizedString(@"%@ bytes", "stats -> bytes"),
|
|
|
|
[NSString formattedUInteger: statsAll.downloadedBytes]]];
|
2007-11-19 20:00:18 +00:00
|
|
|
|
2007-11-21 02:19:42 +00:00
|
|
|
[fRatioField setStringValue: [NSString stringForRatio: statsSession.ratio]];
|
2007-11-26 19:18:00 +00:00
|
|
|
|
|
|
|
NSString * totalRatioString = statsAll.ratio != TR_RATIO_NA
|
2008-03-25 01:01:28 +00:00
|
|
|
? [NSString stringWithFormat: NSLocalizedString(@"%@ total", "stats total"), [NSString stringForRatio: statsAll.ratio]]
|
2007-11-26 19:18:00 +00:00
|
|
|
: NSLocalizedString(@"Total N/A", "stats total");
|
|
|
|
[fRatioAllField setStringValue: totalRatioString];
|
2007-11-21 02:19:42 +00:00
|
|
|
|
2008-02-22 15:29:20 +00:00
|
|
|
[fTimeField setStringValue: [NSString timeString: statsSession.secondsActive showSeconds: NO]];
|
2008-03-25 01:01:28 +00:00
|
|
|
[fTimeAllField setStringValue: [NSString stringWithFormat: NSLocalizedString(@"%@ total", "stats total"),
|
|
|
|
[NSString timeString: statsAll.secondsActive showSeconds: NO]]];
|
2007-11-21 02:19:42 +00:00
|
|
|
|
2008-05-23 22:58:17 +00:00
|
|
|
if (statsAll.sessionCount == 1)
|
|
|
|
[fNumOpenedField setStringValue: NSLocalizedString(@"1 time", "stats window -> times opened")];
|
|
|
|
else
|
2011-02-09 02:49:32 +00:00
|
|
|
[fNumOpenedField setStringValue: [NSString stringWithFormat: NSLocalizedString(@"%@ times", "stats window -> times opened"),
|
|
|
|
[NSString formattedUInteger: statsAll.sessionCount]]];
|
2007-11-19 20:00:18 +00:00
|
|
|
}
|
|
|
|
|
2008-04-22 21:04:01 +00:00
|
|
|
- (void) performResetStats
|
|
|
|
{
|
2008-05-22 20:44:41 +00:00
|
|
|
tr_sessionClearStats(fLib);
|
2008-04-22 21:04:01 +00:00
|
|
|
[self updateStats];
|
|
|
|
}
|
|
|
|
|
2008-10-28 00:08:49 +00:00
|
|
|
- (void) resetSheetClosed: (NSAlert *) alert returnCode: (NSInteger) code contextInfo: (void *) info
|
2008-04-22 21:04:01 +00:00
|
|
|
{
|
|
|
|
[[alert window] orderOut: nil];
|
|
|
|
|
2008-12-26 05:57:51 +00:00
|
|
|
if ([[alert suppressionButton] state] == NSOnState)
|
2008-04-22 21:04:01 +00:00
|
|
|
[[NSUserDefaults standardUserDefaults] setBool: NO forKey: @"WarningResetStats"];
|
|
|
|
|
|
|
|
if (code == NSAlertFirstButtonReturn)
|
|
|
|
[self performResetStats];
|
|
|
|
}
|
|
|
|
|
2007-11-19 18:13:41 +00:00
|
|
|
@end
|