gecko-dev/dom/media/doctor/DDLogValue.cpp
Gerald Squelart 53d5092208 Bug 1394995 - Initial implementation of DecoderDoctorLogger - r=jwwang
DecoderDoctorLogger and its related classes offer a cheap way to gather log
messages from media stack objects, and then process these messages to extract
object lifetimes and messages related to separate HTMLMediaElement's.

MozReview-Commit-ID: AIf2nAMjoDy

--HG--
extra : rebase_source : cf10185538aded870b9005e88563751f3638ae65
2017-08-28 11:54:12 +12:00

147 lines
4.4 KiB
C++

/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim:set ts=2 sw=2 sts=2 et cindent: */
/* 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 "DDLogValue.h"
#include "mozilla/JSONWriter.h"
namespace mozilla {
struct LogValueMatcher
{
nsCString& mString;
void match(const DDNoValue&) const {}
void match(const DDLogObject& a) const { a.AppendPrintf(mString); }
void match(const char* a) const { mString.AppendPrintf(R"("%s")", a); }
void match(const nsCString& a) const
{
mString.AppendPrintf(R"(nsCString("%s"))", a.Data());
}
void match(bool a) const { mString.AppendPrintf(a ? "true" : "false"); }
void match(int8_t a) const { mString.AppendPrintf("int8_t(%" PRIi8 ")", a); }
void match(uint8_t a) const
{
mString.AppendPrintf("uint8_t(%" PRIu8 ")", a);
}
void match(int16_t a) const
{
mString.AppendPrintf("int16_t(%" PRIi16 ")", a);
}
void match(uint16_t a) const
{
mString.AppendPrintf("uint16_t(%" PRIu16 ")", a);
}
void match(int32_t a) const
{
mString.AppendPrintf("int32_t(%" PRIi32 ")", a);
}
void match(uint32_t a) const
{
mString.AppendPrintf("uint32_t(%" PRIu32 ")", a);
}
void match(int64_t a) const
{
mString.AppendPrintf("int64_t(%" PRIi64 ")", a);
}
void match(uint64_t a) const
{
mString.AppendPrintf("uint64_t(%" PRIu64 ")", a);
}
void match(double a) const { mString.AppendPrintf("double(%f)", a); }
void match(const DDRange& a) const
{
mString.AppendPrintf("%" PRIi64 "<=(%" PRIi64 "B)<%" PRIi64 "",
a.mOffset,
a.mBytes,
a.mOffset + a.mBytes);
}
void match(const nsresult& a) const
{
nsCString name;
GetErrorName(a, name);
mString.AppendPrintf(
"nsresult(%s =0x%08" PRIx32 ")", name.get(), static_cast<uint32_t>(a));
}
void match(const MediaResult& a) const
{
nsCString name;
GetErrorName(a.Code(), name);
mString.AppendPrintf("MediaResult(%s =0x%08" PRIx32 ", \"%s\")",
name.get(),
static_cast<uint32_t>(a.Code()),
a.Message().get());
}
};
void
AppendToString(const DDLogValue& aValue, nsCString& aString)
{
aValue.match(LogValueMatcher{ aString });
}
struct LogValueMatcherJson
{
JSONWriter& mJW;
const char* mPropertyName;
void match(const DDNoValue&) const { mJW.NullProperty(mPropertyName); }
void match(const DDLogObject& a) const
{
mJW.StringProperty(
mPropertyName,
nsPrintfCString(R"("%s[%p]")", a.TypeName(), a.Pointer()).get());
}
void match(const char* a) const { mJW.StringProperty(mPropertyName, a); }
void match(const nsCString& a) const
{
mJW.StringProperty(mPropertyName, a.Data());
}
void match(bool a) const { mJW.BoolProperty(mPropertyName, a); }
void match(int8_t a) const { mJW.IntProperty(mPropertyName, a); }
void match(uint8_t a) const { mJW.IntProperty(mPropertyName, a); }
void match(int16_t a) const { mJW.IntProperty(mPropertyName, a); }
void match(uint16_t a) const { mJW.IntProperty(mPropertyName, a); }
void match(int32_t a) const { mJW.IntProperty(mPropertyName, a); }
void match(uint32_t a) const { mJW.IntProperty(mPropertyName, a); }
void match(int64_t a) const { mJW.IntProperty(mPropertyName, a); }
void match(uint64_t a) const { mJW.DoubleProperty(mPropertyName, a); }
void match(double a) const { mJW.DoubleProperty(mPropertyName, a); }
void match(const DDRange& a) const
{
mJW.StartArrayProperty(mPropertyName);
mJW.IntElement(a.mOffset);
mJW.IntElement(a.mOffset + a.mBytes);
mJW.EndArray();
}
void match(const nsresult& a) const
{
nsCString name;
GetErrorName(a, name);
mJW.StringProperty(mPropertyName, name.get());
}
void match(const MediaResult& a) const
{
nsCString name;
GetErrorName(a.Code(), name);
mJW.StringProperty(mPropertyName,
nsPrintfCString(R"lit("MediaResult(%s, %s)")lit",
name.get(),
a.Message().get())
.get());
}
};
void
ToJSON(const DDLogValue& aValue,
JSONWriter& aJSONWriter,
const char* aPropertyName)
{
aValue.match(LogValueMatcherJson{ aJSONWriter, aPropertyName });
}
} // namespace mozilla