1999-06-02 01:08:32 +04:00
|
|
|
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
1999-06-02 01:08:32 +04:00
|
|
|
|
2014-02-26 08:32:48 +04:00
|
|
|
#ifndef nsJAR_h_
|
|
|
|
#define nsJAR_h_
|
1999-06-02 01:08:32 +04:00
|
|
|
|
2000-01-29 03:03:57 +03:00
|
|
|
#include "nscore.h"
|
|
|
|
#include "prio.h"
|
|
|
|
#include "plstr.h"
|
2015-05-19 21:15:34 +03:00
|
|
|
#include "mozilla/Logging.h"
|
2000-08-23 07:18:53 +04:00
|
|
|
#include "prinrval.h"
|
2000-01-29 03:03:57 +03:00
|
|
|
|
Rollup of bug 645263 and bug 646259: Switch to mozilla:: sync primitives. r=cjones,dbaron,doublec,ehsan src=bsmedberg
Bug 645263, part 0: Count sync primitive ctor/dtors. r=dbaron
Bug 645263, part 1: Migrate content/media to mozilla:: sync primitives. r=doublec
Bug 645263, part 2: Migrate modules/plugin to mozilla:: sync primitives. sr=bsmedberg
Bug 645263, part 3: Migrate nsComponentManagerImpl to mozilla:: sync primitives. sr=bsmedberg
Bug 645263, part 4: Migrate everything else to mozilla:: sync primitives. r=dbaron
Bug 645263, part 5: Remove nsAutoLock.*. sr=bsmedberg
Bug 645263, part 6: Make editor test be nicer to deadlock detector. r=ehsan
Bug 645263, part 7: Disable tracemalloc backtraces for xpcshell tests. r=dbaron
Bug 646259: Fix nsCacheService to use a CondVar for notifying. r=cjones
2011-04-01 08:29:02 +04:00
|
|
|
#include "mozilla/Mutex.h"
|
2000-01-29 03:03:57 +03:00
|
|
|
#include "nsIComponentManager.h"
|
|
|
|
#include "nsCOMPtr.h"
|
2014-02-26 08:32:48 +04:00
|
|
|
#include "nsClassHashtable.h"
|
2000-03-27 03:30:52 +04:00
|
|
|
#include "nsString.h"
|
2000-01-29 03:03:57 +03:00
|
|
|
#include "nsIFile.h"
|
2006-05-02 23:33:09 +04:00
|
|
|
#include "nsStringEnumerator.h"
|
2014-02-25 05:16:11 +04:00
|
|
|
#include "nsHashKeys.h"
|
|
|
|
#include "nsRefPtrHashtable.h"
|
|
|
|
#include "nsTHashtable.h"
|
2000-01-29 03:03:57 +03:00
|
|
|
#include "nsIZipReader.h"
|
1999-06-23 10:16:28 +04:00
|
|
|
#include "nsZipArchive.h"
|
2000-11-01 01:44:20 +03:00
|
|
|
#include "nsIObserverService.h"
|
|
|
|
#include "nsWeakReference.h"
|
2001-10-20 00:52:59 +04:00
|
|
|
#include "nsIObserver.h"
|
2012-06-13 07:27:07 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
1999-06-02 01:08:32 +04:00
|
|
|
|
2000-08-23 07:18:53 +04:00
|
|
|
class nsZipReaderCache;
|
1999-10-26 23:43:26 +04:00
|
|
|
|
1999-06-02 01:08:32 +04:00
|
|
|
/*-------------------------------------------------------------------------
|
2014-02-25 05:16:11 +04:00
|
|
|
* Class nsJAR declaration.
|
|
|
|
* nsJAR serves as an XPCOM wrapper for nsZipArchive with the addition of
|
|
|
|
* JAR manifest file parsing.
|
1999-06-02 01:08:32 +04:00
|
|
|
*------------------------------------------------------------------------*/
|
2015-03-21 19:28:04 +03:00
|
|
|
class nsJAR final : public nsIZipReader
|
1999-06-02 01:08:32 +04:00
|
|
|
{
|
2000-02-14 04:57:01 +03:00
|
|
|
// Allows nsJARInputStream to call the verification functions
|
2000-01-29 03:03:57 +03:00
|
|
|
friend class nsJARInputStream;
|
2010-09-09 07:38:34 +04:00
|
|
|
// Allows nsZipReaderCache to access mOuterZipEntry
|
|
|
|
friend class nsZipReaderCache;
|
2000-01-29 03:03:57 +03:00
|
|
|
|
2014-06-25 06:09:14 +04:00
|
|
|
private:
|
|
|
|
|
|
|
|
virtual ~nsJAR();
|
|
|
|
|
1999-06-02 01:08:32 +04:00
|
|
|
public:
|
|
|
|
|
|
|
|
nsJAR();
|
2014-02-25 05:16:11 +04:00
|
|
|
|
2007-04-23 18:21:53 +04:00
|
|
|
NS_DEFINE_STATIC_CID_ACCESSOR( NS_ZIPREADER_CID )
|
2014-02-25 05:16:11 +04:00
|
|
|
|
2013-07-19 06:23:44 +04:00
|
|
|
NS_DECL_THREADSAFE_ISUPPORTS
|
1999-08-21 12:54:47 +04:00
|
|
|
|
1999-11-12 09:13:13 +03:00
|
|
|
NS_DECL_NSIZIPREADER
|
2000-04-12 11:58:24 +04:00
|
|
|
|
2006-05-02 23:33:09 +04:00
|
|
|
nsresult GetJarPath(nsACString& aResult);
|
|
|
|
|
2000-08-23 07:18:53 +04:00
|
|
|
PRIntervalTime GetReleaseTime() {
|
|
|
|
return mReleaseTime;
|
2000-11-01 01:44:20 +03:00
|
|
|
}
|
2014-02-25 05:16:11 +04:00
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool IsReleased() {
|
2000-11-01 01:44:20 +03:00
|
|
|
return mReleaseTime != PR_INTERVAL_NO_TIMEOUT;
|
2000-08-23 07:18:53 +04:00
|
|
|
}
|
2000-09-18 11:08:22 +04:00
|
|
|
|
|
|
|
void SetReleaseTime() {
|
|
|
|
mReleaseTime = PR_IntervalNow();
|
|
|
|
}
|
2014-02-25 05:16:11 +04:00
|
|
|
|
2000-09-18 11:08:22 +04:00
|
|
|
void ClearReleaseTime() {
|
|
|
|
mReleaseTime = PR_INTERVAL_NO_TIMEOUT;
|
|
|
|
}
|
2014-02-25 05:16:11 +04:00
|
|
|
|
2000-08-23 07:18:53 +04:00
|
|
|
void SetZipReaderCache(nsZipReaderCache* cache) {
|
|
|
|
mCache = cache;
|
|
|
|
}
|
2003-03-14 21:59:51 +03:00
|
|
|
|
2014-07-18 06:46:24 +04:00
|
|
|
nsresult GetNSPRFileDesc(PRFileDesc** aNSPRFileDesc);
|
|
|
|
|
2000-04-12 11:58:24 +04:00
|
|
|
protected:
|
2014-02-26 08:32:48 +04:00
|
|
|
|
2000-01-29 03:03:57 +03:00
|
|
|
//-- Private data members
|
2000-04-26 07:50:07 +04:00
|
|
|
nsCOMPtr<nsIFile> mZipFile; // The zip/jar file on disk
|
2010-09-09 07:38:34 +04:00
|
|
|
nsCString mOuterZipEntry; // The entry in the zip this zip is reading from
|
2016-01-12 21:16:59 +03:00
|
|
|
RefPtr<nsZipArchive> mZip; // The underlying zip archive
|
2000-08-23 07:18:53 +04:00
|
|
|
PRIntervalTime mReleaseTime; // used by nsZipReaderCache for flushing entries
|
|
|
|
nsZipReaderCache* mCache; // if cached, this points to the cache it's contained in
|
2014-02-25 05:16:11 +04:00
|
|
|
mozilla::Mutex mLock;
|
2012-08-22 19:56:38 +04:00
|
|
|
int64_t mMtime;
|
2011-09-29 10:19:26 +04:00
|
|
|
bool mOpened;
|
2016-04-28 23:07:02 +03:00
|
|
|
bool mIsOmnijar;
|
Rollup of bug 645263 and bug 646259: Switch to mozilla:: sync primitives. r=cjones,dbaron,doublec,ehsan src=bsmedberg
Bug 645263, part 0: Count sync primitive ctor/dtors. r=dbaron
Bug 645263, part 1: Migrate content/media to mozilla:: sync primitives. r=doublec
Bug 645263, part 2: Migrate modules/plugin to mozilla:: sync primitives. sr=bsmedberg
Bug 645263, part 3: Migrate nsComponentManagerImpl to mozilla:: sync primitives. sr=bsmedberg
Bug 645263, part 4: Migrate everything else to mozilla:: sync primitives. r=dbaron
Bug 645263, part 5: Remove nsAutoLock.*. sr=bsmedberg
Bug 645263, part 6: Make editor test be nicer to deadlock detector. r=ehsan
Bug 645263, part 7: Disable tracemalloc backtraces for xpcshell tests. r=dbaron
Bug 646259: Fix nsCacheService to use a CondVar for notifying. r=cjones
2011-04-01 08:29:02 +04:00
|
|
|
|
2017-02-26 15:36:40 +03:00
|
|
|
nsresult LoadEntry(const nsACString& aFilename, nsCString& aBuf);
|
2014-02-25 05:16:11 +04:00
|
|
|
int32_t ReadLine(const char** src);
|
1999-06-23 10:16:28 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* nsJARItem
|
|
|
|
*
|
2014-02-26 08:32:48 +04:00
|
|
|
* An individual JAR entry. A set of nsJARItems matching a
|
1999-06-23 10:16:28 +04:00
|
|
|
* supplied pattern are returned in a nsJAREnumerator.
|
|
|
|
*/
|
2000-01-29 03:03:57 +03:00
|
|
|
class nsJARItem : public nsIZipEntry
|
1999-06-23 10:16:28 +04:00
|
|
|
{
|
|
|
|
public:
|
2013-07-19 06:23:44 +04:00
|
|
|
NS_DECL_THREADSAFE_ISUPPORTS
|
1999-11-12 09:13:13 +03:00
|
|
|
NS_DECL_NSIZIPENTRY
|
2014-02-25 05:16:11 +04:00
|
|
|
|
2014-09-03 02:24:24 +04:00
|
|
|
explicit nsJARItem(nsZipItem* aZipItem);
|
2006-05-02 23:33:09 +04:00
|
|
|
|
|
|
|
private:
|
2014-06-25 06:09:14 +04:00
|
|
|
virtual ~nsJARItem() {}
|
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t mSize; /* size in original file */
|
|
|
|
uint32_t mRealsize; /* inflated size */
|
|
|
|
uint32_t mCrc32;
|
2009-12-16 02:01:08 +03:00
|
|
|
PRTime mLastModTime;
|
2012-08-22 19:56:38 +04:00
|
|
|
uint16_t mCompression;
|
2013-10-11 20:47:15 +04:00
|
|
|
uint32_t mPermissions;
|
2014-02-25 05:16:11 +04:00
|
|
|
bool mIsDirectory;
|
2011-09-29 10:19:26 +04:00
|
|
|
bool mIsSynthetic;
|
1999-06-23 10:16:28 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* nsJAREnumerator
|
|
|
|
*
|
2014-02-25 05:16:11 +04:00
|
|
|
* Enumerates a list of files in a zip archive
|
1999-06-23 10:16:28 +04:00
|
|
|
* (based on a pattern match in its member nsZipFind).
|
|
|
|
*/
|
2015-03-21 19:28:04 +03:00
|
|
|
class nsJAREnumerator final : public nsIUTF8StringEnumerator
|
1999-06-23 10:16:28 +04:00
|
|
|
{
|
|
|
|
public:
|
2013-07-19 06:23:44 +04:00
|
|
|
NS_DECL_THREADSAFE_ISUPPORTS
|
2006-05-02 23:33:09 +04:00
|
|
|
NS_DECL_NSIUTF8STRINGENUMERATOR
|
1999-06-02 01:08:32 +04:00
|
|
|
|
2016-01-12 21:16:59 +03:00
|
|
|
explicit nsJAREnumerator(nsZipFind *aFind)
|
|
|
|
: mFind(aFind), mName(nullptr), mNameLen(0) {
|
2006-05-02 23:33:09 +04:00
|
|
|
NS_ASSERTION(mFind, "nsJAREnumerator: Missing zipFind.");
|
|
|
|
}
|
1999-06-02 01:08:32 +04:00
|
|
|
|
2006-05-02 23:33:09 +04:00
|
|
|
private:
|
1999-06-23 10:16:28 +04:00
|
|
|
nsZipFind *mFind;
|
2009-10-17 19:54:54 +04:00
|
|
|
const char* mName; // pointer to an name owned by mArchive -- DON'T delete
|
2012-08-22 19:56:38 +04:00
|
|
|
uint16_t mNameLen;
|
2006-05-02 23:33:09 +04:00
|
|
|
|
|
|
|
~nsJAREnumerator() { delete mFind; }
|
1999-06-02 01:08:32 +04:00
|
|
|
};
|
|
|
|
|
2000-04-12 11:58:24 +04:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2000-11-01 01:44:20 +03:00
|
|
|
#if defined(DEBUG_warren) || defined(DEBUG_jband)
|
2000-08-24 11:38:41 +04:00
|
|
|
#define ZIP_CACHE_HIT_RATE
|
|
|
|
#endif
|
2000-04-12 11:58:24 +04:00
|
|
|
|
2000-11-01 01:44:20 +03:00
|
|
|
class nsZipReaderCache : public nsIZipReaderCache, public nsIObserver,
|
|
|
|
public nsSupportsWeakReference
|
2000-04-12 11:58:24 +04:00
|
|
|
{
|
|
|
|
public:
|
2013-07-19 06:23:44 +04:00
|
|
|
NS_DECL_THREADSAFE_ISUPPORTS
|
2000-04-12 11:58:24 +04:00
|
|
|
NS_DECL_NSIZIPREADERCACHE
|
2000-11-01 01:44:20 +03:00
|
|
|
NS_DECL_NSIOBSERVER
|
2000-04-12 11:58:24 +04:00
|
|
|
|
|
|
|
nsZipReaderCache();
|
|
|
|
|
2000-08-23 07:18:53 +04:00
|
|
|
nsresult ReleaseZip(nsJAR* reader);
|
|
|
|
|
2014-02-25 05:16:11 +04:00
|
|
|
typedef nsRefPtrHashtable<nsCStringHashKey, nsJAR> ZipsHashtable;
|
|
|
|
|
2000-04-12 11:58:24 +04:00
|
|
|
protected:
|
2014-02-25 05:16:11 +04:00
|
|
|
|
2014-06-25 06:09:14 +04:00
|
|
|
virtual ~nsZipReaderCache();
|
|
|
|
|
Rollup of bug 645263 and bug 646259: Switch to mozilla:: sync primitives. r=cjones,dbaron,doublec,ehsan src=bsmedberg
Bug 645263, part 0: Count sync primitive ctor/dtors. r=dbaron
Bug 645263, part 1: Migrate content/media to mozilla:: sync primitives. r=doublec
Bug 645263, part 2: Migrate modules/plugin to mozilla:: sync primitives. sr=bsmedberg
Bug 645263, part 3: Migrate nsComponentManagerImpl to mozilla:: sync primitives. sr=bsmedberg
Bug 645263, part 4: Migrate everything else to mozilla:: sync primitives. r=dbaron
Bug 645263, part 5: Remove nsAutoLock.*. sr=bsmedberg
Bug 645263, part 6: Make editor test be nicer to deadlock detector. r=ehsan
Bug 645263, part 7: Disable tracemalloc backtraces for xpcshell tests. r=dbaron
Bug 646259: Fix nsCacheService to use a CondVar for notifying. r=cjones
2011-04-01 08:29:02 +04:00
|
|
|
mozilla::Mutex mLock;
|
2014-02-25 05:16:11 +04:00
|
|
|
uint32_t mCacheSize;
|
|
|
|
ZipsHashtable mZips;
|
2000-08-24 11:38:41 +04:00
|
|
|
|
|
|
|
#ifdef ZIP_CACHE_HIT_RATE
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t mZipCacheLookups;
|
|
|
|
uint32_t mZipCacheHits;
|
|
|
|
uint32_t mZipCacheFlushes;
|
|
|
|
uint32_t mZipSyncMisses;
|
2000-08-24 11:38:41 +04:00
|
|
|
#endif
|
|
|
|
|
2017-07-22 01:19:09 +03:00
|
|
|
private:
|
|
|
|
nsresult GetZip(nsIFile* zipFile, nsIZipReader* *result, bool failOnMiss);
|
2000-04-12 11:58:24 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2014-02-26 08:32:48 +04:00
|
|
|
#endif /* nsJAR_h_ */
|