2013-12-11 19:03:51 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/* vim: set sw=4 ts=8 et tw=80 : */
|
2012-05-21 11:12:37 +00:00
|
|
|
/* 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/. */
|
2003-09-11 20:32:33 +00:00
|
|
|
|
2012-08-29 00:24:06 +00:00
|
|
|
#ifndef nsDNSService2_h__
|
|
|
|
#define nsDNSService2_h__
|
|
|
|
|
2005-04-06 01:33:28 +00:00
|
|
|
#include "nsPIDNSService.h"
|
2003-09-11 20:32:33 +00:00
|
|
|
#include "nsIIDNService.h"
|
2013-11-07 05:35:30 +00:00
|
|
|
#include "nsIMemoryReporter.h"
|
2003-09-11 20:32:33 +00:00
|
|
|
#include "nsIObserver.h"
|
|
|
|
#include "nsHostResolver.h"
|
|
|
|
#include "nsAutoPtr.h"
|
2004-03-09 20:31:54 +00:00
|
|
|
#include "nsString.h"
|
2012-05-11 19:59:19 +00:00
|
|
|
#include "nsTHashtable.h"
|
|
|
|
#include "nsHashKeys.h"
|
2014-04-15 20:13:00 +00:00
|
|
|
#include "nsIObserverService.h"
|
|
|
|
#include "nsProxyRelease.h"
|
Rollup of bug 645263 and bug 646259: Switch to mozilla:: sync primitives. r=cjones,dbaron,doublec,ehsan src=bsmedberg
Bug 645263, part 0: Count sync primitive ctor/dtors. r=dbaron
Bug 645263, part 1: Migrate content/media to mozilla:: sync primitives. r=doublec
Bug 645263, part 2: Migrate modules/plugin to mozilla:: sync primitives. sr=bsmedberg
Bug 645263, part 3: Migrate nsComponentManagerImpl to mozilla:: sync primitives. sr=bsmedberg
Bug 645263, part 4: Migrate everything else to mozilla:: sync primitives. r=dbaron
Bug 645263, part 5: Remove nsAutoLock.*. sr=bsmedberg
Bug 645263, part 6: Make editor test be nicer to deadlock detector. r=ehsan
Bug 645263, part 7: Disable tracemalloc backtraces for xpcshell tests. r=dbaron
Bug 646259: Fix nsCacheService to use a CondVar for notifying. r=cjones
2011-04-01 04:29:02 +00:00
|
|
|
#include "mozilla/Mutex.h"
|
2012-06-06 03:18:25 +00:00
|
|
|
#include "mozilla/Attributes.h"
|
2003-09-11 20:32:33 +00:00
|
|
|
|
2013-12-08 06:09:10 +00:00
|
|
|
class nsDNSService MOZ_FINAL : public nsPIDNSService
|
2012-06-06 03:18:25 +00:00
|
|
|
, public nsIObserver
|
2013-12-08 06:09:10 +00:00
|
|
|
, public nsIMemoryReporter
|
2003-09-11 20:32:33 +00:00
|
|
|
{
|
|
|
|
public:
|
2013-07-19 02:24:13 +00:00
|
|
|
NS_DECL_THREADSAFE_ISUPPORTS
|
2005-04-06 01:33:28 +00:00
|
|
|
NS_DECL_NSPIDNSSERVICE
|
2003-09-11 20:32:33 +00:00
|
|
|
NS_DECL_NSIDNSSERVICE
|
|
|
|
NS_DECL_NSIOBSERVER
|
2013-12-08 06:09:10 +00:00
|
|
|
NS_DECL_NSIMEMORYREPORTER
|
2003-09-11 20:32:33 +00:00
|
|
|
|
|
|
|
nsDNSService();
|
2005-04-06 01:33:28 +00:00
|
|
|
~nsDNSService();
|
2003-09-11 20:32:33 +00:00
|
|
|
|
2013-12-11 19:03:51 +00:00
|
|
|
static nsIDNSService* GetXPCOMSingleton();
|
|
|
|
|
2013-11-24 23:24:12 +00:00
|
|
|
size_t SizeOfIncludingThis(mozilla::MallocSizeOf mallocSizeOf) const;
|
|
|
|
|
2003-09-11 20:32:33 +00:00
|
|
|
private:
|
2013-12-11 19:03:51 +00:00
|
|
|
static nsDNSService* GetSingleton();
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
uint16_t GetAFForLookup(const nsACString &host, uint32_t flags);
|
2004-03-09 20:31:54 +00:00
|
|
|
|
2003-09-11 20:32:33 +00:00
|
|
|
nsRefPtr<nsHostResolver> mResolver;
|
|
|
|
nsCOMPtr<nsIIDNService> mIDN;
|
2004-03-09 20:31:54 +00:00
|
|
|
|
|
|
|
// mLock protects access to mResolver and mIPv4OnlyDomains
|
Rollup of bug 645263 and bug 646259: Switch to mozilla:: sync primitives. r=cjones,dbaron,doublec,ehsan src=bsmedberg
Bug 645263, part 0: Count sync primitive ctor/dtors. r=dbaron
Bug 645263, part 1: Migrate content/media to mozilla:: sync primitives. r=doublec
Bug 645263, part 2: Migrate modules/plugin to mozilla:: sync primitives. sr=bsmedberg
Bug 645263, part 3: Migrate nsComponentManagerImpl to mozilla:: sync primitives. sr=bsmedberg
Bug 645263, part 4: Migrate everything else to mozilla:: sync primitives. r=dbaron
Bug 645263, part 5: Remove nsAutoLock.*. sr=bsmedberg
Bug 645263, part 6: Make editor test be nicer to deadlock detector. r=ehsan
Bug 645263, part 7: Disable tracemalloc backtraces for xpcshell tests. r=dbaron
Bug 646259: Fix nsCacheService to use a CondVar for notifying. r=cjones
2011-04-01 04:29:02 +00:00
|
|
|
mozilla::Mutex mLock;
|
2003-09-11 20:32:33 +00:00
|
|
|
|
2004-03-09 20:31:54 +00:00
|
|
|
// mIPv4OnlyDomains is a comma-separated list of domains for which only
|
|
|
|
// IPv4 DNS lookups are performed. This allows the user to disable IPv6 on
|
|
|
|
// a per-domain basis and work around broken DNS servers. See bug 68796.
|
2014-04-15 20:13:00 +00:00
|
|
|
nsAdoptingCString mIPv4OnlyDomains;
|
|
|
|
bool mDisableIPv6;
|
|
|
|
bool mDisablePrefetch;
|
|
|
|
bool mFirstTime;
|
|
|
|
bool mOffline;
|
|
|
|
bool mNotifyResolution;
|
|
|
|
nsMainThreadPtrHandle<nsIObserverService> mObserverService;
|
|
|
|
nsTHashtable<nsCStringHashKey> mLocalDomains;
|
2003-09-11 20:32:33 +00:00
|
|
|
};
|
2012-08-29 00:24:06 +00:00
|
|
|
|
|
|
|
#endif //nsDNSService2_h__
|