gecko-dev/netwerk/base/RedirectChannelRegistrar.h
Andreas Farre ca5db92916 Bug 1590762 - Part 2: Bump the id for channel registration to uint64_t. r=mattwoodrow,necko-reviewers,valentin
This patch also makes the identifier for channels global, in the sense
that the generated identifier is generated outside of and passed to
the nsIRedirectChannelRegistrar.

Differential Revision: https://phabricator.services.mozilla.com/D79820
2020-06-23 13:18:56 +00:00

51 lines
1.3 KiB
C++

/* 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 RedirectChannelRegistrar_h__
#define RedirectChannelRegistrar_h__
#include "nsIRedirectChannelRegistrar.h"
#include "nsIChannel.h"
#include "nsIParentChannel.h"
#include "nsInterfaceHashtable.h"
#include "mozilla/Attributes.h"
#include "mozilla/Mutex.h"
namespace mozilla {
namespace net {
class RedirectChannelRegistrar final : public nsIRedirectChannelRegistrar {
NS_DECL_ISUPPORTS
NS_DECL_NSIREDIRECTCHANNELREGISTRAR
RedirectChannelRegistrar();
private:
~RedirectChannelRegistrar() = default;
public:
// Singleton accessor
static already_AddRefed<nsIRedirectChannelRegistrar> GetOrCreate();
// Cleanup the singleton instance on shutdown
static void Shutdown();
protected:
using ChannelHashtable = nsInterfaceHashtable<nsUint64HashKey, nsIChannel>;
using ParentChannelHashtable =
nsInterfaceHashtable<nsUint64HashKey, nsIParentChannel>;
ChannelHashtable mRealChannels;
ParentChannelHashtable mParentChannels;
Mutex mLock;
static StaticRefPtr<RedirectChannelRegistrar> gSingleton;
};
} // namespace net
} // namespace mozilla
#endif