forked from jason-tratta/QAutoSaver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQlabScripting.m
364 lines (248 loc) · 8.87 KB
/
QlabScripting.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
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
//
// QlabScripting.m
// QAutoSaver
//
// Created by Jason Tratta on 6/10/09.
// Copyright 2009 Sound Character. All rights reserved.
//
#import "QlabScripting.h"
#import "Qlab.h"
NSString const * JATFeedBackNotification = @"JATFeedBackPost";
@implementation QlabScripting
@synthesize feedBackText;
-(id)init
{
[super init];
myPrefs = [[PreferenceController alloc] init];
return self;
}
#pragma mark Qlab Polling
// Method to find any running cues
-(BOOL)isRunning
{
QlabApplication *qLab = [SBApplication applicationWithBundleIdentifier:@"com.figure53.Qlab.2"];
NSArray *array = [qLab workspaces];
NSArray *cuesRunning;
int i;
int c;
BOOL running = FALSE;
NSInteger arrayCount = [array count];
int cueCount;
for (i = 0; i < arrayCount; i++){
cuesRunning = [[array objectAtIndex:i]cues];
cueCount = [cuesRunning count];
for (c = 0; c < cueCount; c++){
if([[cuesRunning objectAtIndex:c]running] == TRUE) {
NSLog(@"Cue Running");
running = TRUE;
} else {
running = FALSE;
NSLog(@"No Cue Running"); }
}
}
return running;
[array release];
[cuesRunning release];
[qLab release];
}
//Is the QLab Application Running?
-(BOOL)isQlabActive
{
NSNotificationCenter *nc = [NSNotificationCenter defaultCenter];
QlabApplication *qLab = [SBApplication applicationWithBundleIdentifier:@"com.figure53.Qlab.2"];
if ([qLab isRunning] == TRUE){
active = TRUE;
NSLog(@"Qlab is active");
} else {
NSLog(@"Qlab is not active");
active = FALSE;
[self setFeedBackText:@"Please Launch Qlab 2!"];
NSLog(@"Sending Notification");
[nc postNotificationName:(NSString *) JATFeedBackNotification object:self];
}
return active;
[qLab release];
}
//Has the workspace been modified?
-(BOOL)isModified
{
QlabApplication *qLab = [SBApplication applicationWithBundleIdentifier:@"com.figure53.Qlab.2"];
NSArray *array = [qLab documents];
int i;
BOOL checkMod = FALSE;
NSInteger arrayCount = [array count];
for (i = 0; i < arrayCount; i++){
checkMod = [[array objectAtIndex:i]modified];
NSLog(@"checkMod reports %d", checkMod);
if (checkMod == TRUE) {
NSLog(@"checkMod reports %d", checkMod);
return TRUE;
}
}
return checkMod;
[array release];
[qLab release];
}
#pragma mark File Handleing / Moving Files Around
-(void) saveAllWorkspaces
{
NSNotificationCenter *nc = [NSNotificationCenter defaultCenter];
QlabApplication *qLab = [SBApplication applicationWithBundleIdentifier:@"com.figure53.Qlab.2"];
NSArray *array = [qLab workspaces];
NSArray *document = [qLab documents];
int i;
NSInteger arrayCount = [array count]; //Keeps an index of which Workspace the 'for' statment is working with for other methods
//Save all workspaces.
if([self isRunning] == TRUE){
[self setFeedBackText:@"Qlab is Running Cues: Backup Aborted, Timer Reset"];
NSLog(@"Sending Notification");
[nc postNotificationName:(NSString *)JATFeedBackNotification object:self];
} else {
for (i = 0; i < arrayCount; i++){
arrayNumber = i;
workspaceName = [self workspaceNamer];
[[document objectAtIndex:i]saveIn:(NSURL *)workspaceName as:@"workspace"];
[self moveFiles]; } }
NSLog(@"BackUps Created");
[qLab release];
[array release];
[document release];
}
-(void)saveSpecifiedWorkspace: (int) a
{
QlabApplication *qLab = [SBApplication applicationWithBundleIdentifier:@"com.figure53.Qlab.2"];
NSArray *document = [qLab documents];
arrayNumber = a;
workspaceName = [self workspaceNamer];
[[document objectAtIndex:a]saveIn:(NSURL *)workspaceName as:@"workspace"];
[self moveFiles];
NSLog(@"BackUps Created");
[qLab release];
[document release];
}
-(void)saveWorkspaceLogic
{
NSNotificationCenter *nc = [NSNotificationCenter defaultCenter];
//Save Logic
QlabApplication *qLab = [SBApplication applicationWithBundleIdentifier:@"com.figure53.Qlab.2"];
NSArray *array = [qLab workspaces];
NSArray *document = [qLab documents];
int i;
NSInteger arrayCount = [array count];
NSLog(@"Logic Called...");
NSLog(@"Int Value Passed %i", [myPrefs getSaveUnmodifiedBoxState]);
//If the state of Save unmodified is checked, save all workspaces.
if ([myPrefs getSaveUnmodifiedBoxState] == 1) {
[self saveAllWorkspaces];
} else {
//If the state of save unmodified is unchecked, do not save unmodified workspaces.
for (i = 0; i < arrayCount; i++) {
if ([[document objectAtIndex:i]modified] == TRUE) {
[self saveSpecifiedWorkspace:i]; }
if ([[document objectAtIndex:i]modified] == FALSE) {
[self setFeedBackText:@"Workspace Backup Skipped: Unmodified Workspace"];
NSLog(@"Sending Notification");
[nc postNotificationName:(NSString *)JATFeedBackNotification object:self]; }
} }
[qLab release];
[array release];
[document release];
}
#pragma mark File Handleing / Moving Files Around
// Move Saved workspace to user defined directory. ScriptingBridge Method saves to Root, this is a work around
-(void) moveFiles
{
NSString *localPath = @"/"; //Qlab method saves to the root
NSString *fileName;
NSString *theFileRoot;
NSString *theFileMove;
NSString *addCues;
NSString *saveHere;
NSString *capturedPath;
NSString *incrementString;
NSString *newFileName;
NSString *newFileNameCues;
NSString *newSaveHere;
fileName = [self workspaceNamer];
addCues = [fileName stringByAppendingFormat:@".cues"]; //add .cues to filename
theFileRoot = [localPath stringByAppendingFormat:addCues];
NSLog(@"theFile is here %@", theFileRoot);
theFileMove = [fileName stringByAppendingFormat:@".cues"];
capturedPath = [myPrefs getSavePath];
NSLog(@"Captured Path is %@", capturedPath);
saveHere = [capturedPath stringByAppendingFormat:theFileMove];
NSLog(@"saveHere is %@", saveHere);
fileManager = [NSFileManager defaultManager];
if ( [fileManager fileExistsAtPath:theFileRoot] == YES && [fileManager fileExistsAtPath:saveHere] == NO) {
NSLog(@"Found File");
NSLog(@"Moving File");
[fileManager movePath:theFileRoot toPath:saveHere handler:nil]; }
//But what if the filename already exisists? Increment the end of the filename
if ( [fileManager fileExistsAtPath:theFileRoot] == YES && [fileManager fileExistsAtPath:saveHere] == YES) {
incrementString = [NSString stringWithFormat:@"_%d",incrementFileName];
newFileName = [fileName stringByAppendingFormat:incrementString];
NSLog(@"newFileName = %@", newFileName);
newFileNameCues = [newFileName stringByAppendingFormat:@".cues"];
NSLog(@"NewFileNameCues = %@", newFileNameCues);
newSaveHere = [capturedPath stringByAppendingFormat:newFileNameCues];
NSLog(@"NewSaveHere = %@", newSaveHere);
[fileManager movePath:theFileRoot toPath:newSaveHere handler:nil];
incrementFileName++;
}
if ( [fileManager fileExistsAtPath:theFileRoot] == NO) {
NSLog(@" Did not find file"); }
[localPath release];
[fileName release];
[theFileRoot release];
[addCues release];
[saveHere release];
[capturedPath release];
[incrementString release];
[newFileName release];
[newFileNameCues release];
[newSaveHere release];
}
// Create Defualt Name for the Path Save with Time Stamp
-(id) workspaceNamer
{
NSString *workspaceZero;
NSString *addBackup;
NSString *returnName;
NSString *nowDate;
NSDate *now = [NSDate date];
// Format the Date String for the file save
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:[myPrefs getDateString]];
nowDate = [dateFormatter stringFromDate:now];
NSLog(@"Now Date is %@", nowDate);
//Call the workspaces, get a name and append the string with the Backup and Date Stamps
QlabApplication *qLab = [SBApplication applicationWithBundleIdentifier:@"com.figure53.Qlab.2"];
NSArray *array = [qLab workspaces];
workspaceZero = [[array objectAtIndex:arrayNumber]name];
addBackup = [[array objectAtIndex:arrayNumber]name];
//Check the user pref boxes for backup and time text options
if ([myPrefs getBackupCheckBoxState] == 1 && [myPrefs getDateCheckBoxState] == 0) {
addBackup = [workspaceZero stringByAppendingString:[myPrefs backUpTextField]];
returnName = addBackup; }
if ([myPrefs getBackupCheckBoxState] == 1 && [myPrefs getDateCheckBoxState] == 1) {
addBackup = [workspaceZero stringByAppendingString:[myPrefs backUpTextField]];
returnName = [addBackup stringByAppendingString:nowDate]; }
if ([myPrefs getBackupCheckBoxState] == 0 && [myPrefs getDateCheckBoxState] == 1) {
returnName = [workspaceZero stringByAppendingString:nowDate]; }
if ([myPrefs getBackupCheckBoxState] == 0 && [myPrefs getDateCheckBoxState] == 0) {
returnName = workspaceZero; }
NSLog(@"Return Name is %@", returnName);
return returnName;
[workspaceZero release];
[addBackup release];
[returnName release];
[nowDate release];
[now release];
}
-(int)getArrayNumber
{
int i;
i = arrayNumber;
return i;
}
@end