2012-04-30 07:11:19 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
#ifndef MOZILLA_SHAREDBUFFER_H_
|
|
|
|
#define MOZILLA_SHAREDBUFFER_H_
|
|
|
|
|
2014-04-03 12:12:29 +04:00
|
|
|
#include "mozilla/CheckedInt.h"
|
2012-04-30 07:11:19 +04:00
|
|
|
#include "mozilla/mozalloc.h"
|
2017-08-29 02:09:06 +03:00
|
|
|
#include "mozilla/MemoryReporting.h"
|
|
|
|
#include "nsISupportsImpl.h"
|
2012-04-30 07:11:19 +04:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
2015-09-08 03:04:16 +03:00
|
|
|
class AudioBlockBuffer;
|
2017-08-03 08:58:23 +03:00
|
|
|
class ThreadSharedFloatArrayBufferList;
|
2015-09-08 03:04:16 +03:00
|
|
|
|
2012-11-22 09:04:27 +04:00
|
|
|
/**
|
|
|
|
* Base class for objects with a thread-safe refcount and a virtual
|
|
|
|
* destructor.
|
|
|
|
*/
|
|
|
|
class ThreadSharedObject {
|
|
|
|
public:
|
|
|
|
NS_INLINE_DECL_THREADSAFE_REFCOUNTING(ThreadSharedObject)
|
2014-04-02 20:21:11 +04:00
|
|
|
|
2014-04-13 22:08:10 +04:00
|
|
|
bool IsShared() { return mRefCnt.get() > 1; }
|
|
|
|
|
2015-09-08 03:04:16 +03:00
|
|
|
virtual AudioBlockBuffer* AsAudioBlockBuffer() { return nullptr; };
|
2017-08-03 08:58:23 +03:00
|
|
|
virtual ThreadSharedFloatArrayBufferList*
|
|
|
|
AsThreadSharedFloatArrayBufferList() {
|
|
|
|
return nullptr;
|
|
|
|
};
|
2015-09-08 03:04:16 +03:00
|
|
|
|
2014-04-13 22:08:10 +04:00
|
|
|
virtual size_t SizeOfExcludingThis(MallocSizeOf aMallocSizeOf) const {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual size_t SizeOfIncludingThis(MallocSizeOf aMallocSizeOf) const {
|
|
|
|
return aMallocSizeOf(this) + SizeOfExcludingThis(aMallocSizeOf);
|
|
|
|
}
|
2018-11-19 16:25:37 +03:00
|
|
|
|
2014-04-02 20:21:11 +04:00
|
|
|
protected:
|
|
|
|
// Protected destructor, to discourage deletion outside of Release():
|
2012-11-22 09:04:27 +04:00
|
|
|
virtual ~ThreadSharedObject() {}
|
|
|
|
};
|
|
|
|
|
2012-04-30 07:11:19 +04:00
|
|
|
/**
|
|
|
|
* Heap-allocated chunk of arbitrary data with threadsafe refcounting.
|
|
|
|
* Typically you would allocate one of these, fill it in, and then treat it as
|
|
|
|
* immutable while it's shared.
|
2015-09-03 09:45:14 +03:00
|
|
|
* This only guarantees 4-byte alignment of the data. For alignment we simply
|
|
|
|
* assume that the memory from malloc is at least 4-byte aligned and the
|
|
|
|
* refcount's size is large enough that SharedBuffer's size is divisible by 4.
|
2012-04-30 07:11:19 +04:00
|
|
|
*/
|
2012-11-22 09:04:27 +04:00
|
|
|
class SharedBuffer : public ThreadSharedObject {
|
2012-04-30 07:11:19 +04:00
|
|
|
public:
|
|
|
|
void* Data() { return this + 1; }
|
|
|
|
|
2017-08-11 01:57:04 +03:00
|
|
|
static already_AddRefed<SharedBuffer> Create(size_t aSize,
|
|
|
|
const fallible_t&) {
|
|
|
|
void* m = operator new(AllocSize(aSize), fallible);
|
|
|
|
if (!m) {
|
|
|
|
return nullptr;
|
2014-04-03 12:12:29 +04:00
|
|
|
}
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<SharedBuffer> p = new (m) SharedBuffer();
|
2017-08-11 01:57:04 +03:00
|
|
|
return p.forget();
|
|
|
|
}
|
|
|
|
|
|
|
|
static already_AddRefed<SharedBuffer> Create(size_t aSize) {
|
|
|
|
void* m = operator new(AllocSize(aSize));
|
|
|
|
RefPtr<SharedBuffer> p = new (m) SharedBuffer();
|
2012-04-30 07:11:19 +04:00
|
|
|
return p.forget();
|
|
|
|
}
|
|
|
|
|
2017-08-29 06:40:11 +03:00
|
|
|
size_t SizeOfIncludingThis(MallocSizeOf aMallocSizeOf) const override {
|
|
|
|
return aMallocSizeOf(this) + SizeOfExcludingThis(aMallocSizeOf);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2017-08-11 01:57:04 +03:00
|
|
|
static size_t AllocSize(size_t aDataSize) {
|
|
|
|
CheckedInt<size_t> size = sizeof(SharedBuffer);
|
|
|
|
size += aDataSize;
|
|
|
|
if (!size.isValid()) {
|
|
|
|
MOZ_CRASH();
|
|
|
|
}
|
|
|
|
return size.value();
|
|
|
|
}
|
|
|
|
|
|
|
|
SharedBuffer() {
|
|
|
|
NS_ASSERTION(
|
|
|
|
(reinterpret_cast<char*>(this + 1) - reinterpret_cast<char*>(this)) %
|
|
|
|
4 ==
|
|
|
|
0,
|
|
|
|
"SharedBuffers should be at least 4-byte aligned");
|
|
|
|
}
|
2012-04-30 07:11:19 +04:00
|
|
|
};
|
|
|
|
|
2015-07-13 18:25:42 +03:00
|
|
|
} // namespace mozilla
|
2012-04-30 07:11:19 +04:00
|
|
|
|
|
|
|
#endif /* MOZILLA_SHAREDBUFFER_H_ */
|