mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-26 14:18:48 +00:00
515941185e
- Bug 1160628. Speed up the URL constructor in the common case of no base URI. r=baku (ac5b2fe4e) - Bug 1139005 - Need to check the return value of AutoJSAPI.init in canvas EncodeCallback (r=ayang) (df623ad1b) - Bug 866846 - Use WAL journal mode for IndexedDB databases, r=janv. (bdcb676ac) - Apply at Bug 866846 - Use WAL journal mode for IndexedDB databases (breaks build!) (cf90bf698) - Bug 1131766 - Use a simpler thread model for IndexedDB transactions, r=khuey. (broken build) (12c8980b8) - Replay of: Bug 1138293 - Use malloc/free/realloc/calloc instead of moz_malloc Bug 1134923 - Remove NS_Alloc/NS_Realloc/NS_Free. r=nfroyd Bug 1182996 - Fix and add missing namespace comments. rs=ehsan Bug 1149420 - Make the IndexedDB permissions prompt work in e10s. r=b (f6818b630) - Bug 1112702 - Make IndexedDB transactions non-durable by default, r=khuey. (4d76a07c9) - Bug 1131776 - Use WITHOUT ROWID tables for IndexedDB, r=janv. (941399fa2)
136 lines
4.0 KiB
C++
136 lines
4.0 KiB
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
/* 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 "FileStreams.h"
|
|
|
|
#include "QuotaManager.h"
|
|
#include "prio.h"
|
|
|
|
USING_QUOTA_NAMESPACE
|
|
|
|
template <class FileStreamBase>
|
|
NS_IMETHODIMP
|
|
FileQuotaStream<FileStreamBase>::SetEOF()
|
|
{
|
|
nsresult rv = FileStreamBase::SetEOF();
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
if (mQuotaObject) {
|
|
int64_t offset;
|
|
nsresult rv = FileStreamBase::Tell(&offset);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
mQuotaObject->MaybeUpdateSize(offset, /* aTruncate */ true);
|
|
}
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
template <class FileStreamBase>
|
|
NS_IMETHODIMP
|
|
FileQuotaStream<FileStreamBase>::Close()
|
|
{
|
|
nsresult rv = FileStreamBase::Close();
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
mQuotaObject = nullptr;
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
template <class FileStreamBase>
|
|
nsresult
|
|
FileQuotaStream<FileStreamBase>::DoOpen()
|
|
{
|
|
QuotaManager* quotaManager = QuotaManager::Get();
|
|
NS_ASSERTION(quotaManager, "Shouldn't be null!");
|
|
|
|
NS_ASSERTION(!mQuotaObject, "Creating quota object more than once?");
|
|
mQuotaObject = quotaManager->GetQuotaObject(mPersistenceType, mGroup, mOrigin,
|
|
FileStreamBase::mOpenParams.localFile);
|
|
|
|
nsresult rv = FileStreamBase::DoOpen();
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
if (mQuotaObject && (FileStreamBase::mOpenParams.ioFlags & PR_TRUNCATE)) {
|
|
mQuotaObject->MaybeUpdateSize(0, /* aTruncate */ true);
|
|
}
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
template <class FileStreamBase>
|
|
NS_IMETHODIMP
|
|
FileQuotaStreamWithWrite<FileStreamBase>::Write(const char* aBuf,
|
|
uint32_t aCount,
|
|
uint32_t* _retval)
|
|
{
|
|
nsresult rv;
|
|
|
|
if (FileQuotaStreamWithWrite::mQuotaObject) {
|
|
int64_t offset;
|
|
rv = FileStreamBase::Tell(&offset);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
MOZ_ASSERT(INT64_MAX - offset >= int64_t(aCount));
|
|
|
|
if (!FileQuotaStreamWithWrite::
|
|
mQuotaObject->MaybeUpdateSize(offset + int64_t(aCount),
|
|
/* aTruncate */ false)) {
|
|
return NS_ERROR_FILE_NO_DEVICE_SPACE;
|
|
}
|
|
}
|
|
|
|
rv = FileStreamBase::Write(aBuf, aCount, _retval);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMPL_ISUPPORTS_INHERITED0(FileInputStream, nsFileInputStream)
|
|
|
|
already_AddRefed<FileInputStream>
|
|
FileInputStream::Create(PersistenceType aPersistenceType,
|
|
const nsACString& aGroup, const nsACString& aOrigin,
|
|
nsIFile* aFile, int32_t aIOFlags, int32_t aPerm,
|
|
int32_t aBehaviorFlags)
|
|
{
|
|
nsRefPtr<FileInputStream> stream =
|
|
new FileInputStream(aPersistenceType, aGroup, aOrigin);
|
|
nsresult rv = stream->Init(aFile, aIOFlags, aPerm, aBehaviorFlags);
|
|
NS_ENSURE_SUCCESS(rv, nullptr);
|
|
return stream.forget();
|
|
}
|
|
|
|
NS_IMPL_ISUPPORTS_INHERITED0(FileOutputStream, nsFileOutputStream)
|
|
|
|
already_AddRefed<FileOutputStream>
|
|
FileOutputStream::Create(PersistenceType aPersistenceType,
|
|
const nsACString& aGroup, const nsACString& aOrigin,
|
|
nsIFile* aFile, int32_t aIOFlags, int32_t aPerm,
|
|
int32_t aBehaviorFlags)
|
|
{
|
|
nsRefPtr<FileOutputStream> stream =
|
|
new FileOutputStream(aPersistenceType, aGroup, aOrigin);
|
|
nsresult rv = stream->Init(aFile, aIOFlags, aPerm, aBehaviorFlags);
|
|
NS_ENSURE_SUCCESS(rv, nullptr);
|
|
return stream.forget();
|
|
}
|
|
|
|
NS_IMPL_ISUPPORTS_INHERITED0(FileStream, nsFileStream)
|
|
|
|
already_AddRefed<FileStream>
|
|
FileStream::Create(PersistenceType aPersistenceType, const nsACString& aGroup,
|
|
const nsACString& aOrigin, nsIFile* aFile, int32_t aIOFlags,
|
|
int32_t aPerm, int32_t aBehaviorFlags)
|
|
{
|
|
nsRefPtr<FileStream> stream =
|
|
new FileStream(aPersistenceType, aGroup, aOrigin);
|
|
nsresult rv = stream->Init(aFile, aIOFlags, aPerm, aBehaviorFlags);
|
|
NS_ENSURE_SUCCESS(rv, nullptr);
|
|
return stream.forget();
|
|
}
|