Bug 1737746 - Use Permission spec's PermissionState r=mt,peterv
[gecko.git] / widget / GfxInfoBase.h
blob17d6c83af3b3c192e2565a1398caa7aceee2e2bd
1 /* vim: se cin sw=2 ts=2 et : */
2 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
4 * This Source Code Form is subject to the terms of the Mozilla Public
5 * License, v. 2.0. If a copy of the MPL was not distributed with this
6 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
8 #ifndef __mozilla_widget_GfxInfoBase_h__
9 #define __mozilla_widget_GfxInfoBase_h__
11 #include "GfxDriverInfo.h"
12 #include "GfxInfoCollector.h"
13 #include "gfxFeature.h"
14 #include "gfxTelemetry.h"
15 #include "js/Value.h"
16 #include "mozilla/Attributes.h"
17 #include "mozilla/Maybe.h"
18 #include "mozilla/Mutex.h"
19 #include "mozilla/StaticPtr.h"
20 #include "mozilla/gfx/GraphicsMessages.h"
21 #include "nsCOMPtr.h"
22 #include "nsIGfxInfo.h"
23 #include "nsIGfxInfoDebug.h"
24 #include "nsIObserver.h"
25 #include "nsString.h"
26 #include "nsTArray.h"
27 #include "nsWeakReference.h"
29 namespace mozilla {
30 namespace widget {
32 class GfxInfoBase : public nsIGfxInfo,
33 public nsIObserver,
34 public nsSupportsWeakReference
35 #ifdef DEBUG
37 public nsIGfxInfoDebug
38 #endif
40 public:
41 GfxInfoBase();
43 NS_DECL_THREADSAFE_ISUPPORTS
44 NS_DECL_NSIOBSERVER
46 // We only declare a subset of the nsIGfxInfo interface. It's up to derived
47 // classes to implement the rest of the interface.
48 // Derived classes need to use
49 // using GfxInfoBase::GetFeatureStatus;
50 // using GfxInfoBase::GetFeatureSuggestedDriverVersion;
51 // to import the relevant methods into their namespace.
52 NS_IMETHOD GetFeatureStatus(int32_t aFeature, nsACString& aFailureId,
53 int32_t* _retval) override;
54 NS_IMETHOD GetFeatureSuggestedDriverVersion(int32_t aFeature,
55 nsAString& _retval) override;
57 NS_IMETHOD GetMonitors(JSContext* cx,
58 JS::MutableHandleValue _retval) override;
59 NS_IMETHOD RefreshMonitors() override;
60 NS_IMETHOD GetFailures(nsTArray<int32_t>& indices,
61 nsTArray<nsCString>& failures) override;
62 NS_IMETHOD_(void) LogFailure(const nsACString& failure) override;
63 NS_IMETHOD GetInfo(JSContext*, JS::MutableHandle<JS::Value>) override;
64 NS_IMETHOD GetFeatures(JSContext*, JS::MutableHandle<JS::Value>) override;
65 NS_IMETHOD GetFeatureLog(JSContext*, JS::MutableHandle<JS::Value>) override;
66 NS_IMETHOD GetActiveCrashGuards(JSContext*,
67 JS::MutableHandle<JS::Value>) override;
68 NS_IMETHOD GetContentBackend(nsAString& aContentBackend) override;
69 NS_IMETHOD GetAzureCanvasBackend(nsAString& aBackend) override;
70 NS_IMETHOD GetAzureContentBackend(nsAString& aBackend) override;
71 NS_IMETHOD GetUsingGPUProcess(bool* aOutValue) override;
72 NS_IMETHOD GetWebRenderEnabled(bool* aWebRenderEnabled) override;
73 NS_IMETHOD GetIsHeadless(bool* aIsHeadless) override;
74 NS_IMETHOD GetTargetFrameRate(uint32_t* aTargetFrameRate) override;
76 // Non-XPCOM method to get IPC data:
77 nsTArray<mozilla::gfx::GfxInfoFeatureStatus> GetAllFeatures();
79 // Initialization function. If you override this, you must call this class's
80 // version of Init first.
81 // We need Init to be called separately from the constructor so we can
82 // register as an observer after all derived classes have been constructed
83 // and we know we have a non-zero refcount.
84 // Ideally, Init() would be void-return, but the rules of
85 // NS_GENERIC_FACTORY_CONSTRUCTOR_INIT require it be nsresult return.
86 virtual nsresult Init();
88 NS_IMETHOD_(void) GetData() override;
89 NS_IMETHOD_(int32_t) GetMaxRefreshRate(bool* aMixed) override {
90 if (aMixed) {
91 *aMixed = false;
93 return -1;
96 static void AddCollector(GfxInfoCollectorBase* collector);
97 static void RemoveCollector(GfxInfoCollectorBase* collector);
99 static nsTArray<GfxDriverInfo>* sDriverInfo;
100 static StaticAutoPtr<nsTArray<mozilla::gfx::GfxInfoFeatureStatus>>
101 sFeatureStatus;
102 static bool sDriverInfoObserverInitialized;
103 static bool sShutdownOccurred;
105 virtual nsString Model() { return u""_ns; }
106 virtual nsString Hardware() { return u""_ns; }
107 virtual nsString Product() { return u""_ns; }
108 virtual nsString Manufacturer() { return u""_ns; }
109 virtual uint32_t OperatingSystemVersion() { return 0; }
110 virtual uint32_t OperatingSystemBuild() { return 0; }
112 // Convenience to get the application version
113 static const nsCString& GetApplicationVersion();
115 virtual nsresult FindMonitors(JSContext* cx, JS::HandleObject array);
117 static void SetFeatureStatus(
118 nsTArray<mozilla::gfx::GfxInfoFeatureStatus>&& aFS);
120 protected:
121 virtual ~GfxInfoBase();
123 virtual nsresult GetFeatureStatusImpl(
124 int32_t aFeature, int32_t* aStatus, nsAString& aSuggestedDriverVersion,
125 const nsTArray<GfxDriverInfo>& aDriverInfo, nsACString& aFailureId,
126 OperatingSystem* aOS = nullptr);
128 // Gets the driver info table. Used by GfxInfoBase to check for general cases
129 // (while subclasses check for more specific ones).
130 virtual const nsTArray<GfxDriverInfo>& GetGfxDriverInfo() = 0;
132 virtual void DescribeFeatures(JSContext* aCx, JS::Handle<JSObject*> obj);
134 bool DoesDesktopEnvironmentMatch(const nsAString& aBlocklistDesktop,
135 const nsAString& aDesktopEnv);
137 virtual bool DoesWindowProtocolMatch(
138 const nsAString& aBlocklistWindowProtocol,
139 const nsAString& aWindowProtocol);
141 bool DoesVendorMatch(const nsAString& aBlocklistVendor,
142 const nsAString& aAdapterVendor);
144 virtual bool DoesDriverVendorMatch(const nsAString& aBlocklistVendor,
145 const nsAString& aDriverVendor);
147 bool InitFeatureObject(JSContext* aCx, JS::Handle<JSObject*> aContainer,
148 const char* aName,
149 mozilla::gfx::FeatureState& aFeatureState,
150 JS::MutableHandle<JSObject*> aOutObj);
152 NS_IMETHOD ControlGPUProcessForXPCShell(bool aEnable, bool* _retval) override;
154 // Total number of pixels for all detected screens at startup.
155 int64_t mScreenPixels;
157 private:
158 virtual int32_t FindBlocklistedDeviceInList(
159 const nsTArray<GfxDriverInfo>& aDriverInfo, nsAString& aSuggestedVersion,
160 int32_t aFeature, nsACString& aFailureId, OperatingSystem os,
161 bool aForAllowing);
163 bool IsFeatureAllowlisted(int32_t aFeature) const;
165 void EvaluateDownloadedBlocklist(nsTArray<GfxDriverInfo>& aDriverInfo);
167 bool BuildFeatureStateLog(JSContext* aCx, const gfx::FeatureState& aFeature,
168 JS::MutableHandle<JS::Value> aOut);
170 Mutex mMutex;
173 } // namespace widget
174 } // namespace mozilla
176 #endif /* __mozilla_widget_GfxInfoBase_h__ */