2010-08-12 19:37:44 +00:00
|
|
|
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
2012-05-21 11:12:37 +00: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/. */
|
2010-08-12 19:37:44 +00:00
|
|
|
|
|
|
|
#include "nsIInputStream.idl"
|
|
|
|
#include "nsISupports.idl"
|
|
|
|
#include "nsIObserver.idl"
|
|
|
|
#include "nsIObjectOutputStream.idl"
|
|
|
|
|
2012-10-11 08:17:15 +00:00
|
|
|
[uuid(25957820-90a1-428c-8739-b0845d3cc534)]
|
2010-08-12 19:37:44 +00:00
|
|
|
interface nsIStartupCache : nsISupports
|
|
|
|
{
|
|
|
|
|
|
|
|
/** This interface is provided for testing purposes only, basically
|
|
|
|
* just to solve link vagaries. See docs in StartupCache.h
|
|
|
|
* GetBuffer, PutBuffer, and InvalidateCache act as described
|
|
|
|
* in that file. */
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t getBuffer(in string aID, out charPtr aBuffer);
|
2011-12-29 20:06:00 +00:00
|
|
|
void putBuffer(in string aID, in string aBuffer,
|
2012-08-22 15:56:38 +00:00
|
|
|
in uint32_t aLength);
|
2010-08-12 19:37:44 +00:00
|
|
|
|
|
|
|
void invalidateCache();
|
|
|
|
|
2012-10-11 08:17:15 +00:00
|
|
|
void ignoreDiskCache();
|
|
|
|
|
2010-08-12 19:37:44 +00:00
|
|
|
/** In debug builds, wraps this object output stream with a stream that will
|
|
|
|
* detect and prevent the write of a multiply-referenced non-singleton object
|
|
|
|
* during serialization. In non-debug, returns an add-ref'd pointer to
|
|
|
|
* original stream, unwrapped. */
|
|
|
|
nsIObjectOutputStream getDebugObjectOutputStream(in nsIObjectOutputStream aStream);
|
|
|
|
|
|
|
|
/* Allows clients to check whether the one-time writeout after startup
|
|
|
|
* has finished yet, and also to set this variable as needed (so test
|
|
|
|
* code can fire mulitple startup writes if needed).
|
|
|
|
*/
|
|
|
|
boolean startupWriteComplete();
|
|
|
|
void resetStartupWriteTimer();
|
|
|
|
|
2012-02-22 19:07:18 +00:00
|
|
|
/* Instruct clients to always post cache ages to Telemetry, even in
|
|
|
|
cases where it would not normally make sense. */
|
|
|
|
void recordAgesAlways();
|
|
|
|
|
2010-08-12 19:37:44 +00:00
|
|
|
/* Allows clients to simulate the behavior of ObserverService. */
|
|
|
|
readonly attribute nsIObserver observer;
|
|
|
|
};
|
|
|
|
|