summaryrefslogtreecommitdiffstats
path: root/netwerk/dns/DNSListenerProxy.h
blob: 5baddfd8e7c342b558c21b30f0af16e85cd43235 (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
62
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set sw=2 ts=8 et 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 DNSListenerProxy_h__
#define DNSListenerProxy_h__

#include "nsIDNSListener.h"
#include "nsIDNSRecord.h"
#include "nsProxyRelease.h"
#include "nsThreadUtils.h"

class nsIEventTarget;
class nsICancelable;

namespace mozilla {
namespace net {

#define DNS_LISTENER_PROXY_IID                       \
  {                                                  \
    0x8f172ca3, 0x7a7f, 0x4941, {                    \
      0xa7, 0x0b, 0xbc, 0x72, 0x80, 0x2e, 0x9d, 0x9b \
    }                                                \
  }

class DNSListenerProxy final : public nsIDNSListener {
 public:
  DNSListenerProxy(nsIDNSListener* aListener, nsIEventTarget* aTargetThread)
      // We want to make sure that |aListener| is only accessed on the target
      // thread.
      : mListener(aListener),
        mTargetThread(aTargetThread),
        mListenerAddress(reinterpret_cast<uintptr_t>(aListener)) {
    MOZ_ASSERT(mListener);
    MOZ_ASSERT(mTargetThread);
  }

  NS_DECL_THREADSAFE_ISUPPORTS
  NS_DECL_NSIDNSLISTENER
  NS_DECLARE_STATIC_IID_ACCESSOR(DNS_LISTENER_PROXY_IID)

  uintptr_t GetOriginalListenerAddress() const { return mListenerAddress; }

 private:
  ~DNSListenerProxy() {
    NS_ProxyRelease("DNSListenerProxy::mListener", mTargetThread,
                    mListener.forget());
  }

  nsCOMPtr<nsIDNSListener> mListener;
  nsCOMPtr<nsIEventTarget> mTargetThread;
  uintptr_t mListenerAddress;
};

NS_DEFINE_STATIC_IID_ACCESSOR(DNSListenerProxy, DNS_LISTENER_PROXY_IID)

}  // namespace net
}  // namespace mozilla

#endif  // DNSListenerProxy_h__