1 | /****************************************************************************** |
---|
2 | * $Id$ |
---|
3 | * |
---|
4 | * Copyright (c) 2007 Transmission authors and contributors |
---|
5 | * |
---|
6 | * Permission is hereby granted, free of charge, to any person obtaining a |
---|
7 | * copy of this software and associated documentation files (the "Software"), |
---|
8 | * to deal in the Software without restriction, including without limitation |
---|
9 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, |
---|
10 | * and/or sell copies of the Software, and to permit persons to whom the |
---|
11 | * Software is furnished to do so, subject to the following conditions: |
---|
12 | * |
---|
13 | * The above copyright notice and this permission notice shall be included in |
---|
14 | * all copies or substantial portions of the Software. |
---|
15 | * |
---|
16 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
---|
17 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
---|
18 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
---|
19 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
---|
20 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
---|
21 | * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
---|
22 | * DEALINGS IN THE SOFTWARE. |
---|
23 | *****************************************************************************/ |
---|
24 | |
---|
25 | #import "StatsWindowController.h" |
---|
26 | #import "NSStringAdditions.h" |
---|
27 | |
---|
28 | #define UPDATE_SECONDS 1.0 |
---|
29 | |
---|
30 | @interface StatsWindowController (Private) |
---|
31 | |
---|
32 | - (void) updateStats; |
---|
33 | |
---|
34 | @end |
---|
35 | |
---|
36 | @implementation StatsWindowController |
---|
37 | |
---|
38 | StatsWindowController * fStatsWindowInstance = nil; |
---|
39 | tr_handle * fLib; |
---|
40 | + (StatsWindowController *) statsWindow: (tr_handle *) lib |
---|
41 | { |
---|
42 | if (!fStatsWindowInstance) |
---|
43 | { |
---|
44 | if ((fStatsWindowInstance = [[self alloc] initWithWindowNibName: @"StatsWindow"])) |
---|
45 | { |
---|
46 | fLib = lib; |
---|
47 | } |
---|
48 | } |
---|
49 | return fStatsWindowInstance; |
---|
50 | } |
---|
51 | |
---|
52 | - (void) awakeFromNib |
---|
53 | { |
---|
54 | [self updateStats]; |
---|
55 | |
---|
56 | fTimer = [NSTimer scheduledTimerWithTimeInterval: UPDATE_SECONDS target: self |
---|
57 | selector: @selector(updateStats) userInfo: nil repeats: YES]; |
---|
58 | [[NSRunLoop currentRunLoop] addTimer: fTimer forMode: NSModalPanelRunLoopMode]; |
---|
59 | [[NSRunLoop currentRunLoop] addTimer: fTimer forMode: NSEventTrackingRunLoopMode]; |
---|
60 | } |
---|
61 | |
---|
62 | - (void) windowWillClose: (id)sender |
---|
63 | { |
---|
64 | if (fTimer) |
---|
65 | [fTimer invalidate]; |
---|
66 | |
---|
67 | [fStatsWindowInstance release]; |
---|
68 | fStatsWindowInstance = nil; |
---|
69 | } |
---|
70 | |
---|
71 | @end |
---|
72 | |
---|
73 | @implementation StatsWindowController (Private) |
---|
74 | |
---|
75 | - (void) updateStats |
---|
76 | { |
---|
77 | tr_global_stats stats; |
---|
78 | tr_getGlobalStats(fLib, &stats); |
---|
79 | |
---|
80 | [fUploadedField setStringValue: [NSString stringForLargeFileSizeGigs: stats.uploadedGigs bytes: stats.uploadedBytes]]; |
---|
81 | [fDownloadedField setStringValue: [NSString stringForLargeFileSizeGigs: stats.downloadedGigs bytes: stats.downloadedBytes]]; |
---|
82 | [fRatioField setStringValue: [NSString stringForRatio: stats.ratio]]; |
---|
83 | |
---|
84 | NSMutableArray * timeArray = [NSMutableArray arrayWithCapacity: 4]; |
---|
85 | uint64_t seconds = stats.secondsActive; |
---|
86 | if (stats.secondsActive >= 86400) //24 * 60 * 60 |
---|
87 | { |
---|
88 | int days = seconds / 86400; |
---|
89 | if (days == 1) |
---|
90 | [timeArray addObject: NSLocalizedString(@"1 day", "stats window -> running time")]; |
---|
91 | else |
---|
92 | [timeArray addObject: [NSString stringWithFormat: NSLocalizedString(@"%d days", "stats window -> running time"), |
---|
93 | seconds / 86400]]; |
---|
94 | seconds %= 86400; |
---|
95 | } |
---|
96 | if (stats.secondsActive >= 3600) //60 * 60 |
---|
97 | { |
---|
98 | [timeArray addObject: [NSString stringWithFormat: NSLocalizedString(@"%d hours", "stats window -> running time"), |
---|
99 | seconds / 3600]]; |
---|
100 | seconds %= 3600; |
---|
101 | } |
---|
102 | if (stats.secondsActive >= 60) |
---|
103 | { |
---|
104 | [timeArray addObject: [NSString stringWithFormat: NSLocalizedString(@"%d min", "stats window -> running time"), seconds / 60]]; |
---|
105 | seconds %= 60; |
---|
106 | } |
---|
107 | [timeArray addObject: [NSString stringWithFormat: NSLocalizedString(@"%d sec", "stats window -> running time"), seconds]]; |
---|
108 | [fTimeField setStringValue: [timeArray componentsJoinedByString: @" "]]; |
---|
109 | |
---|
110 | [fNumOpenedField setStringValue: [NSString stringWithFormat: NSLocalizedString(@"%d Times", "stats window -> times opened"), |
---|
111 | stats.sessionCount]]; |
---|
112 | } |
---|
113 | |
---|
114 | @end |
---|