1999-01-21 04:28:27 +03:00
|
|
|
|
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
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-01-21 04:28:27 +03:00
|
|
|
#ifndef nsCollation_h__
|
|
|
|
#define nsCollation_h__
|
|
|
|
|
|
|
|
|
|
|
|
#include "nsICollation.h"
|
2001-02-14 03:02:45 +03:00
|
|
|
#include "nsCOMPtr.h"
|
2012-06-06 06:14:46 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
1999-01-21 04:28:27 +03:00
|
|
|
|
2013-09-27 20:45:04 +04:00
|
|
|
class nsIUnicodeEncoder;
|
1999-01-21 04:28:27 +03:00
|
|
|
|
|
|
|
// Create a collation interface for an input locale.
|
|
|
|
//
|
2012-06-06 06:14:46 +04:00
|
|
|
class nsCollationFactory MOZ_FINAL : public nsICollationFactory {
|
1999-01-21 04:28:27 +03:00
|
|
|
|
2014-06-24 02:40:02 +04:00
|
|
|
~nsCollationFactory() {}
|
|
|
|
|
1999-01-21 04:28:27 +03:00
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
|
2015-01-06 23:12:14 +03:00
|
|
|
NS_IMETHOD CreateCollation(nsILocale* locale, nsICollation** instancePtr) MOZ_OVERRIDE;
|
1999-01-21 04:28:27 +03:00
|
|
|
|
2007-04-23 18:21:53 +04:00
|
|
|
nsCollationFactory() {}
|
1999-01-21 04:28:27 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2001-10-23 05:37:21 +04:00
|
|
|
struct nsCollation {
|
1999-01-21 04:28:27 +03:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
nsCollation();
|
|
|
|
|
|
|
|
~nsCollation();
|
|
|
|
|
|
|
|
// normalize string before collation key generation
|
2001-10-24 12:15:57 +04:00
|
|
|
nsresult NormalizeString(const nsAString& stringIn, nsAString& stringOut);
|
1999-01-21 04:28:27 +03:00
|
|
|
|
1999-02-05 02:17:37 +03:00
|
|
|
// charset conversion util, C string buffer is allocate by PR_Malloc, caller should call PR_Free
|
2003-06-11 22:16:03 +04:00
|
|
|
nsresult SetCharset(const char* aCharset);
|
2003-04-22 03:51:25 +04:00
|
|
|
nsresult UnicodeToChar(const nsAString& aSrc, char** dst);
|
1999-02-05 02:17:37 +03:00
|
|
|
|
1999-01-21 04:28:27 +03:00
|
|
|
protected:
|
2001-02-14 03:02:45 +03:00
|
|
|
nsCOMPtr <nsIUnicodeEncoder> mEncoder;
|
1999-01-21 04:28:27 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsCollation_h__ */
|