2003-11-17 00:43:43 +03:00
|
|
|
/* -*- Mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
1999-11-08 00:55:12 +03:00
|
|
|
*
|
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-11-08 00:55:12 +03:00
|
|
|
|
|
|
|
#ifndef nsJARURI_h__
|
|
|
|
#define nsJARURI_h__
|
|
|
|
|
|
|
|
#include "nsIJARURI.h"
|
2001-07-31 23:05:34 +04:00
|
|
|
#include "nsISerializable.h"
|
2004-12-02 10:00:25 +03:00
|
|
|
#include "nsIClassInfo.h"
|
1999-11-08 00:55:12 +03:00
|
|
|
#include "nsCOMPtr.h"
|
2002-03-06 10:48:55 +03:00
|
|
|
#include "nsString.h"
|
2006-05-02 22:54:19 +04:00
|
|
|
#include "nsINestedURI.h"
|
2012-08-23 23:33:46 +04:00
|
|
|
#include "nsIIPCSerializableURI.h"
|
1999-11-08 00:55:12 +03:00
|
|
|
|
2004-05-21 03:29:52 +04: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 10:00:25 +03:00
|
|
|
#define NS_JARURI_CID \
|
|
|
|
{ /* 245abae2-b947-4ded-a46d-9829d3cca462 */ \
|
|
|
|
0x245abae2, \
|
|
|
|
0xb947, \
|
|
|
|
0x4ded, \
|
|
|
|
{0xa4, 0x6d, 0x98, 0x29, 0xd3, 0xcc, 0xa4, 0x62} \
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
class nsJARURI final : public nsIJARURI,
|
2015-03-27 21:52:19 +03:00
|
|
|
public nsISerializable,
|
|
|
|
public nsIClassInfo,
|
|
|
|
public nsINestedURI,
|
|
|
|
public nsIIPCSerializableURI
|
1999-11-08 00:55:12 +03:00
|
|
|
{
|
2012-08-23 23:33:46 +04:00
|
|
|
public:
|
2013-07-19 06:23:44 +04:00
|
|
|
NS_DECL_THREADSAFE_ISUPPORTS
|
1999-11-08 00:55:12 +03:00
|
|
|
NS_DECL_NSIURI
|
2003-11-17 00:43:43 +03:00
|
|
|
NS_DECL_NSIURL
|
1999-11-08 00:55:12 +03:00
|
|
|
NS_DECL_NSIJARURI
|
2001-07-31 23:05:34 +04:00
|
|
|
NS_DECL_NSISERIALIZABLE
|
2004-12-02 10:00:25 +03:00
|
|
|
NS_DECL_NSICLASSINFO
|
2006-05-02 22:54:19 +04:00
|
|
|
NS_DECL_NSINESTEDURI
|
2012-08-23 23:33:46 +04:00
|
|
|
NS_DECL_NSIIPCSERIALIZABLEURI
|
1999-11-08 00:55:12 +03:00
|
|
|
|
2005-11-11 17:36:26 +03:00
|
|
|
NS_DECLARE_STATIC_IID_ACCESSOR(NS_THIS_JARURI_IMPL_CID)
|
2005-01-24 02:03:39 +03:00
|
|
|
|
1999-11-08 00:55:12 +03:00
|
|
|
// nsJARURI
|
|
|
|
nsJARURI();
|
|
|
|
|
2002-03-06 10:48:55 +03:00
|
|
|
nsresult Init(const char *charsetHint);
|
2003-10-04 02:15:24 +04:00
|
|
|
nsresult FormatSpec(const nsACString &entryPath, nsACString &result,
|
2011-09-29 10:19:26 +04:00
|
|
|
bool aIncludeScheme = true);
|
2003-11-17 00:43:43 +03:00
|
|
|
nsresult CreateEntryURL(const nsACString& entryFilename,
|
|
|
|
const char* charset,
|
|
|
|
nsIURL** url);
|
2005-01-24 02:03:39 +03:00
|
|
|
nsresult SetSpecWithBase(const nsACString& aSpec, nsIURI* aBaseURL);
|
1999-11-08 00:55:12 +03:00
|
|
|
|
|
|
|
protected:
|
2014-06-25 06:09:14 +04:00
|
|
|
virtual ~nsJARURI();
|
|
|
|
|
2011-05-22 05:12:45 +04: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 10:19:26 +04:00
|
|
|
bool* result);
|
2011-05-22 05:12:45 +04:00
|
|
|
|
2011-05-22 05:12:45 +04:00
|
|
|
// Helper to share code between Clone methods.
|
|
|
|
nsresult CloneWithJARFileInternal(nsIURI *jarFile,
|
|
|
|
RefHandlingEnum refHandlingMode,
|
|
|
|
nsIJARURI **result);
|
1999-11-08 00:55:12 +03:00
|
|
|
nsCOMPtr<nsIURI> mJARFile;
|
2003-11-17 00:43:43 +03:00
|
|
|
// mJarEntry stored as a URL so that we can easily access things
|
|
|
|
// like extensions, refs, etc.
|
|
|
|
nsCOMPtr<nsIURL> mJAREntry;
|
2002-03-06 10:48:55 +03:00
|
|
|
nsCString mCharsetHint;
|
1999-11-08 00:55:12 +03:00
|
|
|
};
|
|
|
|
|
2005-11-11 17:36:26 +03:00
|
|
|
NS_DEFINE_STATIC_IID_ACCESSOR(nsJARURI, NS_THIS_JARURI_IMPL_CID)
|
|
|
|
|
1999-11-08 00:55:12 +03:00
|
|
|
#endif // nsJARURI_h__
|