-
Notifications
You must be signed in to change notification settings - Fork 135
/
get_device_prop.m
67 lines (53 loc) · 1.18 KB
/
get_device_prop.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
#include "cli.h"
static char *expected_udid = NULL;
static char *prop_name = NULL;
static void on_device_connected(struct am_device *device)
{
if (!device_matches(device, expected_udid))
{
return;
}
device_delayed_unregister_aborted = true;
device_connect(device);
NSString *expected_prop_name = [NSString stringWithUTF8String:prop_name];
CFStringRef key = (__bridge CFStringRef)expected_prop_name;
id value = AMDeviceCopyValue(device, 0, key);
if (value == nil)
{
device_unregister(1);
return;
}
printfNS(@"%@\n", value);
device_unregister(0);
}
int get_device_prop(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 != 1)
{
return invalid_usage(argc, argv);
}
prop_name = argv[0];
device_delayed_unregister_status = 1;
device_register(on_device_connected, timeout);
return 1;
}