2007-01-04 22:31:26 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
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/. */
|
2007-01-04 22:31:26 +00:00
|
|
|
|
2007-02-18 14:38:04 +00:00
|
|
|
#include "nsCycleCollectionParticipant.h"
|
|
|
|
#include "nsCOMPtr.h"
|
2007-01-04 22:31:26 +00:00
|
|
|
|
2012-11-15 07:32:39 +00:00
|
|
|
#ifdef MOZILLA_INTERNAL_API
|
|
|
|
#include "nsString.h"
|
|
|
|
#else
|
|
|
|
#include "nsStringAPI.h"
|
|
|
|
#endif
|
|
|
|
|
2012-06-04 06:30:26 +00:00
|
|
|
void
|
|
|
|
nsScriptObjectTracer::NoteJSChild(void *aScriptThing, const char *name,
|
|
|
|
void *aClosure)
|
2007-10-29 13:45:07 +00:00
|
|
|
{
|
|
|
|
nsCycleCollectionTraversalCallback *cb =
|
|
|
|
static_cast<nsCycleCollectionTraversalCallback*>(aClosure);
|
2011-02-02 15:30:03 +00:00
|
|
|
NS_CYCLE_COLLECTION_NOTE_EDGE_NAME(*cb, name);
|
2012-05-03 19:28:10 +00:00
|
|
|
cb->NoteJSChild(aScriptThing);
|
2007-10-29 13:45:07 +00:00
|
|
|
}
|
|
|
|
|
2007-08-06 14:34:02 +00:00
|
|
|
nsresult
|
2012-06-04 06:30:26 +00:00
|
|
|
nsXPCOMCycleCollectionParticipant::RootImpl(void *p)
|
2007-01-04 22:31:26 +00:00
|
|
|
{
|
2007-07-08 07:08:04 +00:00
|
|
|
nsISupports *s = static_cast<nsISupports*>(p);
|
2007-05-24 14:10:02 +00:00
|
|
|
NS_ADDREF(s);
|
|
|
|
return NS_OK;
|
2007-01-04 22:31:26 +00:00
|
|
|
}
|
|
|
|
|
2007-08-06 14:34:02 +00:00
|
|
|
nsresult
|
2012-06-04 06:30:26 +00:00
|
|
|
nsXPCOMCycleCollectionParticipant::UnrootImpl(void *p)
|
2007-03-08 11:31:14 +00:00
|
|
|
{
|
2007-07-08 07:08:04 +00:00
|
|
|
nsISupports *s = static_cast<nsISupports*>(p);
|
2007-05-24 14:10:02 +00:00
|
|
|
NS_RELEASE(s);
|
|
|
|
return NS_OK;
|
2007-03-08 11:31:14 +00:00
|
|
|
}
|
|
|
|
|
2012-08-24 16:50:06 +00:00
|
|
|
// We define a default trace function because some participants don't need
|
|
|
|
// to trace anything, so it is okay for them not to define one.
|
2007-10-29 13:45:07 +00:00
|
|
|
NS_IMETHODIMP_(void)
|
2012-06-04 06:30:26 +00:00
|
|
|
nsXPCOMCycleCollectionParticipant::TraceImpl(void *p, TraceCallback cb,
|
|
|
|
void *closure)
|
2007-10-29 13:45:07 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool
|
2007-05-24 14:10:02 +00:00
|
|
|
nsXPCOMCycleCollectionParticipant::CheckForRightISupports(nsISupports *s)
|
2007-02-18 14:38:04 +00:00
|
|
|
{
|
2010-11-11 22:52:30 +00:00
|
|
|
nsISupports* foo;
|
2007-02-18 14:38:04 +00:00
|
|
|
s->QueryInterface(NS_GET_IID(nsCycleCollectionISupports),
|
2010-11-11 22:52:30 +00:00
|
|
|
reinterpret_cast<void**>(&foo));
|
2007-02-18 14:38:04 +00:00
|
|
|
return s == foo;
|
|
|
|
}
|
2012-11-15 07:32:39 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
CycleCollectionNoteEdgeNameImpl(nsCycleCollectionTraversalCallback& aCallback,
|
|
|
|
const char* aName,
|
|
|
|
uint32_t aFlags = 0)
|
|
|
|
{
|
|
|
|
nsAutoCString arrayEdgeName(aName);
|
|
|
|
if (aFlags & CycleCollectionEdgeNameArrayFlag) {
|
|
|
|
arrayEdgeName.AppendLiteral("[i]");
|
|
|
|
}
|
|
|
|
aCallback.NoteNextEdgeName(arrayEdgeName.get());
|
|
|
|
}
|