mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-26 05:11:03 +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)
159 lines
6.0 KiB
Plaintext
159 lines
6.0 KiB
Plaintext
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
* vim: sw=2 ts=2 sts=2 et
|
|
* 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 "nsISupports.idl"
|
|
#include "mozIStorageBindingParams.idl"
|
|
|
|
interface mozIStorageConnection;
|
|
interface mozIStorageStatementCallback;
|
|
interface mozIStoragePendingStatement;
|
|
interface mozIStorageBindingParams;
|
|
interface mozIStorageBindingParamsArray;
|
|
|
|
/**
|
|
* The base interface for both pure asynchronous storage statements
|
|
* (mozIStorageAsyncStatement) and 'classic' storage statements
|
|
* (mozIStorageStatement) that can be used for both synchronous and asynchronous
|
|
* purposes.
|
|
*/
|
|
[scriptable, uuid(16ca67aa-1325-43e2-aac7-859afd1590b2)]
|
|
interface mozIStorageBaseStatement : mozIStorageBindingParams {
|
|
/**
|
|
* Finalizes a statement so you can successfully close a database connection.
|
|
* Once a statement has been finalized it can no longer be used for any
|
|
* purpose.
|
|
*
|
|
* Statements are implicitly finalized when their reference counts hits zero.
|
|
* If you are a native (C++) caller this is accomplished by setting all of
|
|
* your nsCOMPtr instances to be NULL. If you are operating from JavaScript
|
|
* code then you cannot rely on this behavior because of the involvement of
|
|
* garbage collection.
|
|
*
|
|
* When finalizing an asynchronous statement you do not need to worry about
|
|
* whether the statement has actually been executed by the asynchronous
|
|
* thread; you just need to call finalize after your last call to executeAsync
|
|
* involving the statement. However, you do need to use asyncClose instead of
|
|
* close on the connection if any statements have been used asynchronously.
|
|
*/
|
|
void finalize();
|
|
|
|
/**
|
|
* Bind the given value at the given numeric index.
|
|
*
|
|
* @param aParamIndex
|
|
* 0-based index, 0 corresponding to the first numbered argument or
|
|
* "?1".
|
|
* @param aValue
|
|
* Argument value.
|
|
* @param aValueSize
|
|
* Length of aValue in bytes.
|
|
* @{
|
|
*/
|
|
[deprecated] void bindUTF8StringParameter(in unsigned long aParamIndex,
|
|
in AUTF8String aValue);
|
|
[deprecated] void bindStringParameter(in unsigned long aParamIndex,
|
|
in AString aValue);
|
|
[deprecated] void bindDoubleParameter(in unsigned long aParamIndex,
|
|
in double aValue);
|
|
[deprecated] void bindInt32Parameter(in unsigned long aParamIndex,
|
|
in long aValue);
|
|
[deprecated] void bindInt64Parameter(in unsigned long aParamIndex,
|
|
in long long aValue);
|
|
[deprecated] void bindNullParameter(in unsigned long aParamIndex);
|
|
[deprecated] void bindBlobParameter(
|
|
in unsigned long aParamIndex,
|
|
[array,const,size_is(aValueSize)] in octet aValue,
|
|
in unsigned long aValueSize);
|
|
[deprecated] void bindStringAsBlobParameter(
|
|
in unsigned long aParamIndex,
|
|
in AString aValue);
|
|
[deprecated] void bindUTF8StringAsBlobParameter(
|
|
in unsigned long aParamIndex,
|
|
in AUTF8String aValue);
|
|
[deprecated] void bindAdoptedBlobParameter(
|
|
in unsigned long aParamIndex,
|
|
[array,size_is(aValueSize)] in octet aValue,
|
|
in unsigned long aValueSize);
|
|
/**@}*/
|
|
|
|
/**
|
|
* Binds the array of parameters to the statement. When executeAsync is
|
|
* called, all the parameters in aParameters are bound and then executed.
|
|
*
|
|
* @param aParameters
|
|
* The array of parameters to bind to the statement upon execution.
|
|
*
|
|
* @note This is only works on statements being used asynchronously.
|
|
*/
|
|
void bindParameters(in mozIStorageBindingParamsArray aParameters);
|
|
|
|
/**
|
|
* Creates a new mozIStorageBindingParamsArray that can be used to bind
|
|
* multiple sets of data to a statement with bindParameters.
|
|
*
|
|
* @return a mozIStorageBindingParamsArray that multiple sets of parameters
|
|
* can be bound to.
|
|
*
|
|
* @note This is only useful for statements being used asynchronously.
|
|
*/
|
|
mozIStorageBindingParamsArray newBindingParamsArray();
|
|
|
|
/**
|
|
* Execute a query asynchronously using any currently bound parameters. This
|
|
* statement can be reused immediately, and reset does not need to be called.
|
|
*
|
|
* @note If you have any custom defined functions, they must be re-entrant
|
|
* since they can be called on multiple threads.
|
|
*
|
|
* @param aCallback [optional]
|
|
* The callback object that will be notified of progress, errors, and
|
|
* completion.
|
|
* @return an object that can be used to cancel the statements execution.
|
|
*/
|
|
mozIStoragePendingStatement executeAsync(
|
|
[optional] in mozIStorageStatementCallback aCallback
|
|
);
|
|
|
|
/**
|
|
* The statement is not usable, either because it failed to initialize or
|
|
* was explicitly finalized.
|
|
*/
|
|
const long MOZ_STORAGE_STATEMENT_INVALID = 0;
|
|
/**
|
|
* The statement is usable.
|
|
*/
|
|
const long MOZ_STORAGE_STATEMENT_READY = 1;
|
|
/**
|
|
* Indicates that the statement is executing and the row getters may be used.
|
|
*
|
|
* @note This is only relevant for mozIStorageStatement instances being used
|
|
* in a synchronous fashion.
|
|
*/
|
|
const long MOZ_STORAGE_STATEMENT_EXECUTING = 2;
|
|
|
|
/**
|
|
* Find out whether the statement is usable (has not been finalized).
|
|
*/
|
|
readonly attribute long state;
|
|
|
|
/**
|
|
* Escape a string for SQL LIKE search.
|
|
*
|
|
* @note Consumers will have to use same escape char when doing statements
|
|
* such as: ...LIKE '?1' ESCAPE '/'...
|
|
*
|
|
* @param aValue
|
|
* The string to escape for SQL LIKE.
|
|
* @param aEscapeChar
|
|
* The escape character.
|
|
* @return an AString of an escaped version of aValue
|
|
* (%, _ and the escape char are escaped with the escape char)
|
|
* For example, we will convert "foo/bar_baz%20cheese"
|
|
* into "foo//bar/_baz/%20cheese" (if the escape char is '/').
|
|
*/
|
|
AString escapeStringForLIKE(in AString aValue, in wchar aEscapeChar);
|
|
};
|