mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
This caused us to lose our gn check certification. :( Turns out gn check was just ignoring all the header paths it didn't understand and so gn check passing for sky wasn't meaning much. I tried to straighten out some of the mess in this CL, but its going to take several more rounds of massaging before gn check passes again. On the bright side (almost) all of our headers are absolute now. Turns out my script (attached to the bug) didn't notice ../ includes but I'll fix that in the next patch. R=abarth@chromium.org BUG=435361 Review URL: https://codereview.chromium.org/746023002
122 lines
4.7 KiB
C++
122 lines
4.7 KiB
C++
/*
|
|
* Copyright (C) 2006 Apple Computer, Inc. All rights reserved.
|
|
* Copyright (C) Research In Motion Limited 2009-2010. All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
|
|
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
|
|
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
|
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
|
|
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
|
|
#ifndef SharedBuffer_h
|
|
#define SharedBuffer_h
|
|
|
|
#include "sky/engine/platform/PlatformExport.h"
|
|
#include "sky/engine/platform/PurgeableVector.h"
|
|
#include "sky/engine/wtf/ArrayBuffer.h"
|
|
#include "sky/engine/wtf/Forward.h"
|
|
#include "sky/engine/wtf/OwnPtr.h"
|
|
#include "sky/engine/wtf/RefCounted.h"
|
|
#include "sky/engine/wtf/text/WTFString.h"
|
|
#include "third_party/skia/include/core/SkData.h"
|
|
|
|
namespace blink {
|
|
|
|
class PLATFORM_EXPORT SharedBuffer : public RefCounted<SharedBuffer> {
|
|
public:
|
|
static PassRefPtr<SharedBuffer> create() { return adoptRef(new SharedBuffer); }
|
|
static PassRefPtr<SharedBuffer> create(size_t size) { return adoptRef(new SharedBuffer(size)); }
|
|
static PassRefPtr<SharedBuffer> create(const char* c, int i) { return adoptRef(new SharedBuffer(c, i)); }
|
|
static PassRefPtr<SharedBuffer> create(const unsigned char* c, int i) { return adoptRef(new SharedBuffer(c, i)); }
|
|
|
|
static PassRefPtr<SharedBuffer> createPurgeable(const char* c, int i) { return adoptRef(new SharedBuffer(c, i, PurgeableVector::Purgeable)); }
|
|
|
|
static PassRefPtr<SharedBuffer> adoptVector(Vector<char>&);
|
|
|
|
~SharedBuffer();
|
|
|
|
// Calling this function will force internal segmented buffers to be merged
|
|
// into a flat buffer. Use getSomeData() whenever possible for better
|
|
// performance.
|
|
const char* data() const;
|
|
|
|
unsigned size() const;
|
|
|
|
bool isEmpty() const { return !size(); }
|
|
|
|
void append(PassRefPtr<SharedBuffer>);
|
|
void append(const char*, unsigned);
|
|
void append(const Vector<char>&);
|
|
|
|
void clear();
|
|
|
|
PassRefPtr<SharedBuffer> copy() const;
|
|
|
|
// Return the number of consecutive bytes after "position". "data"
|
|
// points to the first byte.
|
|
// Return 0 when no more data left.
|
|
// When extracting all data with getSomeData(), the caller should
|
|
// repeat calling it until it returns 0.
|
|
// Usage:
|
|
// const char* segment;
|
|
// unsigned pos = 0;
|
|
// while (unsigned length = sharedBuffer->getSomeData(segment, pos)) {
|
|
// // Use the data. for example: decoder->decode(segment, length);
|
|
// pos += length;
|
|
// }
|
|
unsigned getSomeData(const char*& data, unsigned position = 0) const;
|
|
|
|
// Creates an ArrayBuffer and copies this SharedBuffer's contents to that
|
|
// ArrayBuffer without merging segmented buffers into a flat buffer. If
|
|
// allocation of an ArrayBuffer fails, returns 0.
|
|
PassRefPtr<ArrayBuffer> getAsArrayBuffer() const;
|
|
|
|
// Creates an SkData and copies this SharedBuffer's contents to that
|
|
// SkData without merging segmented buffers into a flat buffer.
|
|
PassRefPtr<SkData> getAsSkData() const;
|
|
|
|
// See PurgeableVector::lock().
|
|
bool lock();
|
|
|
|
// WARNING: Calling unlock() on a SharedBuffer that wasn't created with the
|
|
// purgeability option does an extra memcpy(). Please use
|
|
// SharedBuffer::createPurgeable() if you intend to call unlock().
|
|
void unlock();
|
|
|
|
bool isLocked() const;
|
|
|
|
private:
|
|
SharedBuffer();
|
|
explicit SharedBuffer(size_t);
|
|
SharedBuffer(const char*, int);
|
|
SharedBuffer(const char*, int, PurgeableVector::PurgeableOption);
|
|
SharedBuffer(const unsigned char*, int);
|
|
|
|
// See SharedBuffer::data().
|
|
void mergeSegmentsIntoBuffer() const;
|
|
|
|
unsigned m_size;
|
|
mutable PurgeableVector m_buffer;
|
|
mutable Vector<char*> m_segments;
|
|
};
|
|
|
|
} // namespace blink
|
|
|
|
#endif // SharedBuffer_h
|