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"
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"
22 #include "nsIGfxInfo.h"
23 #include "nsIGfxInfoDebug.h"
24 #include "nsIObserver.h"
27 #include "nsWeakReference.h"
32 class GfxInfoBase
: public nsIGfxInfo
,
34 public nsSupportsWeakReference
37 public nsIGfxInfoDebug
43 NS_DECL_THREADSAFE_ISUPPORTS
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
GetUsingGPUProcess(bool* aOutValue
) override
;
70 NS_IMETHOD
GetWebRenderEnabled(bool* aWebRenderEnabled
) override
;
71 NS_IMETHOD
GetIsHeadless(bool* aIsHeadless
) override
;
72 NS_IMETHOD
GetUsesTiling(bool* aUsesTiling
) override
;
73 NS_IMETHOD
GetContentUsesTiling(bool* aUsesTiling
) override
;
74 NS_IMETHOD
GetOffMainThreadPaintEnabled(
75 bool* aOffMainThreadPaintEnabled
) override
;
76 NS_IMETHOD
GetOffMainThreadPaintWorkerCount(
77 int32_t* aOffMainThreadPaintWorkerCount
) override
;
78 NS_IMETHOD
GetTargetFrameRate(uint32_t* aTargetFrameRate
) override
;
80 // Non-XPCOM method to get IPC data:
81 nsTArray
<mozilla::gfx::GfxInfoFeatureStatus
> GetAllFeatures();
83 // Initialization function. If you override this, you must call this class's
84 // version of Init first.
85 // We need Init to be called separately from the constructor so we can
86 // register as an observer after all derived classes have been constructed
87 // and we know we have a non-zero refcount.
88 // Ideally, Init() would be void-return, but the rules of
89 // NS_GENERIC_FACTORY_CONSTRUCTOR_INIT require it be nsresult return.
90 virtual nsresult
Init();
92 NS_IMETHOD_(void) GetData() override
;
93 NS_IMETHOD_(int32_t) GetMaxRefreshRate(bool* aMixed
) override
{
100 static void AddCollector(GfxInfoCollectorBase
* collector
);
101 static void RemoveCollector(GfxInfoCollectorBase
* collector
);
103 static nsTArray
<GfxDriverInfo
>* sDriverInfo
;
104 static StaticAutoPtr
<nsTArray
<mozilla::gfx::GfxInfoFeatureStatus
>>
106 static bool sDriverInfoObserverInitialized
;
107 static bool sShutdownOccurred
;
109 virtual nsString
Model() { return u
""_ns
; }
110 virtual nsString
Hardware() { return u
""_ns
; }
111 virtual nsString
Product() { return u
""_ns
; }
112 virtual nsString
Manufacturer() { return u
""_ns
; }
113 virtual uint32_t OperatingSystemVersion() { return 0; }
114 virtual uint32_t OperatingSystemBuild() { return 0; }
116 // Convenience to get the application version
117 static const nsCString
& GetApplicationVersion();
119 virtual nsresult
FindMonitors(JSContext
* cx
, JS::HandleObject array
);
121 static void SetFeatureStatus(
122 nsTArray
<mozilla::gfx::GfxInfoFeatureStatus
>&& aFS
);
125 virtual ~GfxInfoBase();
127 virtual nsresult
GetFeatureStatusImpl(
128 int32_t aFeature
, int32_t* aStatus
, nsAString
& aSuggestedDriverVersion
,
129 const nsTArray
<GfxDriverInfo
>& aDriverInfo
, nsACString
& aFailureId
,
130 OperatingSystem
* aOS
= nullptr);
132 // Gets the driver info table. Used by GfxInfoBase to check for general cases
133 // (while subclasses check for more specific ones).
134 virtual const nsTArray
<GfxDriverInfo
>& GetGfxDriverInfo() = 0;
136 virtual void DescribeFeatures(JSContext
* aCx
, JS::Handle
<JSObject
*> obj
);
138 bool DoesDesktopEnvironmentMatch(const nsAString
& aBlocklistDesktop
,
139 const nsAString
& aDesktopEnv
);
141 virtual bool DoesWindowProtocolMatch(
142 const nsAString
& aBlocklistWindowProtocol
,
143 const nsAString
& aWindowProtocol
);
145 bool DoesVendorMatch(const nsAString
& aBlocklistVendor
,
146 const nsAString
& aAdapterVendor
);
148 virtual bool DoesDriverVendorMatch(const nsAString
& aBlocklistVendor
,
149 const nsAString
& aDriverVendor
);
151 bool InitFeatureObject(JSContext
* aCx
, JS::Handle
<JSObject
*> aContainer
,
153 mozilla::gfx::FeatureState
& aFeatureState
,
154 JS::MutableHandle
<JSObject
*> aOutObj
);
156 NS_IMETHOD
ControlGPUProcessForXPCShell(bool aEnable
, bool* _retval
) override
;
158 // Total number of pixels for all detected screens at startup.
159 int64_t mScreenPixels
;
162 virtual int32_t FindBlocklistedDeviceInList(
163 const nsTArray
<GfxDriverInfo
>& aDriverInfo
, nsAString
& aSuggestedVersion
,
164 int32_t aFeature
, nsACString
& aFailureId
, OperatingSystem os
,
167 bool IsFeatureAllowlisted(int32_t aFeature
) const;
169 void EvaluateDownloadedBlocklist(nsTArray
<GfxDriverInfo
>& aDriverInfo
);
171 bool BuildFeatureStateLog(JSContext
* aCx
, const gfx::FeatureState
& aFeature
,
172 JS::MutableHandle
<JS::Value
> aOut
);
177 } // namespace widget
178 } // namespace mozilla
180 #endif /* __mozilla_widget_GfxInfoBase_h__ */