mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
121 lines
3.4 KiB
C++
121 lines
3.4 KiB
C++
// Copyright 2018 The Chromium Authors. All rights reserved.
|
|
// Copyright 2018 klzgrad <kizdiv@gmail.com>. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef NET_TOOLS_NAIVE_NAIVE_CLIENT_CONNECTION_H_
|
|
#define NET_TOOLS_NAIVE_NAIVE_CLIENT_CONNECTION_H_
|
|
|
|
#include <memory>
|
|
|
|
#include "base/macros.h"
|
|
#include "base/memory/ref_counted.h"
|
|
#include "base/memory/weak_ptr.h"
|
|
#include "base/time/time.h"
|
|
#include "net/base/completion_once_callback.h"
|
|
#include "net/base/completion_repeating_callback.h"
|
|
#include "net/base/host_port_pair.h"
|
|
#include "net/log/net_log_with_source.h"
|
|
#include "net/proxy_resolution/proxy_info.h"
|
|
#include "net/ssl/ssl_config.h"
|
|
#include "net/traffic_annotation/network_traffic_annotation.h"
|
|
|
|
namespace net {
|
|
|
|
class ClientSocketHandle;
|
|
class DrainableIOBuffer;
|
|
class HttpNetworkSession;
|
|
class IOBuffer;
|
|
class Socks5ServerSocket;
|
|
class StreamSocket;
|
|
|
|
class NaiveClientConnection {
|
|
public:
|
|
using TimeFunc = base::TimeTicks (*)();
|
|
|
|
NaiveClientConnection(int id,
|
|
std::unique_ptr<StreamSocket> accepted_socket,
|
|
HttpNetworkSession* session);
|
|
~NaiveClientConnection();
|
|
|
|
int id() const { return id_; }
|
|
int Connect(CompletionOnceCallback callback);
|
|
void Disconnect();
|
|
int Run(CompletionOnceCallback callback);
|
|
|
|
private:
|
|
enum State {
|
|
STATE_CONNECT_CLIENT,
|
|
STATE_CONNECT_CLIENT_COMPLETE,
|
|
STATE_CONNECT_SERVER,
|
|
STATE_CONNECT_SERVER_COMPLETE,
|
|
STATE_NONE,
|
|
};
|
|
|
|
// From this direction.
|
|
enum Direction {
|
|
kClient = 0,
|
|
kServer = 1,
|
|
kNumDirections = 2,
|
|
};
|
|
|
|
void DoCallback(int result);
|
|
void OnIOComplete(int result);
|
|
int DoLoop(int last_io_result);
|
|
int DoConnectClient();
|
|
int DoConnectClientComplete(int result);
|
|
int DoConnectServer();
|
|
int DoConnectServerComplete(int result);
|
|
void Pull(Direction from, Direction to);
|
|
void Push(Direction from, Direction to, int size);
|
|
void Disconnect(Direction side);
|
|
bool IsConnected(Direction side);
|
|
void OnBothDisconnected();
|
|
void OnPullError(Direction from, Direction to, int error);
|
|
void OnPushError(Direction from, Direction to, int error);
|
|
void OnPullComplete(Direction from, Direction to, int result);
|
|
void OnPushComplete(Direction from, Direction to, int result);
|
|
|
|
int id_;
|
|
|
|
CompletionRepeatingCallback io_callback_;
|
|
CompletionOnceCallback connect_callback_;
|
|
CompletionOnceCallback run_callback_;
|
|
|
|
State next_state_;
|
|
|
|
HttpNetworkSession* session_;
|
|
NetLogWithSource net_log_;
|
|
|
|
HostPortPair request_endpoint_;
|
|
|
|
std::unique_ptr<Socks5ServerSocket> client_socket_;
|
|
std::unique_ptr<ClientSocketHandle> server_socket_handle_;
|
|
|
|
StreamSocket* sockets_[kNumDirections];
|
|
scoped_refptr<IOBuffer> read_buffers_[kNumDirections];
|
|
scoped_refptr<DrainableIOBuffer> write_buffers_[kNumDirections];
|
|
int errors_[kNumDirections];
|
|
bool write_pending_[kNumDirections];
|
|
int bytes_passed_without_yielding_[kNumDirections];
|
|
base::TimeTicks yield_after_time_[kNumDirections];
|
|
|
|
bool early_pull_pending_;
|
|
bool can_push_to_server_;
|
|
int early_pull_result_;
|
|
|
|
bool full_duplex_;
|
|
|
|
TimeFunc time_func_;
|
|
|
|
// Traffic annotation for socket control.
|
|
NetworkTrafficAnnotationTag traffic_annotation_;
|
|
|
|
base::WeakPtrFactory<NaiveClientConnection> weak_ptr_factory_;
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(NaiveClientConnection);
|
|
};
|
|
|
|
} // namespace net
|
|
#endif // NET_TOOLS_NAIVE_NAIVE_CLIENT_CONNECTION_H_
|