summaryrefslogtreecommitdiffstats
path: root/dom/midi/MIDILog.cpp
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 19:33:14 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 19:33:14 +0000
commit36d22d82aa202bb199967e9512281e9a53db42c9 (patch)
tree105e8c98ddea1c1e4784a60a5a6410fa416be2de /dom/midi/MIDILog.cpp
parentInitial commit. (diff)
downloadfirefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz
firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip
Adding upstream version 115.7.0esr.upstream/115.7.0esrupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'dom/midi/MIDILog.cpp')
-rw-r--r--dom/midi/MIDILog.cpp46
1 files changed, 46 insertions, 0 deletions
diff --git a/dom/midi/MIDILog.cpp b/dom/midi/MIDILog.cpp
new file mode 100644
index 0000000000..cc9945ed58
--- /dev/null
+++ b/dom/midi/MIDILog.cpp
@@ -0,0 +1,46 @@
+/* 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 "MIDILog.h"
+
+#include "mozilla/dom/MIDITypes.h"
+#include "mozilla/dom/MIDIPortBinding.h"
+
+mozilla::LazyLogModule gWebMIDILog("WebMIDI");
+
+void LogMIDIMessage(const mozilla::dom::MIDIMessage& aMessage,
+ const nsAString& aPortId,
+ mozilla::dom::MIDIPortType aDirection) {
+ if (MOZ_LOG_TEST(gWebMIDILog, mozilla::LogLevel::Debug)) {
+ if (MOZ_LOG_TEST(gWebMIDILog, mozilla::LogLevel::Verbose)) {
+ uint32_t byteCount = aMessage.data().Length();
+ nsAutoCString logMessage;
+ // Log long messages inline with the timestamp and the length, log
+ // longer messages a bit like xxd
+ logMessage.AppendPrintf(
+ "%s %s length=%u", NS_ConvertUTF16toUTF8(aPortId).get(),
+ aDirection == mozilla::dom::MIDIPortType::Input ? "->" : "<-",
+ byteCount);
+
+ if (byteCount <= 3) {
+ logMessage.AppendPrintf(" [");
+ // Regular messages
+ for (uint32_t i = 0; i < byteCount - 1; i++) {
+ logMessage.AppendPrintf("%x ", aMessage.data()[i]);
+ }
+ logMessage.AppendPrintf("%x]", aMessage.data()[byteCount - 1]);
+ } else {
+ // Longer messages
+ for (uint32_t i = 0; i < byteCount; i++) {
+ if (!(i % 8)) {
+ logMessage.AppendPrintf("\n%08u:\t", i);
+ }
+ logMessage.AppendPrintf("%x ", aMessage.data()[i]);
+ }
+ }
+ MOZ_LOG(gWebMIDILog, mozilla::LogLevel::Verbose,
+ ("%s", logMessage.get()));
+ }
+ }
+}