summaryrefslogtreecommitdiffstats
path: root/dom/media/systemservices/video_engine/desktop_device_info.h
blob: 824792b3c0a44bf671d66ba23030f693b49330af (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
/* 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 WEBRTC_MODULES_DESKTOP_CAPTURE_DEVICE_INFO_H_
#define WEBRTC_MODULES_DESKTOP_CAPTURE_DEVICE_INFO_H_

#include <map>
#include "modules/desktop_capture/desktop_capture_types.h"

namespace webrtc {

class DesktopDisplayDevice {
 public:
  DesktopDisplayDevice();
  ~DesktopDisplayDevice();

  void setScreenId(const ScreenId aScreenId);
  void setDeviceName(const char* aDeviceNameUTF8);
  void setUniqueIdName(const char* aDeviceUniqueIdUTF8);
  void setPid(pid_t aPid);

  ScreenId getScreenId();
  const char* getDeviceName();
  const char* getUniqueIdName();
  pid_t getPid();

  DesktopDisplayDevice& operator=(DesktopDisplayDevice& aOther);

 protected:
  ScreenId mScreenId;
  char* mDeviceNameUTF8;
  char* mDeviceUniqueIdUTF8;
  pid_t mPid;
};

using DesktopDisplayDeviceList = std::map<intptr_t, DesktopDisplayDevice*>;

class DesktopTab {
 public:
  DesktopTab();
  ~DesktopTab();

  void setTabBrowserId(uint64_t aTabBrowserId);
  void setUniqueIdName(const char* aTabUniqueIdUTF8);
  void setTabName(const char* aTabNameUTF8);
  void setTabCount(const uint32_t aCount);

  uint64_t getTabBrowserId();
  const char* getUniqueIdName();
  const char* getTabName();
  uint32_t getTabCount();

  DesktopTab& operator=(DesktopTab& aOther);

 protected:
  uint64_t mTabBrowserId;
  char* mTabNameUTF8;
  char* mTabUniqueIdUTF8;
  uint32_t mTabCount;
};

using DesktopTabList = std::map<intptr_t, DesktopTab*>;

class DesktopDeviceInfo {
 public:
  virtual ~DesktopDeviceInfo() = default;

  virtual int32_t Init() = 0;
  virtual int32_t Refresh() = 0;
  virtual int32_t getDisplayDeviceCount() = 0;
  virtual int32_t getDesktopDisplayDeviceInfo(
      uint32_t aIndex, DesktopDisplayDevice& aDesktopDisplayDevice) = 0;
  virtual int32_t getWindowCount() = 0;
  virtual int32_t getWindowInfo(uint32_t aIndex,
                                DesktopDisplayDevice& aWindowDevice) = 0;
  virtual uint32_t getTabCount() = 0;
  virtual int32_t getTabInfo(uint32_t aIndex, DesktopTab& aDesktopTab) = 0;

  static DesktopDeviceInfo* Create();
};
};  // namespace webrtc

#endif