OLD | NEW |
---|---|
1 /* | 1 /* |
2 Copyright (C) 1998 Lars Knoll (knoll@mpi-hd.mpg.de) | 2 Copyright (C) 1998 Lars Knoll (knoll@mpi-hd.mpg.de) |
3 Copyright (C) 2001 Dirk Mueller <mueller@kde.org> | 3 Copyright (C) 2001 Dirk Mueller <mueller@kde.org> |
4 Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com) | 4 Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com) |
5 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All | 5 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All |
6 rights reserved. | 6 rights reserved. |
7 | 7 |
8 This library is free software; you can redistribute it and/or | 8 This library is free software; you can redistribute it and/or |
9 modify it under the terms of the GNU Library General Public | 9 modify it under the terms of the GNU Library General Public |
10 License as published by the Free Software Foundation; either | 10 License as published by the Free Software Foundation; either |
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
162 PreloadReferencedWhileComplete | 162 PreloadReferencedWhileComplete |
163 }; | 163 }; |
164 PreloadResult getPreloadResult() const { | 164 PreloadResult getPreloadResult() const { |
165 return static_cast<PreloadResult>(m_preloadResult); | 165 return static_cast<PreloadResult>(m_preloadResult); |
166 } | 166 } |
167 | 167 |
168 Status getStatus() const { return static_cast<Status>(m_status); } | 168 Status getStatus() const { return static_cast<Status>(m_status); } |
169 void setStatus(Status status) { m_status = status; } | 169 void setStatus(Status status) { m_status = status; } |
170 | 170 |
171 size_t size() const { return encodedSize() + decodedSize() + overheadSize(); } | 171 size_t size() const { return encodedSize() + decodedSize() + overheadSize(); } |
172 | |
173 // Returns the size of content (response body) before decoding. Adding a new | |
174 // usage of this function is not recommended (See the TODO below). | |
175 // | |
176 // TODO(hiroshige): Now encodedSize/decodedSize states are inconsistent and | |
177 // need to be refactored (crbug/643135). | |
172 size_t encodedSize() const { return m_encodedSize; } | 178 size_t encodedSize() const { return m_encodedSize; } |
179 | |
180 // Returns the current memory usage for the encoded data. Adding a new usage | |
181 // of this function is not recommended as the same reason as |encodedSize()|. | |
182 // | |
183 // |encodedSize()| and |encodedSizeMemoryUsage()| can return different values, | |
184 // e.g., when ImageResource purges encoded image data after finishing loading. | |
185 size_t encodedSizeMemoryUsage() const { return m_encodedSizeMemoryUsage; } | |
yhirano
2016/10/17 05:25:16
Can you add ForTest[ing] suffix?
hiroshige
2016/10/19 04:04:01
I'm neutral about this; encodedSizeMemoryUsage() i
yhirano
2016/10/19 05:36:11
The field is not for testing but this getter is fo
hajimehoshi
2016/10/21 06:41:23
Done.
| |
186 | |
173 size_t decodedSize() const { return m_decodedSize; } | 187 size_t decodedSize() const { return m_decodedSize; } |
174 size_t overheadSize() const { return m_overheadSize; } | 188 size_t overheadSize() const { return m_overheadSize; } |
175 | 189 |
176 bool isLoaded() const { return m_status > Pending; } | 190 bool isLoaded() const { return m_status > Pending; } |
177 | 191 |
178 bool isLoading() const { return m_status == Pending; } | 192 bool isLoading() const { return m_status == Pending; } |
179 bool stillNeedsLoad() const { return m_status < Pending; } | 193 bool stillNeedsLoad() const { return m_status < Pending; } |
180 | 194 |
181 void setLoader(ResourceLoader*); | 195 void setLoader(ResourceLoader*); |
182 ResourceLoader* loader() const { return m_loader.get(); } | 196 ResourceLoader* loader() const { return m_loader.get(); } |
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
312 void notifyClientsInternal(MarkFinishedOption); | 326 void notifyClientsInternal(MarkFinishedOption); |
313 void markClientFinished(ResourceClient*); | 327 void markClientFinished(ResourceClient*); |
314 | 328 |
315 virtual bool hasClientsOrObservers() const { | 329 virtual bool hasClientsOrObservers() const { |
316 return !m_clients.isEmpty() || !m_clientsAwaitingCallback.isEmpty() || | 330 return !m_clients.isEmpty() || !m_clientsAwaitingCallback.isEmpty() || |
317 !m_finishedClients.isEmpty(); | 331 !m_finishedClients.isEmpty(); |
318 } | 332 } |
319 virtual void destroyDecodedDataForFailedRevalidation() {} | 333 virtual void destroyDecodedDataForFailedRevalidation() {} |
320 | 334 |
321 void setEncodedSize(size_t); | 335 void setEncodedSize(size_t); |
336 void setEncodedSizeMemoryUsage(size_t); | |
322 void setDecodedSize(size_t); | 337 void setDecodedSize(size_t); |
323 void didAccessDecodedData(); | 338 void didAccessDecodedData(); |
324 | 339 |
325 void finishPendingClients(); | 340 void finishPendingClients(); |
326 | 341 |
327 virtual void didAddClient(ResourceClient*); | 342 virtual void didAddClient(ResourceClient*); |
328 void willAddClientOrObserver(PreloadReferencePolicy); | 343 void willAddClientOrObserver(PreloadReferencePolicy); |
329 | 344 |
330 // |this| object may be dead after didRemoveClientOrObserver(). | 345 // |this| object may be dead after didRemoveClientOrObserver(). |
331 void didRemoveClientOrObserver(); | 346 void didRemoveClientOrObserver(); |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
394 Member<CachedMetadataHandlerImpl> m_cacheHandler; | 409 Member<CachedMetadataHandlerImpl> m_cacheHandler; |
395 RefPtr<SecurityOrigin> m_fetcherSecurityOrigin; | 410 RefPtr<SecurityOrigin> m_fetcherSecurityOrigin; |
396 | 411 |
397 ResourceError m_error; | 412 ResourceError m_error; |
398 | 413 |
399 double m_loadFinishTime; | 414 double m_loadFinishTime; |
400 | 415 |
401 unsigned long m_identifier; | 416 unsigned long m_identifier; |
402 | 417 |
403 size_t m_encodedSize; | 418 size_t m_encodedSize; |
419 size_t m_encodedSizeMemoryUsage; | |
404 size_t m_decodedSize; | 420 size_t m_decodedSize; |
405 | 421 |
406 // Resource::calculateOverheadSize() is affected by changes in | 422 // Resource::calculateOverheadSize() is affected by changes in |
407 // |m_resourceRequest.url()|, but |m_overheadSize| is not updated after | 423 // |m_resourceRequest.url()|, but |m_overheadSize| is not updated after |
408 // initial |m_resourceRequest| is given, to reduce MemoryCache manipulation | 424 // initial |m_resourceRequest| is given, to reduce MemoryCache manipulation |
409 // and thus potential bugs. crbug.com/594644 | 425 // and thus potential bugs. crbug.com/594644 |
410 const size_t m_overheadSize; | 426 const size_t m_overheadSize; |
411 | 427 |
412 unsigned m_preloadCount; | 428 unsigned m_preloadCount; |
413 | 429 |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
465 }; | 481 }; |
466 | 482 |
467 #define DEFINE_RESOURCE_TYPE_CASTS(typeName) \ | 483 #define DEFINE_RESOURCE_TYPE_CASTS(typeName) \ |
468 DEFINE_TYPE_CASTS(typeName##Resource, Resource, resource, \ | 484 DEFINE_TYPE_CASTS(typeName##Resource, Resource, resource, \ |
469 resource->getType() == Resource::typeName, \ | 485 resource->getType() == Resource::typeName, \ |
470 resource.getType() == Resource::typeName); | 486 resource.getType() == Resource::typeName); |
471 | 487 |
472 } // namespace blink | 488 } // namespace blink |
473 | 489 |
474 #endif | 490 #endif |
OLD | NEW |