-
Notifications
You must be signed in to change notification settings - Fork 135
/
list_apps.m
70 lines (55 loc) · 1.25 KB
/
list_apps.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
#include "cli.h"
static char *expected_udid = NULL;
static void print_app(const void *key, const void *value, void *context)
{
if ((key == NULL) || (value == NULL))
{
return;
}
NSString *bundle_id = (__bridge NSString*)key;
printfNS(@"%@\n", bundle_id);
}
static void on_device_connected(struct am_device *device)
{
if (!device_matches(device, expected_udid))
{
return;
}
device_delayed_unregister_aborted = true;
device_connect(device);
CFDictionaryRef apps;
ASSERT_OR_EXIT(!AMDeviceLookupApplications(device, 0, &apps), "!AMDeviceLookupApplications\n");
CFDictionaryApplyFunction(apps, print_app, NULL);
CFRelease(apps);
device_unregister(0);
}
int list_apps(int argc, char *argv[])
{
int flag;
char *endptr;
int64_t timeout = -1;
while ((flag = getopt(argc, argv, "u:t:")) != -1)
{
switch (flag)
{
case 'u':
expected_udid = optarg;
break;
case 't':
timeout = strtoll(optarg, &endptr, 10);
break;
default:
help(argc, argv);
return 1;
}
}
argc -= optind;
argv += optind;
if (argc != 0)
{
return invalid_usage(argc, argv);
}
device_delayed_unregister_status = 1;
device_register(on_device_connected, timeout);
return 1;
}