Files
palemoon27/storage/mozStorageStatementRow.cpp
T
roytam1 debfadcca4 import changes from `dev' branch of rmottola/Arctic-Fox:
- Bug 751387 - Fix crash caused by out-of-bounds accesses in command line options handling. r=bholley (240670c35)
- Bug 1162187 - Pass around AutoJSAPI instead of cx to give us more control over error handling. r=glandium (702954016)
- Bug 1162187 - Factor out single line argument processing into a helper. r=glandium (56efce591)
- Bug 1162187 - Use the AutoJSAPI machinery to handle xpcshell exceptions. r=glandium (162309001)
- Bug 1162187 - Remove the custom XPCShell error reporter. r=glandium (523d84539)
- Bug 1162187 - Remove ignoreReportedErrors. r=glandium (072f247a3)
- Bug 1161590 - xpcshell needs to initialize graphics prefs so that GfxInfo::GetFeatureStatus can check preferences. r=ehsan (5a8415817)
- Bug 1166243 - Remove build() function from js and xpc shells. r=bholley,r=efaust (8537f2259)
- Bug 1182357 - Implement support for optional size_is for arrays passed from JS. r=mrbkap (0d22d3f34)
- missing profiler parts of Bug 1092311 - Fix IndexedDB profiler markers and logging (a68567bbb)
- Bug 1086999 - CSP: Asterisk (*) wildcard should not allow blob:, data:, or filesystem: when matching source expressions (r=fabrice,pauljt) (7757a92ae)
- Bug 1105827 - Part 1: Add stub PermissionStatus implementation. r=baku (2bd4c1dd3)
- Bug 635134 - Adds X11 run-time check for Gtk3 backend. r=karlt (7e9304f5e)
- Bug 994541 - Enable BasicCompositor OMTC on linux. r=Bas (c9a266beb)
- Bug 1105827 - Part 2: Add stub Permissions implementation. r=baku (751f5e9e6)
- Bug 1105827 - Part 3: Implement Permissions.query. r=baku (a30a48cbe)
- Bug 1105827 - Part 4: Add Navigator.permissions. r=baku (0d70fc5e6)
- Bug 1174861 - Remove unnecessary Rooted from Prefable::isEnabled(). r=bholley (a0893081d)
2021-01-14 23:51:05 +08:00

156 lines
4.6 KiB
C++

/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
* vim: sw=2 ts=2 et lcs=trail\:.,tab\:>~ :
* 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 "nsMemory.h"
#include "nsString.h"
#include "mozStorageStatementRow.h"
#include "mozStorageStatement.h"
#include "jsapi.h"
namespace mozilla {
namespace storage {
////////////////////////////////////////////////////////////////////////////////
//// StatementRow
StatementRow::StatementRow(Statement *aStatement)
: mStatement(aStatement)
{
}
NS_IMPL_ISUPPORTS(
StatementRow,
mozIStorageStatementRow,
nsIXPCScriptable
)
////////////////////////////////////////////////////////////////////////////////
//// nsIXPCScriptable
#define XPC_MAP_CLASSNAME StatementRow
#define XPC_MAP_QUOTED_CLASSNAME "StatementRow"
#define XPC_MAP_WANT_GETPROPERTY
#define XPC_MAP_WANT_RESOLVE
#define XPC_MAP_FLAGS nsIXPCScriptable::ALLOW_PROP_MODS_DURING_RESOLVE
#include "xpc_map_end.h"
NS_IMETHODIMP
StatementRow::GetProperty(nsIXPConnectWrappedNative *aWrapper,
JSContext *aCtx,
JSObject *aScopeObj,
jsid aId,
jsval *_vp,
bool *_retval)
{
NS_ENSURE_TRUE(mStatement, NS_ERROR_NOT_INITIALIZED);
JS::RootedObject scope(aCtx, aScopeObj);
if (JSID_IS_STRING(aId)) {
::JSAutoByteString idBytes(aCtx, JSID_TO_STRING(aId));
NS_ENSURE_TRUE(!!idBytes, NS_ERROR_OUT_OF_MEMORY);
nsDependentCString jsid(idBytes.ptr());
uint32_t idx;
nsresult rv = mStatement->GetColumnIndex(jsid, &idx);
NS_ENSURE_SUCCESS(rv, rv);
int32_t type;
rv = mStatement->GetTypeOfIndex(idx, &type);
NS_ENSURE_SUCCESS(rv, rv);
if (type == mozIStorageValueArray::VALUE_TYPE_INTEGER ||
type == mozIStorageValueArray::VALUE_TYPE_FLOAT) {
double dval;
rv = mStatement->GetDouble(idx, &dval);
NS_ENSURE_SUCCESS(rv, rv);
*_vp = ::JS_NumberValue(dval);
}
else if (type == mozIStorageValueArray::VALUE_TYPE_TEXT) {
uint32_t bytes;
const char16_t *sval = reinterpret_cast<const char16_t *>(
static_cast<mozIStorageStatement *>(mStatement)->
AsSharedWString(idx, &bytes)
);
JSString *str = ::JS_NewUCStringCopyN(aCtx, sval, bytes / 2);
if (!str) {
*_retval = false;
return NS_OK;
}
_vp->setString(str);
}
else if (type == mozIStorageValueArray::VALUE_TYPE_BLOB) {
uint32_t length;
const uint8_t *blob = static_cast<mozIStorageStatement *>(mStatement)->
AsSharedBlob(idx, &length);
JSObject *obj = ::JS_NewArrayObject(aCtx, length);
if (!obj) {
*_retval = false;
return NS_OK;
}
_vp->setObject(*obj);
// Copy the blob over to the JS array.
for (uint32_t i = 0; i < length; i++) {
if (!::JS_DefineElement(aCtx, scope, i, blob[i], JSPROP_ENUMERATE)) {
*_retval = false;
return NS_OK;
}
}
}
else if (type == mozIStorageValueArray::VALUE_TYPE_NULL) {
_vp->setNull();
}
else {
NS_ERROR("unknown column type returned, what's going on?");
}
}
return NS_OK;
}
NS_IMETHODIMP
StatementRow::Resolve(nsIXPConnectWrappedNative *aWrapper,
JSContext *aCtx,
JSObject *aScopeObj,
jsid aId,
bool *aResolvedp,
bool *_retval)
{
JS::Rooted<JSObject*> scopeObj(aCtx, aScopeObj);
NS_ENSURE_TRUE(mStatement, NS_ERROR_NOT_INITIALIZED);
// We do not throw at any point after this because we want to allow the
// prototype chain to be checked for the property.
if (JSID_IS_STRING(aId)) {
::JSAutoByteString idBytes(aCtx, JSID_TO_STRING(aId));
NS_ENSURE_TRUE(!!idBytes, NS_ERROR_OUT_OF_MEMORY);
nsDependentCString name(idBytes.ptr());
uint32_t idx;
nsresult rv = mStatement->GetColumnIndex(name, &idx);
if (NS_FAILED(rv)) {
// It's highly likely that the name doesn't exist, so let the JS engine
// check the prototype chain and throw if that doesn't have the property
// either.
*aResolvedp = false;
return NS_OK;
}
JS::Rooted<jsid> id(aCtx, aId);
*_retval = ::JS_DefinePropertyById(aCtx, scopeObj, id, JS::UndefinedHandleValue,
JSPROP_RESOLVING);
*aResolvedp = true;
return NS_OK;
}
return NS_OK;
}
} // namespace storage
} // namescape mozilla