2008-08-31 19:47:11 +00:00
|
|
|
/******************************************************************************
|
|
|
|
* $Id$
|
|
|
|
*
|
2012-01-14 17:12:04 +00:00
|
|
|
* Copyright (c) 2008-2012 Transmission authors and contributors
|
2008-08-31 19:47:11 +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 "BlocklistDownloaderViewController.h"
|
|
|
|
#import "BlocklistDownloader.h"
|
|
|
|
#import "PrefsController.h"
|
|
|
|
#import "NSStringAdditions.h"
|
|
|
|
|
|
|
|
@interface BlocklistDownloaderViewController (Private)
|
|
|
|
|
|
|
|
- (id) initWithPrefsController: (PrefsController *) prefsController;
|
|
|
|
- (void) startDownload;
|
2008-10-28 00:08:49 +00:00
|
|
|
- (void) failureSheetClosed: (NSAlert *) alert returnCode: (NSInteger) code contextInfo: (void *) info;
|
2008-08-31 19:47:11 +00:00
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation BlocklistDownloaderViewController
|
|
|
|
|
2012-03-13 03:20:09 +00:00
|
|
|
BlocklistDownloaderViewController * fBLViewController = nil;
|
2008-08-31 19:47:11 +00:00
|
|
|
+ (void) downloadWithPrefsController: (PrefsController *) prefsController
|
|
|
|
{
|
2012-03-13 03:20:09 +00:00
|
|
|
if (!fBLViewController)
|
|
|
|
{
|
|
|
|
fBLViewController = [[BlocklistDownloaderViewController alloc] initWithPrefsController: prefsController];
|
|
|
|
[fBLViewController startDownload];
|
|
|
|
}
|
2008-08-31 19:47:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void) awakeFromNib
|
|
|
|
{
|
|
|
|
[fButton setTitle: NSLocalizedString(@"Cancel", "Blocklist -> cancel button")];
|
|
|
|
|
2009-12-23 02:02:11 +00:00
|
|
|
const CGFloat oldWidth = NSWidth([fButton frame]);
|
2008-08-31 19:47:11 +00:00
|
|
|
[fButton sizeToFit];
|
|
|
|
NSRect buttonFrame = [fButton frame];
|
2009-12-23 02:02:11 +00:00
|
|
|
buttonFrame.size.width += 12.0; //sizeToFit sizes a bit too small
|
|
|
|
buttonFrame.origin.x -= NSWidth(buttonFrame) - oldWidth;
|
2008-08-31 19:47:11 +00:00
|
|
|
[fButton setFrame: buttonFrame];
|
|
|
|
|
|
|
|
[fProgressBar setUsesThreadedAnimation: YES];
|
|
|
|
[fProgressBar startAnimation: self];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) cancelDownload: (id) sender
|
|
|
|
{
|
2008-08-31 20:48:10 +00:00
|
|
|
[[BlocklistDownloader downloader] cancelDownload];
|
2008-08-31 19:47:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void) setStatusStarting
|
|
|
|
{
|
|
|
|
[fTextField setStringValue: [NSLocalizedString(@"Connecting to site", "Blocklist -> message") stringByAppendingEllipsis]];
|
|
|
|
[fProgressBar setIndeterminate: YES];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) setStatusProgressForCurrentSize: (NSUInteger) currentSize expectedSize: (long long) expectedSize
|
|
|
|
{
|
|
|
|
NSString * string = NSLocalizedString(@"Downloading blocklist", "Blocklist -> message");
|
|
|
|
if (expectedSize != NSURLResponseUnknownLength)
|
|
|
|
{
|
|
|
|
[fProgressBar setIndeterminate: NO];
|
|
|
|
|
2011-01-08 05:11:28 +00:00
|
|
|
NSString * substring = [NSString stringForFilePartialSize: currentSize fullSize: expectedSize];
|
2008-08-31 19:47:11 +00:00
|
|
|
string = [string stringByAppendingFormat: @" (%@)", substring];
|
|
|
|
[fProgressBar setDoubleValue: (double)currentSize / expectedSize];
|
|
|
|
}
|
|
|
|
else
|
2008-08-31 20:05:46 +00:00
|
|
|
string = [string stringByAppendingFormat: @" (%@)", [NSString stringForFileSize: currentSize]];
|
2008-08-31 19:47:11 +00:00
|
|
|
|
|
|
|
[fTextField setStringValue: string];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) setStatusProcessing
|
|
|
|
{
|
|
|
|
//change to indeterminate while processing
|
|
|
|
[fProgressBar setIndeterminate: YES];
|
|
|
|
[fProgressBar startAnimation: self];
|
|
|
|
|
|
|
|
[fTextField setStringValue: [NSLocalizedString(@"Processing blocklist", "Blocklist -> message") stringByAppendingEllipsis]];
|
|
|
|
[fButton setEnabled: NO];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) setFinished
|
|
|
|
{
|
|
|
|
[NSApp endSheet: fStatusWindow];
|
|
|
|
[fStatusWindow orderOut: self];
|
|
|
|
|
2012-03-13 03:20:09 +00:00
|
|
|
fBLViewController = nil;
|
2012-03-13 02:52:11 +00:00
|
|
|
[self release];
|
2008-08-31 19:47:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void) setFailed: (NSString *) error
|
|
|
|
{
|
|
|
|
[NSApp endSheet: fStatusWindow];
|
|
|
|
[fStatusWindow orderOut: self];
|
|
|
|
|
2012-03-13 02:52:11 +00:00
|
|
|
NSAlert * alert = [[[NSAlert alloc] init] autorelease];
|
2008-08-31 19:47:11 +00:00
|
|
|
[alert addButtonWithTitle: NSLocalizedString(@"OK", "Blocklist -> button")];
|
|
|
|
[alert setMessageText: NSLocalizedString(@"Download of the blocklist failed.", "Blocklist -> message")];
|
|
|
|
[alert setAlertStyle: NSWarningAlertStyle];
|
|
|
|
|
2010-05-02 18:03:49 +00:00
|
|
|
[alert setInformativeText: error];
|
2008-08-31 19:47:11 +00:00
|
|
|
|
|
|
|
[alert beginSheetModalForWindow: [fPrefsController window] modalDelegate: self
|
|
|
|
didEndSelector: @selector(failureSheetClosed:returnCode:contextInfo:) contextInfo: nil];
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation BlocklistDownloaderViewController (Private)
|
|
|
|
|
|
|
|
- (id) initWithPrefsController: (PrefsController *) prefsController
|
|
|
|
{
|
|
|
|
if ((self = [super init]))
|
|
|
|
{
|
|
|
|
fPrefsController = prefsController;
|
|
|
|
}
|
|
|
|
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) startDownload
|
|
|
|
{
|
|
|
|
//load window and show as sheet
|
|
|
|
[NSBundle loadNibNamed: @"BlocklistStatusWindow" owner: self];
|
|
|
|
|
2008-08-31 20:48:10 +00:00
|
|
|
BlocklistDownloader * downloader = [BlocklistDownloader downloader];
|
2010-07-21 05:13:25 +00:00
|
|
|
[downloader setViewController: self]; //do before showing the sheet to ensure it doesn't slide out with placeholder text
|
|
|
|
|
|
|
|
[NSApp beginSheet: fStatusWindow modalForWindow: [fPrefsController window] modalDelegate: nil didEndSelector: nil contextInfo: nil];
|
2008-08-31 19:47:11 +00:00
|
|
|
}
|
|
|
|
|
2008-10-28 00:08:49 +00:00
|
|
|
- (void) failureSheetClosed: (NSAlert *) alert returnCode: (NSInteger) code contextInfo: (void *) info
|
2008-08-31 19:47:11 +00:00
|
|
|
{
|
2008-10-01 02:40:04 +00:00
|
|
|
[[alert window] orderOut: self];
|
2012-03-13 03:20:09 +00:00
|
|
|
|
|
|
|
fBLViewController = nil;
|
2012-03-13 02:52:11 +00:00
|
|
|
[self release];
|
2008-08-31 19:47:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@end
|