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/. */
|
2002-06-10 22:50:11 +04:00
|
|
|
|
|
|
|
#ifndef nsNativeCharsetUtils_h__
|
|
|
|
#define nsNativeCharsetUtils_h__
|
|
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************\
|
|
|
|
* *
|
|
|
|
* **** NOTICE **** *
|
|
|
|
* *
|
|
|
|
* *** THESE ARE NOT GENERAL PURPOSE CONVERTERS *** *
|
|
|
|
* *
|
2002-10-06 04:29:46 +04:00
|
|
|
* NS_CopyNativeToUnicode / NS_CopyUnicodeToNative should only be used *
|
|
|
|
* for converting *FILENAMES* between native and unicode. They are not *
|
|
|
|
* designed or tested for general encoding converter use. *
|
2002-06-10 22:50:11 +04:00
|
|
|
* *
|
|
|
|
\*****************************************************************************/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* thread-safe conversion routines that do not depend on uconv libraries.
|
|
|
|
*/
|
2011-08-18 17:46:39 +04:00
|
|
|
nsresult NS_CopyNativeToUnicode(const nsACString &input, nsAString &output);
|
|
|
|
nsresult NS_CopyUnicodeToNative(const nsAString &input, nsACString &output);
|
2006-04-17 03:58:38 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* This function indicates whether the character encoding used in the file
|
|
|
|
* system (more exactly what's used for |GetNativeFoo| and |SetNativeFoo|
|
2012-06-06 06:08:30 +04:00
|
|
|
* of |nsIFile|) is UTF-8 or not. Knowing that helps us avoid an
|
2006-04-17 03:58:38 +04:00
|
|
|
* unncessary encoding conversion in some cases. For instance, to get the leaf
|
2012-06-06 06:08:30 +04:00
|
|
|
* name in UTF-8 out of nsIFile, we can just use |GetNativeLeafName| rather
|
2006-04-17 03:58:38 +04:00
|
|
|
* than using |GetLeafName| and converting the result to UTF-8 if the file
|
|
|
|
* system encoding is UTF-8.
|
|
|
|
* On Unix (but not on Mac OS X), it depends on the locale and is not known
|
|
|
|
* in advance (at the compilation time) so that this function needs to be
|
Bug 627277 - Remove (broken) BeOS support. r=biesi,dwitte,gavin,joe,jorendorff,josh,khuey,mfinkle,neil,Pike,roc,shaver,smontagu,taras
2011-02-19 22:10:24 +03:00
|
|
|
* a real function. On Mac OS X it's always UTF-8 while on Windows
|
2006-04-17 03:58:38 +04:00
|
|
|
* and other platforms (e.g. OS2), it's never UTF-8.
|
|
|
|
*/
|
2010-06-01 23:02:42 +04:00
|
|
|
#if defined(XP_UNIX) && !defined(XP_MACOSX) && !defined(ANDROID)
|
2011-09-29 10:19:26 +04:00
|
|
|
bool NS_IsNativeUTF8();
|
2006-04-17 03:58:38 +04:00
|
|
|
#else
|
2011-09-29 10:19:26 +04:00
|
|
|
inline bool NS_IsNativeUTF8()
|
2006-04-17 03:58:38 +04:00
|
|
|
{
|
Bug 627277 - Remove (broken) BeOS support. r=biesi,dwitte,gavin,joe,jorendorff,josh,khuey,mfinkle,neil,Pike,roc,shaver,smontagu,taras
2011-02-19 22:10:24 +03:00
|
|
|
#if defined(XP_MACOSX) || defined(ANDROID)
|
2011-10-17 18:59:28 +04:00
|
|
|
return true;
|
2006-04-17 03:58:38 +04:00
|
|
|
#else
|
2011-10-17 18:59:28 +04:00
|
|
|
return false;
|
2006-04-17 03:58:38 +04:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2002-06-10 22:50:11 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* internal
|
|
|
|
*/
|
|
|
|
void NS_StartupNativeCharsetUtils();
|
|
|
|
void NS_ShutdownNativeCharsetUtils();
|
|
|
|
|
|
|
|
#endif // nsNativeCharsetUtils_h__
|