OLD | NEW |
1 // Copyright (c) 2006-2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-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 // This file declares HttpCache::Transaction, a private class of HttpCache so | 5 // This file declares HttpCache::Transaction, a private class of HttpCache so |
6 // it should only be included by http_cache.cc | 6 // it should only be included by http_cache.cc |
7 | 7 |
8 #ifndef NET_HTTP_HTTP_CACHE_TRANSACTION_H_ | 8 #ifndef NET_HTTP_HTTP_CACHE_TRANSACTION_H_ |
9 #define NET_HTTP_HTTP_CACHE_TRANSACTION_H_ | 9 #define NET_HTTP_HTTP_CACHE_TRANSACTION_H_ |
10 | 10 |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
90 // response (or response info) must be evaluated by the caller, for instance | 90 // response (or response info) must be evaluated by the caller, for instance |
91 // to make sure that the response_time is as expected, before calling this | 91 // to make sure that the response_time is as expected, before calling this |
92 // method. | 92 // method. |
93 int WriteMetadata(IOBuffer* buf, int buf_len, CompletionCallback* callback); | 93 int WriteMetadata(IOBuffer* buf, int buf_len, CompletionCallback* callback); |
94 | 94 |
95 // This transaction is being deleted and we are not done writing to the cache. | 95 // This transaction is being deleted and we are not done writing to the cache. |
96 // We need to indicate that the response data was truncated. Returns true on | 96 // We need to indicate that the response data was truncated. Returns true on |
97 // success. | 97 // success. |
98 bool AddTruncatedFlag(); | 98 bool AddTruncatedFlag(); |
99 | 99 |
| 100 // Returns the LoadState of the writer transaction of a given ActiveEntry. In |
| 101 // other words, returns the LoadState of this transaction without asking the |
| 102 // http cache, because this transaction should be the one currently writing |
| 103 // to the cache entry. |
| 104 LoadState GetWriterLoadState() const; |
| 105 |
100 CompletionCallback* io_callback() { return &io_callback_; } | 106 CompletionCallback* io_callback() { return &io_callback_; } |
101 | 107 |
102 private: | 108 private: |
103 static const size_t kNumValidationHeaders = 2; | 109 static const size_t kNumValidationHeaders = 2; |
104 // Helper struct to pair a header name with its value, for | 110 // Helper struct to pair a header name with its value, for |
105 // headers used to validate cache entries. | 111 // headers used to validate cache entries. |
106 struct ValidationHeaders { | 112 struct ValidationHeaders { |
107 ValidationHeaders() : initialized(false) {} | 113 ValidationHeaders() : initialized(false) {} |
108 | 114 |
109 std::string values[kNumValidationHeaders]; | 115 std::string values[kNumValidationHeaders]; |
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
337 uint64 final_upload_progress_; | 343 uint64 final_upload_progress_; |
338 CompletionCallbackImpl<Transaction> io_callback_; | 344 CompletionCallbackImpl<Transaction> io_callback_; |
339 scoped_refptr<CancelableCompletionCallback<Transaction> > cache_callback_; | 345 scoped_refptr<CancelableCompletionCallback<Transaction> > cache_callback_; |
340 scoped_refptr<CancelableCompletionCallback<Transaction> > | 346 scoped_refptr<CancelableCompletionCallback<Transaction> > |
341 write_headers_callback_; | 347 write_headers_callback_; |
342 }; | 348 }; |
343 | 349 |
344 } // namespace net | 350 } // namespace net |
345 | 351 |
346 #endif // NET_HTTP_HTTP_CACHE_TRANSACTION_H_ | 352 #endif // NET_HTTP_HTTP_CACHE_TRANSACTION_H_ |
OLD | NEW |