2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/* ***** 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 Mozilla FastLoad code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2001
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Brendan Eich <brendan@mozilla.org> (original author)
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either of 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 <string.h>
|
|
|
|
#include "prtypes.h"
|
|
|
|
#include "nscore.h"
|
|
|
|
#include "nsDebug.h"
|
|
|
|
#include "nsEnumeratorUtils.h"
|
|
|
|
#include "nsMemory.h"
|
|
|
|
#include "nsXPIDLString.h"
|
|
|
|
#include "nsString.h"
|
|
|
|
#include "nsReadableUtils.h"
|
|
|
|
|
|
|
|
#include "nsIComponentManager.h"
|
|
|
|
#include "nsIFile.h"
|
|
|
|
#include "nsILocalFile.h"
|
|
|
|
#include "nsISeekableStream.h"
|
|
|
|
#include "nsISerializable.h"
|
|
|
|
#include "nsIStreamBufferAccess.h"
|
|
|
|
#include "nsIClassInfo.h"
|
|
|
|
|
|
|
|
#include "nsBinaryStream.h"
|
|
|
|
#include "nsFastLoadFile.h"
|
|
|
|
#include "nsInt64.h"
|
2009-10-08 10:30:21 -07:00
|
|
|
#ifdef XP_UNIX
|
|
|
|
#include <sys/mman.h>
|
|
|
|
#endif
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#ifdef DEBUG_brendan
|
|
|
|
# define METERING
|
|
|
|
# define DEBUG_MUX
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef METERING
|
|
|
|
# define METER(x) x
|
|
|
|
#else
|
|
|
|
# define METER(x) /* nothing */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef DEBUG_MUX
|
|
|
|
# include <stdio.h>
|
|
|
|
# include <stdarg.h>
|
|
|
|
|
|
|
|
static void trace_mux(char mode, const char *format, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
static FILE *tfp;
|
|
|
|
if (!tfp) {
|
|
|
|
char tfn[16];
|
|
|
|
sprintf(tfn, "/tmp/mux.%ctrace", mode);
|
|
|
|
tfp = fopen(tfn, "w");
|
|
|
|
if (!tfp)
|
|
|
|
return;
|
|
|
|
setvbuf(tfp, NULL, _IOLBF, 0);
|
|
|
|
}
|
|
|
|
va_start(ap, format);
|
|
|
|
vfprintf(tfp, format, ap);
|
|
|
|
va_end(ap);
|
|
|
|
}
|
|
|
|
|
|
|
|
# define TRACE_MUX(args) trace_mux args
|
|
|
|
#else
|
|
|
|
# define TRACE_MUX(args) /* nothing */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Fletcher's 16-bit checksum, using 32-bit two's-complement arithmetic.
|
|
|
|
*/
|
|
|
|
#define FOLD_ONES_COMPLEMENT_CARRY(X) ((X) = ((X) & 0xffff) + ((X) >> 16))
|
|
|
|
#define ONES_COMPLEMENT_ACCUMULATE(X,Y) (X) += (Y); if ((X) & 0x80000000) \
|
|
|
|
FOLD_ONES_COMPLEMENT_CARRY(X)
|
|
|
|
#define FLETCHER_ACCUMULATE(A,B,U) ONES_COMPLEMENT_ACCUMULATE(A, U); \
|
|
|
|
ONES_COMPLEMENT_ACCUMULATE(B, A)
|
|
|
|
|
|
|
|
PRUint32
|
|
|
|
NS_AccumulateFastLoadChecksum(PRUint32 *aChecksum,
|
|
|
|
const PRUint8* aBuffer,
|
|
|
|
PRUint32 aLength,
|
|
|
|
PRBool aLastBuffer)
|
|
|
|
{
|
|
|
|
PRUint32 C = *aChecksum;
|
|
|
|
PRUint32 A = C & 0xffff;
|
|
|
|
PRUint32 B = C >> 16;
|
|
|
|
|
|
|
|
PRUint16 U = 0;
|
|
|
|
if (aLength >= 4) {
|
|
|
|
PRBool odd = PRWord(aBuffer) & 1;
|
|
|
|
switch (PRWord(aBuffer) & 3) {
|
|
|
|
case 3:
|
|
|
|
U = (aBuffer[0] << 8) | aBuffer[1];
|
|
|
|
FLETCHER_ACCUMULATE(A, B, U);
|
|
|
|
U = aBuffer[2];
|
|
|
|
aBuffer += 3;
|
|
|
|
aLength -= 3;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 2:
|
|
|
|
U = (aBuffer[0] << 8) | aBuffer[1];
|
|
|
|
FLETCHER_ACCUMULATE(A, B, U);
|
|
|
|
U = 0;
|
|
|
|
aBuffer += 2;
|
|
|
|
aLength -= 2;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 1:
|
|
|
|
U = *aBuffer++;
|
|
|
|
aLength--;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRUint32 W;
|
|
|
|
if (odd) {
|
|
|
|
while (aLength > 3) {
|
2007-07-08 00:08:04 -07:00
|
|
|
W = *reinterpret_cast<const PRUint32*>(aBuffer);
|
2007-03-22 10:30:00 -07:00
|
|
|
U <<= 8;
|
|
|
|
#ifdef IS_BIG_ENDIAN
|
|
|
|
U |= W >> 24;
|
|
|
|
FLETCHER_ACCUMULATE(A, B, U);
|
|
|
|
U = PRUint16(W >> 8);
|
|
|
|
FLETCHER_ACCUMULATE(A, B, U);
|
|
|
|
U = W & 0xff;
|
|
|
|
#else
|
|
|
|
U |= W & 0xff;
|
|
|
|
FLETCHER_ACCUMULATE(A, B, U);
|
|
|
|
U = PRUint16(W >> 8);
|
|
|
|
U = NS_SWAP16(U);
|
|
|
|
FLETCHER_ACCUMULATE(A, B, U);
|
|
|
|
U = W >> 24;
|
|
|
|
#endif
|
|
|
|
aBuffer += 4;
|
|
|
|
aLength -= 4;
|
|
|
|
}
|
|
|
|
aBuffer--; // we're odd, we didn't checksum the last byte
|
|
|
|
aLength++;
|
|
|
|
} else {
|
|
|
|
while (aLength > 3) {
|
2007-07-08 00:08:04 -07:00
|
|
|
W = *reinterpret_cast<const PRUint32*>(aBuffer);
|
2007-03-22 10:30:00 -07:00
|
|
|
#ifdef IS_BIG_ENDIAN
|
|
|
|
U = W >> 16;
|
|
|
|
FLETCHER_ACCUMULATE(A, B, U);
|
|
|
|
U = PRUint16(W);
|
|
|
|
FLETCHER_ACCUMULATE(A, B, U);
|
|
|
|
#else
|
|
|
|
U = NS_SWAP16(W);
|
|
|
|
FLETCHER_ACCUMULATE(A, B, U);
|
|
|
|
U = W >> 16;
|
|
|
|
U = NS_SWAP16(W);
|
|
|
|
FLETCHER_ACCUMULATE(A, B, U);
|
|
|
|
#endif
|
|
|
|
aBuffer += 4;
|
|
|
|
aLength -= 4;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (aLastBuffer) {
|
|
|
|
NS_ASSERTION(aLength <= 4, "aLength botch");
|
|
|
|
switch (aLength) {
|
|
|
|
case 4:
|
|
|
|
U = (aBuffer[0] << 8) | aBuffer[1];
|
|
|
|
FLETCHER_ACCUMULATE(A, B, U);
|
|
|
|
U = (aBuffer[2] << 8) | aBuffer[3];
|
|
|
|
FLETCHER_ACCUMULATE(A, B, U);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 3:
|
|
|
|
U = (aBuffer[0] << 8) | aBuffer[1];
|
|
|
|
FLETCHER_ACCUMULATE(A, B, U);
|
|
|
|
U = aBuffer[2];
|
|
|
|
FLETCHER_ACCUMULATE(A, B, U);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 2:
|
|
|
|
U = (aBuffer[0] << 8) | aBuffer[1];
|
|
|
|
FLETCHER_ACCUMULATE(A, B, U);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 1:
|
|
|
|
U = aBuffer[0];
|
|
|
|
FLETCHER_ACCUMULATE(A, B, U);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
aLength = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (A >> 16)
|
|
|
|
FOLD_ONES_COMPLEMENT_CARRY(A);
|
|
|
|
while (B >> 16)
|
|
|
|
FOLD_ONES_COMPLEMENT_CARRY(B);
|
|
|
|
|
|
|
|
*aChecksum = (B << 16) | A;
|
|
|
|
return aLength;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRUint32
|
|
|
|
NS_AddFastLoadChecksums(PRUint32 sum1, PRUint32 sum2, PRUint32 sum2ByteCount)
|
|
|
|
{
|
|
|
|
PRUint32 A1 = sum1 & 0xffff;
|
|
|
|
PRUint32 B1 = sum1 >> 16;
|
|
|
|
|
|
|
|
PRUint32 A2 = sum2 & 0xffff;
|
|
|
|
PRUint32 B2 = sum2 >> 16;
|
|
|
|
|
|
|
|
PRUint32 A = A1 + A2;
|
|
|
|
while (A >> 16)
|
|
|
|
FOLD_ONES_COMPLEMENT_CARRY(A);
|
|
|
|
|
|
|
|
PRUint32 B = B2;
|
|
|
|
for (PRUint32 n = (sum2ByteCount + 1) / 2; n != 0; n--)
|
|
|
|
ONES_COMPLEMENT_ACCUMULATE(B, B1);
|
|
|
|
while (B >> 16)
|
|
|
|
FOLD_ONES_COMPLEMENT_CARRY(B);
|
|
|
|
|
|
|
|
return (B << 16) | A;
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef FOLD_ONES_COMPLEMENT_CARRY
|
|
|
|
#undef ONES_COMPLEMENT_ACCUMULATE
|
|
|
|
#undef FLETCHER_ACCUMULATE
|
|
|
|
|
|
|
|
static const char magic[] = MFL_FILE_MAGIC;
|
|
|
|
|
|
|
|
// -------------------------- nsFastLoadFileReader --------------------------
|
|
|
|
|
|
|
|
nsID nsFastLoadFileReader::nsFastLoadFooter::gDummyID;
|
|
|
|
nsFastLoadFileReader::nsObjectMapEntry
|
|
|
|
nsFastLoadFileReader::nsFastLoadFooter::gDummySharpObjectEntry;
|
|
|
|
|
|
|
|
NS_IMPL_ISUPPORTS_INHERITED5(nsFastLoadFileReader,
|
|
|
|
nsBinaryInputStream,
|
|
|
|
nsIObjectInputStream,
|
|
|
|
nsIFastLoadFileControl,
|
|
|
|
nsIFastLoadReadControl,
|
|
|
|
nsISeekableStream,
|
|
|
|
nsIFastLoadFileReader)
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsFastLoadFileReader::ReadHeader(nsFastLoadHeader *aHeader)
|
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
PRUint32 bytesRead;
|
|
|
|
|
2007-07-08 00:08:04 -07:00
|
|
|
rv = Read(reinterpret_cast<char*>(aHeader), sizeof *aHeader, &bytesRead);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
if (bytesRead != sizeof *aHeader ||
|
|
|
|
memcmp(aHeader->mMagic, magic, MFL_FILE_MAGIC_SIZE)) {
|
|
|
|
return NS_ERROR_UNEXPECTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
aHeader->mChecksum = NS_SWAP32(aHeader->mChecksum);
|
|
|
|
aHeader->mVersion = NS_SWAP32(aHeader->mVersion);
|
|
|
|
aHeader->mFooterOffset = NS_SWAP32(aHeader->mFooterOffset);
|
|
|
|
aHeader->mFileSize = NS_SWAP32(aHeader->mFileSize);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
// nsIFastLoadFileControl methods:
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsFastLoadFileReader::GetChecksum(PRUint32 *aChecksum)
|
|
|
|
{
|
|
|
|
*aChecksum = mHeader.mChecksum;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct nsStringMapEntry : public PLDHashEntryHdr {
|
|
|
|
const char* mString; // key, must come first
|
|
|
|
nsISupports* mURI; // for SelectMuxedDocument return value
|
|
|
|
};
|
|
|
|
|
|
|
|
struct nsDocumentMapEntry : public nsStringMapEntry {
|
|
|
|
PRUint32 mInitialSegmentOffset; // offset of URI's first segment in file
|
|
|
|
};
|
|
|
|
|
|
|
|
struct nsDocumentMapReadEntry : public nsDocumentMapEntry {
|
|
|
|
PRUint32 mNextSegmentOffset; // offset of URI's next segment to read
|
|
|
|
PRUint32 mBytesLeft : 31, // bytes remaining in current segment
|
|
|
|
mNeedToSeek : 1; // flag to defer Seek from Select to
|
|
|
|
// Read, in case there is no Read before
|
|
|
|
// another entry is Selected (to improve
|
|
|
|
// input stream buffer utilization)
|
|
|
|
PRInt64 mSaveOffset; // in case demux schedule differs from
|
|
|
|
// mux schedule
|
|
|
|
};
|
|
|
|
|
2008-10-10 08:04:34 -07:00
|
|
|
static void
|
2007-03-22 10:30:00 -07:00
|
|
|
strmap_ClearEntry(PLDHashTable *aTable, PLDHashEntryHdr *aHdr)
|
|
|
|
{
|
2007-07-08 00:08:04 -07:00
|
|
|
nsStringMapEntry* entry = static_cast<nsStringMapEntry*>(aHdr);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
if (entry->mString)
|
|
|
|
nsMemory::Free((void*) entry->mString);
|
|
|
|
NS_IF_RELEASE(entry->mURI);
|
|
|
|
PL_DHashClearEntryStub(aTable, aHdr);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const PLDHashTableOps strmap_DHashTableOps = {
|
|
|
|
PL_DHashAllocTable,
|
|
|
|
PL_DHashFreeTable,
|
|
|
|
PL_DHashStringKey,
|
|
|
|
PL_DHashMatchStringKey,
|
|
|
|
PL_DHashMoveEntryStub,
|
|
|
|
strmap_ClearEntry,
|
|
|
|
PL_DHashFinalizeStub,
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
// An nsObjectMapEntry holds a strong reference to an XPCOM object, unless the
|
|
|
|
// mObject member, when cast to NSFastLoadOID, has its MFL_OBJECT_DEF_TAG bit
|
|
|
|
// set. NB: we rely on the fact that an nsISupports* is never an odd pointer.
|
|
|
|
struct nsObjectMapEntry : public PLDHashEntryHdr {
|
|
|
|
nsISupports* mObject; // key, must come first
|
|
|
|
};
|
|
|
|
|
|
|
|
// Fast mapping from URI object pointer back to spec-indexed document info.
|
|
|
|
struct nsURIMapReadEntry : public nsObjectMapEntry {
|
|
|
|
nsDocumentMapReadEntry* mDocMapEntry;
|
|
|
|
};
|
|
|
|
|
2008-10-10 08:04:34 -07:00
|
|
|
static void
|
2007-03-22 10:30:00 -07:00
|
|
|
objmap_ClearEntry(PLDHashTable *aTable, PLDHashEntryHdr *aHdr)
|
|
|
|
{
|
2007-07-08 00:08:04 -07:00
|
|
|
nsObjectMapEntry* entry = static_cast<nsObjectMapEntry*>(aHdr);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// Ignore tagged object ids stored as object pointer keys (the updater
|
|
|
|
// code does this).
|
|
|
|
if ((NS_PTR_TO_INT32(entry->mObject) & MFL_OBJECT_DEF_TAG) == 0)
|
|
|
|
NS_IF_RELEASE(entry->mObject);
|
|
|
|
PL_DHashClearEntryStub(aTable, aHdr);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const PLDHashTableOps objmap_DHashTableOps = {
|
|
|
|
PL_DHashAllocTable,
|
|
|
|
PL_DHashFreeTable,
|
|
|
|
PL_DHashVoidPtrKeyStub,
|
|
|
|
PL_DHashMatchEntryStub,
|
|
|
|
PL_DHashMoveEntryStub,
|
|
|
|
objmap_ClearEntry,
|
|
|
|
PL_DHashFinalizeStub,
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsFastLoadFileReader::HasMuxedDocument(const char* aURISpec, PRBool *aResult)
|
|
|
|
{
|
|
|
|
nsDocumentMapReadEntry* docMapEntry =
|
2007-07-08 00:08:04 -07:00
|
|
|
static_cast<nsDocumentMapReadEntry*>
|
|
|
|
(PL_DHashTableOperate(&mFooter.mDocumentMap, aURISpec,
|
2009-09-21 16:44:35 -07:00
|
|
|
PL_DHASH_LOOKUP));
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
*aResult = PL_DHASH_ENTRY_IS_BUSY(docMapEntry);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsFastLoadFileReader::StartMuxedDocument(nsISupports* aURI, const char* aURISpec)
|
|
|
|
{
|
|
|
|
nsDocumentMapReadEntry* docMapEntry =
|
2007-07-08 00:08:04 -07:00
|
|
|
static_cast<nsDocumentMapReadEntry*>
|
|
|
|
(PL_DHashTableOperate(&mFooter.mDocumentMap, aURISpec,
|
2009-09-21 16:44:35 -07:00
|
|
|
PL_DHASH_LOOKUP));
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// If the spec isn't in the map, return NS_ERROR_NOT_AVAILABLE so the
|
|
|
|
// FastLoad service can try for a file update.
|
|
|
|
if (PL_DHASH_ENTRY_IS_FREE(docMapEntry))
|
|
|
|
return NS_ERROR_NOT_AVAILABLE;
|
|
|
|
|
|
|
|
nsCOMPtr<nsISupports> key(do_QueryInterface(aURI));
|
|
|
|
nsURIMapReadEntry* uriMapEntry =
|
2007-07-08 00:08:04 -07:00
|
|
|
static_cast<nsURIMapReadEntry*>
|
|
|
|
(PL_DHashTableOperate(&mFooter.mURIMap, key,
|
2009-09-21 16:44:35 -07:00
|
|
|
PL_DHASH_ADD));
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!uriMapEntry)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
|
|
|
|
NS_ASSERTION(uriMapEntry->mDocMapEntry == nsnull,
|
|
|
|
"URI mapped to two different specs?");
|
|
|
|
if (uriMapEntry->mDocMapEntry)
|
|
|
|
return NS_ERROR_UNEXPECTED;
|
|
|
|
|
|
|
|
docMapEntry->mURI = aURI;
|
|
|
|
NS_ADDREF(docMapEntry->mURI);
|
|
|
|
uriMapEntry->mObject = key;
|
|
|
|
NS_ADDREF(uriMapEntry->mObject);
|
|
|
|
uriMapEntry->mDocMapEntry = docMapEntry;
|
|
|
|
TRACE_MUX(('r', "start %p (%p) %s\n", aURI, key.get(), aURISpec));
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsFastLoadFileReader::SelectMuxedDocument(nsISupports* aURI,
|
|
|
|
nsISupports** aResult)
|
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
|
|
|
|
// Find the given URI's entry and select it for more reading.
|
|
|
|
nsCOMPtr<nsISupports> key(do_QueryInterface(aURI));
|
|
|
|
nsURIMapReadEntry* uriMapEntry =
|
2007-07-08 00:08:04 -07:00
|
|
|
static_cast<nsURIMapReadEntry*>
|
|
|
|
(PL_DHashTableOperate(&mFooter.mURIMap, key,
|
2009-09-21 16:44:35 -07:00
|
|
|
PL_DHASH_LOOKUP));
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// If the URI isn't in the map, return NS_ERROR_NOT_AVAILABLE so the
|
|
|
|
// FastLoad service can try selecting the file updater.
|
|
|
|
if (PL_DHASH_ENTRY_IS_FREE(uriMapEntry))
|
|
|
|
return NS_ERROR_NOT_AVAILABLE;
|
|
|
|
|
|
|
|
// If we're interrupting another document's segment, save its offset so
|
|
|
|
// we can seek back when it's reselected. If prevDocMapEntry->mNeedToSeek
|
|
|
|
// is set, that means the stream is not positioned for prevDocMapEntry, to
|
|
|
|
// avoid buffer thrashing. See below in this function for more.
|
|
|
|
nsDocumentMapReadEntry* prevDocMapEntry = mCurrentDocumentMapEntry;
|
|
|
|
if (prevDocMapEntry &&
|
|
|
|
prevDocMapEntry->mBytesLeft &&
|
|
|
|
!prevDocMapEntry->mNeedToSeek) {
|
|
|
|
rv = Tell(&prevDocMapEntry->mSaveOffset);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
// It turns out we get a fair amount of redundant select calls, thanks to
|
|
|
|
// non-blocking hunks of data from the parser that are devoid of scripts.
|
|
|
|
// As more data gets FastLoaded, the number of these useless selects will
|
|
|
|
// decline.
|
|
|
|
nsDocumentMapReadEntry* docMapEntry = uriMapEntry->mDocMapEntry;
|
|
|
|
if (docMapEntry == prevDocMapEntry) {
|
|
|
|
TRACE_MUX(('r', "select prev %s same as current!\n",
|
|
|
|
docMapEntry->mString));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Invariant: docMapEntry->mBytesLeft implies docMapEntry->mSaveOffset has
|
|
|
|
// been set non-zero by the Tell call above.
|
|
|
|
else if (docMapEntry->mBytesLeft) {
|
|
|
|
NS_ASSERTION(docMapEntry->mSaveOffset != 0,
|
|
|
|
"reselecting from multiplex at unsaved offset?");
|
|
|
|
|
|
|
|
// Defer Seek till Read, in case of "ping-pong" Selects without any
|
|
|
|
// intervening Reads, to avoid dumping the underlying mInputStream's
|
|
|
|
// input buffer for cases where alternate "pongs" fall in the same
|
|
|
|
// buffer.
|
|
|
|
docMapEntry->mNeedToSeek = PR_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
*aResult = prevDocMapEntry ? prevDocMapEntry->mURI : nsnull;
|
|
|
|
NS_IF_ADDREF(*aResult);
|
|
|
|
|
|
|
|
mCurrentDocumentMapEntry = docMapEntry;
|
|
|
|
#ifdef DEBUG_MUX
|
|
|
|
PRInt64 currentSegmentOffset;
|
|
|
|
Tell(¤tSegmentOffset);
|
|
|
|
trace_mux('r', "select %p (%p) offset %ld\n",
|
|
|
|
aURI, key.get(), (long) currentSegmentOffset);
|
|
|
|
#endif
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsFastLoadFileReader::EndMuxedDocument(nsISupports* aURI)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsISupports> key(do_QueryInterface(aURI));
|
|
|
|
nsURIMapReadEntry* uriMapEntry =
|
2007-07-08 00:08:04 -07:00
|
|
|
static_cast<nsURIMapReadEntry*>
|
|
|
|
(PL_DHashTableOperate(&mFooter.mURIMap, key,
|
2009-09-21 16:44:35 -07:00
|
|
|
PL_DHASH_LOOKUP));
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// If the URI isn't in the map, return NS_ERROR_NOT_AVAILABLE so the
|
|
|
|
// FastLoad service can try to end a select on its file updater.
|
|
|
|
if (PL_DHASH_ENTRY_IS_FREE(uriMapEntry))
|
|
|
|
return NS_ERROR_NOT_AVAILABLE;
|
|
|
|
|
|
|
|
// Drop our ref to the URI object that was passed to StartMuxedDocument,
|
|
|
|
// we no longer need it, and we do not want to extend its lifetime.
|
|
|
|
if (uriMapEntry->mDocMapEntry)
|
|
|
|
NS_RELEASE(uriMapEntry->mDocMapEntry->mURI);
|
|
|
|
|
|
|
|
// Shrink the table if half the entries are removed sentinels.
|
|
|
|
PRUint32 size = PL_DHASH_TABLE_SIZE(&mFooter.mURIMap);
|
|
|
|
if (mFooter.mURIMap.removedCount >= (size >> 2))
|
|
|
|
PL_DHashTableOperate(&mFooter.mURIMap, key, PL_DHASH_REMOVE);
|
|
|
|
else
|
|
|
|
PL_DHashTableRawRemove(&mFooter.mURIMap, uriMapEntry);
|
|
|
|
|
|
|
|
TRACE_MUX(('r', "end %p (%p)\n", aURI, key.get()));
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsFastLoadFileReader::Read(char* aBuffer, PRUint32 aCount, PRUint32 *aBytesRead)
|
|
|
|
{
|
|
|
|
nsDocumentMapReadEntry* entry = mCurrentDocumentMapEntry;
|
|
|
|
if (entry) {
|
|
|
|
// Don't call our Seek wrapper, as it clears mCurrentDocumentMapEntry.
|
|
|
|
if (entry->mNeedToSeek) {
|
2009-10-08 10:30:21 -07:00
|
|
|
SeekTo(entry->mSaveOffset);
|
2007-03-22 10:30:00 -07:00
|
|
|
entry->mNeedToSeek = PR_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Loop to handle empty segments, which may be generated by the
|
|
|
|
// writer, given Start A; Start B; Select A; Select B; write B data;
|
|
|
|
// multiplexing schedules, which do tend to occur given non-blocking
|
|
|
|
// i/o with LIFO scheduling. XXXbe investigate LIFO issues
|
|
|
|
while (entry->mBytesLeft == 0) {
|
|
|
|
// Check for unexpected end of multiplexed stream.
|
|
|
|
NS_ASSERTION(entry->mNextSegmentOffset != 0,
|
|
|
|
"document demuxed from FastLoad file more than once?");
|
|
|
|
if (entry->mNextSegmentOffset == 0)
|
|
|
|
return NS_ERROR_UNEXPECTED;
|
|
|
|
|
2009-10-08 10:30:21 -07:00
|
|
|
SeekTo(entry->mNextSegmentOffset);
|
2007-03-22 10:30:00 -07:00
|
|
|
// Clear mCurrentDocumentMapEntry temporarily to avoid recursion.
|
|
|
|
mCurrentDocumentMapEntry = nsnull;
|
|
|
|
|
2009-10-08 10:30:21 -07:00
|
|
|
nsresult rv = Read32(&entry->mNextSegmentOffset);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
|
|
PRUint32 bytesLeft = 0;
|
|
|
|
rv = Read32(&bytesLeft);
|
|
|
|
entry->mBytesLeft = bytesLeft;
|
|
|
|
}
|
|
|
|
|
|
|
|
mCurrentDocumentMapEntry = entry;
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
NS_ASSERTION(entry->mBytesLeft >= 8, "demux segment length botch!");
|
|
|
|
entry->mBytesLeft -= 8;
|
|
|
|
}
|
|
|
|
}
|
2009-10-08 10:30:21 -07:00
|
|
|
PRUint32 count = PR_MIN(mFileLen - mFilePos, aCount);
|
|
|
|
memcpy(aBuffer, mFileData+mFilePos, count);
|
|
|
|
*aBytesRead = count;
|
|
|
|
mFilePos += count;
|
|
|
|
if (entry) {
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_ASSERTION(entry->mBytesLeft >= *aBytesRead, "demux Read underflow!");
|
|
|
|
entry->mBytesLeft -= *aBytesRead;
|
|
|
|
|
|
|
|
#ifdef NS_DEBUG
|
|
|
|
// Invariant: !entry->mBytesLeft implies entry->mSaveOffset == 0.
|
|
|
|
if (entry->mBytesLeft == 0)
|
|
|
|
entry->mSaveOffset = 0;
|
|
|
|
#endif
|
|
|
|
}
|
2009-10-08 10:30:21 -07:00
|
|
|
return NS_OK;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsFastLoadFileReader::ReadSegments(nsWriteSegmentFun aWriter, void* aClosure,
|
|
|
|
PRUint32 aCount, PRUint32 *aResult)
|
|
|
|
{
|
|
|
|
nsDocumentMapReadEntry* entry = mCurrentDocumentMapEntry;
|
|
|
|
|
|
|
|
NS_ASSERTION(!entry || (!entry->mNeedToSeek && entry->mBytesLeft != 0),
|
|
|
|
"ReadSegments called from above nsFastLoadFileReader layer?!");
|
|
|
|
|
2009-10-08 10:30:21 -07:00
|
|
|
PRUint32 count = PR_MIN(mFileLen - mFilePos, aCount);
|
|
|
|
|
|
|
|
// Errors returned from the writer get ignored.
|
|
|
|
aWriter(this, aClosure, (char*)(mFileData + mFilePos), 0,
|
|
|
|
count, aResult);
|
|
|
|
mFilePos += count;
|
|
|
|
if (entry) {
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_ASSERTION(entry->mBytesLeft >= *aResult,
|
|
|
|
"demux ReadSegments underflow!");
|
|
|
|
entry->mBytesLeft -= *aResult;
|
|
|
|
|
|
|
|
#ifdef NS_DEBUG
|
|
|
|
// Invariant: !entry->mBytesLeft implies entry->mSaveOffset == 0.
|
|
|
|
if (entry->mBytesLeft == 0)
|
|
|
|
entry->mSaveOffset = 0;
|
|
|
|
#endif
|
|
|
|
}
|
2009-10-08 10:30:21 -07:00
|
|
|
return NS_OK;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsFastLoadFileReader::ComputeChecksum(PRUint32 *aResult)
|
|
|
|
{
|
|
|
|
PRUint32 checksum = 0;
|
2009-10-08 10:30:21 -07:00
|
|
|
// Skip first 2 fields.
|
|
|
|
PRUint32 pos = offsetof(nsFastLoadHeader, mVersion);
|
|
|
|
NS_AccumulateFastLoadChecksum(&checksum,
|
|
|
|
mFileData + pos,
|
|
|
|
mFileLen - pos,
|
|
|
|
PR_TRUE);
|
2007-03-22 10:30:00 -07:00
|
|
|
*aResult = checksum;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsFastLoadFileReader::GetDependencies(nsISimpleEnumerator* *aDependencies)
|
|
|
|
{
|
|
|
|
return NS_NewArrayEnumerator(aDependencies, mFooter.mDependencies);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsFastLoadFileReader::ReadFooter(nsFastLoadFooter *aFooter)
|
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
|
|
|
|
rv = ReadFooterPrefix(aFooter);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
aFooter->mIDMap = new nsID[aFooter->mNumIDs];
|
|
|
|
if (!aFooter->mIDMap)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
|
|
|
|
PRUint32 i, n;
|
|
|
|
for (i = 0, n = aFooter->mNumIDs; i < n; i++) {
|
|
|
|
rv = ReadSlowID(&aFooter->mIDMap[i]);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
aFooter->mObjectMap = new nsObjectMapEntry[aFooter->mNumSharpObjects];
|
|
|
|
if (!aFooter->mObjectMap)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
|
|
|
|
for (i = 0, n = aFooter->mNumSharpObjects; i < n; i++) {
|
|
|
|
nsObjectMapEntry* entry = &aFooter->mObjectMap[i];
|
|
|
|
|
|
|
|
rv = ReadSharpObjectInfo(entry);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
entry->mReadObject = nsnull;
|
|
|
|
entry->mSkipOffset = 0;
|
|
|
|
entry->mSaveStrongRefCnt = entry->mStrongRefCnt;
|
|
|
|
entry->mSaveWeakRefCnt = entry->mWeakRefCnt;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!PL_DHashTableInit(&aFooter->mDocumentMap, &strmap_DHashTableOps,
|
|
|
|
(void *)this, sizeof(nsDocumentMapReadEntry),
|
|
|
|
aFooter->mNumMuxedDocuments)) {
|
|
|
|
aFooter->mDocumentMap.ops = nsnull;
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!PL_DHashTableInit(&aFooter->mURIMap, &objmap_DHashTableOps,
|
|
|
|
(void *)this, sizeof(nsURIMapReadEntry),
|
|
|
|
aFooter->mNumMuxedDocuments)) {
|
|
|
|
aFooter->mURIMap.ops = nsnull;
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0, n = aFooter->mNumMuxedDocuments; i < n; i++) {
|
|
|
|
nsFastLoadMuxedDocumentInfo info;
|
|
|
|
|
|
|
|
rv = ReadMuxedDocumentInfo(&info);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
nsDocumentMapReadEntry* entry =
|
2007-07-08 00:08:04 -07:00
|
|
|
static_cast<nsDocumentMapReadEntry*>
|
|
|
|
(PL_DHashTableOperate(&aFooter->mDocumentMap,
|
2009-09-21 16:44:35 -07:00
|
|
|
info.mURISpec,
|
|
|
|
PL_DHASH_ADD));
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!entry) {
|
|
|
|
nsMemory::Free((void*) info.mURISpec);
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_ASSERTION(!entry->mString, "duplicate URISpec in MuxedDocumentMap");
|
|
|
|
entry->mString = info.mURISpec;
|
|
|
|
entry->mURI = nsnull;
|
|
|
|
entry->mInitialSegmentOffset = info.mInitialSegmentOffset;
|
|
|
|
entry->mNextSegmentOffset = info.mInitialSegmentOffset;
|
|
|
|
entry->mBytesLeft = 0;
|
|
|
|
entry->mNeedToSeek = PR_FALSE;
|
|
|
|
entry->mSaveOffset = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsISupportsArray> readDeps;
|
|
|
|
rv = NS_NewISupportsArray(getter_AddRefs(readDeps));
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
nsCAutoString filename;
|
|
|
|
for (i = 0, n = aFooter->mNumDependencies; i < n; i++) {
|
|
|
|
rv = ReadCString(filename);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
PRInt64 fastLoadMtime;
|
2007-07-08 00:08:04 -07:00
|
|
|
rv = Read64(reinterpret_cast<PRUint64*>(&fastLoadMtime));
|
2007-03-22 10:30:00 -07:00
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
nsCOMPtr<nsILocalFile> file;
|
|
|
|
rv = NS_NewNativeLocalFile(filename, PR_TRUE, getter_AddRefs(file));
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
2009-10-15 23:32:29 -07:00
|
|
|
#ifdef DEBUG
|
2007-03-22 10:30:00 -07:00
|
|
|
PRInt64 currentMtime;
|
|
|
|
rv = file->GetLastModifiedTime(¤tMtime);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
if (LL_NE(fastLoadMtime, currentMtime)) {
|
|
|
|
nsCAutoString path;
|
|
|
|
file->GetNativePath(path);
|
|
|
|
printf("%s mtime changed, invalidating FastLoad file\n",
|
|
|
|
path.get());
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
2009-10-15 23:32:29 -07:00
|
|
|
#endif
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
rv = readDeps->AppendElement(file);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
aFooter->mDependencies = readDeps;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsFastLoadFileReader::ReadFooterPrefix(nsFastLoadFooterPrefix *aFooterPrefix)
|
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
|
|
|
|
rv = Read32(&aFooterPrefix->mNumIDs);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
rv = Read32(&aFooterPrefix->mNumSharpObjects);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
rv = Read32(&aFooterPrefix->mNumMuxedDocuments);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
rv = Read32(&aFooterPrefix->mNumDependencies);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsFastLoadFileReader::ReadSlowID(nsID *aID)
|
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
|
|
|
|
rv = Read32(&aID->m0);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
rv = Read16(&aID->m1);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
rv = Read16(&aID->m2);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
PRUint32 bytesRead;
|
2007-07-08 00:08:04 -07:00
|
|
|
rv = Read(reinterpret_cast<char*>(aID->m3), sizeof aID->m3, &bytesRead);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
if (bytesRead != sizeof aID->m3)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsFastLoadFileReader::ReadFastID(NSFastLoadID *aID)
|
|
|
|
{
|
|
|
|
nsresult rv = Read32(aID);
|
|
|
|
if (NS_SUCCEEDED(rv))
|
|
|
|
*aID ^= MFL_ID_XOR_KEY;
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsFastLoadFileReader::ReadSharpObjectInfo(nsFastLoadSharpObjectInfo *aInfo)
|
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
|
|
|
|
rv = Read32(&aInfo->mCIDOffset);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
NS_ASSERTION(aInfo->mCIDOffset != 0,
|
|
|
|
"fastload reader: mCIDOffset cannot be zero!");
|
|
|
|
|
|
|
|
rv = Read16(&aInfo->mStrongRefCnt);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
rv = Read16(&aInfo->mWeakRefCnt);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsFastLoadFileReader::ReadMuxedDocumentInfo(nsFastLoadMuxedDocumentInfo *aInfo)
|
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
|
|
|
|
nsCAutoString spec;
|
|
|
|
rv = ReadCString(spec);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
rv = Read32(&aInfo->mInitialSegmentOffset);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
aInfo->mURISpec = ToNewCString(spec);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsFastLoadFileReader::Open()
|
|
|
|
{
|
|
|
|
nsresult rv;
|
2009-10-08 10:30:21 -07:00
|
|
|
nsCOMPtr<nsILocalFile> localFile = do_QueryInterface(mFile, &rv);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
rv = localFile->OpenNSPRFileDesc(PR_RDONLY, 0, &mFd);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-10-08 10:30:21 -07:00
|
|
|
PRInt64 size = PR_Available64(mFd);
|
|
|
|
if (size >= PR_INT32_MAX)
|
|
|
|
return NS_ERROR_FILE_TOO_BIG;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-10-08 10:30:21 -07:00
|
|
|
mFileLen = (PRUint32) size;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-10-12 11:56:37 -07:00
|
|
|
mFileMap = PR_CreateFileMap(mFd, mFileLen, PR_PROT_READONLY);
|
2009-10-08 10:30:21 -07:00
|
|
|
if (!mFileMap)
|
|
|
|
return NS_ERROR_FAILURE;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-10-08 10:30:21 -07:00
|
|
|
mFileData = (PRUint8*) PR_MemMap(mFileMap, 0, mFileLen);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-10-08 10:30:21 -07:00
|
|
|
if (mFileLen < sizeof(nsFastLoadHeader))
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
2009-11-10 02:23:53 -08:00
|
|
|
#if defined(XP_UNIX)
|
|
|
|
madvise((char *)mFileData, mFileLen, MADV_WILLNEED);
|
2009-10-08 10:30:21 -07:00
|
|
|
#endif
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-10-08 10:30:21 -07:00
|
|
|
rv = ReadHeader(&mHeader);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
2009-10-26 12:35:12 -07:00
|
|
|
PRUint32 checksum;
|
|
|
|
rv = ComputeChecksum(&checksum);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
if (checksum != mHeader.mChecksum)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
2009-10-08 10:30:21 -07:00
|
|
|
if (mHeader.mVersion != MFL_FILE_VERSION ||
|
|
|
|
mHeader.mFooterOffset == 0 ||
|
|
|
|
memcmp(mHeader.mMagic, magic, MFL_FILE_MAGIC_SIZE))
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_ERROR_UNEXPECTED;
|
2009-10-08 10:30:21 -07:00
|
|
|
|
|
|
|
SeekTo(mHeader.mFooterOffset);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
rv = ReadFooter(&mFooter);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
2009-10-08 10:30:21 -07:00
|
|
|
SeekTo(sizeof(nsFastLoadHeader));
|
|
|
|
return NS_OK;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsFastLoadFileReader::Close()
|
|
|
|
{
|
|
|
|
// Give up our strong "keepalive" references, in case not all objects that
|
|
|
|
// were deserialized were fully re-connected.
|
|
|
|
//
|
|
|
|
// This happens for sure when an nsFastLoadFileUpdater is created and wraps
|
|
|
|
// an nsFastLoadFileReader whose data was already deserialized by an earlier
|
|
|
|
// FastLoad episode. The reader is useful in the second such episode during
|
|
|
|
// a session not so much for reading objects as for its footer information,
|
|
|
|
// which primes the updater's tables so that after the update completes, the
|
|
|
|
// FastLoad file has a superset footer.
|
2009-10-08 10:30:21 -07:00
|
|
|
if (mFd) {
|
|
|
|
if (mFileData)
|
|
|
|
PR_MemUnmap(mFileData, mFileLen);
|
|
|
|
mFileData = nsnull;
|
|
|
|
if (mFileMap)
|
|
|
|
PR_CloseFileMap(mFileMap);
|
|
|
|
mFileMap = nsnull;
|
|
|
|
PR_Close(mFd);
|
|
|
|
mFd = nsnull;
|
|
|
|
}
|
2009-10-16 17:17:55 -07:00
|
|
|
|
|
|
|
if (!mFooter.mObjectMap)
|
|
|
|
return NS_OK;
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
for (PRUint32 i = 0, n = mFooter.mNumSharpObjects; i < n; i++) {
|
|
|
|
nsObjectMapEntry* entry = &mFooter.mObjectMap[i];
|
|
|
|
entry->mReadObject = nsnull;
|
|
|
|
}
|
2009-10-15 11:20:39 -07:00
|
|
|
mFooter.mNumSharpObjects = 0;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-10-08 10:30:21 -07:00
|
|
|
return NS_OK;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsFastLoadFileReader::DeserializeObject(nsISupports* *aObject)
|
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
NSFastLoadID fastCID;
|
|
|
|
|
|
|
|
rv = ReadFastID(&fastCID);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
const nsID& slowCID = mFooter.GetID(fastCID);
|
|
|
|
nsCOMPtr<nsISupports> object(do_CreateInstance(slowCID, &rv));
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
nsCOMPtr<nsISerializable> serializable(do_QueryInterface(object));
|
|
|
|
if (!serializable)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
rv = serializable->Read(this);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
*aObject = object;
|
|
|
|
NS_ADDREF(*aObject);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsFastLoadFileReader::ReadObject(PRBool aIsStrongRef, nsISupports* *aObject)
|
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
NSFastLoadOID oid;
|
|
|
|
|
|
|
|
rv = Read32(&oid);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
oid ^= MFL_OID_XOR_KEY;
|
|
|
|
|
|
|
|
nsCOMPtr<nsISupports> object;
|
|
|
|
|
|
|
|
if (oid == MFL_DULL_OBJECT_OID) {
|
|
|
|
// A very dull object, defined at point of single (strong) reference.
|
|
|
|
NS_ASSERTION(aIsStrongRef, "dull object read via weak ref!");
|
|
|
|
|
|
|
|
rv = DeserializeObject(getter_AddRefs(object));
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
} else {
|
|
|
|
NS_ASSERTION((oid & MFL_WEAK_REF_TAG) ==
|
|
|
|
(aIsStrongRef ? 0 : MFL_WEAK_REF_TAG),
|
|
|
|
"strong vs. weak ref deserialization mismatch!");
|
|
|
|
|
|
|
|
nsObjectMapEntry* entry = &mFooter.GetSharpObjectEntry(oid);
|
|
|
|
|
|
|
|
// Check whether we've already deserialized the object for this OID.
|
|
|
|
object = entry->mReadObject;
|
|
|
|
if (!object) {
|
|
|
|
nsDocumentMapReadEntry* saveDocMapEntry = nsnull;
|
|
|
|
|
2009-10-08 10:30:21 -07:00
|
|
|
PRUint32 saveOffset32 = mFilePos;
|
2007-03-22 10:30:00 -07:00
|
|
|
if (entry->mCIDOffset != saveOffset32) {
|
|
|
|
// We skipped deserialization of this object from its position
|
|
|
|
// earlier in the input stream, presumably due to the reference
|
|
|
|
// there being an nsFastLoadPtr, or (more likely) because the
|
|
|
|
// object was muxed in another document, and deserialization
|
|
|
|
// order does not match serialization order. So we must seek
|
|
|
|
// back and read it now.
|
|
|
|
NS_ASSERTION(entry->mCIDOffset < saveOffset32,
|
|
|
|
"out of order object?!");
|
|
|
|
|
|
|
|
// Ape our Seek wrapper by clearing mCurrentDocumentMapEntry.
|
|
|
|
// This allows for a skipped object to be referenced from two
|
|
|
|
// or more multiplexed documents in the FastLoad file.
|
|
|
|
saveDocMapEntry = mCurrentDocumentMapEntry;
|
|
|
|
mCurrentDocumentMapEntry = nsnull;
|
2009-10-08 10:30:21 -07:00
|
|
|
SeekTo(entry->mCIDOffset);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
rv = DeserializeObject(getter_AddRefs(object));
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
if (entry->mCIDOffset != saveOffset32) {
|
|
|
|
// Save the "skip offset" in case we need to skip this object
|
|
|
|
// definition when reading forward, later on.
|
2009-10-08 10:30:21 -07:00
|
|
|
entry->mSkipOffset = mFilePos;
|
2007-03-22 10:30:00 -07:00
|
|
|
// Restore stream offset and mCurrentDocumentMapEntry in case
|
|
|
|
// we're still reading forward through a part of the multiplex
|
|
|
|
// to get object definitions eagerly.
|
2009-10-08 10:30:21 -07:00
|
|
|
SeekTo(saveOffset32);
|
2007-03-22 10:30:00 -07:00
|
|
|
mCurrentDocumentMapEntry = saveDocMapEntry;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Save object until all refs have been deserialized.
|
|
|
|
entry->mReadObject = object;
|
|
|
|
} else {
|
|
|
|
// What if we are at a definition that's already been read? This
|
|
|
|
// case arises when a sharp object's def is serialized before its
|
|
|
|
// refs, while a non-defining ref is deserialized before the def.
|
|
|
|
// We must skip over the object definition.
|
|
|
|
if (oid & MFL_OBJECT_DEF_TAG) {
|
|
|
|
NS_ASSERTION(entry->mSkipOffset != 0, "impossible! see above");
|
|
|
|
|
|
|
|
// Since we are seeking within a muxed segment, we must adjust
|
|
|
|
// mBytesLeft, so that Seek called from Read will be triggered
|
|
|
|
// when mBytesLeft goes to zero.
|
2009-10-08 10:30:21 -07:00
|
|
|
PRUint32 currentOffset = mFilePos;
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_ASSERTION(entry->mSkipOffset > (PRUint32)currentOffset,
|
|
|
|
"skipping backwards from object?!");
|
|
|
|
NS_ASSERTION(mCurrentDocumentMapEntry->mBytesLeft >=
|
|
|
|
entry->mSkipOffset - (PRUint32)currentOffset,
|
|
|
|
"skipped object buffer underflow!");
|
|
|
|
|
|
|
|
mCurrentDocumentMapEntry->mBytesLeft -=
|
|
|
|
entry->mSkipOffset - (PRUint32)currentOffset;
|
|
|
|
|
2009-10-08 10:30:21 -07:00
|
|
|
SeekTo(entry->mSkipOffset);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (aIsStrongRef) {
|
|
|
|
NS_ASSERTION(entry->mStrongRefCnt != 0,
|
|
|
|
"mStrongRefCnt underflow!");
|
|
|
|
--entry->mStrongRefCnt;
|
|
|
|
} else {
|
|
|
|
NS_ASSERTION(MFL_GET_WEAK_REFCNT(entry) != 0,
|
|
|
|
"mWeakRefCnt underflow!");
|
|
|
|
MFL_DROP_WEAK_REFCNT(entry);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (entry->mStrongRefCnt == 0 && MFL_GET_WEAK_REFCNT(entry) == 0)
|
|
|
|
entry->mReadObject = nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (oid & MFL_QUERY_INTERFACE_TAG) {
|
|
|
|
NSFastLoadID iid;
|
|
|
|
rv = ReadFastID(&iid);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
rv = object->QueryInterface(mFooter.GetID(iid),
|
2007-07-08 00:08:04 -07:00
|
|
|
reinterpret_cast<void**>(aObject));
|
2007-03-22 10:30:00 -07:00
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
} else {
|
|
|
|
*aObject = object;
|
|
|
|
NS_ADDREF(*aObject);
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsFastLoadFileReader::ReadID(nsID *aResult)
|
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
NSFastLoadID fastID;
|
|
|
|
|
|
|
|
rv = ReadFastID(&fastID);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
*aResult = mFooter.GetID(fastID);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsFastLoadFileReader::Seek(PRInt32 aWhence, PRInt64 aOffset)
|
|
|
|
{
|
2009-10-08 10:30:21 -07:00
|
|
|
NS_ASSERTION(aWhence == nsISeekableStream::NS_SEEK_SET, "Only NS_SEEK_SET seeks are supported");
|
2007-03-22 10:30:00 -07:00
|
|
|
mCurrentDocumentMapEntry = nsnull;
|
2009-10-08 10:30:21 -07:00
|
|
|
SeekTo(aOffset);
|
|
|
|
return NS_OK;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsFastLoadFileReader::Tell(PRInt64 *aResult)
|
|
|
|
{
|
2009-10-08 10:30:21 -07:00
|
|
|
*aResult = mFilePos;
|
|
|
|
return NS_OK;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsFastLoadFileReader::SetEOF()
|
|
|
|
{
|
2009-10-08 10:30:21 -07:00
|
|
|
NS_ERROR("Refusing to truncate a memory-mapped file");
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_COM nsresult
|
2009-10-08 10:30:21 -07:00
|
|
|
NS_NewFastLoadFileReader(nsIObjectInputStream* *aResult, nsIFile *aFile)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2009-10-08 10:30:21 -07:00
|
|
|
nsFastLoadFileReader* reader = new nsFastLoadFileReader(aFile);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!reader)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
|
|
|
|
// Stabilize reader's refcnt.
|
|
|
|
nsCOMPtr<nsIObjectInputStream> stream(reader);
|
|
|
|
|
|
|
|
nsresult rv = reader->Open();
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
*aResult = stream;
|
|
|
|
NS_ADDREF(*aResult);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -------------------------- nsFastLoadFileWriter --------------------------
|
|
|
|
|
|
|
|
NS_IMPL_ISUPPORTS_INHERITED4(nsFastLoadFileWriter,
|
|
|
|
nsBinaryOutputStream,
|
|
|
|
nsIObjectOutputStream,
|
|
|
|
nsIFastLoadFileControl,
|
|
|
|
nsIFastLoadWriteControl,
|
|
|
|
nsISeekableStream)
|
|
|
|
|
|
|
|
struct nsIDMapEntry : public PLDHashEntryHdr {
|
|
|
|
NSFastLoadID mFastID; // 1 + nsFastLoadFooter::mIDMap index
|
|
|
|
nsID mSlowID; // key, used by PLDHashTableOps below
|
|
|
|
};
|
|
|
|
|
2008-10-10 08:04:34 -07:00
|
|
|
static PLDHashNumber
|
2007-03-22 10:30:00 -07:00
|
|
|
idmap_HashKey(PLDHashTable *aTable, const void *aKey)
|
|
|
|
{
|
2007-07-08 00:08:04 -07:00
|
|
|
const nsID *idp = reinterpret_cast<const nsID*>(aKey);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
return idp->m0;
|
|
|
|
}
|
|
|
|
|
2008-10-10 08:04:34 -07:00
|
|
|
static PRBool
|
2007-03-22 10:30:00 -07:00
|
|
|
idmap_MatchEntry(PLDHashTable *aTable,
|
|
|
|
const PLDHashEntryHdr *aHdr,
|
|
|
|
const void *aKey)
|
|
|
|
{
|
2007-07-08 00:08:04 -07:00
|
|
|
const nsIDMapEntry* entry = static_cast<const nsIDMapEntry*>(aHdr);
|
|
|
|
const nsID *idp = reinterpret_cast<const nsID*>(aKey);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
return memcmp(&entry->mSlowID, idp, sizeof(nsID)) == 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const PLDHashTableOps idmap_DHashTableOps = {
|
|
|
|
PL_DHashAllocTable,
|
|
|
|
PL_DHashFreeTable,
|
|
|
|
idmap_HashKey,
|
|
|
|
idmap_MatchEntry,
|
|
|
|
PL_DHashMoveEntryStub,
|
|
|
|
PL_DHashClearEntryStub,
|
|
|
|
PL_DHashFinalizeStub,
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsFastLoadFileWriter::MapID(const nsID& aSlowID, NSFastLoadID *aResult)
|
|
|
|
{
|
|
|
|
nsIDMapEntry* entry =
|
2007-07-08 00:08:04 -07:00
|
|
|
static_cast<nsIDMapEntry*>
|
|
|
|
(PL_DHashTableOperate(&mIDMap, &aSlowID, PL_DHASH_ADD));
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!entry)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
|
|
|
|
if (entry->mFastID == 0) {
|
|
|
|
entry->mFastID = mIDMap.entryCount;
|
|
|
|
entry->mSlowID = aSlowID;
|
|
|
|
}
|
|
|
|
|
|
|
|
*aResult = entry->mFastID;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsFastLoadFileWriter::WriteHeader(nsFastLoadHeader *aHeader)
|
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
PRUint32 bytesWritten;
|
|
|
|
|
|
|
|
rv = Write(aHeader->mMagic, MFL_FILE_MAGIC_SIZE, &bytesWritten);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
if (bytesWritten != MFL_FILE_MAGIC_SIZE)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
rv = Write32(aHeader->mChecksum);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
rv = Write32(aHeader->mVersion);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
rv = Write32(aHeader->mFooterOffset);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
rv = Write32(aHeader->mFileSize);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
// nsIFastLoadFileControl methods:
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsFastLoadFileWriter::GetChecksum(PRUint32 *aChecksum)
|
|
|
|
{
|
|
|
|
if (mHeader.mChecksum == 0)
|
|
|
|
return NS_ERROR_NOT_AVAILABLE;
|
|
|
|
*aChecksum = mHeader.mChecksum;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct nsDocumentMapWriteEntry : public nsDocumentMapEntry {
|
|
|
|
PRUint32 mCurrentSegmentOffset; // last written segment's offset
|
|
|
|
};
|
|
|
|
|
|
|
|
// Fast mapping from URI object pointer back to spec-indexed document info.
|
|
|
|
// We also may need the slow mapping from mURISpec to nsDocumentMapWriteEntry,
|
|
|
|
// because the writer's mDocumentMap double hash table may grow "behind the
|
|
|
|
// back of" each mURIMap entry's mDocMapEntry member.
|
|
|
|
struct nsURIMapWriteEntry : public nsObjectMapEntry {
|
|
|
|
nsDocumentMapWriteEntry* mDocMapEntry;
|
|
|
|
PRUint32 mGeneration;
|
|
|
|
const char* mURISpec;
|
|
|
|
};
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsFastLoadFileWriter::HasMuxedDocument(const char* aURISpec, PRBool *aResult)
|
|
|
|
{
|
|
|
|
nsDocumentMapWriteEntry* docMapEntry =
|
2007-07-08 00:08:04 -07:00
|
|
|
static_cast<nsDocumentMapWriteEntry*>
|
|
|
|
(PL_DHashTableOperate(&mDocumentMap, aURISpec,
|
2009-09-21 16:44:35 -07:00
|
|
|
PL_DHASH_LOOKUP));
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
*aResult = PL_DHASH_ENTRY_IS_BUSY(docMapEntry);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsFastLoadFileWriter::StartMuxedDocument(nsISupports* aURI,
|
|
|
|
const char* aURISpec)
|
|
|
|
{
|
|
|
|
// Save mDocumentMap table generation and mCurrentDocumentMapEntry key in
|
|
|
|
// case the hash table grows during the PL_DHASH_ADD operation.
|
|
|
|
PRUint32 saveGeneration = mDocumentMap.generation;
|
|
|
|
const char* saveURISpec = mCurrentDocumentMapEntry
|
|
|
|
? mCurrentDocumentMapEntry->mString
|
|
|
|
: nsnull;
|
|
|
|
|
|
|
|
nsDocumentMapWriteEntry* docMapEntry =
|
2007-07-08 00:08:04 -07:00
|
|
|
static_cast<nsDocumentMapWriteEntry*>
|
|
|
|
(PL_DHashTableOperate(&mDocumentMap, aURISpec,
|
2009-09-21 16:44:35 -07:00
|
|
|
PL_DHASH_ADD));
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!docMapEntry)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
|
|
|
|
// If the generation number changed, refresh mCurrentDocumentMapEntry.
|
|
|
|
if (mCurrentDocumentMapEntry && mDocumentMap.generation != saveGeneration) {
|
|
|
|
mCurrentDocumentMapEntry =
|
2007-07-08 00:08:04 -07:00
|
|
|
static_cast<nsDocumentMapWriteEntry*>
|
|
|
|
(PL_DHashTableOperate(&mDocumentMap, saveURISpec,
|
2009-09-21 16:44:35 -07:00
|
|
|
PL_DHASH_LOOKUP));
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_ASSERTION(PL_DHASH_ENTRY_IS_BUSY(mCurrentDocumentMapEntry),
|
|
|
|
"mCurrentDocumentMapEntry lost during table growth?!");
|
|
|
|
|
|
|
|
// Refresh saveGeneration for use below when initializing uriMapEntry.
|
|
|
|
saveGeneration = mDocumentMap.generation;
|
|
|
|
}
|
|
|
|
|
2008-03-12 09:28:45 -07:00
|
|
|
NS_WARN_IF_FALSE(docMapEntry->mString == nsnull,
|
|
|
|
"redundant multiplexed document?");
|
2007-03-22 10:30:00 -07:00
|
|
|
if (docMapEntry->mString)
|
|
|
|
return NS_ERROR_UNEXPECTED;
|
|
|
|
|
|
|
|
void* spec = nsMemory::Clone(aURISpec, strlen(aURISpec) + 1);
|
|
|
|
if (!spec)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
2007-07-08 00:08:04 -07:00
|
|
|
docMapEntry->mString = reinterpret_cast<const char*>(spec);
|
2007-03-22 10:30:00 -07:00
|
|
|
docMapEntry->mURI = aURI;
|
|
|
|
NS_ADDREF(docMapEntry->mURI);
|
|
|
|
|
|
|
|
nsCOMPtr<nsISupports> key(do_QueryInterface(aURI));
|
|
|
|
nsURIMapWriteEntry* uriMapEntry =
|
2007-07-08 00:08:04 -07:00
|
|
|
static_cast<nsURIMapWriteEntry*>
|
|
|
|
(PL_DHashTableOperate(&mURIMap, key, PL_DHASH_ADD));
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!uriMapEntry)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
|
|
|
|
NS_ASSERTION(uriMapEntry->mDocMapEntry == nsnull,
|
|
|
|
"URI mapped to two different specs?");
|
|
|
|
if (uriMapEntry->mDocMapEntry)
|
|
|
|
return NS_ERROR_UNEXPECTED;
|
|
|
|
|
|
|
|
uriMapEntry->mObject = key;
|
|
|
|
NS_ADDREF(uriMapEntry->mObject);
|
|
|
|
uriMapEntry->mDocMapEntry = docMapEntry;
|
|
|
|
uriMapEntry->mGeneration = saveGeneration;
|
2007-07-08 00:08:04 -07:00
|
|
|
uriMapEntry->mURISpec = reinterpret_cast<const char*>(spec);
|
2007-03-22 10:30:00 -07:00
|
|
|
TRACE_MUX(('w', "start %p (%p) %s\n", aURI, key.get(), aURISpec));
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsFastLoadFileWriter::SelectMuxedDocument(nsISupports* aURI,
|
|
|
|
nsISupports** aResult)
|
|
|
|
{
|
|
|
|
// Capture the current file offset (XXXbe maintain our own via Write?)
|
|
|
|
nsresult rv;
|
|
|
|
PRInt64 currentSegmentOffset;
|
|
|
|
rv = mSeekableOutput->Tell(¤tSegmentOffset);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
PRUint32 currentSegmentOffset32 = currentSegmentOffset;
|
|
|
|
// Look for an existing entry keyed by aURI, added by StartMuxedDocument.
|
|
|
|
nsCOMPtr<nsISupports> key(do_QueryInterface(aURI));
|
|
|
|
nsURIMapWriteEntry* uriMapEntry =
|
2007-07-08 00:08:04 -07:00
|
|
|
static_cast<nsURIMapWriteEntry*>
|
|
|
|
(PL_DHashTableOperate(&mURIMap, key, PL_DHASH_LOOKUP));
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_ASSERTION(PL_DHASH_ENTRY_IS_BUSY(uriMapEntry),
|
|
|
|
"SelectMuxedDocument without prior StartMuxedDocument?");
|
|
|
|
if (PL_DHASH_ENTRY_IS_FREE(uriMapEntry))
|
|
|
|
return NS_ERROR_UNEXPECTED;
|
|
|
|
|
|
|
|
// Beware that uriMapEntry->mDocMapEntry may be stale, if an mDocumentMap
|
|
|
|
// addition caused that table to grow. We save the mDocumentMap generation
|
|
|
|
// in each uriMapEntry and compare it to the current generation, rehashing
|
|
|
|
// uriMapEntry->mURISpec if necessary.
|
|
|
|
|
|
|
|
nsDocumentMapWriteEntry* docMapEntry = uriMapEntry->mDocMapEntry;
|
|
|
|
if (uriMapEntry->mGeneration != mDocumentMap.generation) {
|
|
|
|
docMapEntry =
|
2007-07-08 00:08:04 -07:00
|
|
|
static_cast<nsDocumentMapWriteEntry*>
|
|
|
|
(PL_DHashTableOperate(&mDocumentMap,
|
2009-09-21 16:44:35 -07:00
|
|
|
uriMapEntry->mURISpec,
|
|
|
|
PL_DHASH_LOOKUP));
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_ASSERTION(PL_DHASH_ENTRY_IS_BUSY(docMapEntry), "lost mDocMapEntry!?");
|
|
|
|
uriMapEntry->mDocMapEntry = docMapEntry;
|
|
|
|
uriMapEntry->mGeneration = mDocumentMap.generation;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If there is a muxed document segment open, close it now by setting its
|
|
|
|
// length, stored in the second PRUint32 of the segment.
|
|
|
|
nsDocumentMapWriteEntry* prevDocMapEntry = mCurrentDocumentMapEntry;
|
|
|
|
if (prevDocMapEntry) {
|
|
|
|
if (prevDocMapEntry == docMapEntry) {
|
|
|
|
TRACE_MUX(('w', "select prev %s same as current!\n",
|
|
|
|
prevDocMapEntry->mString));
|
|
|
|
*aResult = docMapEntry->mURI;
|
|
|
|
NS_ADDREF(*aResult);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRUint32 prevSegmentOffset = prevDocMapEntry->mCurrentSegmentOffset;
|
|
|
|
TRACE_MUX(('w', "select prev %s offset %lu\n",
|
|
|
|
prevDocMapEntry->mString, prevSegmentOffset));
|
|
|
|
|
|
|
|
rv = mSeekableOutput->Seek(nsISeekableStream::NS_SEEK_SET,
|
|
|
|
prevSegmentOffset + 4);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
// The length counts all bytes in the segment, including the header
|
|
|
|
// that contains [nextSegmentOffset, length].
|
|
|
|
rv = Write32(currentSegmentOffset32 - prevSegmentOffset);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
// Seek back to the current offset only if we are not going to seek
|
|
|
|
// back to *this* entry's last "current" segment offset and write its
|
|
|
|
// next segment offset at the first PRUint32 of the segment.
|
|
|
|
if (!docMapEntry->mInitialSegmentOffset) {
|
|
|
|
rv = mSeekableOutput->Seek(nsISeekableStream::NS_SEEK_SET,
|
|
|
|
currentSegmentOffset);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// If this entry was newly added, set its key and initial segment offset.
|
|
|
|
// Otherwise, seek back to write the next segment offset of the previous
|
|
|
|
// segment for this document in the multiplex.
|
|
|
|
if (!docMapEntry->mInitialSegmentOffset) {
|
|
|
|
docMapEntry->mInitialSegmentOffset = currentSegmentOffset32;
|
|
|
|
} else {
|
|
|
|
rv = mSeekableOutput->Seek(nsISeekableStream::NS_SEEK_SET,
|
|
|
|
docMapEntry->mCurrentSegmentOffset);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
rv = Write32(currentSegmentOffset32);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
rv = mSeekableOutput->Seek(nsISeekableStream::NS_SEEK_SET,
|
|
|
|
currentSegmentOffset);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update this document's current segment offset so we can later fix its
|
|
|
|
// next segment offset (unless it is last, in which case we leave the zero
|
|
|
|
// placeholder as a terminator).
|
|
|
|
docMapEntry->mCurrentSegmentOffset = currentSegmentOffset32;
|
|
|
|
|
|
|
|
rv = Write32(0); // nextSegmentOffset placeholder
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
rv = Write32(0); // length placeholder
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
*aResult = prevDocMapEntry ? prevDocMapEntry->mURI : nsnull;
|
|
|
|
NS_IF_ADDREF(*aResult);
|
|
|
|
|
|
|
|
mCurrentDocumentMapEntry = docMapEntry;
|
|
|
|
TRACE_MUX(('w', "select %p (%p) offset %lu\n",
|
|
|
|
aURI, key.get(), currentSegmentOffset));
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsFastLoadFileWriter::EndMuxedDocument(nsISupports* aURI)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsISupports> key(do_QueryInterface(aURI));
|
|
|
|
nsURIMapWriteEntry* uriMapEntry =
|
2007-07-08 00:08:04 -07:00
|
|
|
static_cast<nsURIMapWriteEntry*>
|
|
|
|
(PL_DHashTableOperate(&mURIMap, key, PL_DHASH_LOOKUP));
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// If the URI isn't in the map, nsFastLoadFileWriter::StartMuxedDocument
|
|
|
|
// must have been called with a redundant URI, *and* its caller must have
|
|
|
|
// ignored the NS_ERROR_UNEXPECTED it returned in that case.
|
|
|
|
if (PL_DHASH_ENTRY_IS_FREE(uriMapEntry)) {
|
|
|
|
TRACE_MUX(('w', "bad end %p (%p)\n", aURI, key.get()));
|
|
|
|
return NS_ERROR_UNEXPECTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Drop our ref to the URI object that was passed to StartMuxedDocument,
|
|
|
|
// we no longer need it, and we do not want to extend its lifetime.
|
|
|
|
if (uriMapEntry->mDocMapEntry)
|
|
|
|
NS_RELEASE(uriMapEntry->mDocMapEntry->mURI);
|
|
|
|
|
|
|
|
// Shrink the table if half the entries are removed sentinels.
|
|
|
|
PRUint32 size = PL_DHASH_TABLE_SIZE(&mURIMap);
|
|
|
|
if (mURIMap.removedCount >= (size >> 2))
|
|
|
|
PL_DHashTableOperate(&mURIMap, key, PL_DHASH_REMOVE);
|
|
|
|
else
|
|
|
|
PL_DHashTableRawRemove(&mURIMap, uriMapEntry);
|
|
|
|
|
|
|
|
TRACE_MUX(('w', "end %p (%p)\n", aURI, key.get()));
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct nsDependencyMapEntry : public nsStringMapEntry {
|
|
|
|
PRInt64 mLastModified;
|
|
|
|
};
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsFastLoadFileWriter::AddDependency(nsIFile* aFile)
|
|
|
|
{
|
|
|
|
nsCAutoString path;
|
|
|
|
nsresult rv = aFile->GetNativePath(path);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
nsDependencyMapEntry* entry =
|
2007-07-08 00:08:04 -07:00
|
|
|
static_cast<nsDependencyMapEntry*>
|
|
|
|
(PL_DHashTableOperate(&mDependencyMap, path.get(),
|
2009-09-21 16:44:35 -07:00
|
|
|
PL_DHASH_ADD));
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!entry)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
|
|
|
|
if (!entry->mString) {
|
|
|
|
const char *tmp = ToNewCString(path);
|
|
|
|
if (!tmp)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
entry->mString = tmp;
|
|
|
|
|
|
|
|
// If we can't get the last modified time from aFile, assume it does
|
|
|
|
// not exist, or is otherwise inaccessible to us (due to permissions),
|
|
|
|
// remove the dependency, and suppress the failure.
|
|
|
|
//
|
|
|
|
// Otherwise, we would end up aborting the fastload process due to a
|
|
|
|
// missing .js or .xul or other file on every startup.
|
|
|
|
|
|
|
|
rv = aFile->GetLastModifiedTime(&entry->mLastModified);
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
PL_DHashTableOperate(&mDependencyMap, path.get(), PL_DHASH_REMOVE);
|
|
|
|
rv = NS_OK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsFastLoadFileWriter::WriteFooterPrefix(const nsFastLoadFooterPrefix& aFooterPrefix)
|
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
|
|
|
|
rv = Write32(aFooterPrefix.mNumIDs);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
rv = Write32(aFooterPrefix.mNumSharpObjects);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
rv = Write32(aFooterPrefix.mNumMuxedDocuments);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
rv = Write32(aFooterPrefix.mNumDependencies);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsFastLoadFileWriter::WriteSlowID(const nsID& aID)
|
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
|
|
|
|
rv = Write32(aID.m0);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
rv = Write16(aID.m1);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
rv = Write16(aID.m2);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
PRUint32 bytesWritten;
|
2007-07-08 00:08:04 -07:00
|
|
|
rv = Write(reinterpret_cast<const char*>(aID.m3), sizeof aID.m3,
|
2007-03-22 10:30:00 -07:00
|
|
|
&bytesWritten);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
if (bytesWritten != sizeof aID.m3)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsFastLoadFileWriter::WriteFastID(NSFastLoadID aID)
|
|
|
|
{
|
|
|
|
return Write32(aID ^ MFL_ID_XOR_KEY);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsFastLoadFileWriter::WriteSharpObjectInfo(const nsFastLoadSharpObjectInfo& aInfo)
|
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
|
|
|
|
NS_ASSERTION(aInfo.mCIDOffset != 0,
|
|
|
|
"fastload writer: mCIDOffset cannot be zero!");
|
|
|
|
|
|
|
|
rv = Write32(aInfo.mCIDOffset);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
rv = Write16(aInfo.mStrongRefCnt);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
rv = Write16(aInfo.mWeakRefCnt);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsFastLoadFileWriter::WriteMuxedDocumentInfo(const nsFastLoadMuxedDocumentInfo& aInfo)
|
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
|
|
|
|
rv = WriteStringZ(aInfo.mURISpec);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
rv = Write32(aInfo.mInitialSegmentOffset);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2008-10-10 08:04:34 -07:00
|
|
|
PLDHashOperator
|
2007-03-22 10:30:00 -07:00
|
|
|
nsFastLoadFileWriter::IDMapEnumerate(PLDHashTable *aTable,
|
|
|
|
PLDHashEntryHdr *aHdr,
|
|
|
|
PRUint32 aNumber,
|
|
|
|
void *aData)
|
|
|
|
{
|
2007-07-08 00:08:04 -07:00
|
|
|
nsIDMapEntry* entry = static_cast<nsIDMapEntry*>(aHdr);
|
2007-03-22 10:30:00 -07:00
|
|
|
PRUint32 index = entry->mFastID - 1;
|
2007-07-08 00:08:04 -07:00
|
|
|
nsID* vector = reinterpret_cast<nsID*>(aData);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
NS_ASSERTION(index < aTable->entryCount, "bad nsIDMap index!");
|
|
|
|
vector[index] = entry->mSlowID;
|
|
|
|
return PL_DHASH_NEXT;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct nsSharpObjectMapEntry : public nsObjectMapEntry {
|
|
|
|
NSFastLoadOID mOID;
|
|
|
|
nsFastLoadSharpObjectInfo mInfo;
|
|
|
|
};
|
|
|
|
|
2008-10-10 08:04:34 -07:00
|
|
|
PLDHashOperator
|
2007-03-22 10:30:00 -07:00
|
|
|
nsFastLoadFileWriter::ObjectMapEnumerate(PLDHashTable *aTable,
|
|
|
|
PLDHashEntryHdr *aHdr,
|
|
|
|
PRUint32 aNumber,
|
|
|
|
void *aData)
|
|
|
|
{
|
2007-07-08 00:08:04 -07:00
|
|
|
nsSharpObjectMapEntry* entry = static_cast<nsSharpObjectMapEntry*>(aHdr);
|
2007-03-22 10:30:00 -07:00
|
|
|
PRUint32 index = MFL_OID_TO_SHARP_INDEX(entry->mOID);
|
|
|
|
nsFastLoadSharpObjectInfo* vector =
|
2007-07-08 00:08:04 -07:00
|
|
|
reinterpret_cast<nsFastLoadSharpObjectInfo*>(aData);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
NS_ASSERTION(index < aTable->entryCount, "bad nsObjectMap index!");
|
|
|
|
vector[index] = entry->mInfo;
|
|
|
|
|
|
|
|
NS_ASSERTION(entry->mInfo.mStrongRefCnt, "no strong ref in serialization!");
|
|
|
|
|
|
|
|
// Ignore tagged object ids stored as object pointer keys (the updater
|
|
|
|
// code does this).
|
|
|
|
if ((NS_PTR_TO_INT32(entry->mObject) & MFL_OBJECT_DEF_TAG) == 0)
|
|
|
|
NS_RELEASE(entry->mObject);
|
|
|
|
|
|
|
|
return PL_DHASH_NEXT;
|
|
|
|
}
|
|
|
|
|
2008-10-10 08:04:34 -07:00
|
|
|
PLDHashOperator
|
2007-03-22 10:30:00 -07:00
|
|
|
nsFastLoadFileWriter::DocumentMapEnumerate(PLDHashTable *aTable,
|
|
|
|
PLDHashEntryHdr *aHdr,
|
|
|
|
PRUint32 aNumber,
|
|
|
|
void *aData)
|
|
|
|
{
|
|
|
|
nsFastLoadFileWriter* writer =
|
2007-07-08 00:08:04 -07:00
|
|
|
reinterpret_cast<nsFastLoadFileWriter*>(aTable->data);
|
2007-03-22 10:30:00 -07:00
|
|
|
nsDocumentMapWriteEntry* entry =
|
2007-07-08 00:08:04 -07:00
|
|
|
static_cast<nsDocumentMapWriteEntry*>(aHdr);
|
|
|
|
nsresult* rvp = reinterpret_cast<nsresult*>(aData);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
nsFastLoadMuxedDocumentInfo info;
|
|
|
|
info.mURISpec = entry->mString;
|
|
|
|
info.mInitialSegmentOffset = entry->mInitialSegmentOffset;
|
|
|
|
*rvp = writer->WriteMuxedDocumentInfo(info);
|
|
|
|
|
|
|
|
return NS_FAILED(*rvp) ? PL_DHASH_STOP : PL_DHASH_NEXT;
|
|
|
|
}
|
|
|
|
|
2008-10-10 08:04:34 -07:00
|
|
|
PLDHashOperator
|
2007-03-22 10:30:00 -07:00
|
|
|
nsFastLoadFileWriter::DependencyMapEnumerate(PLDHashTable *aTable,
|
|
|
|
PLDHashEntryHdr *aHdr,
|
|
|
|
PRUint32 aNumber,
|
|
|
|
void *aData)
|
|
|
|
{
|
|
|
|
nsFastLoadFileWriter* writer =
|
2007-07-08 00:08:04 -07:00
|
|
|
reinterpret_cast<nsFastLoadFileWriter*>(aTable->data);
|
|
|
|
nsDependencyMapEntry* entry = static_cast<nsDependencyMapEntry*>(aHdr);
|
|
|
|
nsresult* rvp = reinterpret_cast<nsresult*>(aData);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
*rvp = writer->WriteStringZ(entry->mString);
|
|
|
|
if (NS_SUCCEEDED(*rvp))
|
|
|
|
*rvp = writer->Write64(entry->mLastModified);
|
|
|
|
|
|
|
|
return NS_FAILED(*rvp) ? PL_DHASH_STOP :PL_DHASH_NEXT;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsFastLoadFileWriter::WriteFooter()
|
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
PRUint32 i, count;
|
|
|
|
|
|
|
|
nsFastLoadFooterPrefix footerPrefix;
|
|
|
|
footerPrefix.mNumIDs = mIDMap.entryCount;
|
|
|
|
footerPrefix.mNumSharpObjects = mObjectMap.entryCount;
|
|
|
|
footerPrefix.mNumMuxedDocuments = mDocumentMap.entryCount;
|
|
|
|
footerPrefix.mNumDependencies = mDependencyMap.entryCount;
|
|
|
|
|
|
|
|
rv = WriteFooterPrefix(footerPrefix);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
// Enumerate mIDMap into a vector indexed by mFastID and write it.
|
|
|
|
nsID* idvec = new nsID[footerPrefix.mNumIDs];
|
|
|
|
if (!idvec)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
|
|
|
|
count = PL_DHashTableEnumerate(&mIDMap, IDMapEnumerate, idvec);
|
|
|
|
NS_ASSERTION(count == footerPrefix.mNumIDs, "bad mIDMap enumeration!");
|
|
|
|
for (i = 0; i < count; i++) {
|
|
|
|
rv = WriteSlowID(idvec[i]);
|
|
|
|
if (NS_FAILED(rv)) break;
|
|
|
|
}
|
|
|
|
|
|
|
|
delete[] idvec;
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
// Enumerate mObjectMap into a vector indexed by mOID and write it.
|
|
|
|
nsFastLoadSharpObjectInfo* objvec =
|
|
|
|
new nsFastLoadSharpObjectInfo[footerPrefix.mNumSharpObjects];
|
|
|
|
if (!objvec)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
#ifdef NS_DEBUG
|
|
|
|
memset(objvec, 0, footerPrefix.mNumSharpObjects *
|
|
|
|
sizeof(nsFastLoadSharpObjectInfo));
|
|
|
|
#endif
|
|
|
|
|
|
|
|
count = PL_DHashTableEnumerate(&mObjectMap, ObjectMapEnumerate, objvec);
|
|
|
|
NS_ASSERTION(count == footerPrefix.mNumSharpObjects,
|
|
|
|
"bad mObjectMap enumeration!");
|
|
|
|
for (i = 0; i < count; i++) {
|
|
|
|
rv = WriteSharpObjectInfo(objvec[i]);
|
|
|
|
if (NS_FAILED(rv)) break;
|
|
|
|
}
|
|
|
|
|
|
|
|
delete[] objvec;
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
// Enumerate mDocumentMap, writing nsFastLoadMuxedDocumentInfo records
|
|
|
|
count = PL_DHashTableEnumerate(&mDocumentMap, DocumentMapEnumerate, &rv);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
NS_ASSERTION(count == footerPrefix.mNumMuxedDocuments,
|
|
|
|
"bad mDocumentMap enumeration!");
|
|
|
|
|
|
|
|
// Write out make-like file dependencies.
|
|
|
|
count = PL_DHashTableEnumerate(&mDependencyMap, DependencyMapEnumerate, &rv);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsFastLoadFileWriter::Init()
|
|
|
|
{
|
|
|
|
if (!PL_DHashTableInit(&mIDMap, &idmap_DHashTableOps, (void *)this,
|
|
|
|
sizeof(nsIDMapEntry), PL_DHASH_MIN_SIZE)) {
|
|
|
|
mIDMap.ops = nsnull;
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!PL_DHashTableInit(&mObjectMap, &objmap_DHashTableOps, (void *)this,
|
|
|
|
sizeof(nsSharpObjectMapEntry), PL_DHASH_MIN_SIZE)) {
|
|
|
|
mObjectMap.ops = nsnull;
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!PL_DHashTableInit(&mDocumentMap, &strmap_DHashTableOps, (void *)this,
|
|
|
|
sizeof(nsDocumentMapWriteEntry),
|
|
|
|
PL_DHASH_MIN_SIZE)) {
|
|
|
|
mDocumentMap.ops = nsnull;
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!PL_DHashTableInit(&mURIMap, &objmap_DHashTableOps, (void *)this,
|
|
|
|
sizeof(nsURIMapWriteEntry), PL_DHASH_MIN_SIZE)) {
|
|
|
|
mURIMap.ops = nsnull;
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!PL_DHashTableInit(&mDependencyMap, &strmap_DHashTableOps, (void *)this,
|
|
|
|
sizeof(nsDependencyMapEntry), PL_DHASH_MIN_SIZE)) {
|
|
|
|
mDependencyMap.ops = nsnull;
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsFastLoadFileWriter::Open()
|
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
|
|
|
|
rv = mSeekableOutput->Seek(nsISeekableStream::NS_SEEK_SET,
|
|
|
|
sizeof(nsFastLoadHeader));
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
return Init();
|
|
|
|
}
|
|
|
|
|
2009-10-08 10:30:21 -07:00
|
|
|
#define MFL_CHECKSUM_BUFSIZE (6 * 8192)
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsFastLoadFileWriter::Close()
|
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
|
|
|
|
memcpy(mHeader.mMagic, magic, MFL_FILE_MAGIC_SIZE);
|
|
|
|
mHeader.mChecksum = 0;
|
|
|
|
mHeader.mVersion = MFL_FILE_VERSION;
|
|
|
|
|
|
|
|
PRInt64 footerOffset;
|
|
|
|
rv = mSeekableOutput->Tell(&footerOffset);
|
|
|
|
|
|
|
|
LL_L2UI(mHeader.mFooterOffset, footerOffset);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
// If there is a muxed document segment open, close it now by setting its
|
|
|
|
// length, stored in the second PRUint32 of the segment.
|
|
|
|
if (mCurrentDocumentMapEntry) {
|
|
|
|
PRUint32 currentSegmentOffset =
|
|
|
|
mCurrentDocumentMapEntry->mCurrentSegmentOffset;
|
|
|
|
rv = mSeekableOutput->Seek(nsISeekableStream::NS_SEEK_SET,
|
|
|
|
currentSegmentOffset + 4);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
rv = Write32(mHeader.mFooterOffset - currentSegmentOffset);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
// Seek back to the current offset to write the footer.
|
|
|
|
rv = mSeekableOutput->Seek(nsISeekableStream::NS_SEEK_SET,
|
|
|
|
mHeader.mFooterOffset);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
mCurrentDocumentMapEntry = nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
rv = WriteFooter();
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
PRInt64 fileSize;
|
|
|
|
rv = mSeekableOutput->Tell(&fileSize);
|
|
|
|
LL_L2UI(mHeader.mFileSize, fileSize);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
rv = mSeekableOutput->Seek(nsISeekableStream::NS_SEEK_SET, 0);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
rv = WriteHeader(&mHeader);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
// Now compute the checksum, using mFileIO to get an input stream on the
|
|
|
|
// underlying FastLoad file.
|
|
|
|
if (mFileIO) {
|
|
|
|
// Get the unbuffered output stream, which flushes the buffered header
|
|
|
|
// so we can read and checksum it along with the rest of the file, and
|
|
|
|
// which allows us to write the checksum directly.
|
|
|
|
nsCOMPtr<nsIOutputStream> output;
|
|
|
|
rv = mBufferAccess->GetUnbufferedStream(getter_AddRefs(output));
|
|
|
|
if (NS_FAILED(rv) || !output)
|
|
|
|
return NS_ERROR_UNEXPECTED;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIInputStream> input;
|
|
|
|
rv = mFileIO->GetInputStream(getter_AddRefs(input));
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
2009-10-08 10:30:21 -07:00
|
|
|
|
|
|
|
// Seek the input stream to right after checksum/magic.
|
2007-03-22 10:30:00 -07:00
|
|
|
nsCOMPtr<nsISeekableStream> seekable = do_QueryInterface(input);
|
2009-10-08 10:30:21 -07:00
|
|
|
rv = seekable->Seek(nsISeekableStream::NS_SEEK_SET,
|
|
|
|
offsetof(nsFastLoadHeader, mVersion));
|
2007-03-22 10:30:00 -07:00
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
char buf[MFL_CHECKSUM_BUFSIZE];
|
|
|
|
PRUint32 len, rem = 0;
|
|
|
|
PRUint32 checksum = 0;
|
|
|
|
|
|
|
|
// Ok, we're finally ready to checksum the FastLoad file we just wrote!
|
|
|
|
while (NS_SUCCEEDED(rv =
|
|
|
|
input->Read(buf + rem, sizeof buf - rem, &len)) &&
|
|
|
|
len) {
|
|
|
|
len += rem;
|
|
|
|
rem = NS_AccumulateFastLoadChecksum(&checksum,
|
2007-07-08 00:08:04 -07:00
|
|
|
reinterpret_cast<PRUint8*>
|
|
|
|
(buf),
|
2007-03-22 10:30:00 -07:00
|
|
|
len,
|
|
|
|
PR_FALSE);
|
|
|
|
if (rem)
|
|
|
|
memcpy(buf, buf + len - rem, rem);
|
|
|
|
}
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
if (rem) {
|
|
|
|
NS_AccumulateFastLoadChecksum(&checksum,
|
2007-07-08 00:08:04 -07:00
|
|
|
reinterpret_cast<PRUint8*>(buf),
|
2007-03-22 10:30:00 -07:00
|
|
|
rem,
|
|
|
|
PR_TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Store the checksum in the FastLoad file header and remember it via
|
|
|
|
// mHeader.mChecksum, for GetChecksum.
|
|
|
|
seekable = do_QueryInterface(output);
|
|
|
|
rv = seekable->Seek(nsISeekableStream::NS_SEEK_SET,
|
|
|
|
offsetof(nsFastLoadHeader, mChecksum));
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
mHeader.mChecksum = checksum;
|
|
|
|
checksum = NS_SWAP32(checksum);
|
|
|
|
PRUint32 bytesWritten;
|
2007-07-08 00:08:04 -07:00
|
|
|
rv = output->Write(reinterpret_cast<char*>(&checksum),
|
2007-03-22 10:30:00 -07:00
|
|
|
sizeof checksum,
|
|
|
|
&bytesWritten);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
if (bytesWritten != sizeof checksum)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return mOutputStream->Close();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Pseudo-tag used as flag between WriteSingleRefObject and WriteObjectCommon.
|
|
|
|
#define MFL_SINGLE_REF_PSEUDO_TAG PR_BIT(MFL_OBJECT_TAG_BITS)
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsFastLoadFileWriter::WriteObjectCommon(nsISupports* aObject,
|
|
|
|
PRBool aIsStrongRef,
|
|
|
|
PRUint32 aTags)
|
|
|
|
{
|
|
|
|
nsrefcnt rc;
|
|
|
|
nsresult rv;
|
|
|
|
|
|
|
|
NS_ASSERTION((NS_PTR_TO_INT32(aObject) & MFL_OBJECT_DEF_TAG) == 0,
|
|
|
|
"odd nsISupports*, oh no!");
|
|
|
|
|
|
|
|
// Here be manual refcounting dragons!
|
|
|
|
rc = aObject->AddRef();
|
|
|
|
NS_ASSERTION(rc != 0, "bad refcnt when writing aObject!");
|
|
|
|
|
|
|
|
NSFastLoadOID oid;
|
|
|
|
nsCOMPtr<nsIClassInfo> classInfo;
|
|
|
|
|
|
|
|
if (rc == 2 && (aTags & MFL_SINGLE_REF_PSEUDO_TAG)) {
|
|
|
|
// Dull object: only one strong ref and no weak refs in serialization.
|
|
|
|
// Conservative: we don't trust the caller if there are more than two
|
|
|
|
// refs (one from the AddRef above, one from the data structure that's
|
|
|
|
// being serialized).
|
|
|
|
oid = MFL_DULL_OBJECT_OID;
|
|
|
|
aObject->Release();
|
|
|
|
} else {
|
|
|
|
// Object is presumed to be multiply connected through some combo of
|
|
|
|
// strong and weak refs. Hold onto it via mObjectMap.
|
|
|
|
nsSharpObjectMapEntry* entry =
|
2007-07-08 00:08:04 -07:00
|
|
|
static_cast<nsSharpObjectMapEntry*>
|
|
|
|
(PL_DHashTableOperate(&mObjectMap, aObject,
|
2009-09-21 16:44:35 -07:00
|
|
|
PL_DHASH_ADD));
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!entry) {
|
|
|
|
aObject->Release();
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!entry->mObject) {
|
|
|
|
// First time we've seen this object address: add it to mObjectMap
|
|
|
|
// and serialize the object at the current stream offset.
|
|
|
|
PRInt64 thisOffset;
|
|
|
|
rv = Tell(&thisOffset);
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
aObject->Release();
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
// NB: aObject was already held, and mObject is a raw nsISupports*.
|
|
|
|
entry->mObject = aObject;
|
|
|
|
|
|
|
|
oid = (mObjectMap.entryCount << MFL_OBJECT_TAG_BITS);
|
|
|
|
entry->mOID = oid;
|
|
|
|
|
|
|
|
// NB: the (32-bit, fast) CID and object data follow the OID.
|
|
|
|
entry->mInfo.mCIDOffset = thisOffset + sizeof(oid);
|
|
|
|
entry->mInfo.mStrongRefCnt = aIsStrongRef ? 1 : 0;
|
|
|
|
entry->mInfo.mWeakRefCnt = aIsStrongRef ? 0 : 1;
|
|
|
|
|
|
|
|
// Record in oid the fact that we're defining this object in the
|
|
|
|
// stream, and get the object's class info here, so we can take
|
|
|
|
// note of singletons in order to avoid reserializing them when
|
|
|
|
// updating after reading.
|
|
|
|
oid |= MFL_OBJECT_DEF_TAG;
|
|
|
|
classInfo = do_QueryInterface(aObject);
|
|
|
|
if (!classInfo) {
|
|
|
|
NS_NOTREACHED("aObject must implement nsIClassInfo");
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRUint32 flags;
|
|
|
|
if (NS_SUCCEEDED(classInfo->GetFlags(&flags)) &&
|
|
|
|
(flags & nsIClassInfo::SINGLETON)) {
|
|
|
|
MFL_SET_SINGLETON_FLAG(&entry->mInfo);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Already serialized, recover oid and update the desired refcnt.
|
|
|
|
oid = entry->mOID;
|
|
|
|
if (aIsStrongRef) {
|
|
|
|
++entry->mInfo.mStrongRefCnt;
|
|
|
|
NS_ASSERTION(entry->mInfo.mStrongRefCnt != 0,
|
|
|
|
"mStrongRefCnt overflow");
|
|
|
|
} else {
|
|
|
|
MFL_BUMP_WEAK_REFCNT(&entry->mInfo);
|
|
|
|
NS_ASSERTION(MFL_GET_WEAK_REFCNT(&entry->mInfo) != 0,
|
|
|
|
"mWeakRefCnt overflow");
|
|
|
|
}
|
|
|
|
|
|
|
|
aObject->Release();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!aIsStrongRef)
|
|
|
|
oid |= MFL_WEAK_REF_TAG;
|
|
|
|
oid |= (aTags & MFL_QUERY_INTERFACE_TAG);
|
|
|
|
|
|
|
|
rv = Write32(oid ^ MFL_OID_XOR_KEY);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
if (oid & MFL_OBJECT_DEF_TAG) {
|
|
|
|
nsCOMPtr<nsISerializable> serializable(do_QueryInterface(aObject));
|
|
|
|
if (!serializable) {
|
|
|
|
NS_NOTREACHED("aObject must implement nsISerializable");
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCID slowCID;
|
|
|
|
rv = classInfo->GetClassIDNoAlloc(&slowCID);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
NSFastLoadID fastCID;
|
|
|
|
rv = MapID(slowCID, &fastCID);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
rv = WriteFastID(fastCID);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
rv = serializable->Write(this);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsFastLoadFileWriter::WriteObject(nsISupports* aObject, PRBool aIsStrongRef)
|
|
|
|
{
|
|
|
|
#ifdef NS_DEBUG
|
|
|
|
nsCOMPtr<nsISupports> rootObject(do_QueryInterface(aObject));
|
|
|
|
|
|
|
|
NS_ASSERTION(rootObject.get() == aObject,
|
|
|
|
"bad call to WriteObject -- call WriteCompoundObject!");
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return WriteObjectCommon(aObject, aIsStrongRef, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsFastLoadFileWriter::WriteSingleRefObject(nsISupports* aObject)
|
|
|
|
{
|
|
|
|
#ifdef NS_DEBUG
|
|
|
|
nsCOMPtr<nsISupports> rootObject(do_QueryInterface(aObject));
|
|
|
|
|
|
|
|
NS_ASSERTION(rootObject.get() == aObject,
|
|
|
|
"bad call to WriteSingleRefObject -- call WriteCompoundObject!");
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return WriteObjectCommon(aObject, PR_TRUE, MFL_SINGLE_REF_PSEUDO_TAG);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsFastLoadFileWriter::WriteCompoundObject(nsISupports* aObject,
|
|
|
|
const nsIID& aIID,
|
|
|
|
PRBool aIsStrongRef)
|
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
nsCOMPtr<nsISupports> rootObject(do_QueryInterface(aObject));
|
|
|
|
|
|
|
|
// We could assert that |rootObject != aObject|, but that would prevent
|
|
|
|
// callers who don't know whether they're dealing with the primary
|
|
|
|
// nsISupports pointer (e.g., they don't know which implementation of
|
|
|
|
// nsIURI they have) from using this function.
|
|
|
|
|
|
|
|
#ifdef NS_DEBUG
|
|
|
|
nsCOMPtr<nsISupports> roundtrip;
|
|
|
|
rootObject->QueryInterface(aIID, getter_AddRefs(roundtrip));
|
|
|
|
NS_ASSERTION(roundtrip.get() == aObject,
|
|
|
|
"bad aggregation or multiple inheritance detected by call to "
|
|
|
|
"WriteCompoundObject!");
|
|
|
|
#endif
|
|
|
|
|
|
|
|
rv = WriteObjectCommon(rootObject, aIsStrongRef, MFL_QUERY_INTERFACE_TAG);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
NSFastLoadID iid;
|
|
|
|
rv = MapID(aIID, &iid);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
return WriteFastID(iid);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsFastLoadFileWriter::WriteID(const nsID& aID)
|
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
NSFastLoadID fastID;
|
|
|
|
|
|
|
|
rv = MapID(aID, &fastID);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
return WriteFastID(fastID);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsFastLoadFileWriter::Seek(PRInt32 aWhence, PRInt64 aOffset)
|
|
|
|
{
|
|
|
|
mCurrentDocumentMapEntry = nsnull;
|
|
|
|
return mSeekableOutput->Seek(aWhence, aOffset);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsFastLoadFileWriter::Tell(PRInt64 *aResult)
|
|
|
|
{
|
|
|
|
return mSeekableOutput->Tell(aResult);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsFastLoadFileWriter::SetEOF()
|
|
|
|
{
|
|
|
|
return mSeekableOutput->SetEOF();
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsFastLoadFileWriter::SetOutputStream(nsIOutputStream *aStream)
|
|
|
|
{
|
|
|
|
nsresult rv = nsBinaryOutputStream::SetOutputStream(aStream);
|
|
|
|
mSeekableOutput = do_QueryInterface(mOutputStream);
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_COM nsresult
|
|
|
|
NS_NewFastLoadFileWriter(nsIObjectOutputStream* *aResult,
|
|
|
|
nsIOutputStream* aDestStream,
|
|
|
|
nsIFastLoadFileIO* aFileIO)
|
|
|
|
{
|
|
|
|
nsFastLoadFileWriter* writer =
|
|
|
|
new nsFastLoadFileWriter(aDestStream, aFileIO);
|
|
|
|
if (!writer)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
|
|
|
|
// Stabilize writer's refcnt.
|
|
|
|
nsCOMPtr<nsIObjectOutputStream> stream(writer);
|
|
|
|
|
|
|
|
nsresult rv = writer->Open();
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
*aResult = stream;
|
|
|
|
NS_ADDREF(*aResult);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -------------------------- nsFastLoadFileUpdater --------------------------
|
|
|
|
|
2009-10-08 10:30:21 -07:00
|
|
|
NS_IMPL_ISUPPORTS_INHERITED0(nsFastLoadFileUpdater,
|
|
|
|
nsFastLoadFileWriter)
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-10-10 08:04:34 -07:00
|
|
|
PLDHashOperator
|
2007-03-22 10:30:00 -07:00
|
|
|
nsFastLoadFileUpdater::CopyReadDocumentMapEntryToUpdater(PLDHashTable *aTable,
|
|
|
|
PLDHashEntryHdr *aHdr,
|
|
|
|
PRUint32 aNumber,
|
|
|
|
void *aData)
|
|
|
|
{
|
|
|
|
nsDocumentMapReadEntry* readEntry =
|
2007-07-08 00:08:04 -07:00
|
|
|
static_cast<nsDocumentMapReadEntry*>(aHdr);
|
2007-03-22 10:30:00 -07:00
|
|
|
nsFastLoadFileUpdater* updater =
|
2007-07-08 00:08:04 -07:00
|
|
|
reinterpret_cast<nsFastLoadFileUpdater*>(aData);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
void* spec = nsMemory::Clone(readEntry->mString,
|
|
|
|
strlen(readEntry->mString) + 1);
|
|
|
|
if (!spec)
|
|
|
|
return PL_DHASH_STOP;
|
|
|
|
|
|
|
|
nsDocumentMapWriteEntry* writeEntry =
|
2007-07-08 00:08:04 -07:00
|
|
|
static_cast<nsDocumentMapWriteEntry*>
|
|
|
|
(PL_DHashTableOperate(&updater->mDocumentMap, spec,
|
2009-09-21 16:44:35 -07:00
|
|
|
PL_DHASH_ADD));
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!writeEntry) {
|
|
|
|
nsMemory::Free(spec);
|
|
|
|
return PL_DHASH_STOP;
|
|
|
|
}
|
|
|
|
|
2007-07-08 00:08:04 -07:00
|
|
|
writeEntry->mString = reinterpret_cast<const char*>(spec);
|
2007-03-22 10:30:00 -07:00
|
|
|
writeEntry->mURI = nsnull;
|
|
|
|
writeEntry->mInitialSegmentOffset = readEntry->mInitialSegmentOffset;
|
|
|
|
writeEntry->mCurrentSegmentOffset = 0;
|
|
|
|
return PL_DHASH_NEXT;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsFastLoadFileUpdater::Open(nsFastLoadFileReader* aReader)
|
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
rv = nsFastLoadFileWriter::Init();
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
PRUint32 i, n;
|
|
|
|
|
|
|
|
// Map from dense, zero-based, uint32 NSFastLoadID in reader to 16-byte
|
|
|
|
// nsID in updater.
|
|
|
|
nsID* readIDMap = aReader->mFooter.mIDMap;
|
|
|
|
for (i = 0, n = aReader->mFooter.mNumIDs; i < n; i++) {
|
|
|
|
NSFastLoadID fastID;
|
|
|
|
rv = MapID(readIDMap[i], &fastID);
|
|
|
|
NS_ASSERTION(fastID == i + 1, "huh?");
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Map from reader dense, zero-based MFL_OID_TO_SHARP_INDEX(oid) to sharp
|
|
|
|
// object offset and refcnt information in updater.
|
|
|
|
nsFastLoadFileReader::nsObjectMapEntry* readObjectMap =
|
|
|
|
aReader->mFooter.mObjectMap;
|
|
|
|
|
|
|
|
// Prepare to save aReader state in case we need to seek back and read a
|
|
|
|
// singleton object that might otherwise get written by this updater.
|
|
|
|
nsDocumentMapReadEntry* saveDocMapEntry = nsnull;
|
|
|
|
PRInt64 saveOffset = 0;
|
|
|
|
|
|
|
|
for (i = 0, n = aReader->mFooter.mNumSharpObjects; i < n; i++) {
|
|
|
|
nsFastLoadFileReader::nsObjectMapEntry* readEntry = &readObjectMap[i];
|
|
|
|
|
|
|
|
NS_ASSERTION(readEntry->mCIDOffset != 0,
|
|
|
|
"fastload updater: mCIDOffset cannot be zero!");
|
|
|
|
|
|
|
|
// If the reader didn't read this object but it's a singleton, we must
|
|
|
|
// "deserialize" it now, to discover its one and only root nsISupports
|
|
|
|
// address. The object already exists in memory if it was created at
|
|
|
|
// startup without resort to the FastLoad file. The canonical example
|
|
|
|
// is the system principal object held by all XUL JS scripts.
|
|
|
|
|
|
|
|
nsISupports* obj = readEntry->mReadObject;
|
|
|
|
if (!obj && MFL_GET_SINGLETON_FLAG(readEntry)) {
|
|
|
|
if (!saveDocMapEntry) {
|
2009-10-08 10:30:21 -07:00
|
|
|
rv = aReader->Tell(&saveOffset);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
saveDocMapEntry = aReader->mCurrentDocumentMapEntry;
|
|
|
|
aReader->mCurrentDocumentMapEntry = nsnull;
|
|
|
|
}
|
|
|
|
|
2009-10-08 10:30:21 -07:00
|
|
|
rv = aReader->Seek(nsISeekableStream::NS_SEEK_SET,
|
2007-03-22 10:30:00 -07:00
|
|
|
readEntry->mCIDOffset);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
rv = aReader
|
|
|
|
->DeserializeObject(getter_AddRefs(readEntry->mReadObject));
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
obj = readEntry->mReadObject;
|
|
|
|
|
|
|
|
// Don't forget to set mSkipOffset in case someone calls the reader
|
|
|
|
// to "deserialize" (yet again) the object we just read.
|
|
|
|
//
|
|
|
|
// Say the singleton is the system principal, and the FastLoad file
|
|
|
|
// contains data for navigator.xul including scripts and functions.
|
|
|
|
// If we update the FastLoad file to contain data for messenger.xul
|
|
|
|
// in a separate session started via mozilla -mail, *and during the
|
|
|
|
// same FastLoad episode in this session* race to open a navigator
|
|
|
|
// window, we will attempt to read all objects serialized in the
|
|
|
|
// navigator.xul portion of the FastLoad file.
|
|
|
|
//
|
|
|
|
// mSkipOffset must be set in such a case so the reader can skip
|
|
|
|
// the system principal's serialized data, because the updater for
|
|
|
|
// messenger.xul being opened here has already read it.
|
|
|
|
|
2009-10-08 10:30:21 -07:00
|
|
|
rv = aReader->Tell(&readEntry->mSkipOffset);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
NSFastLoadOID oid = MFL_SHARP_INDEX_TO_OID(i);
|
|
|
|
void* key = obj
|
2007-07-08 00:08:04 -07:00
|
|
|
? reinterpret_cast<void*>(obj)
|
|
|
|
: reinterpret_cast<void*>((oid | MFL_OBJECT_DEF_TAG));
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
nsSharpObjectMapEntry* writeEntry =
|
2007-07-08 00:08:04 -07:00
|
|
|
static_cast<nsSharpObjectMapEntry*>
|
|
|
|
(PL_DHashTableOperate(&mObjectMap, key,
|
2009-09-21 16:44:35 -07:00
|
|
|
PL_DHASH_ADD));
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!writeEntry)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
|
|
|
|
// Hold the object if there is one, so that objmap_ClearEntry can
|
|
|
|
// release the reference.
|
|
|
|
NS_IF_ADDREF(obj);
|
2007-07-08 00:08:04 -07:00
|
|
|
writeEntry->mObject = reinterpret_cast<nsISupports*>(key);
|
2007-03-22 10:30:00 -07:00
|
|
|
writeEntry->mOID = oid;
|
|
|
|
writeEntry->mInfo.mCIDOffset = readEntry->mCIDOffset;
|
|
|
|
writeEntry->mInfo.mStrongRefCnt = readEntry->mSaveStrongRefCnt;
|
|
|
|
writeEntry->mInfo.mWeakRefCnt = readEntry->mSaveWeakRefCnt;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we had to read any singletons, restore aReader's saved state.
|
|
|
|
if (saveDocMapEntry) {
|
2009-10-08 10:30:21 -07:00
|
|
|
rv = aReader->Seek(nsISeekableStream::NS_SEEK_SET, saveOffset);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
aReader->mCurrentDocumentMapEntry = saveDocMapEntry;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Copy URI spec string and initial segment offset in FastLoad file from
|
|
|
|
// nsDocumentMapReadEntry in reader to nsDocumentMapWriteEntry in updater.
|
|
|
|
// If we didn't enumerate all entries, we ran out of memory.
|
|
|
|
n = PL_DHashTableEnumerate(&aReader->mFooter.mDocumentMap,
|
|
|
|
CopyReadDocumentMapEntryToUpdater,
|
|
|
|
this);
|
|
|
|
if (n != aReader->mFooter.mDocumentMap.entryCount)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
|
|
|
|
// Copy source filename dependencies from reader to updater.
|
|
|
|
nsISupportsArray* readDeps = aReader->mFooter.mDependencies;
|
|
|
|
rv = readDeps->Count(&n);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
for (i = 0; i < n; i++) {
|
|
|
|
nsCOMPtr<nsIFile> file;
|
|
|
|
rv = readDeps->GetElementAt(i, getter_AddRefs(file));
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
rv = AddDependency(file);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Seek to the reader's footer offset so we overwrite the footer. First,
|
|
|
|
// update the header to have a zero mFooterOffset, which will invalidate
|
|
|
|
// the FastLoad file on next startup read attempt, should we crash before
|
|
|
|
// completing this update.
|
|
|
|
rv = mSeekableOutput->Seek(nsISeekableStream::NS_SEEK_SET,
|
|
|
|
offsetof(nsFastLoadHeader, mFooterOffset));
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
rv = Write32(0);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
rv = mSeekableOutput->Seek(nsISeekableStream::NS_SEEK_SET,
|
|
|
|
aReader->mHeader.mFooterOffset);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsFastLoadFileUpdater::Close()
|
|
|
|
{
|
|
|
|
// Call base-class Close implementation, which uses mFileIO.
|
|
|
|
nsresult rv = nsFastLoadFileWriter::Close();
|
|
|
|
|
|
|
|
// Break degenerate cycle from this->mFileIO to this.
|
|
|
|
mFileIO = nsnull;
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_COM nsresult
|
|
|
|
NS_NewFastLoadFileUpdater(nsIObjectOutputStream* *aResult,
|
2009-10-08 10:30:21 -07:00
|
|
|
nsIFastLoadFileIO *aFileIO,
|
2007-03-22 10:30:00 -07:00
|
|
|
nsIObjectInputStream* aReaderAsStream)
|
|
|
|
{
|
|
|
|
// Make sure that aReaderAsStream is an nsFastLoadFileReader.
|
|
|
|
nsCOMPtr<nsIFastLoadFileReader> reader(do_QueryInterface(aReaderAsStream));
|
|
|
|
if (!reader)
|
|
|
|
return NS_ERROR_UNEXPECTED;
|
|
|
|
|
2009-10-08 10:30:21 -07:00
|
|
|
nsCOMPtr<nsIOutputStream> output;
|
|
|
|
nsresult rv = aFileIO->GetOutputStream(getter_AddRefs(output));
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
nsFastLoadFileUpdater* updater = new nsFastLoadFileUpdater(output, aFileIO);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!updater)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
|
|
|
|
// Stabilize updater's refcnt.
|
|
|
|
nsCOMPtr<nsIObjectOutputStream> stream(updater);
|
|
|
|
|
2009-10-08 10:30:21 -07:00
|
|
|
rv = updater->Open(static_cast<nsFastLoadFileReader*>(aReaderAsStream));
|
2007-03-22 10:30:00 -07:00
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
*aResult = stream;
|
|
|
|
NS_ADDREF(*aResult);
|
|
|
|
return NS_OK;
|
|
|
|
}
|