summaryrefslogtreecommitdiffstats
path: root/dom/webtransport/api/WebTransportStreams.h
blob: e9cc06176d2bf33f7e3e33acf91a1d49ea6854fa (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
/* -*- 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 DOM_WEBTRANSPORT_API_WEBTRANSPORTSTREAMS__H_
#define DOM_WEBTRANSPORT_API_WEBTRANSPORTSTREAMS__H_

#include "mozilla/dom/UnderlyingSourceCallbackHelpers.h"
#include "mozilla/dom/WritableStream.h"

namespace mozilla::dom {

class WebTransport;

class WebTransportIncomingStreamsAlgorithms
    : public UnderlyingSourceAlgorithmsWrapper {
 public:
  enum class StreamType : uint8_t { Unidirectional, Bidirectional };
  WebTransportIncomingStreamsAlgorithms(StreamType aUnidirectional,
                                        WebTransport* aTransport);

  NS_DECL_ISUPPORTS_INHERITED
  NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(
      WebTransportIncomingStreamsAlgorithms, UnderlyingSourceAlgorithmsWrapper)

  already_AddRefed<Promise> PullCallbackImpl(
      JSContext* aCx, ReadableStreamController& aController,
      ErrorResult& aRv) override;

  // We call EnqueueNative, which is MOZ_CAN_RUN_SCRIPT but won't in this case
  MOZ_CAN_RUN_SCRIPT_BOUNDARY void BuildStream(JSContext* aCx,
                                               ErrorResult& aRv);

  void NotifyIncomingStream();

  void NotifyRejectAll();

 protected:
  ~WebTransportIncomingStreamsAlgorithms() override;

 private:
  const StreamType mUnidirectional;
  RefPtr<WebTransport> mTransport;
  RefPtr<Promise> mCallback;
};

}  // namespace mozilla::dom

#endif  // DOM_WEBTRANSPORT_API_WEBTRANSPORTSTREAMS__H_