OLD | NEW |
1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2009 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_HTTP_HTTP_TRANSACTION_H_ | 5 #ifndef NET_HTTP_HTTP_TRANSACTION_H_ |
6 #define NET_HTTP_HTTP_TRANSACTION_H_ | 6 #define NET_HTTP_HTTP_TRANSACTION_H_ |
7 | 7 |
8 #include "net/base/completion_callback.h" | 8 #include "net/base/completion_callback.h" |
9 #include "net/base/load_states.h" | 9 #include "net/base/load_states.h" |
10 | 10 |
11 namespace net { | 11 namespace net { |
12 | 12 |
13 class HttpRequestInfo; | 13 class HttpRequestInfo; |
14 class HttpResponseInfo; | 14 class HttpResponseInfo; |
15 class IOBuffer; | 15 class IOBuffer; |
| 16 class LoadLog; |
16 class X509Certificate; | 17 class X509Certificate; |
17 | 18 |
18 // Represents a single HTTP transaction (i.e., a single request/response pair). | 19 // Represents a single HTTP transaction (i.e., a single request/response pair). |
19 // HTTP redirects are not followed and authentication challenges are not | 20 // HTTP redirects are not followed and authentication challenges are not |
20 // answered. Cookies are assumed to be managed by the caller. | 21 // answered. Cookies are assumed to be managed by the caller. |
21 class HttpTransaction { | 22 class HttpTransaction { |
22 public: | 23 public: |
23 // Stops any pending IO and destroys the transaction object. | 24 // Stops any pending IO and destroys the transaction object. |
24 virtual ~HttpTransaction() {} | 25 virtual ~HttpTransaction() {} |
25 | 26 |
26 // Starts the HTTP transaction (i.e., sends the HTTP request). | 27 // Starts the HTTP transaction (i.e., sends the HTTP request). |
27 // | 28 // |
28 // Returns OK if the transaction could be started synchronously, which means | 29 // Returns OK if the transaction could be started synchronously, which means |
29 // that the request was served from the cache. ERR_IO_PENDING is returned to | 30 // that the request was served from the cache. ERR_IO_PENDING is returned to |
30 // indicate that the CompletionCallback will be notified once response info | 31 // indicate that the CompletionCallback will be notified once response info |
31 // is available or if an IO error occurs. Any other return value indicates | 32 // is available or if an IO error occurs. Any other return value indicates |
32 // that the transaction could not be started. | 33 // that the transaction could not be started. |
33 // | 34 // |
34 // Regardless of the return value, the caller is expected to keep the | 35 // Regardless of the return value, the caller is expected to keep the |
35 // request_info object alive until Destroy is called on the transaction. | 36 // request_info object alive until Destroy is called on the transaction. |
36 // | 37 // |
37 // NOTE: The transaction is not responsible for deleting the callback object. | 38 // NOTE: The transaction is not responsible for deleting the callback object. |
38 // | 39 // |
39 virtual int Start(const HttpRequestInfo* request_info, | 40 // Profiling information for the request is saved to |load_log| if non-NULL. |
| 41 virtual int Start(LoadLog* load_log, |
| 42 const HttpRequestInfo* request_info, |
40 CompletionCallback* callback) = 0; | 43 CompletionCallback* callback) = 0; |
41 | 44 |
42 // Restarts the HTTP transaction, ignoring the last error. This call can | 45 // Restarts the HTTP transaction, ignoring the last error. This call can |
43 // only be made after a call to Start (or RestartIgnoringLastError) failed. | 46 // only be made after a call to Start (or RestartIgnoringLastError) failed. |
44 // Once Read has been called, this method cannot be called. This method is | 47 // Once Read has been called, this method cannot be called. This method is |
45 // used, for example, to continue past various SSL related errors. | 48 // used, for example, to continue past various SSL related errors. |
46 // | 49 // |
47 // Not all errors can be ignored using this method. See error code | 50 // Not all errors can be ignored using this method. See error code |
48 // descriptions for details about errors that can be ignored. | 51 // descriptions for details about errors that can be ignored. |
49 // | 52 // |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 virtual LoadState GetLoadState() const = 0; | 97 virtual LoadState GetLoadState() const = 0; |
95 | 98 |
96 // Returns the upload progress in bytes. If there is no upload data, | 99 // Returns the upload progress in bytes. If there is no upload data, |
97 // zero will be returned. This does not include the request headers. | 100 // zero will be returned. This does not include the request headers. |
98 virtual uint64 GetUploadProgress() const = 0; | 101 virtual uint64 GetUploadProgress() const = 0; |
99 }; | 102 }; |
100 | 103 |
101 } // namespace net | 104 } // namespace net |
102 | 105 |
103 #endif // NET_HTTP_HTTP_TRANSACTION_H_ | 106 #endif // NET_HTTP_HTTP_TRANSACTION_H_ |
OLD | NEW |