2014-05-05 17:30:39 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-05-21 11:12:37 +00:00
|
|
|
/* 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/. */
|
2000-04-18 02:34:54 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Maintains a circular buffer of recent messages, and notifies
|
|
|
|
* listeners when new messages are logged.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Threadsafe. */
|
|
|
|
|
2000-06-03 09:46:12 +00:00
|
|
|
#include "nsMemory.h"
|
2009-04-14 08:02:58 +00:00
|
|
|
#include "nsCOMArray.h"
|
2006-05-10 17:30:15 +00:00
|
|
|
#include "nsThreadUtils.h"
|
2000-04-18 02:34:54 +00:00
|
|
|
|
|
|
|
#include "nsConsoleService.h"
|
|
|
|
#include "nsConsoleMessage.h"
|
2006-03-15 04:59:42 +00:00
|
|
|
#include "nsIClassInfoImpl.h"
|
2013-09-23 17:29:27 +00:00
|
|
|
#include "nsIConsoleListener.h"
|
2013-10-04 17:16:53 +00:00
|
|
|
#include "nsPrintfCString.h"
|
2015-07-21 14:50:09 +00:00
|
|
|
#include "nsProxyRelease.h"
|
2015-07-09 10:49:00 +00:00
|
|
|
#include "nsIScriptError.h"
|
2015-07-31 13:49:27 +00:00
|
|
|
#include "nsISupportsPrimitives.h"
|
2012-11-07 06:34:33 +00:00
|
|
|
|
|
|
|
#include "mozilla/Preferences.h"
|
2000-04-18 02:34:54 +00:00
|
|
|
|
2014-02-11 21:01:29 +00:00
|
|
|
#if defined(ANDROID)
|
|
|
|
#include <android/log.h>
|
2014-09-09 23:52:08 +00:00
|
|
|
#include "mozilla/dom/ContentChild.h"
|
2014-02-11 21:01:29 +00:00
|
|
|
#endif
|
|
|
|
#ifdef XP_WIN
|
|
|
|
#include <windows.h>
|
|
|
|
#endif
|
|
|
|
|
2014-11-20 02:57:27 +00:00
|
|
|
#ifdef MOZ_TASK_TRACER
|
|
|
|
#include "GeckoTaskTracer.h"
|
|
|
|
using namespace mozilla::tasktracer;
|
|
|
|
#endif
|
|
|
|
|
Rollup of bug 645263 and bug 646259: Switch to mozilla:: sync primitives. r=cjones,dbaron,doublec,ehsan src=bsmedberg
Bug 645263, part 0: Count sync primitive ctor/dtors. r=dbaron
Bug 645263, part 1: Migrate content/media to mozilla:: sync primitives. r=doublec
Bug 645263, part 2: Migrate modules/plugin to mozilla:: sync primitives. sr=bsmedberg
Bug 645263, part 3: Migrate nsComponentManagerImpl to mozilla:: sync primitives. sr=bsmedberg
Bug 645263, part 4: Migrate everything else to mozilla:: sync primitives. r=dbaron
Bug 645263, part 5: Remove nsAutoLock.*. sr=bsmedberg
Bug 645263, part 6: Make editor test be nicer to deadlock detector. r=ehsan
Bug 645263, part 7: Disable tracemalloc backtraces for xpcshell tests. r=dbaron
Bug 646259: Fix nsCacheService to use a CondVar for notifying. r=cjones
2011-04-01 04:29:02 +00:00
|
|
|
using namespace mozilla;
|
|
|
|
|
2013-07-19 02:31:26 +00:00
|
|
|
NS_IMPL_ADDREF(nsConsoleService)
|
|
|
|
NS_IMPL_RELEASE(nsConsoleService)
|
2014-08-25 19:17:15 +00:00
|
|
|
NS_IMPL_CLASSINFO(nsConsoleService, nullptr,
|
|
|
|
nsIClassInfo::THREADSAFE | nsIClassInfo::SINGLETON,
|
|
|
|
NS_CONSOLESERVICE_CID)
|
2015-07-31 13:49:27 +00:00
|
|
|
NS_IMPL_QUERY_INTERFACE_CI(nsConsoleService, nsIConsoleService, nsIObserver)
|
|
|
|
NS_IMPL_CI_INTERFACE_GETTER(nsConsoleService, nsIConsoleService, nsIObserver)
|
2000-04-18 02:34:54 +00:00
|
|
|
|
2012-11-07 06:34:33 +00:00
|
|
|
static bool sLoggingEnabled = true;
|
2013-03-14 05:55:25 +00:00
|
|
|
static bool sLoggingBuffered = true;
|
2015-05-29 13:58:04 +00:00
|
|
|
#if defined(ANDROID)
|
|
|
|
static bool sLoggingLogcat = true;
|
|
|
|
#endif // defined(ANDROID)
|
|
|
|
|
2015-08-18 01:05:48 +00:00
|
|
|
nsConsoleService::MessageElement::~MessageElement()
|
|
|
|
{
|
|
|
|
}
|
2012-11-07 06:34:33 +00:00
|
|
|
|
2000-04-18 02:34:54 +00:00
|
|
|
nsConsoleService::nsConsoleService()
|
2015-08-18 01:05:48 +00:00
|
|
|
: mCurrentSize(0)
|
2014-05-05 17:30:39 +00:00
|
|
|
, mDeliveringMessage(false)
|
|
|
|
, mLock("nsConsoleService.mLock")
|
2000-04-18 02:34:54 +00:00
|
|
|
{
|
2014-05-05 17:30:39 +00:00
|
|
|
// XXX grab this from a pref!
|
|
|
|
// hm, but worry about circularity, bc we want to be able to report
|
|
|
|
// prefs errs...
|
2015-08-18 01:05:48 +00:00
|
|
|
mMaximumSize = 250;
|
2000-04-18 02:34:54 +00:00
|
|
|
}
|
|
|
|
|
2015-07-09 10:49:00 +00:00
|
|
|
|
2015-07-31 13:49:27 +00:00
|
|
|
void
|
2015-07-09 10:49:00 +00:00
|
|
|
nsConsoleService::ClearMessagesForWindowID(const uint64_t innerID)
|
|
|
|
{
|
2015-07-21 14:50:09 +00:00
|
|
|
MOZ_RELEASE_ASSERT(NS_IsMainThread());
|
|
|
|
|
2015-08-18 01:05:48 +00:00
|
|
|
for (MessageElement* e = mMessages.getFirst(); e != nullptr; ) {
|
|
|
|
// Only messages implementing nsIScriptError interface expose the
|
|
|
|
// inner window ID.
|
|
|
|
nsCOMPtr<nsIScriptError> scriptError = do_QueryInterface(e->Get());
|
2015-07-09 10:49:00 +00:00
|
|
|
if (!scriptError) {
|
2015-08-18 01:05:48 +00:00
|
|
|
e = e->getNext();
|
2015-07-09 10:49:00 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
uint64_t innerWindowID;
|
|
|
|
nsresult rv = scriptError->GetInnerWindowID(&innerWindowID);
|
|
|
|
if (NS_FAILED(rv) || innerWindowID != innerID) {
|
2015-08-18 01:05:48 +00:00
|
|
|
e = e->getNext();
|
2015-07-09 10:49:00 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2015-08-18 01:05:48 +00:00
|
|
|
MessageElement* next = e->getNext();
|
|
|
|
e->remove();
|
|
|
|
delete e;
|
|
|
|
mCurrentSize--;
|
|
|
|
MOZ_ASSERT(mCurrentSize < mMaximumSize);
|
2015-07-09 10:49:00 +00:00
|
|
|
|
2015-08-18 01:05:48 +00:00
|
|
|
e = next;
|
|
|
|
}
|
|
|
|
}
|
2015-07-09 10:49:00 +00:00
|
|
|
|
2015-08-18 01:05:48 +00:00
|
|
|
void
|
|
|
|
nsConsoleService::ClearMessages()
|
|
|
|
{
|
|
|
|
while (!mMessages.isEmpty()) {
|
|
|
|
MessageElement* e = mMessages.popFirst();
|
|
|
|
delete e;
|
2015-07-09 10:49:00 +00:00
|
|
|
}
|
2015-08-18 01:05:48 +00:00
|
|
|
mCurrentSize = 0;
|
2015-07-09 10:49:00 +00:00
|
|
|
}
|
|
|
|
|
2000-04-18 02:34:54 +00:00
|
|
|
nsConsoleService::~nsConsoleService()
|
|
|
|
{
|
2015-07-21 14:50:09 +00:00
|
|
|
MOZ_RELEASE_ASSERT(NS_IsMainThread());
|
|
|
|
|
2015-08-18 01:05:48 +00:00
|
|
|
ClearMessages();
|
2000-04-18 02:34:54 +00:00
|
|
|
}
|
|
|
|
|
2013-03-14 05:55:25 +00:00
|
|
|
class AddConsolePrefWatchers : public nsRunnable
|
2012-11-07 06:34:33 +00:00
|
|
|
{
|
|
|
|
public:
|
2014-07-28 17:19:06 +00:00
|
|
|
explicit AddConsolePrefWatchers(nsConsoleService* aConsole) : mConsole(aConsole)
|
2014-05-13 17:41:38 +00:00
|
|
|
{
|
|
|
|
}
|
2014-05-05 17:30:39 +00:00
|
|
|
|
|
|
|
NS_IMETHOD Run()
|
|
|
|
{
|
|
|
|
Preferences::AddBoolVarCache(&sLoggingEnabled, "consoleservice.enabled", true);
|
|
|
|
Preferences::AddBoolVarCache(&sLoggingBuffered, "consoleservice.buffered", true);
|
2015-05-29 13:58:04 +00:00
|
|
|
#if defined(ANDROID)
|
|
|
|
Preferences::AddBoolVarCache(&sLoggingLogcat, "consoleservice.logcat", true);
|
|
|
|
#endif // defined(ANDROID)
|
2015-07-31 13:49:27 +00:00
|
|
|
|
|
|
|
nsCOMPtr<nsIObserverService> obs = mozilla::services::GetObserverService();
|
|
|
|
MOZ_ASSERT(obs);
|
|
|
|
obs->AddObserver(mConsole, NS_XPCOM_SHUTDOWN_OBSERVER_ID, false);
|
|
|
|
obs->AddObserver(mConsole, "inner-window-destroyed", false);
|
|
|
|
|
2014-05-05 17:30:39 +00:00
|
|
|
if (!sLoggingBuffered) {
|
|
|
|
mConsole->Reset();
|
2012-11-07 06:34:33 +00:00
|
|
|
}
|
2014-05-05 17:30:39 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
2013-03-14 05:55:25 +00:00
|
|
|
|
|
|
|
private:
|
2014-05-05 17:30:39 +00:00
|
|
|
nsRefPtr<nsConsoleService> mConsole;
|
2012-11-07 06:34:33 +00:00
|
|
|
};
|
|
|
|
|
2005-03-02 16:37:53 +00:00
|
|
|
nsresult
|
|
|
|
nsConsoleService::Init()
|
|
|
|
{
|
2014-05-05 17:30:39 +00:00
|
|
|
NS_DispatchToMainThread(new AddConsolePrefWatchers(this));
|
2012-01-11 16:28:21 +00:00
|
|
|
|
2014-05-05 17:30:39 +00:00
|
|
|
return NS_OK;
|
2005-03-02 16:37:53 +00:00
|
|
|
}
|
|
|
|
|
2012-01-11 16:28:21 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
class LogMessageRunnable : public nsRunnable
|
2001-10-26 04:51:08 +00:00
|
|
|
{
|
2012-01-11 16:28:21 +00:00
|
|
|
public:
|
2014-05-13 17:41:38 +00:00
|
|
|
LogMessageRunnable(nsIConsoleMessage* aMessage, nsConsoleService* aService)
|
|
|
|
: mMessage(aMessage)
|
|
|
|
, mService(aService)
|
2014-05-05 17:30:39 +00:00
|
|
|
{ }
|
2012-01-11 16:28:21 +00:00
|
|
|
|
2014-05-05 17:30:39 +00:00
|
|
|
NS_DECL_NSIRUNNABLE
|
2012-01-11 16:28:21 +00:00
|
|
|
|
|
|
|
private:
|
2014-05-05 17:30:39 +00:00
|
|
|
nsCOMPtr<nsIConsoleMessage> mMessage;
|
|
|
|
nsRefPtr<nsConsoleService> mService;
|
2012-01-11 16:28:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
LogMessageRunnable::Run()
|
|
|
|
{
|
2014-05-05 17:30:39 +00:00
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
2012-01-11 16:28:21 +00:00
|
|
|
|
2014-05-05 17:30:39 +00:00
|
|
|
// Snapshot of listeners so that we don't reenter this hash during
|
|
|
|
// enumeration.
|
|
|
|
nsCOMArray<nsIConsoleListener> listeners;
|
2015-07-09 23:54:59 +00:00
|
|
|
mService->CollectCurrentListeners(listeners);
|
2013-01-29 16:02:56 +00:00
|
|
|
|
2014-05-05 17:30:39 +00:00
|
|
|
mService->SetIsDelivering();
|
2012-01-11 16:28:21 +00:00
|
|
|
|
2014-05-13 17:41:38 +00:00
|
|
|
for (int32_t i = 0; i < listeners.Count(); ++i) {
|
2014-05-05 17:30:39 +00:00
|
|
|
listeners[i]->Observe(mMessage);
|
2014-05-13 17:41:38 +00:00
|
|
|
}
|
2012-01-11 16:28:21 +00:00
|
|
|
|
2014-05-05 17:30:39 +00:00
|
|
|
mService->SetDoneDelivering();
|
2012-01-11 16:28:21 +00:00
|
|
|
|
2014-05-05 17:30:39 +00:00
|
|
|
return NS_OK;
|
2012-01-11 16:28:21 +00:00
|
|
|
}
|
2001-10-26 04:51:08 +00:00
|
|
|
|
2015-07-13 15:25:42 +00:00
|
|
|
} // namespace
|
2012-01-11 16:28:21 +00:00
|
|
|
|
2000-04-18 02:34:54 +00:00
|
|
|
// nsIConsoleService methods
|
|
|
|
NS_IMETHODIMP
|
2014-05-13 17:41:38 +00:00
|
|
|
nsConsoleService::LogMessage(nsIConsoleMessage* aMessage)
|
2012-11-09 17:52:09 +00:00
|
|
|
{
|
2014-05-13 17:41:38 +00:00
|
|
|
return LogMessageWithMode(aMessage, OutputToLog);
|
2012-11-09 17:52:09 +00:00
|
|
|
}
|
|
|
|
|
2015-07-21 14:50:09 +00:00
|
|
|
// This can be called off the main thread.
|
2012-11-09 17:52:09 +00:00
|
|
|
nsresult
|
2014-05-13 17:41:38 +00:00
|
|
|
nsConsoleService::LogMessageWithMode(nsIConsoleMessage* aMessage,
|
|
|
|
nsConsoleService::OutputMode aOutputMode)
|
2000-04-18 02:34:54 +00:00
|
|
|
{
|
2014-05-13 17:41:38 +00:00
|
|
|
if (!aMessage) {
|
2014-05-05 17:30:39 +00:00
|
|
|
return NS_ERROR_INVALID_ARG;
|
2014-05-13 17:41:38 +00:00
|
|
|
}
|
2000-04-18 02:34:54 +00:00
|
|
|
|
2014-05-05 17:30:39 +00:00
|
|
|
if (!sLoggingEnabled) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (NS_IsMainThread() && mDeliveringMessage) {
|
|
|
|
nsCString msg;
|
2014-05-13 17:41:38 +00:00
|
|
|
aMessage->ToString(msg);
|
2014-05-05 17:30:39 +00:00
|
|
|
NS_WARNING(nsPrintfCString("Reentrancy error: some client attempted "
|
|
|
|
"to display a message to the console while in a console listener. "
|
|
|
|
"The following message was discarded: \"%s\"", msg.get()).get());
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsRefPtr<LogMessageRunnable> r;
|
2015-08-18 01:05:48 +00:00
|
|
|
nsCOMPtr<nsIConsoleMessage> retiredMessage;
|
2014-05-05 17:30:39 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Lock while updating buffer, and while taking snapshot of
|
|
|
|
* listeners array.
|
|
|
|
*/
|
|
|
|
{
|
|
|
|
MutexAutoLock lock(mLock);
|
2012-11-07 06:34:33 +00:00
|
|
|
|
2015-05-29 13:58:04 +00:00
|
|
|
#if defined(ANDROID)
|
|
|
|
if (sLoggingLogcat && aOutputMode == OutputToLog) {
|
2014-05-05 17:30:39 +00:00
|
|
|
nsCString msg;
|
2014-05-13 17:41:38 +00:00
|
|
|
aMessage->ToString(msg);
|
2014-09-09 23:52:08 +00:00
|
|
|
|
|
|
|
/** Attempt to use the process name as the log tag. */
|
|
|
|
mozilla::dom::ContentChild* child =
|
|
|
|
mozilla::dom::ContentChild::GetSingleton();
|
|
|
|
nsCString appName;
|
|
|
|
if (child) {
|
|
|
|
child->GetProcessName(appName);
|
|
|
|
} else {
|
|
|
|
appName = "GeckoConsole";
|
|
|
|
}
|
|
|
|
|
2014-09-22 22:33:36 +00:00
|
|
|
uint32_t logLevel = 0;
|
|
|
|
aMessage->GetLogLevel(&logLevel);
|
|
|
|
|
|
|
|
android_LogPriority logPriority = ANDROID_LOG_INFO;
|
|
|
|
switch (logLevel) {
|
|
|
|
case nsIConsoleMessage::debug:
|
|
|
|
logPriority = ANDROID_LOG_DEBUG;
|
|
|
|
break;
|
|
|
|
case nsIConsoleMessage::info:
|
|
|
|
logPriority = ANDROID_LOG_INFO;
|
|
|
|
break;
|
|
|
|
case nsIConsoleMessage::warn:
|
|
|
|
logPriority = ANDROID_LOG_WARN;
|
|
|
|
break;
|
|
|
|
case nsIConsoleMessage::error:
|
|
|
|
logPriority = ANDROID_LOG_ERROR;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
__android_log_print(logPriority, appName.get(), "%s", msg.get());
|
2012-01-11 16:28:21 +00:00
|
|
|
}
|
2014-05-05 17:30:39 +00:00
|
|
|
#endif
|
|
|
|
#ifdef XP_WIN
|
|
|
|
if (IsDebuggerPresent()) {
|
|
|
|
nsString msg;
|
2014-05-13 17:41:38 +00:00
|
|
|
aMessage->GetMessageMoz(getter_Copies(msg));
|
2014-05-22 03:48:51 +00:00
|
|
|
msg.Append('\n');
|
2014-05-05 17:30:39 +00:00
|
|
|
OutputDebugStringW(msg.get());
|
2013-03-14 05:55:25 +00:00
|
|
|
}
|
2014-05-05 17:30:39 +00:00
|
|
|
#endif
|
2014-11-20 02:57:27 +00:00
|
|
|
#ifdef MOZ_TASK_TRACER
|
|
|
|
{
|
|
|
|
nsCString msg;
|
|
|
|
aMessage->ToString(msg);
|
|
|
|
int prefixPos = msg.Find(GetJSLabelPrefix());
|
|
|
|
if (prefixPos >= 0) {
|
|
|
|
nsDependentCSubstring submsg(msg, prefixPos);
|
|
|
|
AddLabel("%s", submsg.BeginReading());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2000-04-18 02:34:54 +00:00
|
|
|
|
2014-05-05 17:30:39 +00:00
|
|
|
if (sLoggingBuffered) {
|
2015-08-18 01:05:48 +00:00
|
|
|
MessageElement* e = new MessageElement(aMessage);
|
|
|
|
mMessages.insertBack(e);
|
|
|
|
if (mCurrentSize != mMaximumSize) {
|
|
|
|
mCurrentSize++;
|
|
|
|
} else {
|
|
|
|
MessageElement* p = mMessages.popFirst();
|
|
|
|
MOZ_ASSERT(p);
|
|
|
|
retiredMessage = p->forget();
|
|
|
|
delete p;
|
2014-05-05 17:30:39 +00:00
|
|
|
}
|
|
|
|
}
|
2011-11-15 03:12:20 +00:00
|
|
|
|
2014-05-05 17:30:39 +00:00
|
|
|
if (mListeners.Count() > 0) {
|
2014-05-13 17:41:38 +00:00
|
|
|
r = new LogMessageRunnable(aMessage, this);
|
2000-04-18 02:34:54 +00:00
|
|
|
}
|
2014-05-05 17:30:39 +00:00
|
|
|
}
|
2012-09-28 16:54:36 +00:00
|
|
|
|
2014-05-13 17:41:38 +00:00
|
|
|
if (retiredMessage) {
|
2015-07-21 14:50:09 +00:00
|
|
|
// Release |retiredMessage| on the main thread in case it is an instance of
|
|
|
|
// a mainthread-only class like nsScriptErrorWithStack and we're off the
|
|
|
|
// main thread.
|
|
|
|
NS_ReleaseOnMainThread(retiredMessage);
|
2014-05-13 17:41:38 +00:00
|
|
|
}
|
2000-04-18 02:34:54 +00:00
|
|
|
|
2014-05-13 17:41:38 +00:00
|
|
|
if (r) {
|
2015-07-10 03:21:46 +00:00
|
|
|
// avoid failing in XPCShell tests
|
|
|
|
nsCOMPtr<nsIThread> mainThread = do_GetMainThread();
|
|
|
|
if (mainThread) {
|
|
|
|
NS_DispatchToMainThread(r.forget());
|
|
|
|
}
|
2014-05-13 17:41:38 +00:00
|
|
|
}
|
2000-04-18 02:34:54 +00:00
|
|
|
|
2014-05-05 17:30:39 +00:00
|
|
|
return NS_OK;
|
2000-04-18 02:34:54 +00:00
|
|
|
}
|
|
|
|
|
2013-01-29 16:02:56 +00:00
|
|
|
void
|
2015-07-09 23:54:59 +00:00
|
|
|
nsConsoleService::CollectCurrentListeners(
|
|
|
|
nsCOMArray<nsIConsoleListener>& aListeners)
|
2013-01-29 16:02:56 +00:00
|
|
|
{
|
2014-05-05 17:30:39 +00:00
|
|
|
MutexAutoLock lock(mLock);
|
2015-07-09 23:54:59 +00:00
|
|
|
for (auto iter = mListeners.Iter(); !iter.Done(); iter.Next()) {
|
2015-07-20 12:21:28 +00:00
|
|
|
nsIConsoleListener* value = iter.UserData();
|
2015-07-09 23:54:59 +00:00
|
|
|
aListeners.AppendObject(value);
|
|
|
|
}
|
2013-01-29 16:02:56 +00:00
|
|
|
}
|
|
|
|
|
2000-04-18 02:34:54 +00:00
|
|
|
NS_IMETHODIMP
|
2014-05-13 17:41:38 +00:00
|
|
|
nsConsoleService::LogStringMessage(const char16_t* aMessage)
|
2000-04-18 02:34:54 +00:00
|
|
|
{
|
2014-05-05 17:30:39 +00:00
|
|
|
if (!sLoggingEnabled) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2012-11-07 06:34:33 +00:00
|
|
|
|
2014-05-13 17:41:38 +00:00
|
|
|
nsRefPtr<nsConsoleMessage> msg(new nsConsoleMessage(aMessage));
|
2014-05-05 17:30:39 +00:00
|
|
|
return this->LogMessage(msg);
|
2000-04-18 02:34:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2014-08-25 19:17:15 +00:00
|
|
|
nsConsoleService::GetMessageArray(uint32_t* aCount,
|
|
|
|
nsIConsoleMessage*** aMessages)
|
2000-04-18 02:34:54 +00:00
|
|
|
{
|
2015-07-21 14:50:09 +00:00
|
|
|
MOZ_RELEASE_ASSERT(NS_IsMainThread());
|
|
|
|
|
2014-05-05 17:30:39 +00:00
|
|
|
MutexAutoLock lock(mLock);
|
2000-04-18 02:34:54 +00:00
|
|
|
|
2015-08-18 01:05:48 +00:00
|
|
|
if (mMessages.isEmpty()) {
|
2000-04-18 02:34:54 +00:00
|
|
|
/*
|
2014-05-05 17:30:39 +00:00
|
|
|
* Make a 1-length output array so that nobody gets confused,
|
|
|
|
* and return a count of 0. This should result in a 0-length
|
|
|
|
* array object when called from script.
|
2000-04-18 02:34:54 +00:00
|
|
|
*/
|
2015-08-18 01:05:48 +00:00
|
|
|
nsIConsoleMessage** messageArray = (nsIConsoleMessage**)
|
2015-03-27 00:01:12 +00:00
|
|
|
moz_xmalloc(sizeof(nsIConsoleMessage*));
|
2014-05-05 17:30:39 +00:00
|
|
|
*messageArray = nullptr;
|
2014-05-13 17:41:38 +00:00
|
|
|
*aMessages = messageArray;
|
|
|
|
*aCount = 0;
|
2000-04-18 02:34:54 +00:00
|
|
|
|
2014-05-05 17:30:39 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2015-08-18 01:05:48 +00:00
|
|
|
MOZ_ASSERT(mCurrentSize <= mMaximumSize);
|
|
|
|
nsIConsoleMessage** messageArray =
|
|
|
|
static_cast<nsIConsoleMessage**>(moz_xmalloc(sizeof(nsIConsoleMessage*)
|
|
|
|
* mCurrentSize));
|
2014-05-05 17:30:39 +00:00
|
|
|
|
2015-08-18 01:05:48 +00:00
|
|
|
uint32_t i = 0;
|
|
|
|
for (MessageElement* e = mMessages.getFirst(); e != nullptr; e = e->getNext()) {
|
|
|
|
nsCOMPtr<nsIConsoleMessage> m = e->Get();
|
|
|
|
m.forget(&messageArray[i]);
|
|
|
|
i++;
|
|
|
|
};
|
2014-05-05 17:30:39 +00:00
|
|
|
|
2015-08-18 01:05:48 +00:00
|
|
|
MOZ_ASSERT(i == mCurrentSize);
|
|
|
|
|
|
|
|
*aCount = i;
|
2014-05-13 17:41:38 +00:00
|
|
|
*aMessages = messageArray;
|
2000-04-18 02:34:54 +00:00
|
|
|
|
2014-05-05 17:30:39 +00:00
|
|
|
return NS_OK;
|
2000-04-18 02:34:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2014-05-13 17:41:38 +00:00
|
|
|
nsConsoleService::RegisterListener(nsIConsoleListener* aListener)
|
2012-01-11 16:28:21 +00:00
|
|
|
{
|
2014-05-05 17:30:39 +00:00
|
|
|
if (!NS_IsMainThread()) {
|
|
|
|
NS_ERROR("nsConsoleService::RegisterListener is main thread only.");
|
|
|
|
return NS_ERROR_NOT_SAME_THREAD;
|
|
|
|
}
|
|
|
|
|
2014-05-13 17:41:38 +00:00
|
|
|
nsCOMPtr<nsISupports> canonical = do_QueryInterface(aListener);
|
2014-05-05 17:30:39 +00:00
|
|
|
|
|
|
|
MutexAutoLock lock(mLock);
|
|
|
|
if (mListeners.GetWeak(canonical)) {
|
|
|
|
// Reregistering a listener isn't good
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
2014-05-13 17:41:38 +00:00
|
|
|
mListeners.Put(canonical, aListener);
|
2014-05-05 17:30:39 +00:00
|
|
|
return NS_OK;
|
2000-04-18 02:34:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2014-05-13 17:41:38 +00:00
|
|
|
nsConsoleService::UnregisterListener(nsIConsoleListener* aListener)
|
2012-01-11 16:28:21 +00:00
|
|
|
{
|
2014-05-05 17:30:39 +00:00
|
|
|
if (!NS_IsMainThread()) {
|
|
|
|
NS_ERROR("nsConsoleService::UnregisterListener is main thread only.");
|
|
|
|
return NS_ERROR_NOT_SAME_THREAD;
|
|
|
|
}
|
2012-01-11 16:28:21 +00:00
|
|
|
|
2014-05-13 17:41:38 +00:00
|
|
|
nsCOMPtr<nsISupports> canonical = do_QueryInterface(aListener);
|
2012-01-11 16:28:21 +00:00
|
|
|
|
2014-05-05 17:30:39 +00:00
|
|
|
MutexAutoLock lock(mLock);
|
2000-04-18 02:34:54 +00:00
|
|
|
|
2014-05-05 17:30:39 +00:00
|
|
|
if (!mListeners.GetWeak(canonical)) {
|
|
|
|
// Unregistering a listener that was never registered?
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
mListeners.Remove(canonical);
|
|
|
|
return NS_OK;
|
2000-04-18 02:34:54 +00:00
|
|
|
}
|
2000-10-09 23:45:59 +00:00
|
|
|
|
2006-07-19 12:49:33 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsConsoleService::Reset()
|
|
|
|
{
|
2015-07-21 14:50:09 +00:00
|
|
|
MOZ_RELEASE_ASSERT(NS_IsMainThread());
|
|
|
|
|
2014-05-05 17:30:39 +00:00
|
|
|
/*
|
|
|
|
* Make sure nobody trips into the buffer while it's being reset
|
|
|
|
*/
|
|
|
|
MutexAutoLock lock(mLock);
|
2006-07-19 12:49:33 +00:00
|
|
|
|
2015-08-18 01:05:48 +00:00
|
|
|
ClearMessages();
|
2014-05-05 17:30:39 +00:00
|
|
|
return NS_OK;
|
2006-07-19 12:49:33 +00:00
|
|
|
}
|
2015-07-31 13:49:27 +00:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsConsoleService::Observe(nsISupports* aSubject, const char* aTopic,
|
|
|
|
const char16_t* aData)
|
|
|
|
{
|
|
|
|
if (!strcmp(aTopic, NS_XPCOM_SHUTDOWN_OBSERVER_ID)) {
|
|
|
|
// Dump all our messages, in case any are cycle collected.
|
|
|
|
Reset();
|
|
|
|
// We could remove ourselves from the observer service, but it is about to
|
|
|
|
// drop all observers anyways, so why bother.
|
|
|
|
} else if (!strcmp(aTopic, "inner-window-destroyed")) {
|
|
|
|
nsCOMPtr<nsISupportsPRUint64> supportsInt = do_QueryInterface(aSubject);
|
|
|
|
MOZ_ASSERT(supportsInt);
|
|
|
|
|
|
|
|
uint64_t windowId;
|
|
|
|
MOZ_ALWAYS_TRUE(NS_SUCCEEDED(supportsInt->GetData(&windowId)));
|
|
|
|
|
|
|
|
ClearMessagesForWindowID(windowId);
|
|
|
|
} else {
|
|
|
|
MOZ_CRASH();
|
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|