summaryrefslogtreecommitdiffstats
path: root/app/bidi_line_iterator.cc
diff options
context:
space:
mode:
authorevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-01-25 20:38:53 +0000
committerevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-01-25 20:38:53 +0000
commit8891d14891423a0bf861fb6cb8a88cc2b0b11d8e (patch)
tree286765dee398d8ef885c8895a06834063b53cdee /app/bidi_line_iterator.cc
parentcb34b251707323165c85b7079467e9a03c65af8e (diff)
downloadchromium_src-8891d14891423a0bf861fb6cb8a88cc2b0b11d8e.zip
chromium_src-8891d14891423a0bf861fb6cb8a88cc2b0b11d8e.tar.gz
chromium_src-8891d14891423a0bf861fb6cb8a88cc2b0b11d8e.tar.bz2
remove ICU includes from l10n_util.h
95% of users of l10n_util use it for some functions; the other 5% want some complicated templates that pull in a ton of ICU headers as well. Before this change, the average includer of l10n_util.h pulled in an additional 80 subheaders because of it. Additionally, #including ICU headers from a header makes the includee depend on having the ICU include path in the -I header. Review URL: http://codereview.chromium.org/515059 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@37032 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'app/bidi_line_iterator.cc')
-rw-r--r--app/bidi_line_iterator.cc58
1 files changed, 58 insertions, 0 deletions
diff --git a/app/bidi_line_iterator.cc b/app/bidi_line_iterator.cc
new file mode 100644
index 0000000..e58d375
--- /dev/null
+++ b/app/bidi_line_iterator.cc
@@ -0,0 +1,58 @@
+// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "app/bidi_line_iterator.h"
+
+#include "base/logging.h"
+#include "base/string16.h"
+#include "base/string_util.h"
+
+BiDiLineIterator::~BiDiLineIterator() {
+ if (bidi_) {
+ ubidi_close(bidi_);
+ bidi_ = NULL;
+ }
+}
+
+UBool BiDiLineIterator::Open(const std::wstring& text,
+ bool right_to_left,
+ bool url) {
+ DCHECK(bidi_ == NULL);
+ UErrorCode error = U_ZERO_ERROR;
+ bidi_ = ubidi_openSized(static_cast<int>(text.length()), 0, &error);
+ if (U_FAILURE(error))
+ return false;
+ if (right_to_left && url)
+ ubidi_setReorderingMode(bidi_, UBIDI_REORDER_RUNS_ONLY);
+#if defined(WCHAR_T_IS_UTF32)
+ const string16 text_utf16 = WideToUTF16(text);
+#else
+ const std::wstring &text_utf16 = text;
+#endif // U_SIZEOF_WCHAR_T != 4
+ ubidi_setPara(bidi_, text_utf16.data(), static_cast<int>(text_utf16.length()),
+ right_to_left ? UBIDI_DEFAULT_RTL : UBIDI_DEFAULT_LTR,
+ NULL, &error);
+ return U_SUCCESS(error);
+}
+
+int BiDiLineIterator::CountRuns() {
+ DCHECK(bidi_ != NULL);
+ UErrorCode error = U_ZERO_ERROR;
+ const int runs = ubidi_countRuns(bidi_, &error);
+ return U_SUCCESS(error) ? runs : 0;
+}
+
+UBiDiDirection BiDiLineIterator::GetVisualRun(int index,
+ int* start,
+ int* length) {
+ DCHECK(bidi_ != NULL);
+ return ubidi_getVisualRun(bidi_, index, start, length);
+}
+
+void BiDiLineIterator::GetLogicalRun(int start,
+ int* end,
+ UBiDiLevel* level) {
+ DCHECK(bidi_ != NULL);
+ ubidi_getLogicalRun(bidi_, start, end, level);
+}