2009-03-04 04:32:55 +01:00
|
|
|
#ifndef _ADB_CLIENT_H_
|
|
|
|
#define _ADB_CLIENT_H_
|
|
|
|
|
|
|
|
#include "adb.h"
|
|
|
|
|
2015-04-29 17:35:59 +02:00
|
|
|
#include <string>
|
|
|
|
|
2009-03-04 04:32:55 +01:00
|
|
|
/* connect to adb, connect to the named service, and return
|
|
|
|
** a valid fd for interacting with that service upon success
|
|
|
|
** or a negative number on failure
|
|
|
|
*/
|
2015-04-29 21:28:13 +02:00
|
|
|
int adb_connect(const std::string& service, std::string* error);
|
|
|
|
int _adb_connect(const std::string& service, std::string* error);
|
2009-03-04 04:32:55 +01:00
|
|
|
|
|
|
|
/* connect to adb, connect to the named service, return 0 if
|
|
|
|
** the connection succeeded AND the service returned OKAY
|
|
|
|
*/
|
2015-04-29 21:28:13 +02:00
|
|
|
int adb_command(const std::string& service, std::string* error);
|
2009-03-04 04:32:55 +01:00
|
|
|
|
2015-04-29 21:28:13 +02:00
|
|
|
// Connects to the named adb service and fills 'result' with the response.
|
|
|
|
// Returns true on success; returns false and fills 'error' on failure.
|
|
|
|
bool adb_query(const std::string& service, std::string* result, std::string* error);
|
2009-03-04 04:32:55 +01:00
|
|
|
|
2015-05-05 22:10:43 +02:00
|
|
|
// Set the preferred transport to connect to.
|
|
|
|
void adb_set_transport(TransportType type, const char* serial);
|
2009-03-04 04:32:55 +01:00
|
|
|
|
2010-04-19 13:21:12 +02:00
|
|
|
/* Set TCP specifics of the transport to use
|
|
|
|
*/
|
|
|
|
void adb_set_tcp_specifics(int server_port);
|
|
|
|
|
2012-11-14 19:16:17 +01:00
|
|
|
/* Set TCP Hostname of the transport to use
|
|
|
|
*/
|
|
|
|
void adb_set_tcp_name(const char* hostname);
|
|
|
|
|
2009-03-04 04:32:55 +01:00
|
|
|
/* Return the console port of the currently connected emulator (if any)
|
|
|
|
* of -1 if there is no emulator, and -2 if there is more than one.
|
|
|
|
* assumes adb_set_transport() was alled previously...
|
|
|
|
*/
|
|
|
|
int adb_get_emulator_console_port(void);
|
|
|
|
|
|
|
|
/* send commands to the current emulator instance. will fail if there
|
|
|
|
* is zero, or more than one emulator connected (or if you use -s <serial>
|
|
|
|
* with a <serial> that does not designate an emulator)
|
|
|
|
*/
|
2015-02-26 02:51:28 +01:00
|
|
|
int adb_send_emulator_command(int argc, const char** argv);
|
2009-03-04 04:32:55 +01:00
|
|
|
|
2015-04-29 17:35:59 +02:00
|
|
|
// Reads a standard adb status response (OKAY|FAIL) and
|
|
|
|
// returns true in the event of OKAY, false in the event of FAIL
|
|
|
|
// or protocol error.
|
|
|
|
bool adb_status(int fd, std::string* error);
|
2009-03-04 04:32:55 +01:00
|
|
|
|
|
|
|
#endif
|