-
Notifications
You must be signed in to change notification settings - Fork 122
/
cliclick.m
299 lines (272 loc) · 13.5 KB
/
cliclick.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
/**
* Copyright (c) 2007-2021, Carsten Blüm <carsten@bluem.net>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* - Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
* - Redistributions in binary form must reproduce the above copyright notice, this
* list of conditions and the following disclaimer in the documentation and/or
* other materials provided with the distribution.
* - Neither the name of Carsten Blüm nor the names of his contributors may be
* used to endorse or promote products derived from this software without specific
* prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <stdlib.h>
#include <unistd.h>
#include <stdio.h>
#include <time.h>
#import <Cocoa/Cocoa.h>
#import "ActionExecutor.h"
#import "MoveAction.h"
#import "OutputHandler.h"
#import "ExecutionOptions.h"
void error(void);
void help(void);
NSArray* parseCommandsFile(NSString *filepath);
int main (int argc, const char * argv[]) {
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
struct ExecutionOptions executionOptions;
executionOptions.easing = 0;
executionOptions.waitTime = 0;
executionOptions.mode = MODE_REGULAR;
NSArray *modeOptionArg;
NSString *verbosityOutputDestination = nil;
NSString *filepath = nil;
NSString *commandOutputDestination = nil;
NSArray *actions;
CGPoint initialMousePosition;
BOOL restoreOption = NO;
int optchar;
if (! AXIsProcessTrusted()) {
fprintf(stderr, "WARNING: Accessibility privileges not enabled. Many actions may fail.\n");
fprintf(stderr, " Enable the checkbox for the containing app in:\n");
fprintf(stderr, " System Preferences → Security & Privacy → Accessibility\n");
}
while ((optchar = getopt(argc, (char * const *)argv, "horVne:f:d:m:w:")) != -1) {
switch(optchar) {
case 'h':
help();
[pool release];
return EXIT_SUCCESS;
case 'V':
printf("%s\n", [[NSString stringWithFormat:@"cliclick %@, %@", VERSION, RELEASEDATE] UTF8String]);
[pool release];
return EXIT_SUCCESS;
case 'n':
[[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:DONATIONS_URL]];
[pool release];
return EXIT_SUCCESS;
case 'o':
[[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:HISTORY_URL]];
[pool release];
return EXIT_SUCCESS;
case 'm':
modeOptionArg = [[NSString stringWithCString:optarg encoding:NSASCIIStringEncoding] componentsSeparatedByString:@":"];
if ([[modeOptionArg objectAtIndex:0] isEqualToString:@"verbose"]) {
executionOptions.mode = MODE_VERBOSE;
} else if ([[modeOptionArg objectAtIndex:0] isEqualToString:@"test"]) {
executionOptions.mode = MODE_TEST;
} else {
fprintf(stderr, "Only “verbose” or “test” are valid values for the -m argument\n");
[pool release];
return EXIT_FAILURE;
}
if ([modeOptionArg count] > 1 && [modeOptionArg objectAtIndex:1]) {
verbosityOutputDestination = [modeOptionArg objectAtIndex:1];
}
break;
case 'e':
executionOptions.easing = atoi(optarg) > 0 ? atoi(optarg) : 0;
break;
case 'f':
filepath = [NSString stringWithCString:optarg encoding:NSASCIIStringEncoding];
break;
case 'd':
commandOutputDestination = [NSString stringWithCString:optarg encoding:NSASCIIStringEncoding];
break;
case 'r':
restoreOption = YES;
break;
case 'w':
executionOptions.waitTime = atoi(optarg) > 0 ? atoi(optarg) : 0;
break;
default:
[pool release];
return EXIT_FAILURE;
}
}
@try {
executionOptions.commandOutputHandler = [[OutputHandler alloc] initWithTarget:commandOutputDestination];
executionOptions.verbosityOutputHandler = [[OutputHandler alloc] initWithTarget:verbosityOutputDestination];
}
@catch (NSException *e) {
fprintf(stderr, "%s\n", [[e reason] UTF8String]);
[pool release];
return EXIT_FAILURE;
}
if (restoreOption) {
CGEventRef ourEvent = CGEventCreate(NULL);
initialMousePosition = CGEventGetLocation(ourEvent);
}
if (optind == argc && !filepath) {
error();
[pool release];
return EXIT_FAILURE;
}
if (executionOptions.mode == MODE_TEST) {
[executionOptions.verbosityOutputHandler write:@"Running in test mode. These command(s) would be executed:"];
}
if (filepath) {
NSFileManager *fm = [NSFileManager defaultManager];
if ([filepath isEqualToString:@""]) {
fprintf(stderr, "Option -f expects a path: -f /path/to/the/file\n");
[pool release];
return EXIT_FAILURE;
}
if (![filepath isEqualToString:@"-"] && ![fm fileExistsAtPath:filepath]) {
fprintf(stderr, "There is no file at %s\n", [filepath UTF8String]);
[pool release];
return EXIT_FAILURE;
}
actions = parseCommandsFile(filepath);
} else {
NSArray *arguments = [[NSProcessInfo processInfo] arguments];
actions = [arguments subarrayWithRange:NSMakeRange(optind, argc - optind)];
}
@try {
[ActionExecutor executeActions:actions withOptions:executionOptions];
}
@catch (NSException *e) {
fprintf(stderr, "%s\n", [[e reason] UTF8String]);
[pool release];
return EXIT_FAILURE;
}
if (restoreOption) {
// Note: we have to prefix the coordinates with "=" to ensure they are not interpreted
// as relative values, see https://github.com/BlueM/cliclick/issues/119
NSString *positionString = [NSString stringWithFormat:@"=%d,=%d", (int)initialMousePosition.x, (int)initialMousePosition.y];
id moveAction = [[MoveAction alloc] init];
[moveAction performActionWithData:positionString
withOptions:executionOptions];
[moveAction release];
}
[pool release];
return EXIT_SUCCESS;
}
NSArray* parseCommandsFile(NSString *filepath) {
NSMutableArray *commands = [[NSMutableArray alloc] initWithCapacity:32];
NSArray *lines;
if ([filepath isEqualToString:@"-"]) {
// stdin
NSData *stdinData = [[NSFileHandle fileHandleWithStandardInput] readDataToEndOfFile];
NSString *configString = [[NSString alloc] initWithData:stdinData encoding:NSUTF8StringEncoding];
lines = [configString componentsSeparatedByCharactersInSet:[NSCharacterSet newlineCharacterSet]];
[configString release];
} else {
// File
NSString *fileContents = [NSString stringWithContentsOfFile:filepath
encoding:NSUTF8StringEncoding
error:nil];
lines = [fileContents componentsSeparatedByString:@"\n"];
}
NSUInteger i, count = [lines count];
for (i = 0; i < count; i++) {
NSString *command = [[lines objectAtIndex:i] stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceCharacterSet]];
if ([command isEqualToString:@""]) {
continue;
}
if ([[command substringToIndex:1] isEqualToString:@"#"]) {
continue;
}
[commands addObject:command];
}
return [commands autorelease];
}
void error() {
fprintf(stderr, "You did not pass any commands as argument to cliclick.\n");
fprintf(stderr, "Call cliclick with option -h to see usage instructions.\n");
}
void help() {
NSArray *actionClasses = [ActionExecutor actionClasses];
NSUInteger i, count = [actionClasses count];
NSString *help = @"\ncliclick (short for “Command Line Interface Click”) is a tool for "
"executing mouse- and keyboard-related actions from the shell/Terminal\n"
"\n"
"USAGE\n"
" cliclick [-r] [-m <mode>] [-d <target>] [-e <num>] [-f <file>] [-w <num>] command1 [command2]\n"
"\n"
"OPTIONS\n"
" -r Restore initial mouse location when finished\n"
" -m <mode> The mode can be either “verbose” (cliclick will print a\n"
" description of each action to stdout just before it is\n"
" performed) or “test” (cliclick will only print the\n"
" description, but not perform the action)\n"
" -d <target> Specify the target when using the “p” (“print”) command.\n"
" Possible values are: stdout, stderr, clipboard or the path \n"
" to a file (which will be overwritten if it exists).\n"
" By default (if option not given), stdout is used for printing\n"
" -e <easing> Set an easing factor for mouse movements. The higher this\n"
" value is (default: 0), the more will mouse movements seem\n"
" “natural” or “human-like”, which also implies: will be slower.\n"
" If this option is used, the actual speed will also depend\n"
" on the distance between the start and the end position, i.e.\n"
" the time needed for moving will be higher if the distance\n"
" is larger.\n"
" -f <file> Instead of passing commands as arguments, you may instead\n"
" specify a file from which cliclick will read the commands\n"
" (or stdin, when - is given as filename).\n"
" Each line in the file is expected to contain a command\n"
" in the same format/syntax as commands given as arguments\n"
" at the shell. Additionally, lines starting with the hash\n"
" character # are regarded as comments, i.e.: ignored. Leading\n"
" and trailing whitespace is ignored, too.\n"
" -w <num> Wait the given number of milliseconds after each event.\n"
" If you find that you use the “w” command too often,\n"
" using -w could make things easier. Please note that “w”\n"
" is additive with -w. This means that invoking\n"
" “cliclick -w 200 w:500” will wait for 700 milliseconds.\n"
" The default (and minimum) value for -w is 20.\n"
" -V Show cliclick version number and release date\n"
" -o Open version history in a browser\n"
" -n Send a donation\n"
"\n"
"COMMANDS\n"
"To use cliclick, you pass an arbitrary number of commands as arguments. A command consists of a "
"command identifier (a string that tells cliclick what kind of action to perform) and usually one "
"or more arguments to the command, which are separated from the command identifier with a colon. "
"Example: “c:123,456” is the command for clicking (the “c” is the command identifier for clicking) "
"at the position with x coordinate 123 and y coordinate 456. See below for a list of all commands "
"and the arguments they expect.\nWhenever a command expects a pair of coordinates, you may provide "
"relative values by prefixing the number with “+” or “-”. For example, “m:+50,+0” will move the mouse 50 "
"pixels to the right. Of course, relative and absolute values can be mixed, and negative values "
"are possible, so “c:100,-20” would be perfectly valid. (If you need to specify absolute negative "
"values in case you have a setup with a second display arranged to the left of your main display, "
"prefix the number with “=”, for instance “c:100,=-200”.)\n\n"
"LIST OF COMMANDS\n\n";
printf("%s", [help UTF8String]);
for (i = 0; i < count; i++) {
NSString *className = [actionClasses objectAtIndex:i];
printf("%s\n\n", [[NSClassFromString(className) commandDescription] UTF8String]);
}
NSString *author = [NSString stringWithFormat:@"Version %@, released %@\n"
"Author: Carsten Blüm, <carsten@bluem.net>\n"
"List of contributors: https://github.com/BlueM/cliclick/graphs/contributors\n"
"Website: https://www.bluem.net/jump/cliclick/\n\n",
VERSION,
RELEASEDATE];
printf("%s", [author UTF8String]);
}