forked from pieter/gitx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPBRemoteProgressSheet.m
265 lines (184 loc) · 7.7 KB
/
PBRemoteProgressSheet.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
//
// PBRemoteProgressSheetController.m
// GitX
//
// Created by Nathan Kinsinger on 12/6/09.
// Copyright 2009 Nathan Kinsinger. All rights reserved.
//
#import "PBRemoteProgressSheet.h"
#import "PBGitWindowController.h"
#import "PBGitRepository.h"
#import "PBGitBinary.h"
#import "PBEasyPipe.h"
NSString * const kGitXProgressDescription = @"PBGitXProgressDescription";
NSString * const kGitXProgressSuccessDescription = @"PBGitXProgressSuccessDescription";
NSString * const kGitXProgressSuccessInfo = @"PBGitXProgressSuccessInfo";
NSString * const kGitXProgressErrorDescription = @"PBGitXProgressErrorDescription";
NSString * const kGitXProgressErrorInfo = @"PBGitXProgressErrorInfo";
@interface PBRemoteProgressSheet ()
- (void) beginRemoteProgressSheetForArguments:(NSArray *)args title:(NSString *)theTitle description:(NSString *)theDescription inDir:(NSString *)dir windowController:(NSWindowController *)windowController;
- (void) showSuccessMessage;
- (void) showErrorMessage;
- (NSString *) progressTitle;
- (NSString *) successTitle;
- (NSString *) successDescription;
- (NSString *) errorTitle;
- (NSString *) errorDescription;
- (NSString *) commandDescription;
- (NSString *) standardOutputDescription;
- (NSString *) standardErrorDescription;
@end
@implementation PBRemoteProgressSheet
@synthesize progressDescription;
@synthesize progressIndicator;
#pragma mark -
#pragma mark PBRemoteProgressSheet
+ (void) beginRemoteProgressSheetForArguments:(NSArray *)args title:(NSString *)theTitle description:(NSString *)theDescription inDir:(NSString *)dir windowController:(NSWindowController *)windowController
{
PBRemoteProgressSheet *sheet = [[self alloc] initWithWindowNibName:@"PBRemoteProgressSheet"];
[sheet beginRemoteProgressSheetForArguments:args title:theTitle description:theDescription inDir:dir windowController:windowController];
}
+ (void) beginRemoteProgressSheetForArguments:(NSArray *)args title:(NSString *)theTitle description:(NSString *)theDescription inRepository:(PBGitRepository *)repo
{
[PBRemoteProgressSheet beginRemoteProgressSheetForArguments:args title:theTitle description:theDescription inDir:[repo workingDirectory] windowController:repo.windowController];
}
- (void) beginRemoteProgressSheetForArguments:(NSArray *)args title:(NSString *)theTitle description:(NSString *)theDescription inDir:(NSString *)dir windowController:(NSWindowController *)windowController
{
controller = windowController;
arguments = args;
title = theTitle;
description = theDescription;
[self window]; // loads the window (if it wasn't already)
// resize window if the description is larger than the default text field
NSRect originalFrame = [self.progressDescription frame];
[self.progressDescription setStringValue:[self progressTitle]];
NSAttributedString *attributedTitle = [self.progressDescription attributedStringValue];
NSSize boundingSize = originalFrame.size;
boundingSize.height = 0.0f;
NSRect boundingRect = [attributedTitle boundingRectWithSize:boundingSize options:NSStringDrawingUsesLineFragmentOrigin];
CGFloat heightDelta = boundingRect.size.height - originalFrame.size.height;
if (heightDelta > 0.0f) {
NSRect windowFrame = [[self window] frame];
windowFrame.size.height += heightDelta;
[[self window] setFrame:windowFrame display:NO];
}
[self.progressIndicator startAnimation:nil];
[NSApp beginSheet:[self window] modalForWindow:[controller window] modalDelegate:self didEndSelector:nil contextInfo:nil];
gitTask = [PBEasyPipe taskForCommand:[PBGitBinary path] withArgs:arguments inDir:dir];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(taskCompleted:) name:NSTaskDidTerminateNotification object:gitTask];
// having intermittent problem with long running git tasks not sending a termination notice, so periodically check whether the task is done
taskTimer = [NSTimer scheduledTimerWithTimeInterval:0.2 target:self selector:@selector(checkTask:) userInfo:nil repeats:YES];
[gitTask launch];
}
#pragma mark Notifications
- (void) taskCompleted:(NSNotification *)notification
{
[taskTimer invalidate];
[[NSNotificationCenter defaultCenter] removeObserver:self];
[self.progressIndicator stopAnimation:nil];
[NSApp endSheet:[self window]];
[[self window] orderOut:self];
returnCode = [gitTask terminationStatus];
if (returnCode)
[self showErrorMessage];
else
[self showSuccessMessage];
if ([controller respondsToSelector:@selector(repository)])
[[(PBGitWindowController *)controller repository] reloadRefs];
}
#pragma mark taskTimer
- (void) checkTask:(NSTimer *)timer
{
if (![gitTask isRunning]) {
NSLog(@"[%@ %@] gitTask terminated without notification", [self class], NSStringFromSelector(_cmd));
[self taskCompleted:nil];
}
}
#pragma mark Messages
- (void) showSuccessMessage
{
NSMutableString *info = [NSMutableString string];
[info appendString:[self successDescription]];
[info appendString:[self commandDescription]];
[info appendString:[self standardOutputDescription]];
if ([controller respondsToSelector:@selector(showMessageSheet:infoText:)])
[(PBGitWindowController *)controller showMessageSheet:[self successTitle] infoText:info];
}
- (void) showErrorMessage
{
NSMutableString *info = [NSMutableString string];
[info appendString:[self errorDescription]];
[info appendString:[self commandDescription]];
[info appendString:[self standardOutputDescription]];
[info appendString:[self standardErrorDescription]];
NSDictionary *errorUserInfo = [NSDictionary dictionaryWithObjectsAndKeys:
[self errorTitle], NSLocalizedDescriptionKey,
info, NSLocalizedRecoverySuggestionErrorKey,
nil];
NSError *error = [NSError errorWithDomain:PBGitRepositoryErrorDomain code:0 userInfo:errorUserInfo];
if ([controller respondsToSelector:@selector(showErrorSheet:)])
[(PBGitWindowController *)controller showErrorSheet:error];
}
#pragma mark Display Strings
- (NSString *) progressTitle
{
NSString *progress = description;
if (!progress)
progress = @"Operation in progress.";
return progress;
}
- (NSString *) successTitle
{
NSString *success = title;
if (!success)
success = @"Operation";
return [success stringByAppendingString:@" completed."];
}
- (NSString *) successDescription
{
NSString *info = description;
if (!info)
return @"";
return [info stringByAppendingString:@" completed successfully.\n\n"];
}
- (NSString *) errorTitle
{
NSString *error = title;
if (!error)
error = @"Operation";
return [error stringByAppendingString:@" failed."];
}
- (NSString *) errorDescription
{
NSString *info = description;
if (!info)
return @"";
return [info stringByAppendingString:@" encountered an error.\n\n"];
}
- (NSString *) commandDescription
{
if (!arguments || ([arguments count] == 0))
return @"";
return [NSString stringWithFormat:@"command: git %@", [arguments componentsJoinedByString:@" "]];
}
- (NSString *) standardOutputDescription
{
if (!gitTask || [gitTask isRunning])
return @"";
NSData *data = [[[gitTask standardOutput] fileHandleForReading] readDataToEndOfFile];
NSString *standardOutput = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
if ([standardOutput isEqualToString:@""])
return @"";
return [NSString stringWithFormat:@"\n\n%@", standardOutput];
}
- (NSString *) standardErrorDescription
{
if (!gitTask || [gitTask isRunning])
return @"";
NSData *data = [[[gitTask standardError] fileHandleForReading] readDataToEndOfFile];
NSString *standardError = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
if ([standardError isEqualToString:@""])
return [NSString stringWithFormat:@"\nerror = %d", returnCode];
return [NSString stringWithFormat:@"\n\n%@\nerror = %d", standardError, returnCode];
}
@end