gfxPrefs.cpp 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268
  1. /* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 2 -*-
  2. * This Source Code Form is subject to the terms of the Mozilla Public
  3. * License, v. 2.0. If a copy of the MPL was not distributed with this
  4. * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
  5. #include "gfxPrefs.h"
  6. #include "MainThreadUtils.h"
  7. #include "nsXULAppAPI.h"
  8. #include "mozilla/Preferences.h"
  9. #include "mozilla/Unused.h"
  10. #include "mozilla/gfx/Logging.h"
  11. #include "mozilla/gfx/GPUChild.h"
  12. #include "mozilla/gfx/GPUProcessManager.h"
  13. using namespace mozilla;
  14. nsTArray<gfxPrefs::Pref*>* gfxPrefs::sGfxPrefList = nullptr;
  15. gfxPrefs* gfxPrefs::sInstance = nullptr;
  16. bool gfxPrefs::sInstanceHasBeenDestroyed = false;
  17. void
  18. gfxPrefs::DestroySingleton()
  19. {
  20. if (sInstance) {
  21. delete sInstance;
  22. sInstance = nullptr;
  23. sInstanceHasBeenDestroyed = true;
  24. }
  25. MOZ_ASSERT(!SingletonExists());
  26. }
  27. bool
  28. gfxPrefs::SingletonExists()
  29. {
  30. return sInstance != nullptr;
  31. }
  32. gfxPrefs::gfxPrefs()
  33. {
  34. // UI, content, and plugin processes use XPCOM and should have prefs
  35. // ready by the time we initialize gfxPrefs.
  36. MOZ_ASSERT_IF(XRE_IsContentProcess() ||
  37. XRE_IsParentProcess() ||
  38. XRE_GetProcessType() == GeckoProcessType_Plugin,
  39. Preferences::IsServiceAvailable());
  40. gfxPrefs::AssertMainThread();
  41. }
  42. void
  43. gfxPrefs::Init()
  44. {
  45. // Set up Moz2D prefs.
  46. mPrefGfxLoggingLevel.SetChangeCallback([]() -> void {
  47. mozilla::gfx::LoggingPrefs::sGfxLogLevel = GetSingleton().mPrefGfxLoggingLevel.GetLiveValue();
  48. });
  49. }
  50. gfxPrefs::~gfxPrefs()
  51. {
  52. gfxPrefs::AssertMainThread();
  53. mPrefGfxLoggingLevel.SetChangeCallback(nullptr);
  54. delete sGfxPrefList;
  55. sGfxPrefList = nullptr;
  56. }
  57. void gfxPrefs::AssertMainThread()
  58. {
  59. MOZ_ASSERT(NS_IsMainThread(), "this code must be run on the main thread");
  60. }
  61. void
  62. gfxPrefs::Pref::OnChange()
  63. {
  64. if (auto gpm = gfx::GPUProcessManager::Get()) {
  65. if (gfx::GPUChild* gpu = gpm->GetGPUChild()) {
  66. GfxPrefValue value;
  67. GetLiveValue(&value);
  68. Unused << gpu->SendUpdatePref(gfx::GfxPrefSetting(mIndex, value));
  69. }
  70. }
  71. FireChangeCallback();
  72. }
  73. void
  74. gfxPrefs::Pref::FireChangeCallback()
  75. {
  76. if (mChangeCallback) {
  77. mChangeCallback();
  78. }
  79. }
  80. void
  81. gfxPrefs::Pref::SetChangeCallback(ChangeCallback aCallback)
  82. {
  83. mChangeCallback = aCallback;
  84. if (!IsParentProcess() && IsPrefsServiceAvailable()) {
  85. // If we're in the parent process, we watch prefs by default so we can
  86. // send changes over to the GPU process. Otherwise, we need to add or
  87. // remove a watch for the pref now.
  88. if (aCallback) {
  89. WatchChanges(Name(), this);
  90. } else {
  91. UnwatchChanges(Name(), this);
  92. }
  93. }
  94. // Fire the callback once to make initialization easier for the caller.
  95. FireChangeCallback();
  96. }
  97. // On lightweight processes such as for GMP and GPU, XPCOM is not initialized,
  98. // and therefore we don't have access to Preferences. When XPCOM is not
  99. // available we rely on manual synchronization of gfxPrefs values over IPC.
  100. /* static */ bool
  101. gfxPrefs::IsPrefsServiceAvailable()
  102. {
  103. return Preferences::IsServiceAvailable();
  104. }
  105. /* static */ bool
  106. gfxPrefs::IsParentProcess()
  107. {
  108. return XRE_IsParentProcess();
  109. }
  110. void gfxPrefs::PrefAddVarCache(bool* aVariable,
  111. const char* aPref,
  112. bool aDefault)
  113. {
  114. MOZ_ASSERT(IsPrefsServiceAvailable());
  115. Preferences::AddBoolVarCache(aVariable, aPref, aDefault);
  116. }
  117. void gfxPrefs::PrefAddVarCache(int32_t* aVariable,
  118. const char* aPref,
  119. int32_t aDefault)
  120. {
  121. MOZ_ASSERT(IsPrefsServiceAvailable());
  122. Preferences::AddIntVarCache(aVariable, aPref, aDefault);
  123. }
  124. void gfxPrefs::PrefAddVarCache(uint32_t* aVariable,
  125. const char* aPref,
  126. uint32_t aDefault)
  127. {
  128. MOZ_ASSERT(IsPrefsServiceAvailable());
  129. Preferences::AddUintVarCache(aVariable, aPref, aDefault);
  130. }
  131. void gfxPrefs::PrefAddVarCache(float* aVariable,
  132. const char* aPref,
  133. float aDefault)
  134. {
  135. MOZ_ASSERT(IsPrefsServiceAvailable());
  136. Preferences::AddFloatVarCache(aVariable, aPref, aDefault);
  137. }
  138. bool gfxPrefs::PrefGet(const char* aPref, bool aDefault)
  139. {
  140. MOZ_ASSERT(IsPrefsServiceAvailable());
  141. return Preferences::GetBool(aPref, aDefault);
  142. }
  143. int32_t gfxPrefs::PrefGet(const char* aPref, int32_t aDefault)
  144. {
  145. MOZ_ASSERT(IsPrefsServiceAvailable());
  146. return Preferences::GetInt(aPref, aDefault);
  147. }
  148. uint32_t gfxPrefs::PrefGet(const char* aPref, uint32_t aDefault)
  149. {
  150. MOZ_ASSERT(IsPrefsServiceAvailable());
  151. return Preferences::GetUint(aPref, aDefault);
  152. }
  153. float gfxPrefs::PrefGet(const char* aPref, float aDefault)
  154. {
  155. MOZ_ASSERT(IsPrefsServiceAvailable());
  156. return Preferences::GetFloat(aPref, aDefault);
  157. }
  158. void gfxPrefs::PrefSet(const char* aPref, bool aValue)
  159. {
  160. MOZ_ASSERT(IsPrefsServiceAvailable());
  161. Preferences::SetBool(aPref, aValue);
  162. }
  163. void gfxPrefs::PrefSet(const char* aPref, int32_t aValue)
  164. {
  165. MOZ_ASSERT(IsPrefsServiceAvailable());
  166. Preferences::SetInt(aPref, aValue);
  167. }
  168. void gfxPrefs::PrefSet(const char* aPref, uint32_t aValue)
  169. {
  170. MOZ_ASSERT(IsPrefsServiceAvailable());
  171. Preferences::SetUint(aPref, aValue);
  172. }
  173. void gfxPrefs::PrefSet(const char* aPref, float aValue)
  174. {
  175. MOZ_ASSERT(IsPrefsServiceAvailable());
  176. Preferences::SetFloat(aPref, aValue);
  177. }
  178. static void
  179. OnGfxPrefChanged(const char* aPrefname, void* aClosure)
  180. {
  181. reinterpret_cast<gfxPrefs::Pref*>(aClosure)->OnChange();
  182. }
  183. void gfxPrefs::WatchChanges(const char* aPrefname, Pref* aPref)
  184. {
  185. MOZ_ASSERT(IsPrefsServiceAvailable());
  186. Preferences::RegisterCallback(OnGfxPrefChanged, aPrefname, aPref, Preferences::ExactMatch);
  187. }
  188. void gfxPrefs::UnwatchChanges(const char* aPrefname, Pref* aPref)
  189. {
  190. // The Preferences service can go offline before gfxPrefs is destroyed.
  191. if (IsPrefsServiceAvailable()) {
  192. Preferences::UnregisterCallback(OnGfxPrefChanged, aPrefname, aPref, Preferences::ExactMatch);
  193. }
  194. }
  195. void gfxPrefs::CopyPrefValue(const bool* aValue, GfxPrefValue* aOutValue)
  196. {
  197. *aOutValue = *aValue;
  198. }
  199. void gfxPrefs::CopyPrefValue(const int32_t* aValue, GfxPrefValue* aOutValue)
  200. {
  201. *aOutValue = *aValue;
  202. }
  203. void gfxPrefs::CopyPrefValue(const uint32_t* aValue, GfxPrefValue* aOutValue)
  204. {
  205. *aOutValue = *aValue;
  206. }
  207. void gfxPrefs::CopyPrefValue(const float* aValue, GfxPrefValue* aOutValue)
  208. {
  209. *aOutValue = *aValue;
  210. }
  211. void gfxPrefs::CopyPrefValue(const GfxPrefValue* aValue, bool* aOutValue)
  212. {
  213. *aOutValue = aValue->get_bool();
  214. }
  215. void gfxPrefs::CopyPrefValue(const GfxPrefValue* aValue, int32_t* aOutValue)
  216. {
  217. *aOutValue = aValue->get_int32_t();
  218. }
  219. void gfxPrefs::CopyPrefValue(const GfxPrefValue* aValue, uint32_t* aOutValue)
  220. {
  221. *aOutValue = aValue->get_uint32_t();
  222. }
  223. void gfxPrefs::CopyPrefValue(const GfxPrefValue* aValue, float* aOutValue)
  224. {
  225. *aOutValue = aValue->get_float();
  226. }