• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #ifndef _ADB_CLIENT_H_
2 #define _ADB_CLIENT_H_
3 
4 #include "adb.h"
5 
6 /* connect to adb, connect to the named service, and return
7 ** a valid fd for interacting with that service upon success
8 ** or a negative number on failure
9 */
10 int adb_connect(const char *service);
11 int _adb_connect(const char *service);
12 
13 /* connect to adb, connect to the named service, return 0 if
14 ** the connection succeeded AND the service returned OKAY
15 */
16 int adb_command(const char *service);
17 
18 /* connect to adb, connect to the named service, return
19 ** a malloc'd string of its response upon success or NULL
20 ** on failure.
21 */
22 char *adb_query(const char *service);
23 
24 /* Set the preferred transport to connect to.
25 */
26 void adb_set_transport(transport_type type, const char* serial);
27 
28 /* Set TCP specifics of the transport to use
29 */
30 void adb_set_tcp_specifics(int server_port);
31 
32 /* Set TCP Hostname of the transport to use
33 */
34 void adb_set_tcp_name(const char* hostname);
35 
36 /* Return the console port of the currently connected emulator (if any)
37  * of -1 if there is no emulator, and -2 if there is more than one.
38  * assumes adb_set_transport() was alled previously...
39  */
40 int  adb_get_emulator_console_port(void);
41 
42 /* send commands to the current emulator instance. will fail if there
43  * is zero, or more than one emulator connected (or if you use -s <serial>
44  * with a <serial> that does not designate an emulator)
45  */
46 int  adb_send_emulator_command(int  argc, char**  argv);
47 
48 /* return verbose error string from last operation */
49 const char *adb_error(void);
50 
51 /* read a standard adb status response (OKAY|FAIL) and
52 ** return 0 in the event of OKAY, -1 in the event of FAIL
53 ** or protocol error
54 */
55 int adb_status(int fd);
56 
57 #endif
58