Update contrib.
2 * Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
22 extern bool OutputUnicode;
24 ostream& operator << (ostream& out, const String& aString)
26 for (int i = 0; i < aString.iLength; i++)
27 out << aString.iText[i];
32 EXPORT_C void String::Externalize(ostream& out)
36 // Convert the string to Unicode, allowing #NNNN (each N is a hex digit)
37 // to represent an arbitrary Unicode character. Other values are just
38 // extended, so don't use codepage 1252 values in the range 128..159.
39 unsigned short* buffer = new unsigned short[iLength];
53 buffer[j++] = (unsigned short)strtoul(hex, NULL, 16);
63 int unicode_characters = j;
64 int32 length = (unicode_characters << 1); // 16-bit data
67 unsigned char len = (unsigned char)(length << 1);
68 out.write((char*)&len, sizeof(len));
70 else if (length < 0x4000)
72 uint16 len = (uint16)((length << 2) + 1);
73 out.write((char*)&len, sizeof(len));
77 // assert len<0x20000000 ?
78 uint32 len = (uint32)((length << 3) + 3);
79 out.write((char*)&len, sizeof(len));
81 // Output Unicode characters using the Standard Compression Scheme for Unicode.
82 // To save the bother of doing this properly, use a degenerate form whereby each
83 // Unicode character is output as itself. 0x0F selects Unicode mode and 0xF0 quotes
84 // characters that would conflict with other tags.
85 out << (unsigned char)0x0F;
87 for (i = 0; i < unicode_characters; i++)
89 unsigned char hi = (unsigned char)(buffer[i] >> 8);
90 unsigned char lo = (unsigned char)buffer[i];
91 if ((hi >= 0xe0) && (hi <= 0xf2))
101 int32 length = (iLength << 1) + 1; // 8-bit data
104 unsigned char len = (unsigned char)(length << 1);
105 out.write((char*)&len, sizeof(len));
107 else if (length < 0x4000)
109 uint16 len = (uint16)((length << 2) + 1);
110 out.write((char*)&len, sizeof(len));
114 // assert len<0x20000000 ?
115 uint32 len = (uint32)((length << 3) + 3);
116 out.write((char*)&len, sizeof(len));
118 out.write(iText, iLength);
122 EXPORT_C int String::CreateText(const int aLength)
124 if (aLength != iLength)
126 char* text = new char[aLength + 1];
142 EXPORT_C void String::DeleteText(char* aText) const
148 EXPORT_C String::~String()