summaryrefslogtreecommitdiffstats
path: root/comm/mailnews/intl/nsCharsetAlias.cpp
blob: a92cf193c9aeda86cdb0d808526a8aceab3c5da1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* 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/ArrayUtils.h"
#include "mozilla/Encoding.h"

#include "nsCharsetAlias.h"

// for NS_ERROR_UCONV_NOCONV
#include "nsCharsetConverterManager.h"

#include "nsUConvPropertySearch.h"

using namespace mozilla;

//
static const nsUConvProp kAliases[] = {
#include "charsetalias.properties.h"
};

//--------------------------------------------------------------
// static
nsresult nsCharsetAlias::GetPreferredInternal(const nsACString& aAlias,
                                              nsACString& oResult) {
  // First check charsetalias.properties and if there is no match, continue to
  // call Encoding::ForLabel.
  nsAutoCString key(aAlias);
  ToLowerCase(key);

  nsresult rv = nsUConvPropertySearch::SearchPropertyValue(
      kAliases, ArrayLength(kAliases), key, oResult);
  if (NS_SUCCEEDED(rv)) {
    return NS_OK;
  }

  const Encoding* encoding = Encoding::ForLabel(key);
  if (!encoding) return NS_ERROR_NOT_AVAILABLE;
  encoding->Name(oResult);
  return NS_OK;
}

//--------------------------------------------------------------
// static
nsresult nsCharsetAlias::GetPreferred(const nsACString& aAlias,
                                      nsACString& oResult) {
  if (aAlias.IsEmpty()) return NS_ERROR_NULL_POINTER;

  nsresult res = GetPreferredInternal(aAlias, oResult);
  if (NS_FAILED(res)) return res;

  if (nsCharsetConverterManager::IsInternal(oResult))
    return NS_ERROR_UCONV_NOCONV;

  return res;
}

//--------------------------------------------------------------
// static
nsresult nsCharsetAlias::Equals(const nsACString& aCharset1,
                                const nsACString& aCharset2, bool* oResult) {
  nsresult res = NS_OK;

  if (aCharset1.Equals(aCharset2, nsCaseInsensitiveCStringComparator)) {
    *oResult = true;
    return res;
  }

  if (aCharset1.IsEmpty() || aCharset2.IsEmpty()) {
    *oResult = false;
    return res;
  }

  *oResult = false;
  nsAutoCString name1;
  res = GetPreferredInternal(aCharset1, name1);
  if (NS_FAILED(res)) return res;

  nsAutoCString name2;
  res = GetPreferredInternal(aCharset2, name2);
  if (NS_FAILED(res)) return res;

  *oResult = name1.Equals(name2);
  return NS_OK;
}