2009-04-08 09:24:25 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
2009-04-13 09:29:41 -07:00
|
|
|
* vim: sw=2 ts=2 et lcs=trail\:.,tab\:>~ :
|
2008-09-12 14:30:37 -07:00
|
|
|
* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is Oracle Corporation code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Oracle Corporation
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2004
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Vladimir Vukicevic <vladimir.vukicevic@oracle.com>
|
|
|
|
* Shawn Wilsher <me@shawnwilsher.com>
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
#include "nsMemory.h"
|
|
|
|
#include "nsString.h"
|
|
|
|
|
2009-07-22 15:31:03 -07:00
|
|
|
#include "mozStoragePrivateHelpers.h"
|
2008-09-12 14:30:37 -07:00
|
|
|
#include "mozStorageStatementParams.h"
|
2009-07-22 15:31:03 -07:00
|
|
|
#include "mozIStorageStatement.h"
|
2008-09-12 14:30:37 -07:00
|
|
|
|
2009-04-08 09:24:25 -07:00
|
|
|
namespace mozilla {
|
|
|
|
namespace storage {
|
2008-09-12 14:30:37 -07:00
|
|
|
|
2009-04-08 09:24:25 -07:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//// StatementParams
|
2008-09-12 14:30:37 -07:00
|
|
|
|
2009-04-08 09:24:25 -07:00
|
|
|
StatementParams::StatementParams(mozIStorageStatement *aStatement) :
|
|
|
|
mStatement(aStatement)
|
2008-09-12 14:30:37 -07:00
|
|
|
{
|
2009-04-08 09:24:25 -07:00
|
|
|
NS_ASSERTION(mStatement != nsnull, "mStatement is null");
|
|
|
|
(void)mStatement->GetParameterCount(&mParamCount);
|
2008-09-12 14:30:37 -07:00
|
|
|
}
|
|
|
|
|
2009-04-08 09:24:25 -07:00
|
|
|
NS_IMPL_ISUPPORTS2(
|
|
|
|
StatementParams,
|
|
|
|
mozIStorageStatementParams,
|
|
|
|
nsIXPCScriptable
|
|
|
|
)
|
2008-09-12 14:30:37 -07:00
|
|
|
|
2009-04-08 09:24:25 -07:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//// nsIXPCScriptable
|
2008-09-12 14:30:37 -07:00
|
|
|
|
2009-04-08 09:24:25 -07:00
|
|
|
#define XPC_MAP_CLASSNAME StatementParams
|
|
|
|
#define XPC_MAP_QUOTED_CLASSNAME "StatementParams"
|
|
|
|
#define XPC_MAP_WANT_SETPROPERTY
|
|
|
|
#define XPC_MAP_WANT_NEWENUMERATE
|
|
|
|
#define XPC_MAP_WANT_NEWRESOLVE
|
|
|
|
#define XPC_MAP_FLAGS nsIXPCScriptable::ALLOW_PROP_MODS_DURING_RESOLVE
|
|
|
|
#include "xpc_map_end.h"
|
2008-09-12 14:30:37 -07:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2009-04-08 09:24:25 -07:00
|
|
|
StatementParams::SetProperty(nsIXPConnectWrappedNative *aWrapper,
|
|
|
|
JSContext *aCtx,
|
|
|
|
JSObject *aScopeObj,
|
2010-07-14 23:19:36 -07:00
|
|
|
jsid aId,
|
2009-04-08 09:24:25 -07:00
|
|
|
jsval *_vp,
|
|
|
|
PRBool *_retval)
|
2008-09-12 14:30:37 -07:00
|
|
|
{
|
2009-04-08 09:24:25 -07:00
|
|
|
NS_ENSURE_TRUE(mStatement, NS_ERROR_NOT_INITIALIZED);
|
2008-09-12 14:30:37 -07:00
|
|
|
|
2010-07-14 23:19:36 -07:00
|
|
|
if (JSID_IS_INT(aId)) {
|
|
|
|
int idx = JSID_TO_INT(aId);
|
2008-09-12 14:30:37 -07:00
|
|
|
|
2010-03-24 00:32:40 -07:00
|
|
|
nsCOMPtr<nsIVariant> variant(convertJSValToVariant(aCtx, *_vp));
|
|
|
|
NS_ENSURE_TRUE(variant, NS_ERROR_UNEXPECTED);
|
|
|
|
nsresult rv = mStatement->BindByIndex(idx, variant);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2009-04-08 09:24:25 -07:00
|
|
|
}
|
2010-07-14 23:19:36 -07:00
|
|
|
else if (JSID_IS_STRING(aId)) {
|
|
|
|
JSString *str = JSID_TO_STRING(aId);
|
2010-12-03 00:24:17 -08:00
|
|
|
size_t length;
|
|
|
|
const jschar *chars = JS_GetStringCharsAndLength(aCtx, str, &length);
|
|
|
|
NS_ENSURE_TRUE(chars, NS_ERROR_UNEXPECTED);
|
|
|
|
NS_ConvertUTF16toUTF8 name(chars, length);
|
2008-11-19 11:33:00 -08:00
|
|
|
|
2009-04-08 09:24:25 -07:00
|
|
|
// check to see if there's a parameter with this name
|
2010-03-24 00:32:40 -07:00
|
|
|
nsCOMPtr<nsIVariant> variant(convertJSValToVariant(aCtx, *_vp));
|
|
|
|
NS_ENSURE_TRUE(variant, NS_ERROR_UNEXPECTED);
|
|
|
|
nsresult rv = mStatement->BindByName(name, variant);
|
2009-04-08 09:24:25 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return NS_ERROR_INVALID_ARG;
|
|
|
|
}
|
2008-09-12 14:30:37 -07:00
|
|
|
|
2009-04-08 09:24:25 -07:00
|
|
|
*_retval = PR_TRUE;
|
|
|
|
return NS_OK;
|
2008-09-12 14:30:37 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2009-04-08 09:24:25 -07:00
|
|
|
StatementParams::NewEnumerate(nsIXPConnectWrappedNative *aWrapper,
|
|
|
|
JSContext *aCtx,
|
|
|
|
JSObject *aScopeObj,
|
|
|
|
PRUint32 aEnumOp,
|
|
|
|
jsval *_statep,
|
|
|
|
jsid *_idp,
|
|
|
|
PRBool *_retval)
|
2008-09-12 14:30:37 -07:00
|
|
|
{
|
2009-04-08 09:24:25 -07:00
|
|
|
NS_ENSURE_TRUE(mStatement, NS_ERROR_NOT_INITIALIZED);
|
2008-09-12 14:30:37 -07:00
|
|
|
|
2009-04-08 09:24:25 -07:00
|
|
|
switch (aEnumOp) {
|
|
|
|
case JSENUMERATE_INIT:
|
2009-09-24 14:33:14 -07:00
|
|
|
case JSENUMERATE_INIT_ALL:
|
2009-04-08 09:24:25 -07:00
|
|
|
{
|
|
|
|
// Start our internal index at zero.
|
|
|
|
*_statep = JSVAL_ZERO;
|
2008-09-12 14:30:37 -07:00
|
|
|
|
2009-04-08 09:24:25 -07:00
|
|
|
// And set our length, if needed.
|
|
|
|
if (_idp)
|
2010-07-14 23:19:36 -07:00
|
|
|
*_idp = INT_TO_JSID(mParamCount);
|
2008-09-12 14:30:37 -07:00
|
|
|
|
2009-04-08 09:24:25 -07:00
|
|
|
break;
|
2009-03-26 13:33:35 -07:00
|
|
|
}
|
2009-04-08 09:24:25 -07:00
|
|
|
case JSENUMERATE_NEXT:
|
|
|
|
{
|
|
|
|
NS_ASSERTION(*_statep != JSVAL_NULL, "Internal state is null!");
|
|
|
|
|
|
|
|
// Make sure we are in range first.
|
|
|
|
PRUint32 index = static_cast<PRUint32>(JSVAL_TO_INT(*_statep));
|
|
|
|
if (index >= mParamCount) {
|
|
|
|
*_statep = JSVAL_NULL;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2009-03-26 13:33:35 -07:00
|
|
|
|
2009-04-08 09:24:25 -07:00
|
|
|
// Get the name of our parameter.
|
|
|
|
nsCAutoString name;
|
|
|
|
nsresult rv = mStatement->GetParameterName(index, name);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2008-09-12 14:30:37 -07:00
|
|
|
|
2009-04-08 09:24:25 -07:00
|
|
|
// But drop the first character, which is going to be a ':'.
|
|
|
|
JSString *jsname = ::JS_NewStringCopyN(aCtx, &(name.get()[1]),
|
|
|
|
name.Length() - 1);
|
|
|
|
NS_ENSURE_TRUE(jsname, NS_ERROR_OUT_OF_MEMORY);
|
2008-11-19 11:33:00 -08:00
|
|
|
|
2009-04-08 09:24:25 -07:00
|
|
|
// Set our name.
|
|
|
|
if (!::JS_ValueToId(aCtx, STRING_TO_JSVAL(jsname), _idp)) {
|
|
|
|
*_retval = PR_FALSE;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2008-09-12 14:30:37 -07:00
|
|
|
|
2009-04-08 09:24:25 -07:00
|
|
|
// And increment our index.
|
|
|
|
*_statep = INT_TO_JSVAL(++index);
|
2009-03-26 13:33:35 -07:00
|
|
|
|
2009-04-08 09:24:25 -07:00
|
|
|
break;
|
2008-09-12 14:30:37 -07:00
|
|
|
}
|
2009-04-08 09:24:25 -07:00
|
|
|
case JSENUMERATE_DESTROY:
|
|
|
|
{
|
|
|
|
// Clear our state.
|
|
|
|
*_statep = JSVAL_NULL;
|
2008-09-12 14:30:37 -07:00
|
|
|
|
2009-04-08 09:24:25 -07:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
StatementParams::NewResolve(nsIXPConnectWrappedNative *aWrapper,
|
|
|
|
JSContext *aCtx,
|
|
|
|
JSObject *aScopeObj,
|
2010-07-14 23:19:36 -07:00
|
|
|
jsid aId,
|
2009-04-08 09:24:25 -07:00
|
|
|
PRUint32 aFlags,
|
|
|
|
JSObject **_objp,
|
|
|
|
PRBool *_retval)
|
|
|
|
{
|
|
|
|
NS_ENSURE_TRUE(mStatement, NS_ERROR_NOT_INITIALIZED);
|
|
|
|
// We do not throw at any point after this unless our index is out of range
|
|
|
|
// because we want to allow the prototype chain to be checked for the
|
|
|
|
// property.
|
|
|
|
|
2010-05-06 11:56:39 -07:00
|
|
|
bool resolved = false;
|
|
|
|
PRBool ok = PR_TRUE;
|
2010-07-14 23:19:36 -07:00
|
|
|
if (JSID_IS_INT(aId)) {
|
|
|
|
PRUint32 idx = JSID_TO_INT(aId);
|
2009-04-08 09:24:25 -07:00
|
|
|
|
2009-06-11 13:18:58 -07:00
|
|
|
// Ensure that our index is within range. We do not care about the
|
|
|
|
// prototype chain being checked here.
|
2009-04-08 09:24:25 -07:00
|
|
|
if (idx >= mParamCount)
|
|
|
|
return NS_ERROR_INVALID_ARG;
|
2010-05-06 11:56:39 -07:00
|
|
|
|
|
|
|
ok = ::JS_DefineElement(aCtx, aScopeObj, idx, JSVAL_VOID, nsnull,
|
2009-09-24 14:33:14 -07:00
|
|
|
nsnull, JSPROP_ENUMERATE);
|
2010-05-06 11:56:39 -07:00
|
|
|
resolved = true;
|
2009-04-08 09:24:25 -07:00
|
|
|
}
|
2010-07-14 23:19:36 -07:00
|
|
|
else if (JSID_IS_STRING(aId)) {
|
|
|
|
JSString *str = JSID_TO_STRING(aId);
|
2010-12-03 00:24:17 -08:00
|
|
|
size_t nameLength;
|
|
|
|
const jschar *nameChars = JS_GetStringCharsAndLength(aCtx, str, &nameLength);
|
|
|
|
NS_ENSURE_TRUE(nameChars, NS_ERROR_UNEXPECTED);
|
2009-04-08 09:24:25 -07:00
|
|
|
|
|
|
|
// Check to see if there's a parameter with this name, and if not, let
|
|
|
|
// the rest of the prototype chain be checked.
|
2009-08-09 13:30:38 -07:00
|
|
|
NS_ConvertUTF16toUTF8 name(reinterpret_cast<const PRUnichar *>(nameChars),
|
|
|
|
nameLength);
|
2010-05-06 11:56:39 -07:00
|
|
|
PRUint32 idx;
|
2009-04-08 09:24:25 -07:00
|
|
|
nsresult rv = mStatement->GetParameterIndex(name, &idx);
|
2010-05-06 11:56:39 -07:00
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
|
|
ok = ::JS_DefineUCProperty(aCtx, aScopeObj, nameChars, nameLength,
|
2009-09-24 14:33:14 -07:00
|
|
|
JSVAL_VOID, nsnull, nsnull, JSPROP_ENUMERATE);
|
2010-05-06 11:56:39 -07:00
|
|
|
resolved = true;
|
2009-06-11 13:18:58 -07:00
|
|
|
}
|
2009-04-08 09:24:25 -07:00
|
|
|
}
|
2008-09-12 14:30:37 -07:00
|
|
|
|
2010-05-06 11:56:39 -07:00
|
|
|
*_retval = ok;
|
|
|
|
*_objp = resolved && ok ? aScopeObj : nsnull;
|
2009-04-08 09:24:25 -07:00
|
|
|
return NS_OK;
|
2008-09-12 14:30:37 -07:00
|
|
|
}
|
|
|
|
|
2009-04-08 09:24:25 -07:00
|
|
|
} // namespace storage
|
|
|
|
} // namespace mozilla
|