OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef NET_BASE_SSL_HOST_INFO_H | 5 #ifndef NET_BASE_SSL_HOST_INFO_H |
6 #define NET_BASE_SSL_HOST_INFO_H | 6 #define NET_BASE_SSL_HOST_INFO_H |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include "base/ref_counted.h" | 9 #include "base/ref_counted.h" |
10 #include "net/base/completion_callback.h" | 10 #include "net/base/completion_callback.h" |
11 | 11 |
12 namespace net { | 12 namespace net { |
13 | 13 |
14 // SSLHostInfo is an interface for fetching information about an SSL server. | 14 // SSLHostInfo is an interface for fetching information about an SSL server. |
15 // This information may be stored on disk so does not include keys or session | 15 // This information may be stored on disk so does not include keys or session |
16 // information etc. Primarily it's intended for caching the server's | 16 // information etc. Primarily it's intended for caching the server's |
17 // certificates. | 17 // certificates. |
18 class SSLHostInfo : | 18 class SSLHostInfo { |
19 public base::RefCountedThreadSafe<SSLHostInfo> { | |
20 public: | 19 public: |
| 20 virtual ~SSLHostInfo(); |
| 21 |
21 // Start will commence the lookup. This must be called before any other | 22 // Start will commence the lookup. This must be called before any other |
22 // methods. By opportunistically calling this early, it may be possible to | 23 // methods. By opportunistically calling this early, it may be possible to |
23 // overlap this object's lookup and reduce latency. | 24 // overlap this object's lookup and reduce latency. |
24 virtual void Start() = 0; | 25 virtual void Start() = 0; |
25 | 26 |
26 // WaitForDataReady returns OK if the fetch of the requested data has | 27 // WaitForDataReady returns OK if the fetch of the requested data has |
27 // completed. Otherwise it returns ERR_IO_PENDING and will call |callback| on | 28 // completed. Otherwise it returns ERR_IO_PENDING and will call |callback| on |
28 // the current thread when ready. | 29 // the current thread when ready. |
29 // | 30 // |
30 // Only a single callback can be outstanding at a given time and, in the | 31 // Only a single callback can be outstanding at a given time and, in the |
31 // event that WaitForDataReady returns OK, it's the caller's responsibility | 32 // event that WaitForDataReady returns OK, it's the caller's responsibility |
32 // to delete |callback|. | 33 // to delete |callback|. |
33 // | 34 // |
34 // |callback| may be NULL, in which case ERR_IO_PENDING may still be returned | 35 // |callback| may be NULL, in which case ERR_IO_PENDING may still be returned |
35 // but, obviously, a callback will never be made. | 36 // but, obviously, a callback will never be made. |
36 virtual int WaitForDataReady(CompletionCallback* callback) = 0; | 37 virtual int WaitForDataReady(CompletionCallback* callback) = 0; |
37 | 38 |
38 // data returns any host information once WaitForDataReady has indicated that | 39 // data returns any host information once WaitForDataReady has indicated that |
39 // the fetch has completed. In the event of an error, |data| returns an empty | 40 // the fetch has completed. In the event of an error, |data| returns an empty |
40 // string. | 41 // string. |
41 virtual const std::string& data() const = 0; | 42 virtual const std::string& data() const = 0; |
42 | 43 |
43 // Set allows for the host information to be updated for future users. This | 44 // Set allows for the host information to be updated for future users. This |
44 // is a fire and forget operation: the caller may drop its reference from | 45 // is a fire and forget operation: the caller may drop its reference from |
45 // this object and the store operation will still complete. This can only be | 46 // this object and the store operation will still complete. This can only be |
46 // called once WaitForDataReady has returned OK or called its callback. | 47 // called once WaitForDataReady has returned OK or called its callback. |
47 virtual void Set(const std::string& new_data) = 0; | 48 virtual void Set(const std::string& new_data) = 0; |
| 49 }; |
48 | 50 |
49 protected: | 51 class SSLHostInfoFactory { |
50 friend class base::RefCountedThreadSafe<SSLHostInfo>; | 52 public: |
51 virtual ~SSLHostInfo() { } | 53 virtual ~SSLHostInfoFactory(); |
| 54 |
| 55 // GetForHost returns a fresh, allocated SSLHostInfo for the given hostname |
| 56 // or NULL on failure. |
| 57 virtual SSLHostInfo* GetForHost(const std::string& hostname) = 0; |
52 }; | 58 }; |
53 | 59 |
54 } // namespace net | 60 } // namespace net |
55 | 61 |
56 #endif // NET_BASE_SSL_HOST_INFO_H | 62 #endif // NET_BASE_SSL_HOST_INFO_H |
OLD | NEW |