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 | |
106 CompletionCallback* io_callback() { return &io_callback_; } | 100 CompletionCallback* io_callback() { return &io_callback_; } |
107 | 101 |
108 private: | 102 private: |
109 static const size_t kNumValidationHeaders = 2; | 103 static const size_t kNumValidationHeaders = 2; |
110 // Helper struct to pair a header name with its value, for | 104 // Helper struct to pair a header name with its value, for |
111 // headers used to validate cache entries. | 105 // headers used to validate cache entries. |
112 struct ValidationHeaders { | 106 struct ValidationHeaders { |
113 ValidationHeaders() : initialized(false) {} | 107 ValidationHeaders() : initialized(false) {} |
114 | 108 |
115 std::string values[kNumValidationHeaders]; | 109 std::string values[kNumValidationHeaders]; |
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
343 uint64 final_upload_progress_; | 337 uint64 final_upload_progress_; |
344 CompletionCallbackImpl<Transaction> io_callback_; | 338 CompletionCallbackImpl<Transaction> io_callback_; |
345 scoped_refptr<CancelableCompletionCallback<Transaction> > cache_callback_; | 339 scoped_refptr<CancelableCompletionCallback<Transaction> > cache_callback_; |
346 scoped_refptr<CancelableCompletionCallback<Transaction> > | 340 scoped_refptr<CancelableCompletionCallback<Transaction> > |
347 write_headers_callback_; | 341 write_headers_callback_; |
348 }; | 342 }; |
349 | 343 |
350 } // namespace net | 344 } // namespace net |
351 | 345 |
352 #endif // NET_HTTP_HTTP_CACHE_TRANSACTION_H_ | 346 #endif // NET_HTTP_HTTP_CACHE_TRANSACTION_H_ |
OLD | NEW |