mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-29 18:53:15 +00:00
13b1aeb09f
- Bug 1137653: Correct the shape of the data object sent over if there are are crashes or the packet is malformed; r=jgriffin (d05804fe4)
- Bug 1121577 - Unset pref at delete_session, r=dburns (d2cefee52)
- Bug 1144907 - Restore previous context after calling marionette's gather_debug. r=davehunt (2d35526d2)
- Bug 1135846 - Expose marionette's actions code to chrome scope where applicable. r=dburns (2c91389b5)
- Bug 1118313 - newSession looks for non-conforming session_id property on Command. r=dburns (d72f256ec)
- Bug 1107706: Part 1: Change context from strings to enum (d4936c869)
- Bug 1107706: Part 2: Add error module and WebDriver error objects (95a58e4fa)
- Bug 1107706: Part 3: Add a command processor to Marionette (4ed444206)
- Bug 1107706: Part 4: Add dispatching mechanism to encapsulate connection (5a0cf4bfa)
- Bug 1107706: Part 5: Refactor Marionette chrome/content communication (a110867e3)
- Bug 1107706: Part 6: Make SpecialPowersError a prototypal Error (bebfc4e13)
- Bug 1107706: Part 7: Add timeout test for async scripts (795921b56)
- Bug 1107706: Part 8: Adapt emulator callbacks (4f0ec4ea3)
- Bug 1165395 Test Cache API after QuotaManager reset. r=janv (27ffd1273)
- Bug 1154325 P1 Add convenience routines to bind and get Blobs as strings. r=asuth (df1f9930a)
- Bug 1154325 P2 Use Blobs for CacheStorage keys to avoid encoding issues. r=ehsan (625588969)
- Bug 1179063 - Cleanup: Rename scopal back to scopeStmt. (r=me) (eaa5d8e3a)
- pointer style (39588e254)
- pointer style (7be6abefc)
- Bug 1162342 Enable sqlite WAL transactions in Cache API. r=ehsan (60a767033)
- Bug 1130452 - Remove support for the prefixMatch option in the service worker cache code; r=bkelly,baku (48d4d62f2)
- Bug 1166577 Use named sqlite params in Cache API code. r=ehsan (a0cbc5674)
- Bug 1166038 De-duplicate security info stored in the Cache API. r=ehsan (cdb8e8396)
- Bug 1166911 Modify Cache API sqlite code to use IS NULL literal when comparing an empty key. r=ehsan (a893706bf)
- Bug 1164620 - Part 1: Remove instances of #ifdef PR_LOGGING in various places. r=froydnj (69f3becd3)
- Bug 1161684 - Allow JAR channels to be intercepted by service workers. r=jdm (292f83299)
- Bug 1146169 - Check mChannel for null-ness in nsIInterceptedChannel::SetSecurityInfo(); r=jdm (9ed238664)
- Bug 1168208 - Refactor the existing logic for syncing the security info between Response and channel objects into a new helper class; r=nsm,jdm,bkelly (ea8852934)
- pointer style (b6ada460f)
- Bug 1163423 - Introduce JS_HasOwnProperty. r=bhackett (c189e58f0)
- pointer style (4693171b0)
- Bug 1163423 - Use JS_HasOwnProperty in WrapperAnswer::RecvHasOwn. r=billm (5029c2787)
- Bug 1168152 P1 Use a smaller sqlite page size and a growth increment in Cache. r=ehsan (9ad7f999f)
- Bug 1120501 P1 Make it easier to use Promise::All() from C++ code. r=nsm (95d1d5e2f)
- Bug 1120501 P2 Move Cache Add/AddAll logic to child process. r=ehsan,smaug (c71f9c49b)
- Bug 1168152 P2 Use a wrapper mozIStorageConnection for shared Cache connections. r=ehsan (f930635ac)
- Bug 1168152 P3 Perform incremental vacuum at tail end of Cache db connections. r=ehsan (df76df80c)
- Bug 1168152 P4 Add a test to verify Cache incremental vacuum works. r=ehsan (320d50436)
- Bug 1168152 P5 Follow-up to use 32kb growth size as intended in previous patches. r=me (92e2d3f27)
- Bug 1144236 - Add tests for the ignoreMethod match mode in DOM cache; r=bkelly (795a31d3c)
- Bug 1150001 - Cache API should not return Response body when matching Request with HEAD method. r=bkelly (690927f85)
318 lines
9.6 KiB
Plaintext
318 lines
9.6 KiB
Plaintext
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
* vim: sw=2 ts=2 sts=2 expandtab
|
|
* 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 "mozIStorageBaseStatement.idl"
|
|
%{C++
|
|
#include "mozilla/DebugOnly.h"
|
|
%}
|
|
|
|
[ptr] native octetPtr(uint8_t);
|
|
|
|
/**
|
|
* A SQL statement that can be used for both synchronous and asynchronous
|
|
* purposes.
|
|
*/
|
|
[scriptable, uuid(5f567c35-6c32-4140-828c-683ea49cfd3a)]
|
|
interface mozIStorageStatement : mozIStorageBaseStatement {
|
|
/**
|
|
* Create a clone of this statement, by initializing a new statement
|
|
* with the same connection and same SQL statement as this one. It
|
|
* does not preserve statement state; that is, if a statement is
|
|
* being executed when it is cloned, the new statement will not be
|
|
* executing.
|
|
*/
|
|
mozIStorageStatement clone();
|
|
|
|
/*
|
|
* Number of parameters
|
|
*/
|
|
readonly attribute unsigned long parameterCount;
|
|
|
|
/**
|
|
* Name of nth parameter, if given
|
|
*/
|
|
AUTF8String getParameterName(in unsigned long aParamIndex);
|
|
|
|
/**
|
|
* Returns the index of the named parameter.
|
|
*
|
|
* @param aName
|
|
* The name of the parameter you want the index for. This does not
|
|
* include the leading ':'.
|
|
* @return the index of the named parameter.
|
|
*/
|
|
unsigned long getParameterIndex(in AUTF8String aName);
|
|
|
|
/**
|
|
* Number of columns returned
|
|
*/
|
|
readonly attribute unsigned long columnCount;
|
|
|
|
/**
|
|
* Name of nth column
|
|
*/
|
|
AUTF8String getColumnName(in unsigned long aColumnIndex);
|
|
|
|
/**
|
|
* Obtains the index of the column with the specified name.
|
|
*
|
|
* @param aName
|
|
* The name of the column.
|
|
* @return The index of the column with the specified name.
|
|
*/
|
|
unsigned long getColumnIndex(in AUTF8String aName);
|
|
|
|
/**
|
|
* Obtains the declared column type of a prepared statement.
|
|
*
|
|
* @param aParamIndex
|
|
* The zero-based index of the column who's declared type we are
|
|
* interested in.
|
|
* @return the declared index type.
|
|
*/
|
|
AUTF8String getColumnDecltype(in unsigned long aParamIndex);
|
|
|
|
/**
|
|
* Reset parameters/statement execution
|
|
*/
|
|
void reset();
|
|
|
|
/**
|
|
* Execute the query, ignoring any results. This is accomplished by
|
|
* calling executeStep() once, and then calling reset().
|
|
*
|
|
* Error and last insert info, etc. are available from
|
|
* the mozStorageConnection.
|
|
*/
|
|
void execute();
|
|
|
|
/**
|
|
* Execute a query, using any currently-bound parameters. Reset
|
|
* must be called on the statement after the last call of
|
|
* executeStep.
|
|
*
|
|
* @return a boolean indicating whether there are more rows or not;
|
|
* row data may be accessed using mozIStorageValueArray methods on
|
|
* the statement.
|
|
*/
|
|
boolean executeStep();
|
|
|
|
/**
|
|
* Execute a query, using any currently-bound parameters. Reset is called
|
|
* when no more data is returned. This method is only available to JavaScript
|
|
* consumers.
|
|
*
|
|
* @deprecated As of Mozilla 1.9.2 in favor of executeStep().
|
|
*
|
|
* @return a boolean indicating whether there are more rows or not.
|
|
*
|
|
* [deprecated] boolean step();
|
|
*/
|
|
|
|
/**
|
|
* Obtains the current list of named parameters, which are settable. This
|
|
* property is only available to JavaScript consumers.
|
|
*
|
|
* readonly attribute mozIStorageStatementParams params;
|
|
*/
|
|
|
|
/**
|
|
* Obtains the current row, with access to all the data members by name. This
|
|
* property is only available to JavaScript consumers.
|
|
*
|
|
* readonly attribute mozIStorageStatementRow row;
|
|
*/
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
//// Copied contents of mozIStorageValueArray
|
|
|
|
/**
|
|
* These type values are returned by getTypeOfIndex
|
|
* to indicate what type of value is present at
|
|
* a given column.
|
|
*/
|
|
const long VALUE_TYPE_NULL = 0;
|
|
const long VALUE_TYPE_INTEGER = 1;
|
|
const long VALUE_TYPE_FLOAT = 2;
|
|
const long VALUE_TYPE_TEXT = 3;
|
|
const long VALUE_TYPE_BLOB = 4;
|
|
|
|
/**
|
|
* The number of entries in the array (each corresponding to a column in the
|
|
* database row)
|
|
*/
|
|
readonly attribute unsigned long numEntries;
|
|
|
|
/**
|
|
* Indicate the data type of the current result row for the the given column.
|
|
* SQLite will perform type conversion if you ask for a value as a different
|
|
* type than it is stored as.
|
|
*
|
|
* @param aIndex
|
|
* 0-based column index.
|
|
* @return The type of the value at the given column index; one of
|
|
* VALUE_TYPE_NULL, VALUE_TYPE_INTEGER, VALUE_TYPE_FLOAT,
|
|
* VALUE_TYPE_TEXT, VALUE_TYPE_BLOB.
|
|
*/
|
|
long getTypeOfIndex(in unsigned long aIndex);
|
|
|
|
/**
|
|
* Retrieve the contents of a column from the current result row as an
|
|
* integer.
|
|
*
|
|
* @param aIndex
|
|
* 0-based colummn index.
|
|
* @return Column value interpreted as an integer per type conversion rules.
|
|
* @{
|
|
*/
|
|
long getInt32(in unsigned long aIndex);
|
|
long long getInt64(in unsigned long aIndex);
|
|
/** @} */
|
|
/**
|
|
* Retrieve the contents of a column from the current result row as a
|
|
* floating point double.
|
|
*
|
|
* @param aIndex
|
|
* 0-based colummn index.
|
|
* @return Column value interpreted as a double per type conversion rules.
|
|
*/
|
|
double getDouble(in unsigned long aIndex);
|
|
/**
|
|
* Retrieve the contents of a column from the current result row as a
|
|
* string.
|
|
*
|
|
* @param aIndex
|
|
* 0-based colummn index.
|
|
* @return The value for the result column interpreted as a string. If the
|
|
* stored value was NULL, you will get an empty string with IsVoid set
|
|
* to distinguish it from an explicitly set empty string.
|
|
* @{
|
|
*/
|
|
AUTF8String getUTF8String(in unsigned long aIndex);
|
|
AString getString(in unsigned long aIndex);
|
|
/** @} */
|
|
|
|
/**
|
|
* Retrieve the contents of a column from the current result row as a
|
|
* blob.
|
|
*
|
|
* @param aIndex
|
|
* 0-based colummn index.
|
|
* @param[out] aDataSize
|
|
* The number of bytes in the blob.
|
|
* @param[out] aData
|
|
* The contents of the BLOB. This will be NULL if aDataSize == 0.
|
|
*/
|
|
void getBlob(in unsigned long aIndex, out unsigned long aDataSize, [array,size_is(aDataSize)] out octet aData);
|
|
|
|
/**
|
|
* Retrieve the contents of a Blob column from the current result row as a
|
|
* string.
|
|
*
|
|
* @param aIndex
|
|
* 0-based colummn index.
|
|
* @return The value for the result Blob column interpreted as a String.
|
|
* No encoding conversion is performed.
|
|
*/
|
|
AString getBlobAsString(in unsigned long aIndex);
|
|
|
|
/**
|
|
* Retrieve the contents of a Blob column from the current result row as a
|
|
* UTF8 string.
|
|
*
|
|
* @param aIndex
|
|
* 0-based colummn index.
|
|
* @return The value for the result Blob column interpreted as a UTF8 String.
|
|
* No encoding conversion is performed.
|
|
*/
|
|
AUTF8String getBlobAsUTF8String(in unsigned long aIndex);
|
|
|
|
/**
|
|
* Check whether the given column in the current result row is NULL.
|
|
*
|
|
* @param aIndex
|
|
* 0-based colummn index.
|
|
* @return true if the value for the result column is null.
|
|
*/
|
|
boolean getIsNull(in unsigned long aIndex);
|
|
|
|
/**
|
|
* Returns a shared string pointer
|
|
*/
|
|
[noscript] void getSharedUTF8String(in unsigned long aIndex, out unsigned long aLength, [shared,retval] out string aResult);
|
|
[noscript] void getSharedString(in unsigned long aIndex, out unsigned long aLength, [shared,retval] out wstring aResult);
|
|
[noscript] void getSharedBlob(in unsigned long aIndex, out unsigned long aLength, [shared,retval] out octetPtr aResult);
|
|
|
|
%{C++
|
|
/**
|
|
* Getters for native code that return their values as
|
|
* the return type, for convenience and sanity.
|
|
*
|
|
* Not virtual; no vtable bloat.
|
|
*/
|
|
|
|
inline int32_t AsInt32(uint32_t idx) {
|
|
int32_t v = 0;
|
|
mozilla::DebugOnly<nsresult> rv = GetInt32(idx, &v);
|
|
MOZ_ASSERT(NS_SUCCEEDED(rv) || IsNull(idx),
|
|
"Getting value failed, wrong column index?");
|
|
return v;
|
|
}
|
|
|
|
inline int64_t AsInt64(uint32_t idx) {
|
|
int64_t v = 0;
|
|
mozilla::DebugOnly<nsresult> rv = GetInt64(idx, &v);
|
|
MOZ_ASSERT(NS_SUCCEEDED(rv) || IsNull(idx),
|
|
"Getting value failed, wrong column index?");
|
|
return v;
|
|
}
|
|
|
|
inline double AsDouble(uint32_t idx) {
|
|
double v = 0.0;
|
|
mozilla::DebugOnly<nsresult> rv = GetDouble(idx, &v);
|
|
MOZ_ASSERT(NS_SUCCEEDED(rv) || IsNull(idx),
|
|
"Getting value failed, wrong column index?");
|
|
return v;
|
|
}
|
|
|
|
inline const char* AsSharedUTF8String(uint32_t idx, uint32_t *len) {
|
|
const char *str = nullptr;
|
|
*len = 0;
|
|
mozilla::DebugOnly<nsresult> rv = GetSharedUTF8String(idx, len, &str);
|
|
MOZ_ASSERT(NS_SUCCEEDED(rv) || IsNull(idx),
|
|
"Getting value failed, wrong column index?");
|
|
return str;
|
|
}
|
|
|
|
inline const char16_t* AsSharedWString(uint32_t idx, uint32_t *len) {
|
|
const char16_t *str = nullptr;
|
|
*len = 0;
|
|
mozilla::DebugOnly<nsresult> rv = GetSharedString(idx, len, &str);
|
|
MOZ_ASSERT(NS_SUCCEEDED(rv) || IsNull(idx),
|
|
"Getting value failed, wrong column index?");
|
|
return str;
|
|
}
|
|
|
|
inline const uint8_t* AsSharedBlob(uint32_t idx, uint32_t *len) {
|
|
const uint8_t *blob = nullptr;
|
|
*len = 0;
|
|
mozilla::DebugOnly<nsresult> rv = GetSharedBlob(idx, len, &blob);
|
|
MOZ_ASSERT(NS_SUCCEEDED(rv) || IsNull(idx),
|
|
"Getting value failed, wrong column index?");
|
|
return blob;
|
|
}
|
|
|
|
inline bool IsNull(uint32_t idx) {
|
|
bool b = false;
|
|
mozilla::DebugOnly<nsresult> rv = GetIsNull(idx, &b);
|
|
MOZ_ASSERT(NS_SUCCEEDED(rv),
|
|
"Getting value failed, wrong column index?");
|
|
return b;
|
|
}
|
|
|
|
%}
|
|
};
|