aboutsummaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorrowanbeentje <rowan@beent.je>2010-06-05 22:20:31 +0000
committerrowanbeentje <rowan@beent.je>2010-06-05 22:20:31 +0000
commitd2fc07c38b51c6fa0f27586e52eee668d5bf2add (patch)
tree6bd546bb3c169a417aedc29524e3d32faf10cd46 /Source
parentb690511d3a685292d6afc383832232a7ec25980b (diff)
downloadsequelpro-d2fc07c38b51c6fa0f27586e52eee668d5bf2add.tar.gz
sequelpro-d2fc07c38b51c6fa0f27586e52eee668d5bf2add.tar.bz2
sequelpro-d2fc07c38b51c6fa0f27586e52eee668d5bf2add.zip
- Improve progress indicator thread safety, improving stability and fixing issues like http://spbug.com/l/334
Diffstat (limited to 'Source')
-rw-r--r--Source/SPDatabaseDocument.m17
-rw-r--r--Source/YRKSpinningProgressIndicator.h1
-rw-r--r--Source/YRKSpinningProgressIndicator.m4
3 files changed, 17 insertions, 5 deletions
diff --git a/Source/SPDatabaseDocument.m b/Source/SPDatabaseDocument.m
index 72cf201b..c91a5c08 100644
--- a/Source/SPDatabaseDocument.m
+++ b/Source/SPDatabaseDocument.m
@@ -1219,6 +1219,8 @@
*/
- (void) startTaskWithDescription:(NSString *)description
{
+ // Ensure a call on the main thread
+ if (![NSThread isMainThread]) return [[self onMainThread] startTaskWithDescription:description];
// Set the task text. If a nil string was supplied, a generic query notification is occurring -
// if a task is not already active, use default text.
@@ -1286,20 +1288,27 @@
/**
* Sets the task percentage progress - the first call to this automatically
* switches the progress display to determinate.
+ * Can be called from background threads - forwards to main thread as appropriate.
*/
- (void) setTaskPercentage:(CGFloat)taskPercentage
{
+
+ // If the task display is currently indeterminate, set it to determinate on the main thread.
if (taskDisplayIsIndeterminate) {
+ if (![NSThread isMainThread]) return [[self onMainThread] setTaskPercentage:taskPercentage];
+
taskDisplayIsIndeterminate = NO;
[taskProgressIndicator stopAnimation:self];
[taskProgressIndicator setDoubleValue:0.5];
}
+ // Check the supplied progress. Compare it to the display interval - how often
+ // the interface is updated - and update the interface if the value has changed enough.
taskProgressValue = taskPercentage;
if (taskProgressValue > taskDisplayLastValue + taskProgressValueDisplayInterval
|| taskProgressValue < taskDisplayLastValue - taskProgressValueDisplayInterval)
{
- [taskProgressIndicator setDoubleValue:taskProgressValue];
+ [taskProgressIndicator performSelectorOnMainThread:@selector(setNumberValue:) withObject:[NSNumber numberWithDouble:taskProgressValue] waitUntilDone:NO];
taskDisplayLastValue = taskProgressValue;
}
}
@@ -1319,6 +1328,7 @@
}
if (taskDisplayIsIndeterminate) return;
+ [NSObject cancelPreviousPerformRequestsWithTarget:taskProgressIndicator];
taskDisplayIsIndeterminate = YES;
[taskProgressIndicator setIndeterminate:YES];
[taskProgressIndicator startAnimation:self];
@@ -1332,10 +1342,7 @@
{
// Ensure a call on the main thread
- if (![NSThread isMainThread]) {
- [self performSelectorOnMainThread:@selector(endTask) withObject:nil waitUntilDone:YES];
- return;
- }
+ if (![NSThread isMainThread]) return [[self onMainThread] endTask];
// Decrement the working level
_isWorkingLevel--;
diff --git a/Source/YRKSpinningProgressIndicator.h b/Source/YRKSpinningProgressIndicator.h
index 178551b9..4be79805 100644
--- a/Source/YRKSpinningProgressIndicator.h
+++ b/Source/YRKSpinningProgressIndicator.h
@@ -47,6 +47,7 @@
- (void)setIndeterminate:(BOOL)isIndeterminate;
- (double)doubleValue;
- (void)setDoubleValue:(double)doubleValue;
+- (void)setNumberValue:(NSNumber *)numberValue;
- (double)maxValue;
- (void)setMaxValue:(double)maxValue;
diff --git a/Source/YRKSpinningProgressIndicator.m b/Source/YRKSpinningProgressIndicator.m
index 07e93863..4872b201 100644
--- a/Source/YRKSpinningProgressIndicator.m
+++ b/Source/YRKSpinningProgressIndicator.m
@@ -340,6 +340,10 @@
[self setNeedsDisplay:YES];
}
+- (void)setNumberValue:(NSNumber *)numberValue
+{
+ [self setDoubleValue:[numberValue doubleValue]];
+}
- (double)maxValue
{
return _maxValue;