mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-26 05:37:11 +00:00
cc394d8cae
- Bug 1253094, part 8 - Stop using DebugOnly for class/struct members in uriloader/. r=bz (15566e1146) - Bug 1253094, part 9 - Stop using DebugOnly for class/struct members in xpcom/. r=froydnj (9fb881be79) - Bug 1253094, part 10 - Stop using DebugOnly for class/struct members in memory/. r=njn (5fd563e632) - Bug 1248843 - Make it clearer that DebugOnly uses up space even in optimized, non-DEBUG builds. r=Waldo (8e5e6e6a01) - Bug 1253094, part 11 - Make DebugOnly a MOZ_STACK_CLASS. r=Waldo (7cee0c3c03) - Bug 1246116 - BaldrMonkey: Wasm validation for block and loop. r=luke (0da84fb8fe) - Bug 1252498 - Baldr: add Wasm object behind pref, default off (r=jorendorff) (b554912a96) - Bug 1256988 - Fix #endif comments for MOZ_WIDGET_GTK. r=chmanchester (28928d1d58) - Bug 724538 - Regenerate Unicode property data with updated script. r=emk (50e43bb897) - Bug 1232665 - initialize class members: mLastPrefLang and mLastPrefFirstFont. r=jfkthame (8a62f92809) - Bug 1248248 - Don't break glyph run for orientation mismatch before a cluster-extender. r=xidorn (f114f65903) - Bug 1252432 part 1 - Implement wasm i32.wrap. r=luke (54d1e634b6) - Bug 1252432 part 2 - Implement wasm i64.extend_s and i64.extend_u. r=bbouvier (d673455188) - Bug 1252432 part 3 - Implement wasm i64.trunc_s and i64.trunc_u. r=sunfish (41dd8d7272) - Bug 1253115 - BaldrMonkey: Convert AsmJSHeapAccess offsets to unsigned. r=luke (5cb02e4832) - Bug 1253115 - BaldrMonkey: Refactor AsmJS load/store infrastructure. r=luke (ef75bae281) - Bug 1243583 - ensure transition events are dispatched to all the relevant subdocuments, r=dholbert (05026b75bb) - Bug 1240985 - IPC fuzzer (r=gabor) (e825e77187) - Bug 1248750 - Eliminate intentional IPC crashes (r=dvander) (0ace690c3b) - Bug 1242609 - Implement PeekMessage to get some messages earlier. r=billm (4985fc8394) - Bug 1257314 - Properly lock in IPC PeekMessages. r=dvander a=topcrash (6fe1db48f4) - Bug 1242609 - Use PeekMessages to get the most recent DisplayPort request. r=kats (12374eafba) - Bug 1254471 - Fix MessageChannel.cpp error unused variable transaction. r=billm (6a74186673) - Bug 1251482 - Remove remaining references to MOZILLA_XPCOMRT_API from xpcom. r=froydnj (b691ca31f4) - Bug 1251473 - Remove libxpcomrt library. r=froydnj (faed80b0ed) - Bug 1249787 - BaldrMonkey: Add the testcase, which was mistakenly omitted from the main push. r=luke (1ef533365a) - Bug 1250556: Require Store value expression to have the opcode's type; r=sunfish (b8363b4fc6) - Bug 1250955: Guard against unimplemented i64 opcodes; r=jandem (98689ea7da) - Bug 1253137 - Baldr: update version uint32 to match BinaryEncoding.md (r=sunfish) (c75d60370a) - Bug 1253681 - BaldrMonkey: Update to the current official opcode encodings. r=luke (2e69d5780b) - Bug 1252019: Don't patch profiling entries for the BadIndirectCall exit; r=luke (6f336d796c) - Bug 1253137 - Baldr: update section header structure to match BinaryEncoding.md, part 1 (r=sunfish) (cd3e204373) - Bug 1246116 - BaldrMonkey: Wasm validation for block and loop. r=luke (c594d15189) - Bug 1253137 - Baldr: update memory exports to match BinaryEncoding.md (r=sunfish) (73fd37ee3b)
225 lines
4.7 KiB
C++
225 lines
4.7 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 "FileLocation.h"
|
|
#include "nsZipArchive.h"
|
|
#include "nsURLHelper.h"
|
|
|
|
namespace mozilla {
|
|
|
|
FileLocation::FileLocation()
|
|
{
|
|
}
|
|
|
|
FileLocation::~FileLocation()
|
|
{
|
|
}
|
|
|
|
FileLocation::FileLocation(nsIFile* aFile)
|
|
{
|
|
Init(aFile);
|
|
}
|
|
|
|
FileLocation::FileLocation(nsIFile* aFile, const char* aPath)
|
|
{
|
|
Init(aFile, aPath);
|
|
}
|
|
|
|
FileLocation::FileLocation(const FileLocation& aFile, const char* aPath)
|
|
{
|
|
if (aFile.IsZip()) {
|
|
if (aFile.mBaseFile) {
|
|
Init(aFile.mBaseFile, aFile.mPath.get());
|
|
}
|
|
else {
|
|
Init(aFile.mBaseZip, aFile.mPath.get());
|
|
}
|
|
if (aPath) {
|
|
int32_t i = mPath.RFindChar('/');
|
|
if (kNotFound == i) {
|
|
mPath.Truncate(0);
|
|
} else {
|
|
mPath.Truncate(i + 1);
|
|
}
|
|
mPath += aPath;
|
|
}
|
|
} else {
|
|
if (aPath) {
|
|
nsCOMPtr<nsIFile> cfile;
|
|
aFile.mBaseFile->GetParent(getter_AddRefs(cfile));
|
|
|
|
#if defined(XP_WIN)
|
|
nsAutoCString pathStr(aPath);
|
|
char* p;
|
|
uint32_t len = pathStr.GetMutableData(&p);
|
|
for (; len; ++p, --len) {
|
|
if ('/' == *p) {
|
|
*p = '\\';
|
|
}
|
|
}
|
|
cfile->AppendRelativeNativePath(pathStr);
|
|
#else
|
|
cfile->AppendRelativeNativePath(nsDependentCString(aPath));
|
|
#endif
|
|
Init(cfile);
|
|
} else {
|
|
Init(aFile.mBaseFile);
|
|
}
|
|
}
|
|
}
|
|
|
|
void
|
|
FileLocation::Init(nsIFile* aFile)
|
|
{
|
|
mBaseZip = nullptr;
|
|
mBaseFile = aFile;
|
|
mPath.Truncate();
|
|
}
|
|
|
|
void
|
|
FileLocation::Init(nsIFile* aFile, const char* aPath)
|
|
{
|
|
mBaseZip = nullptr;
|
|
mBaseFile = aFile;
|
|
mPath = aPath;
|
|
}
|
|
|
|
void
|
|
FileLocation::Init(nsZipArchive* aZip, const char* aPath)
|
|
{
|
|
mBaseZip = aZip;
|
|
mBaseFile = nullptr;
|
|
mPath = aPath;
|
|
}
|
|
|
|
void
|
|
FileLocation::GetURIString(nsACString& aResult) const
|
|
{
|
|
if (mBaseFile) {
|
|
net_GetURLSpecFromActualFile(mBaseFile, aResult);
|
|
} else if (mBaseZip) {
|
|
RefPtr<nsZipHandle> handler = mBaseZip->GetFD();
|
|
handler->mFile.GetURIString(aResult);
|
|
}
|
|
if (IsZip()) {
|
|
aResult.Insert("jar:", 0);
|
|
aResult += "!/";
|
|
aResult += mPath;
|
|
}
|
|
}
|
|
|
|
already_AddRefed<nsIFile>
|
|
FileLocation::GetBaseFile()
|
|
{
|
|
if (IsZip() && mBaseZip) {
|
|
RefPtr<nsZipHandle> handler = mBaseZip->GetFD();
|
|
if (handler) {
|
|
return handler->mFile.GetBaseFile();
|
|
}
|
|
return nullptr;
|
|
}
|
|
|
|
nsCOMPtr<nsIFile> file = mBaseFile;
|
|
return file.forget();
|
|
}
|
|
|
|
bool
|
|
FileLocation::Equals(const FileLocation& aFile) const
|
|
{
|
|
if (mPath != aFile.mPath) {
|
|
return false;
|
|
}
|
|
|
|
if (mBaseFile && aFile.mBaseFile) {
|
|
bool eq;
|
|
return NS_SUCCEEDED(mBaseFile->Equals(aFile.mBaseFile, &eq)) && eq;
|
|
}
|
|
|
|
const FileLocation* a = this;
|
|
const FileLocation* b = &aFile;
|
|
if (a->mBaseZip) {
|
|
RefPtr<nsZipHandle> handler = a->mBaseZip->GetFD();
|
|
a = &handler->mFile;
|
|
}
|
|
if (b->mBaseZip) {
|
|
RefPtr<nsZipHandle> handler = b->mBaseZip->GetFD();
|
|
b = &handler->mFile;
|
|
}
|
|
|
|
return a->Equals(*b);
|
|
}
|
|
|
|
nsresult
|
|
FileLocation::GetData(Data& aData)
|
|
{
|
|
if (!IsZip()) {
|
|
return mBaseFile->OpenNSPRFileDesc(PR_RDONLY, 0444, &aData.mFd.rwget());
|
|
}
|
|
aData.mZip = mBaseZip;
|
|
if (!aData.mZip) {
|
|
aData.mZip = new nsZipArchive();
|
|
aData.mZip->OpenArchive(mBaseFile);
|
|
}
|
|
aData.mItem = aData.mZip->GetItem(mPath.get());
|
|
if (aData.mItem) {
|
|
return NS_OK;
|
|
}
|
|
return NS_ERROR_FILE_UNRECOGNIZED_PATH;
|
|
}
|
|
|
|
nsresult
|
|
FileLocation::Data::GetSize(uint32_t* aResult)
|
|
{
|
|
if (mFd) {
|
|
PRFileInfo64 fileInfo;
|
|
if (PR_SUCCESS != PR_GetOpenFileInfo64(mFd, &fileInfo)) {
|
|
return NS_ErrorAccordingToNSPR();
|
|
}
|
|
|
|
if (fileInfo.size > int64_t(UINT32_MAX)) {
|
|
return NS_ERROR_FILE_TOO_BIG;
|
|
}
|
|
|
|
*aResult = fileInfo.size;
|
|
return NS_OK;
|
|
}
|
|
else if (mItem) {
|
|
*aResult = mItem->RealSize();
|
|
return NS_OK;
|
|
}
|
|
return NS_ERROR_NOT_INITIALIZED;
|
|
}
|
|
|
|
nsresult
|
|
FileLocation::Data::Copy(char* aBuf, uint32_t aLen)
|
|
{
|
|
if (mFd) {
|
|
for (uint32_t totalRead = 0; totalRead < aLen;) {
|
|
int32_t read = PR_Read(mFd, aBuf + totalRead,
|
|
XPCOM_MIN(aLen - totalRead, uint32_t(INT32_MAX)));
|
|
if (read < 0) {
|
|
return NS_ErrorAccordingToNSPR();
|
|
}
|
|
totalRead += read;
|
|
}
|
|
return NS_OK;
|
|
}
|
|
else if (mItem) {
|
|
nsZipCursor cursor(mItem, mZip, reinterpret_cast<uint8_t*>(aBuf),
|
|
aLen, true);
|
|
uint32_t readLen;
|
|
cursor.Copy(&readLen);
|
|
if (readLen != aLen) {
|
|
nsZipArchive::sFileCorruptedReason = "FileLocation::Data: insufficient data";
|
|
return NS_ERROR_FILE_CORRUPTED;
|
|
}
|
|
return NS_OK;
|
|
}
|
|
return NS_ERROR_NOT_INITIALIZED;
|
|
}
|
|
|
|
} /* namespace mozilla */
|