2012-09-28 10:19:18 +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/. */
|
|
|
|
|
|
|
|
#include "mozilla/dom/EncodingUtils.h"
|
2013-03-17 07:55:16 +00:00
|
|
|
|
2013-12-09 02:52:54 +00:00
|
|
|
#include "mozilla/ArrayUtils.h" // ArrayLength
|
2012-11-07 23:04:22 +00:00
|
|
|
#include "nsUConvPropertySearch.h"
|
2013-11-26 07:31:52 +00:00
|
|
|
#include "nsIUnicodeDecoder.h"
|
|
|
|
#include "nsIUnicodeEncoder.h"
|
|
|
|
#include "nsComponentManagerUtils.h"
|
2012-09-28 10:19:18 +00:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2012-11-07 23:04:22 +00:00
|
|
|
static const char* labelsEncodings[][3] = {
|
|
|
|
#include "labelsencodings.properties.h"
|
2012-09-28 10:19:18 +00:00
|
|
|
};
|
|
|
|
|
2014-05-08 09:32:00 +00:00
|
|
|
static const char* encodingsGroups[][3] = {
|
|
|
|
#include "encodingsgroups.properties.h"
|
|
|
|
};
|
|
|
|
|
2012-09-28 10:19:18 +00:00
|
|
|
bool
|
2012-11-07 23:04:22 +00:00
|
|
|
EncodingUtils::FindEncodingForLabel(const nsACString& aLabel,
|
|
|
|
nsACString& aOutEncoding)
|
2012-09-28 10:19:18 +00:00
|
|
|
{
|
2012-11-07 23:04:22 +00:00
|
|
|
// Save aLabel first because it may refer the same string as aOutEncoding.
|
|
|
|
nsCString label(aLabel);
|
2012-09-28 10:19:18 +00:00
|
|
|
|
|
|
|
EncodingUtils::TrimSpaceCharacters(label);
|
|
|
|
if (label.IsEmpty()) {
|
2012-11-07 23:04:22 +00:00
|
|
|
aOutEncoding.Truncate();
|
2012-09-28 10:19:18 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-11-07 23:04:22 +00:00
|
|
|
ToLowerCase(label);
|
|
|
|
return NS_SUCCEEDED(nsUConvPropertySearch::SearchPropertyValue(
|
|
|
|
labelsEncodings, ArrayLength(labelsEncodings), label, aOutEncoding));
|
2012-09-28 10:19:18 +00:00
|
|
|
}
|
|
|
|
|
2014-05-08 09:32:00 +00:00
|
|
|
bool
|
|
|
|
EncodingUtils::FindEncodingForLabelNoReplacement(const nsACString& aLabel,
|
|
|
|
nsACString& aOutEncoding)
|
|
|
|
{
|
|
|
|
if(!FindEncodingForLabel(aLabel, aOutEncoding)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (aOutEncoding.EqualsLiteral("replacement")) {
|
|
|
|
aOutEncoding.Truncate();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-03-04 18:09:11 +00:00
|
|
|
bool
|
|
|
|
EncodingUtils::IsAsciiCompatible(const nsACString& aPreferredName)
|
|
|
|
{
|
|
|
|
return !(aPreferredName.LowerCaseEqualsLiteral("utf-16") ||
|
|
|
|
aPreferredName.LowerCaseEqualsLiteral("utf-16be") ||
|
|
|
|
aPreferredName.LowerCaseEqualsLiteral("utf-16le") ||
|
2013-11-25 08:06:56 +00:00
|
|
|
aPreferredName.LowerCaseEqualsLiteral("replacement") ||
|
2013-11-25 08:06:56 +00:00
|
|
|
aPreferredName.LowerCaseEqualsLiteral("hz-gb-2312") ||
|
2013-03-04 18:09:11 +00:00
|
|
|
aPreferredName.LowerCaseEqualsLiteral("utf-7") ||
|
|
|
|
aPreferredName.LowerCaseEqualsLiteral("x-imap4-modified-utf7"));
|
|
|
|
}
|
|
|
|
|
2013-11-26 07:31:52 +00:00
|
|
|
already_AddRefed<nsIUnicodeDecoder>
|
|
|
|
EncodingUtils::DecoderForEncoding(const nsACString& aEncoding)
|
|
|
|
{
|
|
|
|
nsAutoCString contractId(NS_UNICODEDECODER_CONTRACTID_BASE);
|
|
|
|
contractId.Append(aEncoding);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIUnicodeDecoder> decoder = do_CreateInstance(contractId.get());
|
|
|
|
MOZ_ASSERT(decoder, "Tried to create decoder for unknown encoding.");
|
|
|
|
return decoder.forget();
|
|
|
|
}
|
|
|
|
|
|
|
|
already_AddRefed<nsIUnicodeEncoder>
|
|
|
|
EncodingUtils::EncoderForEncoding(const nsACString& aEncoding)
|
|
|
|
{
|
|
|
|
nsAutoCString contractId(NS_UNICODEENCODER_CONTRACTID_BASE);
|
|
|
|
contractId.Append(aEncoding);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIUnicodeEncoder> encoder = do_CreateInstance(contractId.get());
|
|
|
|
MOZ_ASSERT(encoder, "Tried to create encoder for unknown encoding.");
|
|
|
|
return encoder.forget();
|
|
|
|
}
|
|
|
|
|
2014-05-08 09:32:00 +00:00
|
|
|
void
|
|
|
|
EncodingUtils::LangGroupForEncoding(const nsACString& aEncoding,
|
|
|
|
nsACString& aOutGroup)
|
|
|
|
{
|
|
|
|
if (NS_FAILED(nsUConvPropertySearch::SearchPropertyValue(
|
|
|
|
encodingsGroups, ArrayLength(encodingsGroups), aEncoding, aOutGroup))) {
|
|
|
|
aOutGroup.AssignLiteral("x-unicode");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-28 10:19:18 +00:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|