summaryrefslogtreecommitdiffstats
path: root/dom/file/ipc/RemoteLazyInputStreamStorage.h
blob: 296a8d93135891c6e2ba2ab5a7519fd18269bfef (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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 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 mozilla_RemoteLazyInputStreamStorage_h
#define mozilla_RemoteLazyInputStreamStorage_h

#include "mozilla/RefPtr.h"
#include "nsClassHashtable.h"
#include "nsIObserver.h"

class nsIInputStream;
struct nsID;

namespace mozilla {

class NS_NO_VTABLE RemoteLazyInputStreamParentCallback {
 public:
  virtual void ActorDestroyed(const nsID& aID) = 0;

  NS_INLINE_DECL_PURE_VIRTUAL_REFCOUNTING

 protected:
  virtual ~RemoteLazyInputStreamParentCallback() = default;
};

class RemoteLazyInputStreamStorage final : public nsIObserver {
 public:
  NS_DECL_THREADSAFE_ISUPPORTS
  NS_DECL_NSIOBSERVER

  // This initializes the singleton and it must be called on the main-thread.
  static void Initialize();

  static Result<RefPtr<RemoteLazyInputStreamStorage>, nsresult> Get();

  nsISerialEventTarget* TaskQueue() { return mTaskQueue; }

  void AddStream(nsIInputStream* aInputStream, const nsID& aID);

  // Removes and returns the stream corresponding to the nsID. May return a
  // nullptr if there's no stream stored for the nsID.
  nsCOMPtr<nsIInputStream> ForgetStream(const nsID& aID);

  bool HasStream(const nsID& aID);

  void GetStream(const nsID& aID, uint64_t aStart, uint64_t aLength,
                 nsIInputStream** aInputStream);

  void StoreCallback(const nsID& aID,
                     RemoteLazyInputStreamParentCallback* aCallback);

  already_AddRefed<RemoteLazyInputStreamParentCallback> TakeCallback(
      const nsID& aID);

  void ActorCreated(const nsID& aID);
  void ActorDestroyed(const nsID& aID);

 private:
  RemoteLazyInputStreamStorage() = default;
  ~RemoteLazyInputStreamStorage() = default;

  nsCOMPtr<nsISerialEventTarget> mTaskQueue;

  struct StreamData {
    nsCOMPtr<nsIInputStream> mInputStream;
    RefPtr<RemoteLazyInputStreamParentCallback> mCallback;
    size_t mActorCount = 0;
  };

  nsClassHashtable<nsIDHashKey, StreamData> mStorage;
};

}  // namespace mozilla

#endif  // mozilla_RemoteLazyInputStreamStorage_h