2003-11-16 21:43:43 +00:00
|
|
|
/* -*- Mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
1999-11-07 21:55:12 +00:00
|
|
|
*
|
2012-05-21 11:12:37 +00:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
1999-11-07 21:55:12 +00:00
|
|
|
|
|
|
|
#ifndef nsJARURI_h__
|
|
|
|
#define nsJARURI_h__
|
|
|
|
|
|
|
|
#include "nsIJARURI.h"
|
2001-07-31 19:05:34 +00:00
|
|
|
#include "nsISerializable.h"
|
2004-12-02 07:00:25 +00:00
|
|
|
#include "nsIClassInfo.h"
|
1999-11-07 21:55:12 +00:00
|
|
|
#include "nsCOMPtr.h"
|
2002-03-06 07:48:55 +00:00
|
|
|
#include "nsString.h"
|
2006-05-02 18:54:19 +00:00
|
|
|
#include "nsINestedURI.h"
|
2012-08-23 19:33:46 +00:00
|
|
|
#include "nsIIPCSerializableURI.h"
|
1999-11-07 21:55:12 +00:00
|
|
|
|
2004-05-20 23:29:52 +00:00
|
|
|
#define NS_THIS_JARURI_IMPL_CID \
|
|
|
|
{ /* 9a55f629-730b-4d08-b75b-fa7d9570a691 */ \
|
|
|
|
0x9a55f629, \
|
|
|
|
0x730b, \
|
|
|
|
0x4d08, \
|
|
|
|
{0xb7, 0x5b, 0xfa, 0x7d, 0x95, 0x70, 0xa6, 0x91} \
|
|
|
|
}
|
|
|
|
|
2004-12-02 07:00:25 +00:00
|
|
|
#define NS_JARURI_CID \
|
|
|
|
{ /* 245abae2-b947-4ded-a46d-9829d3cca462 */ \
|
|
|
|
0x245abae2, \
|
|
|
|
0xb947, \
|
|
|
|
0x4ded, \
|
|
|
|
{0xa4, 0x6d, 0x98, 0x29, 0xd3, 0xcc, 0xa4, 0x62} \
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-08-27 18:26:48 +00:00
|
|
|
class nsJARURI MOZ_FINAL : public nsIJARURI,
|
|
|
|
public nsISerializable,
|
|
|
|
public nsIClassInfo,
|
|
|
|
public nsINestedURI,
|
|
|
|
public nsIIPCSerializableURI
|
1999-11-07 21:55:12 +00:00
|
|
|
{
|
2012-08-23 19:33:46 +00:00
|
|
|
public:
|
2013-07-19 02:23:44 +00:00
|
|
|
NS_DECL_THREADSAFE_ISUPPORTS
|
1999-11-07 21:55:12 +00:00
|
|
|
NS_DECL_NSIURI
|
2003-11-16 21:43:43 +00:00
|
|
|
NS_DECL_NSIURL
|
1999-11-07 21:55:12 +00:00
|
|
|
NS_DECL_NSIJARURI
|
2001-07-31 19:05:34 +00:00
|
|
|
NS_DECL_NSISERIALIZABLE
|
2004-12-02 07:00:25 +00:00
|
|
|
NS_DECL_NSICLASSINFO
|
2006-05-02 18:54:19 +00:00
|
|
|
NS_DECL_NSINESTEDURI
|
2012-08-23 19:33:46 +00:00
|
|
|
NS_DECL_NSIIPCSERIALIZABLEURI
|
1999-11-07 21:55:12 +00:00
|
|
|
|
2005-11-11 14:36:26 +00:00
|
|
|
NS_DECLARE_STATIC_IID_ACCESSOR(NS_THIS_JARURI_IMPL_CID)
|
2005-01-23 23:03:39 +00:00
|
|
|
|
1999-11-07 21:55:12 +00:00
|
|
|
// nsJARURI
|
|
|
|
nsJARURI();
|
|
|
|
|
2002-03-06 07:48:55 +00:00
|
|
|
nsresult Init(const char *charsetHint);
|
2003-10-03 22:15:24 +00:00
|
|
|
nsresult FormatSpec(const nsACString &entryPath, nsACString &result,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool aIncludeScheme = true);
|
2003-11-16 21:43:43 +00:00
|
|
|
nsresult CreateEntryURL(const nsACString& entryFilename,
|
|
|
|
const char* charset,
|
|
|
|
nsIURL** url);
|
2005-01-23 23:03:39 +00:00
|
|
|
nsresult SetSpecWithBase(const nsACString& aSpec, nsIURI* aBaseURL);
|
1999-11-07 21:55:12 +00:00
|
|
|
|
|
|
|
protected:
|
2014-06-25 02:09:14 +00:00
|
|
|
virtual ~nsJARURI();
|
|
|
|
|
2011-05-22 01:12:45 +00:00
|
|
|
// enum used in a few places to specify how .ref attribute should be handled
|
|
|
|
enum RefHandlingEnum {
|
|
|
|
eIgnoreRef,
|
|
|
|
eHonorRef
|
|
|
|
};
|
|
|
|
|
|
|
|
// Helper to share code between Equals methods.
|
|
|
|
virtual nsresult EqualsInternal(nsIURI* other,
|
|
|
|
RefHandlingEnum refHandlingMode,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool* result);
|
2011-05-22 01:12:45 +00:00
|
|
|
|
2011-05-22 01:12:45 +00:00
|
|
|
// Helper to share code between Clone methods.
|
|
|
|
nsresult CloneWithJARFileInternal(nsIURI *jarFile,
|
|
|
|
RefHandlingEnum refHandlingMode,
|
|
|
|
nsIJARURI **result);
|
1999-11-07 21:55:12 +00:00
|
|
|
nsCOMPtr<nsIURI> mJARFile;
|
2003-11-16 21:43:43 +00:00
|
|
|
// mJarEntry stored as a URL so that we can easily access things
|
|
|
|
// like extensions, refs, etc.
|
|
|
|
nsCOMPtr<nsIURL> mJAREntry;
|
2002-03-06 07:48:55 +00:00
|
|
|
nsCString mCharsetHint;
|
1999-11-07 21:55:12 +00:00
|
|
|
};
|
|
|
|
|
2005-11-11 14:36:26 +00:00
|
|
|
NS_DEFINE_STATIC_IID_ACCESSOR(nsJARURI, NS_THIS_JARURI_IMPL_CID)
|
|
|
|
|
1999-11-07 21:55:12 +00:00
|
|
|
#endif // nsJARURI_h__
|