| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef NET_REPORTING_REPORTING_DELIVERY_AGENT_H_ |
| 6 #define NET_REPORTING_REPORTING_DELIVERY_AGENT_H_ |
| 7 |
| 8 #include <memory> |
| 9 #include <set> |
| 10 #include <string> |
| 11 #include <utility> |
| 12 |
| 13 #include "base/macros.h" |
| 14 #include "base/memory/weak_ptr.h" |
| 15 #include "net/base/backoff_entry.h" |
| 16 #include "net/base/net_export.h" |
| 17 #include "net/reporting/reporting_endpoint_manager.h" |
| 18 #include "net/reporting/reporting_uploader.h" |
| 19 #include "url/gurl.h" |
| 20 #include "url/origin.h" |
| 21 |
| 22 namespace base { |
| 23 class TickClock; |
| 24 } // namespace base |
| 25 |
| 26 namespace net { |
| 27 |
| 28 class ReportingCache; |
| 29 |
| 30 // Takes reports from the ReportingCache, assembles reports into deliveries to |
| 31 // endpoints, and sends those deliveries using ReportingUploader. |
| 32 // |
| 33 // Since the Reporting spec is completely silent on issues of concurrency, the |
| 34 // delivery agent handles it as so: |
| 35 // |
| 36 // 1. An individual report can only be included in one delivery at once -- if |
| 37 // SendReports is called again while a report is being delivered, it won't |
| 38 // be included in another delivery during that call to SendReports. (This is, |
| 39 // in fact, made redundant by rule 3, but it's included anyway in case rule 3 |
| 40 // changes.) |
| 41 // |
| 42 // 2. An endpoint can only be the target of one delivery at once -- if |
| 43 // SendReports is called again with reports that could be delivered to that |
| 44 // endpoint, they won't be delivered to that endpoint. |
| 45 // |
| 46 // 3. Reports for an (origin, group) tuple can only be included in one delivery |
| 47 // at once -- if SendReports is called again with reports in that (origin, |
| 48 // group), they won't be included in any delivery during that call to |
| 49 // SendReports. (This prevents the agent from getting around rule 2 by using |
| 50 // other endpoints in the same group.) |
| 51 // |
| 52 // 4. Reports for the same origin *can* be included in multiple parallel |
| 53 // deliveries if they are in different groups within that origin. |
| 54 // |
| 55 // (Note that a single delivery can contain an infinite number of reports.) |
| 56 // |
| 57 // TODO(juliatuttle): Consider capping the maximum number of reports per |
| 58 // delivery attempt. |
| 59 class NET_EXPORT ReportingDeliveryAgent { |
| 60 public: |
| 61 // |clock|, |cache|, |uploader|, and |endpoint_backoff_policy| must all |
| 62 // outlive the ReportingDeliveryAgent. |
| 63 ReportingDeliveryAgent(base::TickClock* clock, |
| 64 ReportingCache* cache, |
| 65 ReportingUploader* uploader, |
| 66 const BackoffEntry::Policy* endpoint_backoff_policy); |
| 67 ~ReportingDeliveryAgent(); |
| 68 |
| 69 // Tries to deliver all of the reports in the cache. Reports that are already |
| 70 // being delivered will not be attempted a second time, and reports that do |
| 71 // not have a viable endpoint will be neither attempted nor removed. |
| 72 void SendReports(); |
| 73 |
| 74 private: |
| 75 class Delivery; |
| 76 |
| 77 using OriginGroup = std::pair<url::Origin, std::string>; |
| 78 |
| 79 void OnUploadComplete(const std::unique_ptr<Delivery>& delivery, |
| 80 ReportingUploader::Outcome outcome); |
| 81 |
| 82 base::TickClock* clock_; |
| 83 ReportingCache* cache_; |
| 84 ReportingUploader* uploader_; |
| 85 |
| 86 ReportingEndpointManager endpoint_manager_; |
| 87 |
| 88 // Tracks OriginGroup tuples for which there is a pending delivery running. |
| 89 // (Would be an unordered_set, but there's no hash on pair.) |
| 90 std::set<OriginGroup> pending_origin_groups_; |
| 91 |
| 92 base::WeakPtrFactory<ReportingDeliveryAgent> weak_factory_; |
| 93 |
| 94 DISALLOW_COPY_AND_ASSIGN(ReportingDeliveryAgent); |
| 95 }; |
| 96 |
| 97 } // namespace net |
| 98 |
| 99 #endif // NET_REPORTING_REPORTING_DELIVERY_AGENT_H_ |
| OLD | NEW |