transmission/macosx/TorrentGroup.m

88 lines
2.3 KiB
Mathematica
Raw Normal View History

/******************************************************************************
* $Id$
*
2009-01-10 23:37:37 +00:00
* Copyright (c) 2008-2009 Transmission authors and contributors
*
* 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 "TorrentGroup.h"
#import "Torrent.h"
#include "utils.h" //tr_getRatio()
@implementation TorrentGroup
2008-10-28 00:08:49 +00:00
- (id) initWithGroup: (NSInteger) group
{
if ((self = [super init]))
{
fGroup = group;
fTorrents = [[NSMutableArray alloc] init];
}
return self;
}
- (void) dealloc
{
[fTorrents release];
[super dealloc];
}
- (NSInteger) groupIndex
{
return fGroup;
}
- (NSMutableArray *) torrents
{
return fTorrents;
}
2008-10-28 00:08:49 +00:00
- (CGFloat) ratio
{
uint64_t uploaded = 0, downloaded = 0;
2008-12-26 07:25:17 +00:00
for (Torrent * torrent in fTorrents)
{
uploaded += [torrent uploadedTotal];
downloaded += [torrent downloadedTotal];
}
return tr_getRatio(uploaded, downloaded);
}
2008-10-28 00:08:49 +00:00
- (CGFloat) uploadRate
{
CGFloat rate = 0.0f;
2008-12-26 07:25:17 +00:00
for (Torrent * torrent in fTorrents)
rate += [torrent uploadRate];
return rate;
}
2008-10-28 00:08:49 +00:00
- (CGFloat) downloadRate
{
CGFloat rate = 0.0f;
2008-12-26 07:25:17 +00:00
for (Torrent * torrent in fTorrents)
rate += [torrent downloadRate];
return rate;
}
@end