2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 04:12:37 -07: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-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#ifndef nsDOMScriptObjectHolder_h__
|
|
|
|
#define nsDOMScriptObjectHolder_h__
|
|
|
|
|
|
|
|
#include "nsIScriptContext.h"
|
|
|
|
#include "nsIDOMScriptObjectFactory.h"
|
|
|
|
|
2011-10-29 13:13:31 -07:00
|
|
|
#include "jspubtd.h"
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// A thin class used to help with script object memory management. No virtual
|
|
|
|
// functions and a fully inline implementation should keep the cost down.
|
|
|
|
// [Note that a fully inline implementation is necessary for use by other
|
|
|
|
// languages, which do not link against the layout component module]
|
2011-12-18 02:05:12 -08:00
|
|
|
template<class T>
|
2008-06-30 18:03:50 -07:00
|
|
|
class NS_STACK_CLASS nsScriptObjectHolder {
|
2007-03-22 10:30:00 -07:00
|
|
|
public:
|
|
|
|
// A constructor that will cause a reference to |ctx| to be stored in
|
|
|
|
// the object. Only use for short-lived object holders.
|
2012-07-30 07:20:58 -07:00
|
|
|
nsScriptObjectHolder<T>(nsIScriptContext *ctx, T* aObject = nullptr) :
|
2007-03-22 10:30:00 -07:00
|
|
|
mObject(aObject), mContext(ctx) {
|
|
|
|
NS_ASSERTION(ctx, "Must provide a valid context");
|
|
|
|
}
|
|
|
|
|
|
|
|
// copy constructor
|
2011-12-18 02:05:12 -08:00
|
|
|
nsScriptObjectHolder<T>(const nsScriptObjectHolder<T>& other) :
|
2007-03-22 10:30:00 -07:00
|
|
|
mObject(other.mObject),
|
|
|
|
mContext(other.mContext)
|
|
|
|
{
|
|
|
|
// New hold the script object and new reference on the script context.
|
|
|
|
if (mObject)
|
|
|
|
mContext->HoldScriptObject(mObject);
|
|
|
|
}
|
|
|
|
|
2011-12-18 02:05:12 -08:00
|
|
|
~nsScriptObjectHolder<T>() {
|
2007-03-22 10:30:00 -07:00
|
|
|
if (mObject)
|
|
|
|
mContext->DropScriptObject(mObject);
|
|
|
|
}
|
|
|
|
|
|
|
|
// misc operators
|
2011-12-18 02:05:12 -08:00
|
|
|
nsScriptObjectHolder<T> &operator=(const nsScriptObjectHolder<T> &other) {
|
2007-03-22 10:30:00 -07:00
|
|
|
set(other);
|
|
|
|
return *this;
|
|
|
|
}
|
2011-09-28 23:19:26 -07:00
|
|
|
bool operator!() const {
|
2007-03-22 10:30:00 -07:00
|
|
|
return !mObject;
|
|
|
|
}
|
2011-12-18 02:05:12 -08:00
|
|
|
operator bool() const {
|
|
|
|
return !!mObject;
|
2011-10-29 13:13:31 -07:00
|
|
|
}
|
2011-12-18 02:05:12 -08:00
|
|
|
T* get() const {
|
|
|
|
return mObject;
|
2011-11-26 02:11:35 -08:00
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// Drop the script object - but *not* the nsIScriptContext.
|
|
|
|
nsresult drop() {
|
|
|
|
nsresult rv = NS_OK;
|
|
|
|
if (mObject) {
|
|
|
|
rv = mContext->DropScriptObject(mObject);
|
2012-07-30 07:20:58 -07:00
|
|
|
mObject = nullptr;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
return rv;
|
|
|
|
}
|
2011-11-26 02:11:35 -08:00
|
|
|
|
2011-12-18 02:05:12 -08:00
|
|
|
nsresult set(T* object) {
|
2007-03-22 10:30:00 -07:00
|
|
|
nsresult rv = drop();
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
if (object) {
|
|
|
|
rv = mContext->HoldScriptObject(object);
|
|
|
|
// don't store the pointer if we failed to lock it.
|
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
|
|
mObject = object;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return rv;
|
|
|
|
}
|
2011-12-18 02:05:12 -08:00
|
|
|
nsresult set(const nsScriptObjectHolder<T> &other) {
|
2007-03-22 10:30:00 -07:00
|
|
|
nsresult rv = drop();
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
return set(other.mObject);
|
|
|
|
}
|
2012-04-24 15:31:28 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
protected:
|
2011-12-18 02:05:12 -08:00
|
|
|
T* mObject;
|
2007-03-22 10:30:00 -07:00
|
|
|
nsCOMPtr<nsIScriptContext> mContext;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // nsDOMScriptObjectHolder_h__
|