mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
e368dc9c85
This patch was generated by a script. Here's the source of the script for future reference: function convert() { echo "Converting $1 to $2..." find . ! -wholename "*nsprpub*" \ ! -wholename "*security/nss*" \ ! -wholename "*/.hg*" \ ! -wholename "obj-ff-dbg*" \ ! -name nsXPCOMCID.h \ ! -name prtypes.h \ -type f \ \( -iname "*.cpp" \ -o -iname "*.h" \ -o -iname "*.c" \ -o -iname "*.cc" \ -o -iname "*.idl" \ -o -iname "*.ipdl" \ -o -iname "*.ipdlh" \ -o -iname "*.mm" \) | \ xargs -n 1 sed -i -e "s/\b$1\b/$2/g" } convert PRInt8 int8_t convert PRUint8 uint8_t convert PRInt16 int16_t convert PRUint16 uint16_t convert PRInt32 int32_t convert PRUint32 uint32_t convert PRInt64 int64_t convert PRUint64 uint64_t convert PRIntn int convert PRUintn unsigned convert PRSize size_t convert PROffset32 int32_t convert PROffset64 int64_t convert PRPtrdiff ptrdiff_t convert PRFloat64 double
203 lines
3.7 KiB
C++
203 lines
3.7 KiB
C++
/* -*- Mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 40 -*- */
|
|
/* 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_dom_workers_queue_h__
|
|
#define mozilla_dom_workers_queue_h__
|
|
|
|
#include "Workers.h"
|
|
|
|
#include "mozilla/Mutex.h"
|
|
#include "nsTArray.h"
|
|
|
|
BEGIN_WORKERS_NAMESPACE
|
|
|
|
template <typename T, int TCount>
|
|
struct StorageWithTArray
|
|
{
|
|
typedef nsAutoTArray<T, TCount> StorageType;
|
|
|
|
static void Reverse(StorageType& aStorage)
|
|
{
|
|
uint32_t length = aStorage.Length();
|
|
for (uint32_t index = 0; index < length / 2; index++) {
|
|
uint32_t reverseIndex = length - 1 - index;
|
|
|
|
T t1 = aStorage.ElementAt(index);
|
|
T t2 = aStorage.ElementAt(reverseIndex);
|
|
|
|
aStorage.ReplaceElementsAt(index, 1, t2);
|
|
aStorage.ReplaceElementsAt(reverseIndex, 1, t1);
|
|
}
|
|
}
|
|
|
|
static bool IsEmpty(const StorageType& aStorage)
|
|
{
|
|
return !!aStorage.IsEmpty();
|
|
}
|
|
|
|
static bool Push(StorageType& aStorage, const T& aEntry)
|
|
{
|
|
return !!aStorage.AppendElement(aEntry);
|
|
}
|
|
|
|
static bool Pop(StorageType& aStorage, T& aEntry)
|
|
{
|
|
if (IsEmpty(aStorage)) {
|
|
return false;
|
|
}
|
|
|
|
uint32_t index = aStorage.Length() - 1;
|
|
aEntry = aStorage.ElementAt(index);
|
|
aStorage.RemoveElementAt(index);
|
|
return true;
|
|
}
|
|
|
|
static void Clear(StorageType& aStorage)
|
|
{
|
|
aStorage.Clear();
|
|
}
|
|
|
|
static void Compact(StorageType& aStorage)
|
|
{
|
|
aStorage.Compact();
|
|
}
|
|
};
|
|
|
|
class LockingWithMutex
|
|
{
|
|
mozilla::Mutex mMutex;
|
|
|
|
protected:
|
|
LockingWithMutex()
|
|
: mMutex("LockingWithMutex::mMutex")
|
|
{ }
|
|
|
|
void Lock()
|
|
{
|
|
mMutex.Lock();
|
|
}
|
|
|
|
void Unlock()
|
|
{
|
|
mMutex.Unlock();
|
|
}
|
|
|
|
class AutoLock
|
|
{
|
|
LockingWithMutex& mHost;
|
|
|
|
public:
|
|
AutoLock(LockingWithMutex& aHost)
|
|
: mHost(aHost)
|
|
{
|
|
mHost.Lock();
|
|
}
|
|
|
|
~AutoLock()
|
|
{
|
|
mHost.Unlock();
|
|
}
|
|
};
|
|
|
|
friend class AutoLock;
|
|
};
|
|
|
|
class NoLocking
|
|
{
|
|
protected:
|
|
void Lock()
|
|
{ }
|
|
|
|
void Unlock()
|
|
{ }
|
|
|
|
class AutoLock
|
|
{
|
|
public:
|
|
AutoLock(NoLocking& aHost)
|
|
{ }
|
|
|
|
~AutoLock()
|
|
{ }
|
|
};
|
|
};
|
|
|
|
template <typename T,
|
|
int TCount = 256,
|
|
class LockingPolicy = NoLocking,
|
|
class StoragePolicy = StorageWithTArray<T, TCount % 2 ?
|
|
TCount / 2 + 1 :
|
|
TCount / 2> >
|
|
class Queue : public LockingPolicy
|
|
{
|
|
typedef typename StoragePolicy::StorageType StorageType;
|
|
typedef typename LockingPolicy::AutoLock AutoLock;
|
|
|
|
StorageType mStorage1;
|
|
StorageType mStorage2;
|
|
|
|
StorageType* mFront;
|
|
StorageType* mBack;
|
|
|
|
public:
|
|
Queue()
|
|
: mFront(&mStorage1), mBack(&mStorage2)
|
|
{ }
|
|
|
|
bool IsEmpty()
|
|
{
|
|
AutoLock lock(*this);
|
|
return StoragePolicy::IsEmpty(*mFront) &&
|
|
StoragePolicy::IsEmpty(*mBack);
|
|
}
|
|
|
|
bool Push(const T& aEntry)
|
|
{
|
|
AutoLock lock(*this);
|
|
return StoragePolicy::Push(*mBack, aEntry);
|
|
}
|
|
|
|
bool Pop(T& aEntry)
|
|
{
|
|
AutoLock lock(*this);
|
|
if (StoragePolicy::IsEmpty(*mFront)) {
|
|
StoragePolicy::Compact(*mFront);
|
|
StoragePolicy::Reverse(*mBack);
|
|
StorageType* tmp = mFront;
|
|
mFront = mBack;
|
|
mBack = tmp;
|
|
}
|
|
return StoragePolicy::Pop(*mFront, aEntry);
|
|
}
|
|
|
|
void Clear()
|
|
{
|
|
AutoLock lock(*this);
|
|
StoragePolicy::Clear(*mFront);
|
|
StoragePolicy::Clear(*mBack);
|
|
}
|
|
|
|
// XXX Do we need this?
|
|
void Lock()
|
|
{
|
|
LockingPolicy::Lock();
|
|
}
|
|
|
|
// XXX Do we need this?
|
|
void Unlock()
|
|
{
|
|
LockingPolicy::Unlock();
|
|
}
|
|
|
|
private:
|
|
// Queue is not copyable.
|
|
Queue(const Queue&);
|
|
Queue & operator=(const Queue&);
|
|
};
|
|
|
|
END_WORKERS_NAMESPACE
|
|
|
|
#endif /* mozilla_dom_workers_queue_h__ */
|