blob: 423bf25a6de6793519a7d39c737e880c2ad7e9fb (
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
/* 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 screenId);
void setDeviceName(const char *deviceNameUTF8);
void setUniqueIdName(const char *deviceUniqueIdUTF8);
void setPid(pid_t pid);
ScreenId getScreenId();
const char *getDeviceName();
const char *getUniqueIdName();
pid_t getPid();
DesktopDisplayDevice& operator= (DesktopDisplayDevice& other);
protected:
ScreenId screenId_;
char* deviceNameUTF8_;
char* deviceUniqueIdUTF8_;
pid_t pid_;
};
typedef std::map<intptr_t,DesktopDisplayDevice*> DesktopDisplayDeviceList;
class DesktopTab {
public:
DesktopTab();
~DesktopTab();
void setTabBrowserId(uint64_t tabBrowserId);
void setUniqueIdName(const char *tabUniqueIdUTF8);
void setTabName(const char *tabNameUTF8);
void setTabCount(const uint32_t count);
uint64_t getTabBrowserId();
const char *getUniqueIdName();
const char *getTabName();
uint32_t getTabCount();
DesktopTab& operator= (DesktopTab& other);
protected:
uint64_t tabBrowserId_;
char* tabNameUTF8_;
char* tabUniqueIdUTF8_;
uint32_t tabCount_;
};
typedef std::map<intptr_t, DesktopTab*> DesktopTabList;
class DesktopDeviceInfo {
public:
virtual ~DesktopDeviceInfo() {};
virtual int32_t Init() = 0;
virtual int32_t Refresh() = 0;
virtual int32_t getDisplayDeviceCount() = 0;
virtual int32_t getDesktopDisplayDeviceInfo(int32_t nIndex,
DesktopDisplayDevice & desktopDisplayDevice) = 0;
virtual int32_t getWindowCount() = 0;
virtual int32_t getWindowInfo(int32_t nindex,
DesktopDisplayDevice &windowDevice) = 0;
virtual int32_t getTabCount() = 0;
virtual int32_t getTabInfo(int32_t nIndex,
DesktopTab & desktopTab) = 0;
};
class DesktopDeviceInfoImpl : public DesktopDeviceInfo {
public:
DesktopDeviceInfoImpl();
~DesktopDeviceInfoImpl();
int32_t Init() override;
int32_t Refresh() override;
int32_t getDisplayDeviceCount() override;
int32_t getDesktopDisplayDeviceInfo(int32_t nIndex,
DesktopDisplayDevice & desktopDisplayDevice) override;
int32_t getWindowCount() override;
int32_t getWindowInfo(int32_t nindex,
DesktopDisplayDevice &windowDevice) override;
int32_t getTabCount() override;
int32_t getTabInfo(int32_t nIndex,
DesktopTab & desktopTab) override;
static DesktopDeviceInfo * Create();
protected:
DesktopDisplayDeviceList desktop_display_list_;
DesktopDisplayDeviceList desktop_window_list_;
DesktopTabList desktop_tab_list_;
void CleanUp();
void CleanUpWindowList();
void CleanUpTabList();
void CleanUpScreenList();
void InitializeWindowList();
virtual void InitializeTabList();
virtual void InitializeScreenList() = 0;
void RefreshWindowList();
void RefreshTabList();
void RefreshScreenList();
void DummyTabList(DesktopTabList &list);
};
};
#endif
|