mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 00:25:27 +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
68 lines
2.2 KiB
C++
68 lines
2.2 KiB
C++
//* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim: set ts=2 et sw=2 tw=80: */
|
|
/* 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 nsUrlClassifierPrefixSet_h_
|
|
#define nsUrlClassifierPrefixSet_h_
|
|
|
|
#include "nsISupportsUtils.h"
|
|
#include "nsID.h"
|
|
#include "nsIFile.h"
|
|
#include "nsIMutableArray.h"
|
|
#include "nsIUrlClassifierPrefixSet.h"
|
|
#include "nsIMemoryReporter.h"
|
|
#include "nsToolkitCompsCID.h"
|
|
#include "mozilla/Mutex.h"
|
|
#include "mozilla/CondVar.h"
|
|
#include "mozilla/FileUtils.h"
|
|
|
|
class nsPrefixSetReporter;
|
|
|
|
class nsUrlClassifierPrefixSet : public nsIUrlClassifierPrefixSet
|
|
{
|
|
public:
|
|
nsUrlClassifierPrefixSet();
|
|
virtual ~nsUrlClassifierPrefixSet();
|
|
|
|
NS_IMETHOD Init(const nsACString& aName);
|
|
NS_IMETHOD SetPrefixes(const uint32_t* aArray, uint32_t aLength);
|
|
NS_IMETHOD GetPrefixes(uint32_t* aCount, uint32_t** aPrefixes);
|
|
NS_IMETHOD Contains(uint32_t aPrefix, bool* aFound);
|
|
NS_IMETHOD IsEmpty(bool* aEmpty);
|
|
NS_IMETHOD LoadFromFile(nsIFile* aFile);
|
|
NS_IMETHOD StoreToFile(nsIFile* aFile);
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
// Return the estimated size of the set on disk and in memory,
|
|
// in bytes
|
|
size_t SizeOfIncludingThis(nsMallocSizeOfFun mallocSizeOf);
|
|
|
|
protected:
|
|
static const uint32_t DELTAS_LIMIT = 100;
|
|
static const uint32_t MAX_INDEX_DIFF = (1 << 16);
|
|
static const uint32_t PREFIXSET_VERSION_MAGIC = 1;
|
|
|
|
nsRefPtr<nsPrefixSetReporter> mReporter;
|
|
|
|
nsresult MakePrefixSet(const uint32_t* aArray, uint32_t aLength);
|
|
uint32_t BinSearch(uint32_t start, uint32_t end, uint32_t target);
|
|
nsresult LoadFromFd(mozilla::AutoFDClose& fileFd);
|
|
nsresult StoreToFd(mozilla::AutoFDClose& fileFd);
|
|
|
|
// boolean indicating whether |setPrefixes| has been
|
|
// called with a non-empty array.
|
|
bool mHasPrefixes;
|
|
// the prefix for each index.
|
|
FallibleTArray<uint32_t> mIndexPrefixes;
|
|
// the value corresponds to the beginning of the run
|
|
// (an index in |_deltas|) for the index
|
|
FallibleTArray<uint32_t> mIndexStarts;
|
|
// array containing deltas from indices.
|
|
FallibleTArray<uint16_t> mDeltas;
|
|
};
|
|
|
|
#endif
|