2009-04-20 19:01:51 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
* vim: sw=2 ts=2 et lcs=trail\:.,tab\:>~ :
|
2012-05-21 15:12:37 +04: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/. */
|
2009-04-20 19:01:51 +04:00
|
|
|
|
|
|
|
#include "nsError.h"
|
|
|
|
#include "nsMemory.h"
|
|
|
|
#include "nsString.h"
|
|
|
|
|
2009-05-09 04:29:56 +04:00
|
|
|
#include "mozStoragePrivateHelpers.h"
|
2009-04-20 19:01:51 +04:00
|
|
|
#include "mozStorageArgValueArray.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace storage {
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//// ArgValueArray
|
|
|
|
|
2019-05-01 11:47:10 +03:00
|
|
|
ArgValueArray::ArgValueArray(int32_t aArgc, sqlite3_value** aArgv)
|
2009-04-20 19:01:51 +04:00
|
|
|
: mArgc(aArgc), mArgv(aArgv) {}
|
|
|
|
|
|
|
|
NS_IMPL_ISUPPORTS(ArgValueArray, mozIStorageValueArray)
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//// mozIStorageValueArray
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2019-05-01 11:47:10 +03:00
|
|
|
ArgValueArray::GetNumEntries(uint32_t* _size) {
|
2009-04-20 19:01:51 +04:00
|
|
|
*_size = mArgc;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2019-05-01 11:47:10 +03:00
|
|
|
ArgValueArray::GetTypeOfIndex(uint32_t aIndex, int32_t* _type) {
|
2009-04-20 19:01:51 +04:00
|
|
|
ENSURE_INDEX_VALUE(aIndex, mArgc);
|
|
|
|
|
|
|
|
int t = ::sqlite3_value_type(mArgv[aIndex]);
|
|
|
|
switch (t) {
|
|
|
|
case SQLITE_INTEGER:
|
|
|
|
*_type = VALUE_TYPE_INTEGER;
|
|
|
|
break;
|
|
|
|
case SQLITE_FLOAT:
|
|
|
|
*_type = VALUE_TYPE_FLOAT;
|
|
|
|
break;
|
|
|
|
case SQLITE_TEXT:
|
|
|
|
*_type = VALUE_TYPE_TEXT;
|
|
|
|
break;
|
|
|
|
case SQLITE_BLOB:
|
|
|
|
*_type = VALUE_TYPE_BLOB;
|
|
|
|
break;
|
|
|
|
case SQLITE_NULL:
|
|
|
|
*_type = VALUE_TYPE_NULL;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2019-05-01 11:47:10 +03:00
|
|
|
ArgValueArray::GetInt32(uint32_t aIndex, int32_t* _value) {
|
2009-04-20 19:01:51 +04:00
|
|
|
ENSURE_INDEX_VALUE(aIndex, mArgc);
|
|
|
|
|
|
|
|
*_value = ::sqlite3_value_int(mArgv[aIndex]);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2019-05-01 11:47:10 +03:00
|
|
|
ArgValueArray::GetInt64(uint32_t aIndex, int64_t* _value) {
|
2009-04-20 19:01:51 +04:00
|
|
|
ENSURE_INDEX_VALUE(aIndex, mArgc);
|
|
|
|
|
|
|
|
*_value = ::sqlite3_value_int64(mArgv[aIndex]);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2019-05-01 11:47:10 +03:00
|
|
|
ArgValueArray::GetDouble(uint32_t aIndex, double* _value) {
|
2009-04-20 19:01:51 +04:00
|
|
|
ENSURE_INDEX_VALUE(aIndex, mArgc);
|
|
|
|
|
|
|
|
*_value = ::sqlite3_value_double(mArgv[aIndex]);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2019-05-01 11:47:10 +03:00
|
|
|
ArgValueArray::GetUTF8String(uint32_t aIndex, nsACString& _value) {
|
2009-04-20 19:01:51 +04:00
|
|
|
ENSURE_INDEX_VALUE(aIndex, mArgc);
|
|
|
|
|
|
|
|
if (::sqlite3_value_type(mArgv[aIndex]) == SQLITE_NULL) {
|
|
|
|
// NULL columns should have IsVoid set to distinguish them from an empty
|
|
|
|
// string.
|
2011-10-17 18:59:28 +04:00
|
|
|
_value.SetIsVoid(true);
|
2009-04-20 19:01:51 +04:00
|
|
|
} else {
|
|
|
|
_value.Assign(
|
2019-05-01 11:47:10 +03:00
|
|
|
reinterpret_cast<const char*>(::sqlite3_value_text(mArgv[aIndex])),
|
2009-04-20 19:01:51 +04:00
|
|
|
::sqlite3_value_bytes(mArgv[aIndex]));
|
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2019-05-01 11:47:10 +03:00
|
|
|
ArgValueArray::GetString(uint32_t aIndex, nsAString& _value) {
|
2009-04-20 19:01:51 +04:00
|
|
|
ENSURE_INDEX_VALUE(aIndex, mArgc);
|
|
|
|
|
|
|
|
if (::sqlite3_value_type(mArgv[aIndex]) == SQLITE_NULL) {
|
|
|
|
// NULL columns should have IsVoid set to distinguish them from an empty
|
|
|
|
// string.
|
2011-10-17 18:59:28 +04:00
|
|
|
_value.SetIsVoid(true);
|
2009-04-20 19:01:51 +04:00
|
|
|
} else {
|
2019-05-01 11:47:10 +03:00
|
|
|
const char16_t* string =
|
|
|
|
static_cast<const char16_t*>(::sqlite3_value_text16(mArgv[aIndex]));
|
Bug 1543295 - Pass the text length when creating an `nsString` from a SQLite text result. r=mak
This commit updates mozStorage to always:
* Pass the length, using sqlite3_{column, value}_bytes16, when
creating an nsDependentString from a pointer.
* Call sqlite3_{column, value}_bytes{16} after
sqlite3_{column, value}_{text, blob, text16}, per the
recommendation in https://www.sqlite.org/c3ref/column_blob.html.
Some callers did this before, or in unclear order, since C++ doesn't
specify one for evaluating function arguments.
* Pass the byte length to sqlite3_result_text16.
Differential Revision: https://phabricator.services.mozilla.com/D26848
--HG--
extra : moz-landing-system : lando
2019-04-11 06:19:39 +03:00
|
|
|
_value.Assign(string,
|
|
|
|
::sqlite3_value_bytes16(mArgv[aIndex]) / sizeof(char16_t));
|
2009-04-20 19:01:51 +04:00
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2019-05-01 11:47:10 +03:00
|
|
|
ArgValueArray::GetBlob(uint32_t aIndex, uint32_t* _size, uint8_t** _blob) {
|
2009-04-20 19:01:51 +04:00
|
|
|
ENSURE_INDEX_VALUE(aIndex, mArgc);
|
|
|
|
|
|
|
|
int size = ::sqlite3_value_bytes(mArgv[aIndex]);
|
2019-05-01 11:47:10 +03:00
|
|
|
void* blob = moz_xmemdup(::sqlite3_value_blob(mArgv[aIndex]), size);
|
|
|
|
*_blob = static_cast<uint8_t*>(blob);
|
2009-04-20 19:01:51 +04:00
|
|
|
*_size = size;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2015-04-29 19:03:15 +03:00
|
|
|
NS_IMETHODIMP
|
2019-05-01 11:47:10 +03:00
|
|
|
ArgValueArray::GetBlobAsString(uint32_t aIndex, nsAString& aValue) {
|
2015-04-29 19:03:15 +03:00
|
|
|
return DoGetBlobAsString(this, aIndex, aValue);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2019-05-01 11:47:10 +03:00
|
|
|
ArgValueArray::GetBlobAsUTF8String(uint32_t aIndex, nsACString& aValue) {
|
2015-04-29 19:03:15 +03:00
|
|
|
return DoGetBlobAsString(this, aIndex, aValue);
|
|
|
|
}
|
|
|
|
|
2009-04-20 19:01:51 +04:00
|
|
|
NS_IMETHODIMP
|
2019-05-01 11:47:10 +03:00
|
|
|
ArgValueArray::GetIsNull(uint32_t aIndex, bool* _isNull) {
|
2009-04-20 19:01:51 +04:00
|
|
|
// GetTypeOfIndex will check aIndex for us, so we don't have to.
|
2012-08-22 19:56:38 +04:00
|
|
|
int32_t type;
|
2009-04-20 19:01:51 +04:00
|
|
|
nsresult rv = GetTypeOfIndex(aIndex, &type);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
*_isNull = (type == VALUE_TYPE_NULL);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2019-05-01 11:47:10 +03:00
|
|
|
ArgValueArray::GetSharedUTF8String(uint32_t aIndex, uint32_t* _byteLength,
|
|
|
|
const char** _string) {
|
|
|
|
*_string = reinterpret_cast<const char*>(::sqlite3_value_text(mArgv[aIndex]));
|
Bug 1543295 - Pass the text length when creating an `nsString` from a SQLite text result. r=mak
This commit updates mozStorage to always:
* Pass the length, using sqlite3_{column, value}_bytes16, when
creating an nsDependentString from a pointer.
* Call sqlite3_{column, value}_bytes{16} after
sqlite3_{column, value}_{text, blob, text16}, per the
recommendation in https://www.sqlite.org/c3ref/column_blob.html.
Some callers did this before, or in unclear order, since C++ doesn't
specify one for evaluating function arguments.
* Pass the byte length to sqlite3_result_text16.
Differential Revision: https://phabricator.services.mozilla.com/D26848
--HG--
extra : moz-landing-system : lando
2019-04-11 06:19:39 +03:00
|
|
|
if (_byteLength) {
|
|
|
|
*_byteLength = ::sqlite3_value_bytes(mArgv[aIndex]);
|
|
|
|
}
|
2009-04-20 19:01:51 +04:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2019-05-01 11:47:10 +03:00
|
|
|
ArgValueArray::GetSharedString(uint32_t aIndex, uint32_t* _byteLength,
|
|
|
|
const char16_t** _string) {
|
2014-01-04 19:02:17 +04:00
|
|
|
*_string =
|
2019-05-01 11:47:10 +03:00
|
|
|
static_cast<const char16_t*>(::sqlite3_value_text16(mArgv[aIndex]));
|
Bug 1543295 - Pass the text length when creating an `nsString` from a SQLite text result. r=mak
This commit updates mozStorage to always:
* Pass the length, using sqlite3_{column, value}_bytes16, when
creating an nsDependentString from a pointer.
* Call sqlite3_{column, value}_bytes{16} after
sqlite3_{column, value}_{text, blob, text16}, per the
recommendation in https://www.sqlite.org/c3ref/column_blob.html.
Some callers did this before, or in unclear order, since C++ doesn't
specify one for evaluating function arguments.
* Pass the byte length to sqlite3_result_text16.
Differential Revision: https://phabricator.services.mozilla.com/D26848
--HG--
extra : moz-landing-system : lando
2019-04-11 06:19:39 +03:00
|
|
|
if (_byteLength) {
|
|
|
|
*_byteLength = ::sqlite3_value_bytes16(mArgv[aIndex]);
|
|
|
|
}
|
2009-04-20 19:01:51 +04:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2019-05-01 11:47:10 +03:00
|
|
|
ArgValueArray::GetSharedBlob(uint32_t aIndex, uint32_t* _byteLength,
|
|
|
|
const uint8_t** _blob) {
|
|
|
|
*_blob = static_cast<const uint8_t*>(::sqlite3_value_blob(mArgv[aIndex]));
|
Bug 1543295 - Pass the text length when creating an `nsString` from a SQLite text result. r=mak
This commit updates mozStorage to always:
* Pass the length, using sqlite3_{column, value}_bytes16, when
creating an nsDependentString from a pointer.
* Call sqlite3_{column, value}_bytes{16} after
sqlite3_{column, value}_{text, blob, text16}, per the
recommendation in https://www.sqlite.org/c3ref/column_blob.html.
Some callers did this before, or in unclear order, since C++ doesn't
specify one for evaluating function arguments.
* Pass the byte length to sqlite3_result_text16.
Differential Revision: https://phabricator.services.mozilla.com/D26848
--HG--
extra : moz-landing-system : lando
2019-04-11 06:19:39 +03:00
|
|
|
if (_byteLength) {
|
|
|
|
*_byteLength = ::sqlite3_value_bytes(mArgv[aIndex]);
|
|
|
|
}
|
2009-04-20 19:01:51 +04:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace storage
|
|
|
|
} // namespace mozilla
|