blob: 7bd2bd3e6617fe31758908408dd80ea69f81cf6b [file] [log] [blame]
// Copyright 2018 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 SERVICES_NETWORK_RESOLVE_HOST_REQUEST_H_
#define SERVICES_NETWORK_RESOLVE_HOST_REQUEST_H_
#include <memory>
#include "base/macros.h"
#include "base/optional.h"
#include "mojo/public/cpp/bindings/binding.h"
#include "net/base/completion_once_callback.h"
#include "net/dns/host_resolver.h"
#include "services/network/public/mojom/host_resolver.mojom.h"
namespace net {
class HostPortPair;
class NetLog;
} // namespace net
namespace network {
// Manager of a single Mojo request to NetworkContext::ResolveHost(). Binds
// itself as the implementation of the control handle, and manages request
// lifetime and cancellation.
class ResolveHostRequest : public mojom::ResolveHostHandle {
public:
ResolveHostRequest(
net::HostResolver* resolver,
const net::HostPortPair& host,
const base::Optional<net::HostResolver::ResolveHostParameters>&
optional_parameters,
net::NetLog* net_log);
~ResolveHostRequest() override;
int Start(mojom::ResolveHostHandleRequest control_handle_request,
mojom::ResolveHostClientPtr response_client,
net::CompletionOnceCallback callback);
// ResolveHostHandle overrides.
void Cancel(int error) override;
private:
void OnComplete(int error);
const base::Optional<net::AddressList>& GetAddressResults() const;
void SignalNonAddressResults();
std::unique_ptr<net::HostResolver::ResolveHostRequest> internal_request_;
mojo::Binding<mojom::ResolveHostHandle> control_handle_binding_{this};
mojom::ResolveHostClientPtr response_client_;
net::CompletionOnceCallback callback_;
bool cancelled_ = false;
DISALLOW_COPY_AND_ASSIGN(ResolveHostRequest);
};
} // namespace network
#endif // SERVICES_NETWORK_RESOLVE_HOST_REQUEST_H_