blob: 5c0cdd2e167139b224e0464a3028c2dc9a40c6e6 [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_DEVTOOLS_DEVICE_ADB_ADB_CLIENT_SOCKET_H_
#define CHROME_BROWSER_DEVTOOLS_DEVICE_ADB_ADB_CLIENT_SOCKET_H_
#include <string>
#include "base/callback.h"
#include "base/macros.h"
#include "net/base/io_buffer.h"
#include "net/socket/stream_socket.h"
class AdbClientSocket {
public:
typedef base::Callback<void(int, const std::string&)> CommandCallback;
typedef base::Callback<void(int result, std::unique_ptr<net::StreamSocket>)>
SocketCallback;
static void AdbQuery(int port,
const std::string& query,
const CommandCallback& callback);
static void TransportQuery(int port,
const std::string& serial,
const std::string& socket_name,
const SocketCallback& callback);
protected:
explicit AdbClientSocket(int port);
~AdbClientSocket();
void Connect(net::CompletionOnceCallback callback);
void SendCommand(const std::string& command,
bool is_void,
const CommandCallback& callback);
std::unique_ptr<net::StreamSocket> socket_;
private:
void ReadResponse(const CommandCallback& callback, bool is_void, int result);
void OnResponseHeader(const CommandCallback& callback,
bool is_void,
scoped_refptr<net::IOBuffer> response_buffer,
int result);
void OnResponseData(const CommandCallback& callback,
const std::string& response,
scoped_refptr<net::IOBuffer> response_buffer,
int bytes_left,
int result);
void RunConnectCallback(int result);
net::CompletionOnceCallback connect_callback_;
std::string host_;
int port_;
DISALLOW_COPY_AND_ASSIGN(AdbClientSocket);
};
#endif // CHROME_BROWSER_DEVTOOLS_DEVICE_ADB_ADB_CLIENT_SOCKET_H_