Files
sdk/runtime/vm/unicode.h
T
asiva@google.com ebbb7c4134 - Represent strings internally in UTF-16 format, this makes it
compatible with webkit and will allow for easy externalization of
  strings. One byte strings are retained for pure ASCII strings.
  (The language specification was changed recently to reflect this as
   follows "A string is a sequence of UTF-16 code units").
- Remove four byte string class and all references to it.
- Rename some of the string functions in Dart API to make them
  consistent and better describe the underlying functionality
  Dart_NewString => Dart_NewStringFromCString
  Dart_NewString8 => Dart_NewStringFromUTF8
  Dart_NewString16 => Dart_NewStringFromUTF16
  Dart_NewString32 => Dart_NewStringFromUTF32
  Dart_NewExternalString8 => Dart_NewExternalUTF8String
  Dart_NewExternalString16 => Dart_NewExternalUTF16String
  Dart_NewExternalString32 => Dart_NewExternalUTF32String
  Dart_StringGet8 => Dart_StringToUTF8
  Dart_StringGet16 => Dart_StringToUTF16
  Dart_StringToCString => Dart_StringToCString
  Dart_IsString8 => Removed
  Dart_IsString16 -> Removed
  Dart_StringToBytes -> Removed
  Dart_StringGet32 -> Removed
Review URL: https://codereview.chromium.org//11318018

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@14357 260f80e4-7a28-3924-810f-c04153c831b5
2012-10-31 17:56:46 +00:00

138 lines
4.4 KiB
C++

// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
#ifndef VM_UNICODE_H_
#define VM_UNICODE_H_
#include "vm/allocation.h"
#include "vm/globals.h"
namespace dart {
class String;
class Utf8 : AllStatic {
public:
enum Type {
kAscii = 0, // ASCII character set.
kBMP, // Basic Multilingual Plane.
kSMP, // Supplementary Multilingual Plane.
};
static const intptr_t kMaxOneByteChar = 0x7F;
static const intptr_t kMaxTwoByteChar = 0x7FF;
static const intptr_t kMaxThreeByteChar = 0xFFFF;
static const intptr_t kMaxFourByteChar = 0x10FFFF;
static const intptr_t kMaxBmpCodepoint = 0xffff;
static const int32_t kLeadOffset = (0xD800 - (0x10000 >> 10));
static const int32_t kSurrogateOffset = (0x10000 - (0xD800 << 10) - 0xDC00);
static void ConvertUTF32ToUTF16(int32_t codepoint, uint16_t* dst);
static intptr_t CodePointCount(const uint8_t* utf8_array,
intptr_t array_len,
Type* type);
// Returns true if 'utf8_array' is a valid UTF-8 string.
static bool IsValid(const uint8_t* utf8_array, intptr_t array_len);
static intptr_t Length(int32_t ch);
static intptr_t Length(const String& str);
static intptr_t Encode(int32_t ch, char* dst);
static intptr_t Encode(const String& src, char* dst, intptr_t len);
static intptr_t Decode(const uint8_t* utf8_array,
intptr_t array_len,
int32_t* ch);
static bool DecodeToAscii(const uint8_t* utf8_array,
intptr_t array_len,
uint8_t* dst,
intptr_t len);
static bool DecodeToUTF16(const uint8_t* utf8_array,
intptr_t array_len,
uint16_t* dst,
intptr_t len);
static bool DecodeToUTF32(const uint8_t* utf8_array,
intptr_t array_len,
uint32_t* dst,
intptr_t len);
static bool DecodeCStringToUTF32(const char* str,
uint32_t* dst,
intptr_t len) {
ASSERT(str != NULL);
intptr_t array_len = strlen(str);
const uint8_t* utf8_array = reinterpret_cast<const uint8_t*>(str);
return DecodeToUTF32(utf8_array, array_len, dst, len);
}
};
class CaseMapping : AllStatic {
public:
// Maps a code point to uppercase.
static int32_t ToUpper(int32_t code_point) {
return Convert(code_point, kUppercase);
}
// Maps a code point to lowercase.
static int32_t ToLower(int32_t code_point) {
return Convert(code_point, kLowercase);
}
private:
// Property is a delta to the uppercase mapping.
static const int32_t kUppercase = 1;
// Property is a delta to the uppercase mapping.
static const int32_t kLowercase = 2;
// Property is an index into the exception table.
static const int32_t kException = 3;
// Type bit-field parameters
static const int32_t kTypeShift = 2;
static const int32_t kTypeMask = 3;
// The size of the stage 1 index.
// TODO(cshapiro): improve indexing so this value is unnecessary.
static const int kStage1Size = 261;
// The size of a stage 2 block in bytes.
static const int kBlockSizeLog2 = 8;
static const int kBlockSize = 1 << kBlockSizeLog2;
static int32_t Convert(int32_t ch, int32_t mapping) {
if (ch <= 0xFF) {
int32_t info = stage2_[ch];
if ((info & kTypeMask) == mapping) {
ch += info >> kTypeShift;
}
} else if (ch <= (kStage1Size << kBlockSizeLog2)) {
int16_t offset = stage1_[ch >> kBlockSizeLog2] << kBlockSizeLog2;
int32_t info = stage2_[offset + (ch & (kBlockSize - 1))];
int32_t type = info & kTypeMask;
if (type == mapping) {
ch += (info >> kTypeShift);
} else if (type == kException) {
ch += stage2_exception_[info >> kTypeShift][mapping - 1];
}
}
return ch;
}
// Index into the data array.
static const uint8_t stage1_[];
// Data for small code points with one mapping
static const int16_t stage2_[];
// Data for large code points or code points with both mappings.
static const int32_t stage2_exception_[][2];
};
} // namespace dart
#endif // VM_UNICODE_H_