1999-10-27 16:34:57 +00:00
|
|
|
/*
|
|
|
|
**********************************************************************
|
2001-03-21 20:31:13 +00:00
|
|
|
* Copyright (C) 1999-2001 International Business Machines Corporation *
|
1999-11-23 16:57:21 +00:00
|
|
|
* and others. All rights reserved. *
|
1999-10-27 16:34:57 +00:00
|
|
|
**********************************************************************
|
|
|
|
* Date Name Description
|
2000-01-08 02:05:05 +00:00
|
|
|
* 11/11/99 rgillam Complete port from Java.
|
1999-10-27 16:34:57 +00:00
|
|
|
**********************************************************************
|
|
|
|
*/
|
|
|
|
|
2000-01-10 21:10:21 +00:00
|
|
|
#include "unicode/rbbi.h"
|
|
|
|
#include "unicode/schriter.h"
|
2000-01-11 00:46:58 +00:00
|
|
|
#include "rbbi_tbl.h"
|
|
|
|
#include "filestrm.h"
|
2001-02-22 01:03:05 +00:00
|
|
|
#include "cmemory.h"
|
1999-10-27 16:34:57 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* A token used as a character-category value to identify ignore characters
|
|
|
|
*/
|
2000-01-08 02:05:05 +00:00
|
|
|
int8_t
|
|
|
|
RuleBasedBreakIterator::IGNORE = -1;
|
1999-10-27 16:34:57 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The state number of the starting state
|
|
|
|
*/
|
2000-01-08 02:05:05 +00:00
|
|
|
int16_t
|
|
|
|
RuleBasedBreakIterator::START_STATE = 1;
|
1999-10-27 16:34:57 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The state-transition value indicating "stop"
|
|
|
|
*/
|
2000-01-08 02:05:05 +00:00
|
|
|
int16_t
|
|
|
|
RuleBasedBreakIterator::STOP_STATE = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class ID. (value is irrelevant; address is important)
|
|
|
|
*/
|
|
|
|
char
|
|
|
|
RuleBasedBreakIterator::fgClassID = 0;
|
1999-10-27 16:34:57 +00:00
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
// constructors
|
|
|
|
//=======================================================================
|
|
|
|
|
|
|
|
/**
|
2000-01-08 02:05:05 +00:00
|
|
|
* Constructs a RuleBasedBreakIterator that uses the already-created
|
|
|
|
* tables object that is passed in as a parameter.
|
1999-10-27 16:34:57 +00:00
|
|
|
*/
|
2000-11-29 00:28:52 +00:00
|
|
|
RuleBasedBreakIterator::RuleBasedBreakIterator(RuleBasedBreakIteratorTables* adoptTables)
|
2000-08-23 23:48:04 +00:00
|
|
|
: text(NULL),
|
2000-11-29 00:28:52 +00:00
|
|
|
tables(adoptTables)
|
2000-01-08 02:05:05 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// This constructor uses the udata interface to create a BreakIterator whose
|
|
|
|
// internal tables live in a memory-mapped file. "image" is a pointer to the
|
|
|
|
// beginning of that file.
|
2000-07-12 05:01:53 +00:00
|
|
|
RuleBasedBreakIterator::RuleBasedBreakIterator(UDataMemory* image)
|
2000-08-23 23:48:04 +00:00
|
|
|
: text(NULL),
|
|
|
|
tables(image != NULL ? new RuleBasedBreakIteratorTables(image) : NULL)
|
2000-01-08 02:05:05 +00:00
|
|
|
{
|
|
|
|
if (tables != NULL)
|
|
|
|
tables->addReference();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Copy constructor. Will produce a collator with the same behavior,
|
|
|
|
* and which iterates over the same text, as the one passed in.
|
|
|
|
*/
|
|
|
|
RuleBasedBreakIterator::RuleBasedBreakIterator(const RuleBasedBreakIterator& that)
|
2000-08-23 23:48:04 +00:00
|
|
|
: text(that.text->clone()),
|
|
|
|
tables(that.tables)
|
2000-01-08 02:05:05 +00:00
|
|
|
{
|
|
|
|
tables->addReference();
|
1999-10-27 16:34:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
// boilerplate
|
|
|
|
//=======================================================================
|
|
|
|
/**
|
2000-01-08 02:05:05 +00:00
|
|
|
* Destructor
|
1999-10-27 16:34:57 +00:00
|
|
|
*/
|
2000-01-08 02:05:05 +00:00
|
|
|
RuleBasedBreakIterator::~RuleBasedBreakIterator() {
|
|
|
|
delete text;
|
|
|
|
tables->removeReference();
|
1999-10-27 16:34:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2000-01-08 02:05:05 +00:00
|
|
|
* Assignment operator. Sets this iterator to have the same behavior,
|
|
|
|
* and iterate over the same text, as the one passed in.
|
1999-10-27 16:34:57 +00:00
|
|
|
*/
|
2000-01-08 02:05:05 +00:00
|
|
|
RuleBasedBreakIterator&
|
|
|
|
RuleBasedBreakIterator::operator=(const RuleBasedBreakIterator& that) {
|
|
|
|
delete text;
|
|
|
|
text = that.text->clone();
|
|
|
|
|
|
|
|
tables->removeReference();
|
|
|
|
tables = that.tables;
|
|
|
|
tables->addReference();
|
|
|
|
|
|
|
|
return *this;
|
1999-10-27 16:34:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2000-01-08 02:05:05 +00:00
|
|
|
* Returns a newly-constructed RuleBasedBreakIterator with the same
|
|
|
|
* behavior, and iterating over the same text, as this one.
|
1999-10-27 16:34:57 +00:00
|
|
|
*/
|
2000-01-08 02:05:05 +00:00
|
|
|
BreakIterator*
|
|
|
|
RuleBasedBreakIterator::clone(void) const {
|
|
|
|
return new RuleBasedBreakIterator(*this);
|
1999-10-27 16:34:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2000-01-08 02:05:05 +00:00
|
|
|
* Equality operator. Returns TRUE if both BreakIterators are of the
|
|
|
|
* same class, have the same behavior, and iterate over the same text.
|
|
|
|
*/
|
2000-05-18 22:08:39 +00:00
|
|
|
UBool
|
2000-01-08 02:05:05 +00:00
|
|
|
RuleBasedBreakIterator::operator==(const BreakIterator& that) const {
|
|
|
|
if (that.getDynamicClassID() != getDynamicClassID())
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
|
|
|
|
const RuleBasedBreakIterator& that2 = (const RuleBasedBreakIterator&)that;
|
|
|
|
return (that2.text == text || *that2.text == *text)
|
|
|
|
&& (that2.tables == tables || *that2.tables == *tables);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Compute a hash code for this BreakIterator
|
1999-10-27 16:34:57 +00:00
|
|
|
* @return A hash code
|
|
|
|
*/
|
2000-01-08 02:05:05 +00:00
|
|
|
int32_t
|
|
|
|
RuleBasedBreakIterator::hashCode(void) const {
|
|
|
|
return tables->hashCode();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the description used to create this iterator
|
|
|
|
*/
|
|
|
|
const UnicodeString&
|
|
|
|
RuleBasedBreakIterator::getRules() const {
|
|
|
|
return tables->getRules();
|
1999-10-27 16:34:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
// BreakIterator overrides
|
|
|
|
//=======================================================================
|
2000-01-08 02:05:05 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return a CharacterIterator over the text being analyzed. This version
|
|
|
|
* of this method returns the actual CharacterIterator we're using internally.
|
|
|
|
* Changing the state of this iterator can have undefined consequences. If
|
|
|
|
* you need to change it, clone it first.
|
|
|
|
* @return An iterator over the text being analyzed.
|
|
|
|
*/
|
|
|
|
const CharacterIterator&
|
|
|
|
RuleBasedBreakIterator::getText() const {
|
|
|
|
RuleBasedBreakIterator* nonConstThis = (RuleBasedBreakIterator*)this;
|
|
|
|
|
|
|
|
// The iterator is initialized pointing to no text at all, so if this
|
|
|
|
// function is called while we're in that state, we have to fudge an
|
|
|
|
// an iterator to return.
|
|
|
|
if (nonConstThis->text == NULL)
|
|
|
|
nonConstThis->text = new StringCharacterIterator("");
|
|
|
|
return *nonConstThis->text;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the iterator to analyze a new piece of text. This function resets
|
|
|
|
* the current iteration position to the beginning of the text.
|
|
|
|
* @param newText An iterator over the text to analyze.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
RuleBasedBreakIterator::adoptText(CharacterIterator* newText) {
|
|
|
|
reset();
|
|
|
|
delete text;
|
|
|
|
text = newText;
|
|
|
|
text->first();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the iterator to analyze a new piece of text. This function resets
|
|
|
|
* the current iteration position to the beginning of the text.
|
|
|
|
* @param newText An iterator over the text to analyze.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
RuleBasedBreakIterator::setText(const UnicodeString& newText) {
|
|
|
|
reset();
|
|
|
|
if (text != NULL && text->getDynamicClassID()
|
|
|
|
== StringCharacterIterator::getStaticClassID()) {
|
|
|
|
((StringCharacterIterator*)text)->setText(newText);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
delete text;
|
2000-08-23 23:48:04 +00:00
|
|
|
text = new StringCharacterIterator(newText);
|
2000-01-08 02:05:05 +00:00
|
|
|
text->first();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-03-07 22:42:46 +00:00
|
|
|
#ifdef ICU_ENABLE_DEPRECATED_BREAKITERATOR
|
|
|
|
/**
|
|
|
|
* Returns a newly-created CharacterIterator that the caller is to take
|
|
|
|
* ownership of.
|
|
|
|
* THIS FUNCTION SHOULD NOT BE HERE. IT'S HERE BECAUSE BreakIterator DEFINES
|
|
|
|
* IT AS PURE VIRTUAL, FORCING RBBI TO IMPLEMENT IT. IT SHOULD BE REMOVED
|
|
|
|
* FROM *BOTH* CLASSES.
|
|
|
|
*/
|
|
|
|
CharacterIterator*
|
|
|
|
RuleBasedBreakIterator::createText() const {
|
|
|
|
if (text == NULL)
|
|
|
|
return new StringCharacterIterator("");
|
|
|
|
else
|
|
|
|
return text->clone();
|
|
|
|
}
|
|
|
|
|
2000-01-08 02:05:05 +00:00
|
|
|
/**
|
|
|
|
* Set the iterator to analyze a new piece of text. This function resets
|
|
|
|
* the current iteration position to the beginning of the text.
|
|
|
|
* @param newText The text to analyze.
|
|
|
|
* THIS FUNCTION SHOULD NOT BE HERE. IT'S HERE BECAUSE BreakIterator DEFINES
|
|
|
|
* IT AS PURE VIRTUAL, FORCING RBBI TO IMPLEMENT IT. IT SHOULD BE REMOVED
|
|
|
|
* FROM *BOTH* CLASSES.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
RuleBasedBreakIterator::setText(const UnicodeString* newText) {
|
|
|
|
setText(*newText);
|
|
|
|
}
|
2001-03-07 22:42:46 +00:00
|
|
|
#endif
|
2000-01-08 02:05:05 +00:00
|
|
|
|
1999-10-27 16:34:57 +00:00
|
|
|
/**
|
|
|
|
* Sets the current iteration position to the beginning of the text.
|
|
|
|
* (i.e., the CharacterIterator's starting offset).
|
|
|
|
* @return The offset of the beginning of the text.
|
|
|
|
*/
|
1999-12-22 22:57:04 +00:00
|
|
|
int32_t RuleBasedBreakIterator::first(void) {
|
2000-01-08 02:05:05 +00:00
|
|
|
reset();
|
|
|
|
if (text == NULL)
|
|
|
|
return BreakIterator::DONE;
|
1999-10-27 16:34:57 +00:00
|
|
|
|
2000-01-08 02:05:05 +00:00
|
|
|
text->first();
|
|
|
|
return text->getIndex();
|
1999-10-27 16:34:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the current iteration position to the end of the text.
|
|
|
|
* (i.e., the CharacterIterator's ending offset).
|
|
|
|
* @return The text's past-the-end offset.
|
|
|
|
*/
|
1999-12-22 22:57:04 +00:00
|
|
|
int32_t RuleBasedBreakIterator::last(void) {
|
2000-01-08 02:05:05 +00:00
|
|
|
reset();
|
|
|
|
if (text == NULL)
|
|
|
|
return BreakIterator::DONE;
|
|
|
|
|
1999-10-27 16:34:57 +00:00
|
|
|
// I'm not sure why, but t.last() returns the offset of the last character,
|
|
|
|
// rather than the past-the-end offset
|
2000-01-08 02:05:05 +00:00
|
|
|
|
|
|
|
int32_t pos = text->endIndex();
|
|
|
|
text->setIndex(pos);
|
|
|
|
return pos;
|
1999-10-27 16:34:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Advances the iterator either forward or backward the specified number of steps.
|
|
|
|
* Negative values move backward, and positive values move forward. This is
|
|
|
|
* equivalent to repeatedly calling next() or previous().
|
|
|
|
* @param n The number of steps to move. The sign indicates the direction
|
|
|
|
* (negative is backwards, and positive is forwards).
|
|
|
|
* @return The character offset of the boundary position n boundaries away from
|
|
|
|
* the current one.
|
|
|
|
*/
|
|
|
|
int32_t RuleBasedBreakIterator::next(int32_t n) {
|
|
|
|
int32_t result = current();
|
|
|
|
while (n > 0) {
|
|
|
|
result = handleNext();
|
|
|
|
--n;
|
|
|
|
}
|
|
|
|
while (n < 0) {
|
|
|
|
result = previous();
|
|
|
|
++n;
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Advances the iterator to the next boundary position.
|
|
|
|
* @return The position of the first boundary after this one.
|
|
|
|
*/
|
1999-12-22 22:57:04 +00:00
|
|
|
int32_t RuleBasedBreakIterator::next(void) {
|
1999-10-27 16:34:57 +00:00
|
|
|
return handleNext();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Advances the iterator backwards, to the last boundary preceding this one.
|
|
|
|
* @return The position of the last boundary position preceding this one.
|
|
|
|
*/
|
1999-12-22 22:57:04 +00:00
|
|
|
int32_t RuleBasedBreakIterator::previous(void) {
|
1999-10-27 16:34:57 +00:00
|
|
|
// if we're already sitting at the beginning of the text, return DONE
|
2000-01-08 02:05:05 +00:00
|
|
|
if (text == NULL || current() == text->startIndex())
|
|
|
|
return BreakIterator::DONE;
|
1999-10-27 16:34:57 +00:00
|
|
|
|
|
|
|
// set things up. handlePrevious() will back us up to some valid
|
|
|
|
// break position before the current position (we back our internal
|
|
|
|
// iterator up one step to prevent handlePrevious() from returning
|
|
|
|
// the current position), but not necessarily the last one before
|
|
|
|
// where we started
|
|
|
|
int32_t start = current();
|
2000-01-08 02:05:05 +00:00
|
|
|
text->previous();
|
1999-10-27 16:34:57 +00:00
|
|
|
int32_t lastResult = handlePrevious();
|
|
|
|
int32_t result = lastResult;
|
|
|
|
|
|
|
|
// iterate forward from the known break position until we pass our
|
|
|
|
// starting point. The last break position before the starting
|
|
|
|
// point is our return value
|
2000-01-08 02:05:05 +00:00
|
|
|
while (result != BreakIterator::DONE && result < start) {
|
1999-10-27 16:34:57 +00:00
|
|
|
lastResult = result;
|
|
|
|
result = handleNext();
|
|
|
|
}
|
|
|
|
|
|
|
|
// set the current iteration position to be the last break position
|
|
|
|
// before where we started, and then return that value
|
2000-01-08 02:05:05 +00:00
|
|
|
text->setIndex(lastResult);
|
1999-10-27 16:34:57 +00:00
|
|
|
return lastResult;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the iterator to refer to the first boundary position following
|
|
|
|
* the specified position.
|
|
|
|
* @offset The position from which to begin searching for a break position.
|
|
|
|
* @return The position of the first break after the current position.
|
|
|
|
*/
|
|
|
|
int32_t RuleBasedBreakIterator::following(int32_t offset) {
|
|
|
|
// if the offset passed in is already past the end of the text,
|
2000-01-08 02:05:05 +00:00
|
|
|
// just return DONE; if it's before the beginning, return the
|
|
|
|
// text's starting offset
|
|
|
|
if (text == NULL || offset >= text->endIndex()) {
|
|
|
|
return BreakIterator::DONE;
|
|
|
|
}
|
|
|
|
else if (offset < text->startIndex()) {
|
|
|
|
return text->startIndex();
|
|
|
|
}
|
1999-10-27 16:34:57 +00:00
|
|
|
|
|
|
|
// otherwise, set our internal iteration position (temporarily)
|
|
|
|
// to the position passed in. If this is the _beginning_ position,
|
|
|
|
// then we can just use next() to get our return value
|
2000-01-08 02:05:05 +00:00
|
|
|
text->setIndex(offset);
|
|
|
|
if (offset == text->startIndex())
|
1999-10-27 16:34:57 +00:00
|
|
|
return handleNext();
|
|
|
|
|
|
|
|
// otherwise, we have to sync up first. Use handlePrevious() to back
|
|
|
|
// us up to a known break position before the specified position (if
|
|
|
|
// we can determine that the specified position is a break position,
|
|
|
|
// we don't back up at all). This may or may not be the last break
|
|
|
|
// position at or before our starting position. Advance forward
|
|
|
|
// from here until we've passed the starting position. The position
|
|
|
|
// we stop on will be the first break position after the specified one.
|
|
|
|
int32_t result = handlePrevious();
|
2000-01-08 02:05:05 +00:00
|
|
|
while (result != BreakIterator::DONE && result <= offset)
|
1999-10-27 16:34:57 +00:00
|
|
|
result = handleNext();
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the iterator to refer to the last boundary position before the
|
|
|
|
* specified position.
|
|
|
|
* @offset The position to begin searching for a break from.
|
|
|
|
* @return The position of the last boundary before the starting position.
|
|
|
|
*/
|
|
|
|
int32_t RuleBasedBreakIterator::preceding(int32_t offset) {
|
2000-01-08 02:05:05 +00:00
|
|
|
// if the offset passed in is already past the end of the text,
|
|
|
|
// just return DONE; if it's before the beginning, return the
|
|
|
|
// text's starting offset
|
|
|
|
if (text == NULL || offset > text->endIndex()) {
|
|
|
|
return BreakIterator::DONE;
|
|
|
|
}
|
|
|
|
else if (offset < text->startIndex()) {
|
|
|
|
return text->startIndex();
|
|
|
|
}
|
|
|
|
|
1999-10-27 16:34:57 +00:00
|
|
|
// if we start by updating the current iteration position to the
|
|
|
|
// position specified by the caller, we can just use previous()
|
|
|
|
// to carry out this operation
|
2000-01-08 02:05:05 +00:00
|
|
|
text->setIndex(offset);
|
1999-10-27 16:34:57 +00:00
|
|
|
return previous();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns true if the specfied position is a boundary position. As a side
|
|
|
|
* effect, leaves the iterator pointing to the first boundary position at
|
|
|
|
* or after "offset".
|
|
|
|
* @param offset the offset to check.
|
|
|
|
* @return True if "offset" is a boundary position.
|
|
|
|
*/
|
2000-05-18 22:08:39 +00:00
|
|
|
UBool RuleBasedBreakIterator::isBoundary(int32_t offset) {
|
2000-01-08 02:05:05 +00:00
|
|
|
// the beginning index of the iterator is always a boundary position by definition
|
|
|
|
if (text == NULL || offset == text->startIndex()) {
|
1999-10-27 16:34:57 +00:00
|
|
|
return TRUE;
|
2000-01-08 02:05:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// out-of-range indexes are never boundary positions
|
|
|
|
else if (offset < text->startIndex() || offset > text->endIndex()) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
1999-10-27 16:34:57 +00:00
|
|
|
|
|
|
|
// otherwise, we can use following() on the position before the specified
|
|
|
|
// one and return true of the position we get back is the one the user
|
|
|
|
// specified
|
|
|
|
else
|
|
|
|
return following(offset - 1) == offset;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the current iteration position.
|
|
|
|
* @return The current iteration position.
|
|
|
|
*/
|
2000-01-08 02:05:05 +00:00
|
|
|
int32_t RuleBasedBreakIterator::current(void) const {
|
|
|
|
return (text != NULL) ? text->getIndex() : BreakIterator::DONE;
|
1999-10-27 16:34:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
// implementation
|
|
|
|
//=======================================================================
|
2000-01-08 02:05:05 +00:00
|
|
|
|
1999-10-27 16:34:57 +00:00
|
|
|
/**
|
|
|
|
* This method is the actual implementation of the next() method. All iteration
|
|
|
|
* vectors through here. This method initializes the state machine to state 1
|
|
|
|
* and advances through the text character by character until we reach the end
|
|
|
|
* of the text or the state machine transitions to state 0. We update our return
|
|
|
|
* value every time the state machine passes through a possible end state.
|
|
|
|
*/
|
1999-12-22 22:57:04 +00:00
|
|
|
int32_t RuleBasedBreakIterator::handleNext(void) {
|
1999-10-27 16:34:57 +00:00
|
|
|
// if we're already at the end of the text, return DONE.
|
2000-01-08 02:05:05 +00:00
|
|
|
if (text == NULL || tables == NULL || text->getIndex() == text->endIndex())
|
|
|
|
return BreakIterator::DONE;
|
1999-10-27 16:34:57 +00:00
|
|
|
|
|
|
|
// no matter what, we always advance at least one character forward
|
2000-01-08 02:05:05 +00:00
|
|
|
int32_t result = text->getIndex() + 1;
|
|
|
|
int32_t lookaheadResult = 0;
|
1999-10-27 16:34:57 +00:00
|
|
|
|
|
|
|
// begin in state 1
|
|
|
|
int32_t state = START_STATE;
|
|
|
|
int32_t category;
|
2000-01-08 02:05:05 +00:00
|
|
|
UChar c = text->current();
|
|
|
|
UChar lastC = c;
|
|
|
|
int32_t lastCPos = 0;
|
|
|
|
|
1999-10-27 16:34:57 +00:00
|
|
|
|
|
|
|
// loop until we reach the end of the text or transition to state 0
|
2000-01-08 02:05:05 +00:00
|
|
|
while (c != CharacterIterator::DONE && state != STOP_STATE) {
|
1999-10-27 16:34:57 +00:00
|
|
|
|
|
|
|
// look up the current character's character category (which tells us
|
|
|
|
// which column in the state table to look at)
|
2000-01-08 02:05:05 +00:00
|
|
|
category = tables->lookupCategory(c, this);
|
1999-10-27 16:34:57 +00:00
|
|
|
|
|
|
|
// if the character isn't an ignore character, look up a state
|
|
|
|
// transition in the state table
|
|
|
|
if (category != IGNORE) {
|
2000-01-08 02:05:05 +00:00
|
|
|
state = tables->lookupState(state, category);
|
1999-10-27 16:34:57 +00:00
|
|
|
}
|
|
|
|
|
2000-01-08 02:05:05 +00:00
|
|
|
// if the state we've just transitioned to is a lookahead state,
|
|
|
|
// (but not also an end state), save its position. If it's
|
|
|
|
// both a lookahead state and an end state, update the break position
|
|
|
|
// to the last saved lookup-state position
|
|
|
|
if (tables->isLookaheadState(state)) {
|
|
|
|
if (tables->isEndState(state)) {
|
|
|
|
result = lookaheadResult;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
lookaheadResult = text->getIndex() + 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// otherwise, if the state we've just transitioned to is an accepting state,
|
1999-10-27 16:34:57 +00:00
|
|
|
// update our return value to be the current iteration position
|
2000-01-08 02:05:05 +00:00
|
|
|
else {
|
|
|
|
if (tables->isEndState(state)) {
|
|
|
|
result = text->getIndex() + 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// keep track of the last "real" character we saw. If this character isn't an
|
|
|
|
// ignore character, take note of it and its position in the text
|
|
|
|
if (category != IGNORE && state != STOP_STATE) {
|
|
|
|
lastC = c;
|
|
|
|
lastCPos = text->getIndex();
|
|
|
|
}
|
|
|
|
c = text->next();
|
1999-10-27 16:34:57 +00:00
|
|
|
}
|
2000-01-08 02:05:05 +00:00
|
|
|
|
|
|
|
// if we've run off the end of the text, and the very last character took us into
|
|
|
|
// a lookahead state, advance the break position to the lookahead position
|
|
|
|
// (the theory here is that if there are no characters at all after the lookahead
|
|
|
|
// position, that always matches the lookahead criteria)
|
|
|
|
if (c == CharacterIterator::DONE && lookaheadResult == text->endIndex()) {
|
|
|
|
result = lookaheadResult;
|
|
|
|
}
|
|
|
|
|
|
|
|
// if the last character we saw before the one that took us into the stop state
|
|
|
|
// was a mandatory breaking character, then the break position goes right after it
|
|
|
|
// (this is here so that breaks come before, rather than after, a string of
|
|
|
|
// ignore characters when they follow a mandatory break character)
|
|
|
|
else if (lastC == 0x0a || lastC == 0x0d || lastC == 0x0c || lastC == 0x2028
|
|
|
|
|| lastC == 0x2029) {
|
|
|
|
result = lastCPos + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
text->setIndex(result);
|
1999-10-27 16:34:57 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This method backs the iterator back up to a "safe position" in the text.
|
|
|
|
* This is a position that we know, without any context, must be a break position.
|
|
|
|
* The various calling methods then iterate forward from this safe position to
|
|
|
|
* the appropriate position to return. (For more information, see the description
|
|
|
|
* of buildBackwardsStateTable() in RuleBasedBreakIterator.Builder.)
|
|
|
|
*/
|
1999-12-22 22:57:04 +00:00
|
|
|
int32_t RuleBasedBreakIterator::handlePrevious(void) {
|
2000-01-08 02:05:05 +00:00
|
|
|
if (text == NULL || tables == NULL)
|
|
|
|
return 0;
|
|
|
|
|
1999-10-27 16:34:57 +00:00
|
|
|
int32_t state = START_STATE;
|
|
|
|
int32_t category = 0;
|
|
|
|
int32_t lastCategory = 0;
|
2000-01-08 02:05:05 +00:00
|
|
|
UChar c = text->current();
|
1999-10-27 16:34:57 +00:00
|
|
|
|
|
|
|
// loop until we reach the beginning of the text or transition to state 0
|
2000-01-08 02:05:05 +00:00
|
|
|
while (c != CharacterIterator::DONE && state != STOP_STATE) {
|
1999-10-27 16:34:57 +00:00
|
|
|
|
|
|
|
// save the last character's category and look up the current
|
|
|
|
// character's category
|
|
|
|
lastCategory = category;
|
2000-01-08 02:05:05 +00:00
|
|
|
category = tables->lookupCategory(c, this);
|
1999-10-27 16:34:57 +00:00
|
|
|
|
|
|
|
// if the current character isn't an ignore character, look up a
|
|
|
|
// state transition in the backwards state table
|
|
|
|
if (category != IGNORE)
|
2000-01-08 02:05:05 +00:00
|
|
|
state = tables->lookupBackwardState(state, category);
|
1999-10-27 16:34:57 +00:00
|
|
|
|
|
|
|
// then advance one character backwards
|
2000-01-08 02:05:05 +00:00
|
|
|
c = text->previous();
|
1999-10-27 16:34:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// if we didn't march off the beginning of the text, we're either one or two
|
|
|
|
// positions away from the real break position. (One because of the call to
|
|
|
|
// previous() at the end of the loop above, and another because the character
|
|
|
|
// that takes us into the stop state will always be the character BEFORE
|
|
|
|
// the break position.)
|
2000-01-08 02:05:05 +00:00
|
|
|
if (c != CharacterIterator::DONE) {
|
1999-10-27 16:34:57 +00:00
|
|
|
if (lastCategory != IGNORE)
|
2000-01-08 02:05:05 +00:00
|
|
|
text->setIndex(text->getIndex() + 2);
|
1999-10-27 16:34:57 +00:00
|
|
|
else
|
2000-01-08 02:05:05 +00:00
|
|
|
text->next();
|
1999-10-27 16:34:57 +00:00
|
|
|
}
|
|
|
|
|
2000-01-08 02:05:05 +00:00
|
|
|
return text->getIndex();
|
1999-10-27 16:34:57 +00:00
|
|
|
}
|
|
|
|
|
2000-01-08 02:05:05 +00:00
|
|
|
void
|
|
|
|
RuleBasedBreakIterator::reset()
|
|
|
|
{
|
|
|
|
// Base-class version of this function is a no-op.
|
|
|
|
// Subclasses may override with their own reset behavior.
|
1999-10-27 16:34:57 +00:00
|
|
|
}
|
2001-02-21 23:40:41 +00:00
|
|
|
|
|
|
|
// internal type for BufferClone
|
|
|
|
struct bufferCloneStructUChar
|
|
|
|
{
|
2001-02-22 16:32:40 +00:00
|
|
|
uint8_t bi [sizeof(RuleBasedBreakIterator)] ;
|
|
|
|
uint8_t text [sizeof(UCharCharacterIterator)] ;
|
2001-02-21 23:40:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct bufferCloneStructString
|
|
|
|
{
|
2001-02-22 16:32:40 +00:00
|
|
|
uint8_t bi [sizeof(RuleBasedBreakIterator)] ;
|
|
|
|
uint8_t text [sizeof(StringCharacterIterator)] ;
|
2001-02-21 23:40:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
BreakIterator * RuleBasedBreakIterator::createBufferClone(void *stackBuffer,
|
|
|
|
int32_t &BufferSize,
|
|
|
|
UErrorCode &status)
|
|
|
|
{
|
|
|
|
RuleBasedBreakIterator * localIterator;
|
2001-03-28 01:00:20 +00:00
|
|
|
int32_t bufferSizeNeeded = 0;
|
|
|
|
UBool IterIsUChar = FALSE;
|
|
|
|
UBool IterIsString = FALSE;
|
2001-09-26 21:09:18 +00:00
|
|
|
char *stackBufferChars = (char *)stackBuffer;
|
2001-02-21 23:40:41 +00:00
|
|
|
|
|
|
|
if (U_FAILURE(status)){
|
|
|
|
return 0;
|
|
|
|
}
|
2001-09-26 21:09:18 +00:00
|
|
|
|
|
|
|
/* Pointers on 64-bit platforms need to be aligned
|
|
|
|
* on a 64-bit boundry in memory.
|
|
|
|
*/
|
|
|
|
if (U_ALIGNMENT_OFFSET(stackBuffer) != 0) {
|
|
|
|
int32_t offsetUp = (int32_t)U_ALIGNMENT_OFFSET_UP(stackBufferChars);
|
|
|
|
BufferSize -= offsetUp;
|
|
|
|
stackBufferChars += offsetUp;
|
2001-02-21 23:40:41 +00:00
|
|
|
}
|
2001-09-26 21:09:18 +00:00
|
|
|
stackBuffer = (void *)stackBufferChars;
|
|
|
|
|
2001-02-21 23:40:41 +00:00
|
|
|
if (text == NULL)
|
|
|
|
{
|
2001-02-22 17:08:56 +00:00
|
|
|
bufferSizeNeeded = (int32_t) sizeof(RuleBasedBreakIterator);
|
2001-02-21 23:40:41 +00:00
|
|
|
}
|
|
|
|
else if (text->getDynamicClassID() == StringCharacterIterator::getStaticClassID())
|
|
|
|
{
|
2001-02-22 17:08:56 +00:00
|
|
|
bufferSizeNeeded = (int32_t) sizeof(struct bufferCloneStructString);
|
2001-02-21 23:40:41 +00:00
|
|
|
IterIsString = TRUE;
|
|
|
|
}
|
|
|
|
else if (text->getDynamicClassID() == UCharCharacterIterator::getStaticClassID())
|
|
|
|
{
|
2001-02-22 17:08:56 +00:00
|
|
|
bufferSizeNeeded = (int32_t) sizeof(struct bufferCloneStructUChar);
|
2001-02-21 23:40:41 +00:00
|
|
|
IterIsUChar = TRUE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// code has changed - time to make a real CharacterIterator::CreateBufferClone()
|
|
|
|
}
|
2001-09-26 21:09:18 +00:00
|
|
|
if (BufferSize <= 0){ /* 'preflighting' request - set needed size into *pBufferSize */
|
2001-02-22 01:03:05 +00:00
|
|
|
BufferSize = bufferSizeNeeded;
|
|
|
|
return 0;
|
2001-02-21 23:40:41 +00:00
|
|
|
}
|
|
|
|
if (BufferSize < bufferSizeNeeded || !stackBuffer)
|
|
|
|
{
|
2001-02-22 01:03:05 +00:00
|
|
|
/* allocate one here...*/
|
|
|
|
localIterator = new RuleBasedBreakIterator(*this);
|
|
|
|
status = U_SAFECLONE_ALLOCATED_ERROR;
|
2001-02-22 16:32:40 +00:00
|
|
|
return localIterator;
|
|
|
|
}
|
|
|
|
if (IterIsUChar) {
|
2001-02-22 01:03:05 +00:00
|
|
|
struct bufferCloneStructUChar * localClone
|
2001-02-21 23:40:41 +00:00
|
|
|
= (struct bufferCloneStructUChar *)stackBuffer;
|
2001-02-22 16:32:40 +00:00
|
|
|
localIterator = (RuleBasedBreakIterator *)&localClone->bi;
|
2001-02-22 01:03:05 +00:00
|
|
|
uprv_memcpy(localIterator, this, sizeof(RuleBasedBreakIterator));
|
|
|
|
uprv_memcpy(&localClone->text, text, sizeof(UCharCharacterIterator));
|
2001-02-22 16:32:40 +00:00
|
|
|
localIterator->text = (CharacterIterator *) &localClone->text;
|
2001-02-21 23:40:41 +00:00
|
|
|
} else if (IterIsString) {
|
|
|
|
struct bufferCloneStructString * localClone
|
|
|
|
= (struct bufferCloneStructString *)stackBuffer;
|
2001-02-22 16:32:40 +00:00
|
|
|
localIterator = (RuleBasedBreakIterator *)&localClone->bi;
|
2001-02-22 01:03:05 +00:00
|
|
|
uprv_memcpy(localIterator, this, sizeof(RuleBasedBreakIterator));
|
|
|
|
uprv_memcpy(&localClone->text, text, sizeof(StringCharacterIterator));
|
2001-02-22 16:32:40 +00:00
|
|
|
localIterator->text = (CharacterIterator *)&localClone->text;
|
2001-02-21 23:40:41 +00:00
|
|
|
} else {
|
|
|
|
RuleBasedBreakIterator * localClone
|
|
|
|
= (RuleBasedBreakIterator *)stackBuffer;
|
|
|
|
localIterator = localClone;
|
2001-02-22 01:03:05 +00:00
|
|
|
uprv_memcpy(localIterator, this, sizeof(RuleBasedBreakIterator));
|
2001-02-21 23:40:41 +00:00
|
|
|
}
|
2001-02-22 16:32:40 +00:00
|
|
|
|
|
|
|
localIterator->fBufferClone = TRUE;
|
|
|
|
|
2001-02-22 01:03:05 +00:00
|
|
|
return localIterator;
|
2001-02-21 23:40:41 +00:00
|
|
|
}
|