2007-07-25 23:31:49 -07:00
|
|
|
//* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 04:12:37 -07: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/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#include "nsIEffectiveTLDService.h"
|
|
|
|
|
2007-07-25 23:31:49 -07:00
|
|
|
#include "nsTHashtable.h"
|
|
|
|
#include "nsString.h"
|
|
|
|
#include "nsCOMPtr.h"
|
2012-06-05 20:18:25 -07:00
|
|
|
#include "mozilla/Attributes.h"
|
2007-07-25 23:31:49 -07:00
|
|
|
|
|
|
|
class nsIIDNService;
|
2008-02-14 14:57:20 -08:00
|
|
|
|
|
|
|
// struct for static data generated from effective_tld_names.dat
|
|
|
|
struct ETLDEntry {
|
|
|
|
const char* domain;
|
2011-09-28 23:19:26 -07:00
|
|
|
bool exception;
|
|
|
|
bool wild;
|
2008-02-14 14:57:20 -08:00
|
|
|
};
|
|
|
|
|
2007-07-25 23:31:49 -07:00
|
|
|
|
|
|
|
// hash entry class
|
|
|
|
class nsDomainEntry : public PLDHashEntryHdr
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// Hash methods
|
|
|
|
typedef const char* KeyType;
|
|
|
|
typedef const char* KeyTypePointer;
|
|
|
|
|
2008-02-14 14:57:20 -08:00
|
|
|
nsDomainEntry(KeyTypePointer aEntry)
|
|
|
|
{
|
|
|
|
}
|
2007-07-25 23:31:49 -07:00
|
|
|
|
|
|
|
nsDomainEntry(const nsDomainEntry& toCopy)
|
|
|
|
{
|
|
|
|
// if we end up here, things will break. nsTHashtable shouldn't
|
|
|
|
// allow this, since we set ALLOW_MEMMOVE to true.
|
|
|
|
NS_NOTREACHED("nsDomainEntry copy constructor is forbidden!");
|
|
|
|
}
|
|
|
|
|
|
|
|
~nsDomainEntry()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
KeyType GetKey() const
|
|
|
|
{
|
2008-02-14 14:57:20 -08:00
|
|
|
return mData->domain;
|
2007-07-25 23:31:49 -07:00
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool KeyEquals(KeyTypePointer aKey) const
|
2007-07-25 23:31:49 -07:00
|
|
|
{
|
2008-02-14 14:57:20 -08:00
|
|
|
return !strcmp(mData->domain, aKey);
|
2007-07-25 23:31:49 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static KeyTypePointer KeyToPointer(KeyType aKey)
|
|
|
|
{
|
|
|
|
return aKey;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PLDHashNumber HashKey(KeyTypePointer aKey)
|
|
|
|
{
|
|
|
|
// PL_DHashStringKey doesn't use the table parameter, so we can safely
|
|
|
|
// pass nsnull
|
|
|
|
return PL_DHashStringKey(nsnull, aKey);
|
|
|
|
}
|
|
|
|
|
2011-10-17 07:59:28 -07:00
|
|
|
enum { ALLOW_MEMMOVE = true };
|
2007-07-25 23:31:49 -07:00
|
|
|
|
2008-02-14 14:57:20 -08:00
|
|
|
void SetData(const ETLDEntry* entry) { mData = entry; }
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool IsNormal() { return mData->wild || !mData->exception; }
|
|
|
|
bool IsException() { return mData->exception; }
|
|
|
|
bool IsWild() { return mData->wild; }
|
2007-07-25 23:31:49 -07:00
|
|
|
|
|
|
|
private:
|
2008-02-14 14:57:20 -08:00
|
|
|
const ETLDEntry* mData;
|
2007-07-25 23:31:49 -07:00
|
|
|
};
|
|
|
|
|
2012-06-05 20:18:25 -07:00
|
|
|
class nsEffectiveTLDService MOZ_FINAL : public nsIEffectiveTLDService
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSIEFFECTIVETLDSERVICE
|
|
|
|
|
2008-02-14 14:57:20 -08:00
|
|
|
nsEffectiveTLDService() { }
|
2007-03-22 10:30:00 -07:00
|
|
|
nsresult Init();
|
|
|
|
|
|
|
|
private:
|
2007-12-04 13:57:31 -08:00
|
|
|
nsresult GetBaseDomainInternal(nsCString &aHostname, PRUint32 aAdditionalParts, nsACString &aBaseDomain);
|
2007-07-25 23:31:49 -07:00
|
|
|
nsresult NormalizeHostname(nsCString &aHostname);
|
2008-02-14 14:57:20 -08:00
|
|
|
~nsEffectiveTLDService() { }
|
2007-07-25 23:31:49 -07:00
|
|
|
|
|
|
|
nsTHashtable<nsDomainEntry> mHash;
|
|
|
|
nsCOMPtr<nsIIDNService> mIDNService;
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|