summaryrefslogtreecommitdiffstats
path: root/dom/quota/StringifyUtils.cpp
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
commit26a029d407be480d791972afb5975cf62c9360a6 (patch)
treef435a8308119effd964b339f76abb83a57c29483 /dom/quota/StringifyUtils.cpp
parentInitial commit. (diff)
downloadfirefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz
firefox-26a029d407be480d791972afb5975cf62c9360a6.zip
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'dom/quota/StringifyUtils.cpp')
-rw-r--r--dom/quota/StringifyUtils.cpp66
1 files changed, 66 insertions, 0 deletions
diff --git a/dom/quota/StringifyUtils.cpp b/dom/quota/StringifyUtils.cpp
new file mode 100644
index 0000000000..c85698ef60
--- /dev/null
+++ b/dom/quota/StringifyUtils.cpp
@@ -0,0 +1,66 @@
+/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
+/* vim: set ts=8 sts=2 et sw=2 tw=80: */
+/* 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/. */
+
+#include "mozilla/ThreadLocal.h"
+#include "mozilla/dom/quota/StringifyUtils.h"
+#include "nsTHashSet.h"
+
+namespace mozilla {
+
+MOZ_THREAD_LOCAL(nsTHashSet<Stringifyable*>*)
+Stringifyable::sActiveStringifyableInstances;
+
+#ifdef DEBUG
+Atomic<bool> sStringifyableTLSInitialized(false);
+#endif
+
+void Stringifyable::Stringify(nsACString& aData) {
+ if (IsActive()) {
+ aData.Append("(...)"_ns);
+ return;
+ }
+
+ SetActive(true);
+ aData.Append(kStringifyStartInstance);
+ DoStringify(aData);
+ aData.Append(kStringifyEndInstance);
+ SetActive(false);
+}
+
+/* static */ void Stringifyable::InitTLS() {
+ if (sActiveStringifyableInstances.init()) {
+#ifdef DEBUG
+ sStringifyableTLSInitialized = true;
+#endif
+ }
+}
+
+bool Stringifyable::IsActive() {
+ MOZ_ASSERT(sStringifyableTLSInitialized);
+ auto* set = sActiveStringifyableInstances.get();
+ return set && set->Contains(this);
+}
+
+void Stringifyable::SetActive(bool aIsActive) {
+ MOZ_ASSERT(sStringifyableTLSInitialized);
+ auto* myset = sActiveStringifyableInstances.get();
+ if (!myset && aIsActive) {
+ myset = new nsTHashSet<Stringifyable*>();
+ sActiveStringifyableInstances.set(myset);
+ }
+ MOZ_ASSERT(myset);
+ if (aIsActive) {
+ myset->Insert(this);
+ } else {
+ myset->Remove(this);
+ if (myset->IsEmpty()) {
+ sActiveStringifyableInstances.set(nullptr);
+ delete myset;
+ }
+ }
+}
+
+} // namespace mozilla