Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(666)

Side by Side Diff: net/cert_net/cert_net_fetcher_impl.h

Issue 908863004: Initial implementation for CertNetFetcher. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: reset the callback on completion Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2015 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_CERT_NET_CERT_NET_FETCHER_H_
6 #define NET_CERT_NET_CERT_NET_FETCHER_H_
7
8 #include <set>
9 #include <vector>
10
11 #include "base/callback.h"
12 #include "base/memory/scoped_ptr.h"
13 #include "base/threading/thread_checker.h"
14 #include "net/base/net_errors.h"
15 #include "net/base/net_export.h"
16 #include "net/cert/cert_net_fetcher.h"
17
18 namespace net {
19
20 class URLRequestContext;
21
22 // CertNetFetcherImpl is an implementation of CertNetFetcher that uses the
23 // network stack.
24 //
25 // For more details refer to the documentation for the interface.
26 class NET_EXPORT CertNetFetcherImpl : public CertNetFetcher {
27 public:
28 // Initializes CertNetFetcherImpl using the specified URLRequestContext for
29 // issuing requests. |context| must remain valid for the entire lifetime of
30 // the CertNetFetcherImpl.
31 explicit CertNetFetcherImpl(URLRequestContext* context);
32
33 // Deletion implicitly cancels any outstanding requests.
34 ~CertNetFetcherImpl() override;
35
36 WARN_UNUSED_RESULT scoped_ptr<Request> FetchCaIssuers(
37 const GURL& url,
38 int timeout_milliseconds,
39 int max_response_bytes,
40 const FetchCallback& callback) override;
41
42 WARN_UNUSED_RESULT scoped_ptr<Request> FetchCrl(
43 const GURL& url,
44 int timeout_milliseconds,
45 int max_response_bytes,
46 const FetchCallback& callback) override;
47
48 WARN_UNUSED_RESULT scoped_ptr<Request> FetchOcsp(
49 const GURL& url,
50 int timeout_milliseconds,
51 int max_response_bytes,
52 const FetchCallback& callback) override;
53
54 private:
55 class RequestImpl;
56 class Job;
57 struct JobToRequestParamsComparator;
58 struct RequestParams;
59
60 struct JobComparator {
61 bool operator()(const Job* job1, const Job* job2) const;
62 };
63
64 // Owns the jobs.
65 using JobSet = std::set<Job*, JobComparator>;
66
67 // Starts an asynchronous request to fetch the given URL. On completion
68 // |callback| will be invoked.
69 //
70 // Completion of the request will never occur synchronously. In other words it
71 // is guaranteed that |callback| will only be invoked once the Fetch*() method
72 // has returned.
73 WARN_UNUSED_RESULT scoped_ptr<Request> Fetch(
74 scoped_ptr<RequestParams> request_params,
75 const FetchCallback& callback);
76
77 // Finds a job with a matching RequestPararms or returns nullptr if there was
78 // no match.
79 Job* FindJob(const RequestParams& params);
80
81 // Removes |job| from the in progress jobs and transfers ownership to the
82 // caller.
83 scoped_ptr<Job> RemoveJob(Job* job);
84
85 // Indicates which Job is currently executing inside of OnJobCompleted().
86 void SetCurrentlyCompletingJob(Job* job);
87 void ClearCurrentlyCompletingJob(Job* job);
88
89 // The in-progress jobs. This set does not contain the job which is actively
90 // invoking callbacks (OnJobCompleted). Instead that is tracked by
91 // |currently_completing_job_|.
92 JobSet jobs_;
93
94 // The Job that is currently executing OnJobCompleted(). There can be at most
95 // one such job. This pointer is not owned.
96 Job* currently_completing_job_;
97
98 // Not owned. CertNetFetcherImpl must outlive the URLRequestContext.
99 URLRequestContext* context_;
100
101 base::ThreadChecker thread_checker_;
102
103 DISALLOW_COPY_AND_ASSIGN(CertNetFetcherImpl);
104 };
105
106 } // namespace net
107
108 #endif // NET_CERT_NET_CERT_NET_FETCHER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698