//* -*- 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 "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 SetPrefixes(const PRUint32* aArray, PRUint32 aLength); NS_IMETHOD Probe(PRUint32 aPrefix, PRUint32 aKey, bool* aReady, bool* aFound); NS_IMETHOD IsEmpty(bool * aEmpty); NS_IMETHOD LoadFromFile(nsIFile* aFile); NS_IMETHOD StoreToFile(nsIFile* aFile); NS_IMETHOD GetKey(PRUint32* aKey); 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 PRUint32 DELTAS_LIMIT = 100; static const PRUint32 MAX_INDEX_DIFF = (1 << 16); static const PRUint32 PREFIXSET_VERSION_MAGIC = 1; mozilla::Mutex mPrefixSetLock; mozilla::CondVar mSetIsReady; nsRefPtr mReporter; nsresult Contains(PRUint32 aPrefix, bool* aFound); nsresult MakePrefixSet(const PRUint32* aArray, PRUint32 aLength); PRUint32 BinSearch(PRUint32 start, PRUint32 end, PRUint32 target); nsresult LoadFromFd(mozilla::AutoFDClose & fileFd); nsresult StoreToFd(mozilla::AutoFDClose & fileFd); nsresult InitKey(); // boolean indicating whether |setPrefixes| has been // called with a non-empty array. bool mHasPrefixes; // key used to randomize hash collisions PRUint32 mRandomKey; // the prefix for each index. FallibleTArray mIndexPrefixes; // the value corresponds to the beginning of the run // (an index in |_deltas|) for the index FallibleTArray mIndexStarts; // array containing deltas from indices. FallibleTArray mDeltas; }; #endif