| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006 Apple Computer, Inc. All rights reserved. | 2 * Copyright (C) 2006 Apple Computer, Inc. All rights reserved. |
| 3 * Copyright (C) Research In Motion Limited 2009-2010. All rights reserved. | 3 * Copyright (C) Research In Motion Limited 2009-2010. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 | 26 |
| 27 #ifndef SharedBuffer_h | 27 #ifndef SharedBuffer_h |
| 28 #define SharedBuffer_h | 28 #define SharedBuffer_h |
| 29 | 29 |
| 30 #include "wtf/ArrayBuffer.h" | 30 #include "wtf/ArrayBuffer.h" |
| 31 #include "wtf/Forward.h" | 31 #include "wtf/Forward.h" |
| 32 #include "wtf/OwnPtr.h" | 32 #include "wtf/OwnPtr.h" |
| 33 #include "wtf/RefCounted.h" | 33 #include "wtf/RefCounted.h" |
| 34 #include "wtf/Vector.h" | 34 #include "wtf/Vector.h" |
| 35 #include "wtf/text/WTFString.h" | 35 #include "wtf/text/WTFString.h" |
| 36 #include "core/platform/chromium/TraceEvent.h" |
| 36 | 37 |
| 37 namespace WebCore { | 38 namespace WebCore { |
| 38 | 39 |
| 39 class PurgeableBuffer; | 40 class PurgeableBuffer; |
| 40 | 41 |
| 41 class SharedBuffer : public RefCounted<SharedBuffer> { | 42 class SharedBuffer : public RefCounted<SharedBuffer> { |
| 42 public: | 43 public: |
| 43 static PassRefPtr<SharedBuffer> create() { return adoptRef(new SharedBuffer)
; } | 44 static PassRefPtr<SharedBuffer> create() { return adoptRef(new SharedBuffer)
; } |
| 44 static PassRefPtr<SharedBuffer> create(size_t size) { return adoptRef(new Sh
aredBuffer(size)); } | 45 static PassRefPtr<SharedBuffer> create(size_t size) { return adoptRef(new Sh
aredBuffer(size)); } |
| 45 static PassRefPtr<SharedBuffer> create(const char* c, int i) { return adoptR
ef(new SharedBuffer(c, i)); } | 46 static PassRefPtr<SharedBuffer> create(const char* c, int i) { return adoptR
ef(new SharedBuffer(c, i)); } |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 // pos += length; | 91 // pos += length; |
| 91 // } | 92 // } |
| 92 unsigned getSomeData(const char*& data, unsigned position = 0) const; | 93 unsigned getSomeData(const char*& data, unsigned position = 0) const; |
| 93 | 94 |
| 94 void createPurgeableBuffer() const; | 95 void createPurgeableBuffer() const; |
| 95 | 96 |
| 96 // Creates an ArrayBuffer and copies this SharedBuffer's contents to that | 97 // Creates an ArrayBuffer and copies this SharedBuffer's contents to that |
| 97 // ArrayBuffer without merging segmented buffers into a flat buffer. | 98 // ArrayBuffer without merging segmented buffers into a flat buffer. |
| 98 PassRefPtr<ArrayBuffer> getAsArrayBuffer() const; | 99 PassRefPtr<ArrayBuffer> getAsArrayBuffer() const; |
| 99 | 100 |
| 101 void setDebug(const String& debug) { m_debug = debug; } |
| 102 String debug() const { return m_debug; } |
| 103 |
| 100 private: | 104 private: |
| 101 SharedBuffer(); | 105 SharedBuffer(); |
| 102 explicit SharedBuffer(size_t); | 106 explicit SharedBuffer(size_t); |
| 103 SharedBuffer(const char*, int); | 107 SharedBuffer(const char*, int); |
| 104 SharedBuffer(const unsigned char*, int); | 108 SharedBuffer(const unsigned char*, int); |
| 105 | 109 |
| 106 // Calling this function will force internal segmented buffers | 110 // Calling this function will force internal segmented buffers |
| 107 // to be merged into a flat buffer. Use getSomeData() whenever possible | 111 // to be merged into a flat buffer. Use getSomeData() whenever possible |
| 108 // for better performance. | 112 // for better performance. |
| 109 // As well, be aware that this method does *not* return any purgeable | 113 // As well, be aware that this method does *not* return any purgeable |
| 110 // memory, which can be a source of bugs. | 114 // memory, which can be a source of bugs. |
| 111 const Vector<char>& buffer() const; | 115 const Vector<char>& buffer() const; |
| 112 | 116 |
| 113 unsigned m_size; | 117 unsigned m_size; |
| 114 mutable Vector<char> m_buffer; | 118 mutable Vector<char> m_buffer; |
| 115 mutable Vector<char*> m_segments; | 119 mutable Vector<char*> m_segments; |
| 116 mutable OwnPtr<PurgeableBuffer> m_purgeableBuffer; | 120 mutable OwnPtr<PurgeableBuffer> m_purgeableBuffer; |
| 121 String m_debug; |
| 117 }; | 122 }; |
| 118 | 123 |
| 124 inline const char *debug(const SharedBuffer* b) { return TRACE_STR_COPY(b ? b->d
ebug().ascii().data() : "NO-DATA"); } |
| 125 |
| 119 } // namespace WebCore | 126 } // namespace WebCore |
| 120 | 127 |
| 121 #endif // SharedBuffer_h | 128 #endif // SharedBuffer_h |
| OLD | NEW |