summaryrefslogtreecommitdiffstats
path: root/dom/media/GetUserMediaRequest.h
blob: a2b69bf1d646a0eab8296eace6642beac391abd9 (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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
/* 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 GetUserMediaRequest_h__
#define GetUserMediaRequest_h__

#include <cstdint>
#include "js/TypeDecls.h"
#include "mozilla/Assertions.h"
#include "mozilla/UniquePtr.h"
#include "nsCycleCollectionParticipant.h"
#include "nsISupports.h"
#include "nsString.h"
#include "nsWrapperCache.h"

class nsIMediaDevice;
class nsPIDOMWindowInner;

namespace mozilla {

class LocalMediaDevice;

namespace media {
template <typename T>
class Refcountable;
}

namespace dom {

struct AudioOutputOptions;
struct MediaStreamConstraints;
enum class GetUserMediaRequestType : uint8_t;

class GetUserMediaRequest : public nsISupports, public nsWrapperCache {
 public:
  using LocalMediaDeviceSetRefCnt =
      media::Refcountable<nsTArray<RefPtr<LocalMediaDevice>>>;

  // For getUserMedia "getUserMedia:request"
  GetUserMediaRequest(nsPIDOMWindowInner* aInnerWindow,
                      const nsAString& aCallID,
                      RefPtr<LocalMediaDeviceSetRefCnt> aMediaDeviceSet,
                      const MediaStreamConstraints& aConstraints,
                      bool aIsSecure, bool aIsHandlingUserInput);
  // For selectAudioOutput "getUserMedia:request"
  GetUserMediaRequest(nsPIDOMWindowInner* aInnerWindow,
                      const nsAString& aCallID,
                      RefPtr<LocalMediaDeviceSetRefCnt> aMediaDeviceSet,
                      const AudioOutputOptions& aAudioOutputOptions,
                      bool aIsSecure, bool aIsHandlingUserInput);
  // For "recording-device-stopped"
  GetUserMediaRequest(nsPIDOMWindowInner* aInnerWindow, const nsAString& aRawId,
                      const nsAString& aMediaSource, bool aIsHandlingUserInput);

  NS_DECL_CYCLE_COLLECTING_ISUPPORTS
  NS_DECL_CYCLE_COLLECTION_WRAPPERCACHE_CLASS(GetUserMediaRequest)

  JSObject* WrapObject(JSContext* cx,
                       JS::Handle<JSObject*> aGivenProto) override;
  nsISupports* GetParentObject();

  GetUserMediaRequestType Type();
  uint64_t WindowID();
  uint64_t InnerWindowID();
  bool IsSecure();
  bool IsHandlingUserInput() const;
  void GetCallID(nsString& retval);
  void GetRawID(nsString& retval);
  void GetMediaSource(nsString& retval);
  void GetDevices(nsTArray<RefPtr<nsIMediaDevice>>& retval) const;
  void GetConstraints(MediaStreamConstraints& result);
  void GetAudioOutputOptions(AudioOutputOptions& result);

 private:
  virtual ~GetUserMediaRequest();

  uint64_t mInnerWindowID, mOuterWindowID;
  const nsString mCallID;
  const nsString mRawID;
  const nsString mMediaSource;
  const RefPtr<LocalMediaDeviceSetRefCnt> mMediaDeviceSet;
  UniquePtr<MediaStreamConstraints> mConstraints;
  UniquePtr<AudioOutputOptions> mAudioOutputOptions;
  GetUserMediaRequestType mType;
  bool mIsSecure;
  bool mIsHandlingUserInput;
};

}  // namespace dom
}  // namespace mozilla

#endif  // GetUserMediaRequest_h__