mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
59 lines
1.9 KiB
C
59 lines
1.9 KiB
C
|
// Copyright 2017 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 NET_REPORTING_REPORTING_ENDPOINT_MANAGER_H_
|
||
|
#define NET_REPORTING_REPORTING_ENDPOINT_MANAGER_H_
|
||
|
|
||
|
#include <memory>
|
||
|
#include <string>
|
||
|
|
||
|
#include "base/macros.h"
|
||
|
#include "net/base/net_export.h"
|
||
|
#include "net/base/rand_callback.h"
|
||
|
#include "net/reporting/reporting_context.h"
|
||
|
|
||
|
class GURL;
|
||
|
|
||
|
namespace url {
|
||
|
class Origin;
|
||
|
} // namespace url
|
||
|
|
||
|
namespace net {
|
||
|
|
||
|
struct ReportingClient;
|
||
|
|
||
|
// Keeps track of which endpoints are pending (have active delivery attempts to
|
||
|
// them) or in exponential backoff after one or more failures, and chooses an
|
||
|
// endpoint from an endpoint group to receive reports for an origin.
|
||
|
class NET_EXPORT ReportingEndpointManager {
|
||
|
public:
|
||
|
// |context| must outlive the ReportingEndpointManager.
|
||
|
static std::unique_ptr<ReportingEndpointManager> Create(
|
||
|
ReportingContext* context,
|
||
|
const RandIntCallback& rand_callback);
|
||
|
|
||
|
virtual ~ReportingEndpointManager();
|
||
|
|
||
|
// Finds an endpoint configured by |origin| in group |group| that is not
|
||
|
// pending, in exponential backoff from failed requests, or expired.
|
||
|
//
|
||
|
// Deliberately chooses an endpoint randomly to ensure sites aren't relying on
|
||
|
// any sort of fallback ordering.
|
||
|
//
|
||
|
// Returns the endpoint's |ReportingClient| if endpoint was chosen; returns
|
||
|
// nullptr if no endpoint was found.
|
||
|
virtual const ReportingClient* FindClientForOriginAndGroup(
|
||
|
const url::Origin& origin,
|
||
|
const std::string& group) = 0;
|
||
|
|
||
|
// Informs the EndpointManager of a successful or unsuccessful request made to
|
||
|
// |endpoint| so it can manage exponential backoff of failing endpoints.
|
||
|
virtual void InformOfEndpointRequest(const GURL& endpoint,
|
||
|
bool succeeded) = 0;
|
||
|
};
|
||
|
|
||
|
} // namespace net
|
||
|
|
||
|
#endif // NET_REPORTING_REPORTING_ENDPOINT_MANAGER_H_
|