summaryrefslogtreecommitdiffstats
path: root/netwerk/cookie/CookieKey.h
blob: 86291a187e24d9abb79791108f4ec38f6e93d424 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* 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 mozilla_net_CookieKey_h
#define mozilla_net_CookieKey_h

#include "mozilla/OriginAttributes.h"
#include "nsHashKeys.h"

namespace mozilla {
namespace net {

class CookieKey : public PLDHashEntryHdr {
 public:
  typedef const CookieKey& KeyType;
  typedef const CookieKey* KeyTypePointer;

  CookieKey() = default;

  CookieKey(const nsACString& baseDomain, const OriginAttributes& attrs)
      : mBaseDomain(baseDomain), mOriginAttributes(attrs) {}

  explicit CookieKey(KeyTypePointer other)
      : mBaseDomain(other->mBaseDomain),
        mOriginAttributes(other->mOriginAttributes) {}

  CookieKey(CookieKey&& other) = default;
  CookieKey& operator=(CookieKey&&) = default;

  bool KeyEquals(KeyTypePointer other) const {
    return mBaseDomain == other->mBaseDomain &&
           mOriginAttributes == other->mOriginAttributes;
  }

  static KeyTypePointer KeyToPointer(KeyType aKey) { return &aKey; }

  static PLDHashNumber HashKey(KeyTypePointer aKey) {
    nsAutoCString temp(aKey->mBaseDomain);
    temp.Append('#');
    nsAutoCString suffix;
    aKey->mOriginAttributes.CreateSuffix(suffix);
    temp.Append(suffix);
    return HashString(temp);
  }

  size_t SizeOfExcludingThis(MallocSizeOf aMallocSizeOf) const {
    return mBaseDomain.SizeOfExcludingThisIfUnshared(aMallocSizeOf);
  }

  enum { ALLOW_MEMMOVE = true };

  nsCString mBaseDomain;
  OriginAttributes mOriginAttributes;
};

}  // namespace net
}  // namespace mozilla

#endif  // mozilla_net_CookieKey_h