diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /modules/libjar/nsJARURI.h | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'modules/libjar/nsJARURI.h')
-rw-r--r-- | modules/libjar/nsJARURI.h | 97 |
1 files changed, 97 insertions, 0 deletions
diff --git a/modules/libjar/nsJARURI.h b/modules/libjar/nsJARURI.h new file mode 100644 index 000000000..31271e4ac --- /dev/null +++ b/modules/libjar/nsJARURI.h @@ -0,0 +1,97 @@ +/* -*- Mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- + * + * 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/. */ + +#ifndef nsJARURI_h__ +#define nsJARURI_h__ + +#include "nsIJARURI.h" +#include "nsISerializable.h" +#include "nsIClassInfo.h" +#include "nsCOMPtr.h" +#include "nsString.h" +#include "nsINestedURI.h" +#include "nsIIPCSerializableURI.h" + +#define NS_THIS_JARURI_IMPL_CID \ +{ /* 9a55f629-730b-4d08-b75b-fa7d9570a691 */ \ + 0x9a55f629, \ + 0x730b, \ + 0x4d08, \ + {0xb7, 0x5b, 0xfa, 0x7d, 0x95, 0x70, 0xa6, 0x91} \ +} + +#define NS_JARURI_CID \ +{ /* 245abae2-b947-4ded-a46d-9829d3cca462 */ \ + 0x245abae2, \ + 0xb947, \ + 0x4ded, \ + {0xa4, 0x6d, 0x98, 0x29, 0xd3, 0xcc, 0xa4, 0x62} \ +} + + +class nsJARURI final : public nsIJARURI, + public nsISerializable, + public nsIClassInfo, + public nsINestedURI, + public nsIIPCSerializableURI +{ +public: + NS_DECL_THREADSAFE_ISUPPORTS + NS_DECL_NSIURI + NS_DECL_NSIURIWITHQUERY + NS_DECL_NSIURL + NS_DECL_NSIJARURI + NS_DECL_NSISERIALIZABLE + NS_DECL_NSICLASSINFO + NS_DECL_NSINESTEDURI + NS_DECL_NSIIPCSERIALIZABLEURI + + NS_DECLARE_STATIC_IID_ACCESSOR(NS_THIS_JARURI_IMPL_CID) + + // nsJARURI + nsJARURI(); + + nsresult Init(const char *charsetHint); + nsresult FormatSpec(const nsACString &entryPath, nsACString &result, + bool aIncludeScheme = true); + nsresult CreateEntryURL(const nsACString& entryFilename, + const char* charset, + nsIURL** url); + nsresult SetSpecWithBase(const nsACString& aSpec, nsIURI* aBaseURL); + +protected: + virtual ~nsJARURI(); + + // enum used in a few places to specify how .ref attribute should be handled + enum RefHandlingEnum { + eIgnoreRef, + eHonorRef, + eReplaceRef + }; + + // Helper to share code between Equals methods. + virtual nsresult EqualsInternal(nsIURI* other, + RefHandlingEnum refHandlingMode, + bool* result); + + // Helpers to share code between Clone methods. + nsresult CloneWithJARFileInternal(nsIURI *jarFile, + RefHandlingEnum refHandlingMode, + nsIJARURI **result); + nsresult CloneWithJARFileInternal(nsIURI *jarFile, + RefHandlingEnum refHandlingMode, + const nsACString& newRef, + nsIJARURI **result); + nsCOMPtr<nsIURI> mJARFile; + // mJarEntry stored as a URL so that we can easily access things + // like extensions, refs, etc. + nsCOMPtr<nsIURL> mJAREntry; + nsCString mCharsetHint; +}; + +NS_DEFINE_STATIC_IID_ACCESSOR(nsJARURI, NS_THIS_JARURI_IMPL_CID) + +#endif // nsJARURI_h__ |