2012-03-28 08:53:56 -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/. */
|
|
|
|
|
|
|
|
#ifndef __NSTARRAYHELPERS_H__
|
|
|
|
#define __NSTARRAYHELPERS_H__
|
|
|
|
|
|
|
|
template <class T>
|
|
|
|
inline nsresult
|
|
|
|
nsTArrayToJSArray(JSContext* aCx, const nsTArray<T>& aSourceArray,
|
|
|
|
JSObject** aResultArray)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(aCx);
|
|
|
|
JSAutoRequest ar(aCx);
|
|
|
|
|
2012-07-30 07:20:58 -07:00
|
|
|
JSObject* arrayObj = JS_NewArrayObject(aCx, aSourceArray.Length(), nullptr);
|
2012-03-28 08:53:56 -07:00
|
|
|
if (!arrayObj) {
|
|
|
|
NS_WARNING("JS_NewArrayObject failed!");
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
JSObject* global = JS_GetGlobalForScopeChain(aCx);
|
|
|
|
MOZ_ASSERT(global);
|
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
for (uint32_t index = 0; index < aSourceArray.Length(); index++) {
|
2012-03-28 08:53:56 -07:00
|
|
|
nsCOMPtr<nsISupports> obj;
|
|
|
|
nsresult rv = CallQueryInterface(aSourceArray[index], getter_AddRefs(obj));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
jsval wrappedVal;
|
2012-07-30 07:20:58 -07:00
|
|
|
rv = nsContentUtils::WrapNative(aCx, global, obj, &wrappedVal, nullptr, true);
|
2012-03-28 08:53:56 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
if (!JS_SetElement(aCx, arrayObj, index, &wrappedVal)) {
|
|
|
|
NS_WARNING("JS_SetElement failed!");
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!JS_FreezeObject(aCx, arrayObj)) {
|
|
|
|
NS_WARNING("JS_FreezeObject failed!");
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
*aResultArray = arrayObj;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* __NSTARRAYHELPERS_H__ */
|