Bug 454376 add -lCrun -lCstd for Solaris OS_LIBS, r=bsmedberg
[wine-gecko.git] / intl / uconv / ucvcn / nsUnicodeToGB2312V2.cpp
blob361e152d8ba11d658343e4b87f80b8c6341cdbe1
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* ***** BEGIN LICENSE BLOCK *****
3 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
5 * The contents of this file are subject to the Mozilla Public License Version
6 * 1.1 (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at
8 * http://www.mozilla.org/MPL/
10 * Software distributed under the License is distributed on an "AS IS" basis,
11 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12 * for the specific language governing rights and limitations under the
13 * License.
15 * The Original Code is Mozilla Communicator client code.
17 * The Initial Developer of the Original Code is
18 * Netscape Communications Corporation.
19 * Portions created by the Initial Developer are Copyright (C) 1998
20 * the Initial Developer. All Rights Reserved.
22 * Contributor(s):
23 * Yueheng Xu, yueheng.xu@intel.com
25 * Alternatively, the contents of this file may be used under the terms of
26 * either of the GNU General Public License Version 2 or later (the "GPL"),
27 * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
28 * in which case the provisions of the GPL or the LGPL are applicable instead
29 * of those above. If you wish to allow use of your version of this file only
30 * under the terms of either the GPL or the LGPL, and not to allow others to
31 * use your version of this file under the terms of the MPL, indicate your
32 * decision by deleting the provisions above and replace them with the notice
33 * and other provisions required by the GPL or the LGPL. If you do not delete
34 * the provisions above, a recipient may use your version of this file under
35 * the terms of any one of the MPL, the GPL or the LGPL.
37 * ***** END LICENSE BLOCK ***** */
39 #include "nsUnicodeToGB2312V2.h"
40 #include "nsICharRepresentable.h"
41 #include "nsUCvCnDll.h"
42 #include "gbku.h"
44 //----------------------------------------------------------------------
45 // Class nsUnicodeToGB2312V2 [implementation]
46 nsUnicodeToGB2312V2::nsUnicodeToGB2312V2() :
47 nsEncoderSupport(2)
49 mUtil.InitToGBKTable();
52 NS_IMETHODIMP nsUnicodeToGB2312V2::ConvertNoBuff(const PRUnichar * aSrc,
53 PRInt32 * aSrcLength,
54 char * aDest,
55 PRInt32 * aDestLength)
57 PRInt32 iSrcLength = 0;
58 PRInt32 iDestLength = 0;
59 nsresult res = NS_OK;
61 while (iSrcLength < *aSrcLength)
63 //if unicode's hi byte has something, it is not ASCII, must be a GB
64 if(IS_ASCII(*aSrc))
66 // this is an ASCII
67 *aDest = CAST_UNICHAR_TO_CHAR(*aSrc);
68 aDest++; // increment 1 byte
69 iDestLength +=1;
70 } else {
71 char byte1, byte2;
72 if(mUtil.UnicodeToGBKChar(*aSrc, PR_FALSE, &byte1, &byte2))
74 if(iDestLength+2 > *aDestLength)
76 res = NS_OK_UENC_MOREOUTPUT;
77 break;
79 aDest[0]=byte1;
80 aDest[1]=byte2;
81 aDest += 2; // increment 2 bytes
82 iDestLength +=2; // each GB char count as two in char* string
83 } else {
84 // cannot convert
85 res= NS_ERROR_UENC_NOMAPPING;
86 iSrcLength++; // include length of the unmapped character
87 break;
90 iSrcLength++ ; // each unicode char just count as one in PRUnichar* string
91 aSrc++;
92 if ( iDestLength >= (*aDestLength) && (iSrcLength < *aSrcLength ))
94 res = NS_OK_UENC_MOREOUTPUT;
95 break;
98 *aDestLength = iDestLength;
99 *aSrcLength = iSrcLength;
100 return res;
103 //----------------------------------------------------------------------
104 // Subclassing of nsTableEncoderSupport class [implementation]
106 NS_IMETHODIMP nsUnicodeToGB2312V2::FillInfo(PRUint32 *aInfo)
108 mUtil.FillGB2312Info(aInfo);
109 //GB2312 font lib also have single byte ASCII characters, set them here
110 for ( PRUint16 u = 0x0000; u <= 0x007F; u++)
111 SET_REPRESENTABLE(aInfo, u);
112 return NS_OK;