rbbi.h 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782
  1. /*
  2. ***************************************************************************
  3. * Copyright (C) 1999-2014 International Business Machines Corporation *
  4. * and others. All rights reserved. *
  5. ***************************************************************************
  6. **********************************************************************
  7. * Date Name Description
  8. * 10/22/99 alan Creation.
  9. * 11/11/99 rgillam Complete port from Java.
  10. **********************************************************************
  11. */
  12. #ifndef RBBI_H
  13. #define RBBI_H
  14. #include "unicode/utypes.h"
  15. /**
  16. * \file
  17. * \brief C++ API: Rule Based Break Iterator
  18. */
  19. #if !UCONFIG_NO_BREAK_ITERATION
  20. #include "unicode/brkiter.h"
  21. #include "unicode/udata.h"
  22. #include "unicode/parseerr.h"
  23. #include "unicode/schriter.h"
  24. #include "unicode/uchriter.h"
  25. struct UTrie;
  26. U_NAMESPACE_BEGIN
  27. /** @internal */
  28. struct RBBIDataHeader;
  29. class RuleBasedBreakIteratorTables;
  30. class BreakIterator;
  31. class RBBIDataWrapper;
  32. class UStack;
  33. class LanguageBreakEngine;
  34. class UnhandledEngine;
  35. struct RBBIStateTable;
  36. /**
  37. *
  38. * A subclass of BreakIterator whose behavior is specified using a list of rules.
  39. * <p>Instances of this class are most commonly created by the factory methods of
  40. * BreakIterator::createWordInstance(), BreakIterator::createLineInstance(), etc.,
  41. * and then used via the abstract API in class BreakIterator</p>
  42. *
  43. * <p>See the ICU User Guide for information on Break Iterator Rules.</p>
  44. *
  45. * <p>This class is not intended to be subclassed. (Class DictionaryBasedBreakIterator
  46. * is a subclass, but that relationship is effectively internal to the ICU
  47. * implementation. The subclassing interface to RulesBasedBreakIterator is
  48. * not part of the ICU API, and may not remain stable.</p>
  49. *
  50. */
  51. class U_COMMON_API RuleBasedBreakIterator /*U_FINAL*/ : public BreakIterator {
  52. protected:
  53. /**
  54. * The UText through which this BreakIterator accesses the text
  55. * @internal
  56. */
  57. UText *fText;
  58. /**
  59. * A character iterator that refers to the same text as the UText, above.
  60. * Only included for compatibility with old API, which was based on CharacterIterators.
  61. * Value may be adopted from outside, or one of fSCharIter or fDCharIter, below.
  62. */
  63. CharacterIterator *fCharIter;
  64. /**
  65. * When the input text is provided by a UnicodeString, this will point to
  66. * a characterIterator that wraps that data. Needed only for the
  67. * implementation of getText(), a backwards compatibility issue.
  68. */
  69. StringCharacterIterator *fSCharIter;
  70. /**
  71. * When the input text is provided by a UText, this
  72. * dummy CharacterIterator over an empty string will
  73. * be returned from getText()
  74. */
  75. UCharCharacterIterator *fDCharIter;
  76. /**
  77. * The rule data for this BreakIterator instance
  78. * @internal
  79. */
  80. RBBIDataWrapper *fData;
  81. /** Index of the Rule {tag} values for the most recent match.
  82. * @internal
  83. */
  84. int32_t fLastRuleStatusIndex;
  85. /**
  86. * Rule tag value valid flag.
  87. * Some iterator operations don't intrinsically set the correct tag value.
  88. * This flag lets us lazily compute the value if we are ever asked for it.
  89. * @internal
  90. */
  91. UBool fLastStatusIndexValid;
  92. /**
  93. * Counter for the number of characters encountered with the "dictionary"
  94. * flag set.
  95. * @internal
  96. */
  97. uint32_t fDictionaryCharCount;
  98. /**
  99. * When a range of characters is divided up using the dictionary, the break
  100. * positions that are discovered are stored here, preventing us from having
  101. * to use either the dictionary or the state table again until the iterator
  102. * leaves this range of text. Has the most impact for line breaking.
  103. * @internal
  104. */
  105. int32_t* fCachedBreakPositions;
  106. /**
  107. * The number of elements in fCachedBreakPositions
  108. * @internal
  109. */
  110. int32_t fNumCachedBreakPositions;
  111. /**
  112. * if fCachedBreakPositions is not null, this indicates which item in the
  113. * cache the current iteration position refers to
  114. * @internal
  115. */
  116. int32_t fPositionInCache;
  117. /**
  118. *
  119. * If present, UStack of LanguageBreakEngine objects that might handle
  120. * dictionary characters. Searched from top to bottom to find an object to
  121. * handle a given character.
  122. * @internal
  123. */
  124. UStack *fLanguageBreakEngines;
  125. /**
  126. *
  127. * If present, the special LanguageBreakEngine used for handling
  128. * characters that are in the dictionary set, but not handled by any
  129. * LangugageBreakEngine.
  130. * @internal
  131. */
  132. UnhandledEngine *fUnhandledBreakEngine;
  133. /**
  134. *
  135. * The type of the break iterator, or -1 if it has not been set.
  136. * @internal
  137. */
  138. int32_t fBreakType;
  139. protected:
  140. //=======================================================================
  141. // constructors
  142. //=======================================================================
  143. #ifndef U_HIDE_INTERNAL_API
  144. /**
  145. * Constant to be used in the constructor
  146. * RuleBasedBreakIterator(RBBIDataHeader*, EDontAdopt, UErrorCode &);
  147. * which does not adopt the memory indicated by the RBBIDataHeader*
  148. * parameter.
  149. *
  150. * @internal
  151. */
  152. enum EDontAdopt {
  153. kDontAdopt
  154. };
  155. /**
  156. * Constructor from a flattened set of RBBI data in malloced memory.
  157. * RulesBasedBreakIterators built from a custom set of rules
  158. * are created via this constructor; the rules are compiled
  159. * into memory, then the break iterator is constructed here.
  160. *
  161. * The break iterator adopts the memory, and will
  162. * free it when done.
  163. * @internal
  164. */
  165. RuleBasedBreakIterator(RBBIDataHeader* data, UErrorCode &status);
  166. /**
  167. * Constructor from a flattened set of RBBI data in memory which need not
  168. * be malloced (e.g. it may be a memory-mapped file, etc.).
  169. *
  170. * This version does not adopt the memory, and does not
  171. * free it when done.
  172. * @internal
  173. */
  174. RuleBasedBreakIterator(const RBBIDataHeader* data, enum EDontAdopt dontAdopt, UErrorCode &status);
  175. #endif /* U_HIDE_INTERNAL_API */
  176. friend class RBBIRuleBuilder;
  177. /** @internal */
  178. friend class BreakIterator;
  179. public:
  180. /** Default constructor. Creates an empty shell of an iterator, with no
  181. * rules or text to iterate over. Object can subsequently be assigned to.
  182. * @stable ICU 2.2
  183. */
  184. RuleBasedBreakIterator();
  185. /**
  186. * Copy constructor. Will produce a break iterator with the same behavior,
  187. * and which iterates over the same text, as the one passed in.
  188. * @param that The RuleBasedBreakIterator passed to be copied
  189. * @stable ICU 2.0
  190. */
  191. RuleBasedBreakIterator(const RuleBasedBreakIterator& that);
  192. /**
  193. * Construct a RuleBasedBreakIterator from a set of rules supplied as a string.
  194. * @param rules The break rules to be used.
  195. * @param parseError In the event of a syntax error in the rules, provides the location
  196. * within the rules of the problem.
  197. * @param status Information on any errors encountered.
  198. * @stable ICU 2.2
  199. */
  200. RuleBasedBreakIterator( const UnicodeString &rules,
  201. UParseError &parseError,
  202. UErrorCode &status);
  203. /**
  204. * Contruct a RuleBasedBreakIterator from a set of precompiled binary rules.
  205. * Binary rules are obtained from RulesBasedBreakIterator::getBinaryRules().
  206. * Construction of a break iterator in this way is substantially faster than
  207. * constuction from source rules.
  208. *
  209. * Ownership of the storage containing the compiled rules remains with the
  210. * caller of this function. The compiled rules must not be modified or
  211. * deleted during the life of the break iterator.
  212. *
  213. * The compiled rules are not compatible across different major versions of ICU.
  214. * The compiled rules are comaptible only between machines with the same
  215. * byte ordering (little or big endian) and the same base character set family
  216. * (ASCII or EBCDIC).
  217. *
  218. * @see #getBinaryRules
  219. * @param compiledRules A pointer to the compiled break rules to be used.
  220. * @param ruleLength The length of the compiled break rules, in bytes. This
  221. * corresponds to the length value produced by getBinaryRules().
  222. * @param status Information on any errors encountered, including invalid
  223. * binary rules.
  224. * @stable ICU 4.8
  225. */
  226. RuleBasedBreakIterator(const uint8_t *compiledRules,
  227. uint32_t ruleLength,
  228. UErrorCode &status);
  229. /**
  230. * This constructor uses the udata interface to create a BreakIterator
  231. * whose internal tables live in a memory-mapped file. "image" is an
  232. * ICU UDataMemory handle for the pre-compiled break iterator tables.
  233. * @param image handle to the memory image for the break iterator data.
  234. * Ownership of the UDataMemory handle passes to the Break Iterator,
  235. * which will be responsible for closing it when it is no longer needed.
  236. * @param status Information on any errors encountered.
  237. * @see udata_open
  238. * @see #getBinaryRules
  239. * @stable ICU 2.8
  240. */
  241. RuleBasedBreakIterator(UDataMemory* image, UErrorCode &status);
  242. /**
  243. * Destructor
  244. * @stable ICU 2.0
  245. */
  246. virtual ~RuleBasedBreakIterator();
  247. /**
  248. * Assignment operator. Sets this iterator to have the same behavior,
  249. * and iterate over the same text, as the one passed in.
  250. * @param that The RuleBasedBreakItertor passed in
  251. * @return the newly created RuleBasedBreakIterator
  252. * @stable ICU 2.0
  253. */
  254. RuleBasedBreakIterator& operator=(const RuleBasedBreakIterator& that);
  255. /**
  256. * Equality operator. Returns TRUE if both BreakIterators are of the
  257. * same class, have the same behavior, and iterate over the same text.
  258. * @param that The BreakIterator to be compared for equality
  259. * @return TRUE if both BreakIterators are of the
  260. * same class, have the same behavior, and iterate over the same text.
  261. * @stable ICU 2.0
  262. */
  263. virtual UBool operator==(const BreakIterator& that) const;
  264. /**
  265. * Not-equal operator. If operator== returns TRUE, this returns FALSE,
  266. * and vice versa.
  267. * @param that The BreakIterator to be compared for inequality
  268. * @return TRUE if both BreakIterators are not same.
  269. * @stable ICU 2.0
  270. */
  271. UBool operator!=(const BreakIterator& that) const;
  272. /**
  273. * Returns a newly-constructed RuleBasedBreakIterator with the same
  274. * behavior, and iterating over the same text, as this one.
  275. * Differs from the copy constructor in that it is polymorphic, and
  276. * will correctly clone (copy) a derived class.
  277. * clone() is thread safe. Multiple threads may simultaeneously
  278. * clone the same source break iterator.
  279. * @return a newly-constructed RuleBasedBreakIterator
  280. * @stable ICU 2.0
  281. */
  282. virtual BreakIterator* clone() const;
  283. /**
  284. * Compute a hash code for this BreakIterator
  285. * @return A hash code
  286. * @stable ICU 2.0
  287. */
  288. virtual int32_t hashCode(void) const;
  289. /**
  290. * Returns the description used to create this iterator
  291. * @return the description used to create this iterator
  292. * @stable ICU 2.0
  293. */
  294. virtual const UnicodeString& getRules(void) const;
  295. //=======================================================================
  296. // BreakIterator overrides
  297. //=======================================================================
  298. /**
  299. * <p>
  300. * Return a CharacterIterator over the text being analyzed.
  301. * The returned character iterator is owned by the break iterator, and must
  302. * not be deleted by the caller. Repeated calls to this function may
  303. * return the same CharacterIterator.
  304. * </p>
  305. * <p>
  306. * The returned character iterator must not be used concurrently with
  307. * the break iterator. If concurrent operation is needed, clone the
  308. * returned character iterator first and operate on the clone.
  309. * </p>
  310. * <p>
  311. * When the break iterator is operating on text supplied via a UText,
  312. * this function will fail. Lacking any way to signal failures, it
  313. * returns an CharacterIterator containing no text.
  314. * The function getUText() provides similar functionality,
  315. * is reliable, and is more efficient.
  316. * </p>
  317. *
  318. * TODO: deprecate this function?
  319. *
  320. * @return An iterator over the text being analyzed.
  321. * @stable ICU 2.0
  322. */
  323. virtual CharacterIterator& getText(void) const;
  324. /**
  325. * Get a UText for the text being analyzed.
  326. * The returned UText is a shallow clone of the UText used internally
  327. * by the break iterator implementation. It can safely be used to
  328. * access the text without impacting any break iterator operations,
  329. * but the underlying text itself must not be altered.
  330. *
  331. * @param fillIn A UText to be filled in. If NULL, a new UText will be
  332. * allocated to hold the result.
  333. * @param status receives any error codes.
  334. * @return The current UText for this break iterator. If an input
  335. * UText was provided, it will always be returned.
  336. * @stable ICU 3.4
  337. */
  338. virtual UText *getUText(UText *fillIn, UErrorCode &status) const;
  339. /**
  340. * Set the iterator to analyze a new piece of text. This function resets
  341. * the current iteration position to the beginning of the text.
  342. * @param newText An iterator over the text to analyze. The BreakIterator
  343. * takes ownership of the character iterator. The caller MUST NOT delete it!
  344. * @stable ICU 2.0
  345. */
  346. virtual void adoptText(CharacterIterator* newText);
  347. /**
  348. * Set the iterator to analyze a new piece of text. This function resets
  349. * the current iteration position to the beginning of the text.
  350. * @param newText The text to analyze.
  351. * @stable ICU 2.0
  352. */
  353. virtual void setText(const UnicodeString& newText);
  354. /**
  355. * Reset the break iterator to operate over the text represented by
  356. * the UText. The iterator position is reset to the start.
  357. *
  358. * This function makes a shallow clone of the supplied UText. This means
  359. * that the caller is free to immediately close or otherwise reuse the
  360. * Utext that was passed as a parameter, but that the underlying text itself
  361. * must not be altered while being referenced by the break iterator.
  362. *
  363. * @param text The UText used to change the text.
  364. * @param status Receives any error codes.
  365. * @stable ICU 3.4
  366. */
  367. virtual void setText(UText *text, UErrorCode &status);
  368. /**
  369. * Sets the current iteration position to the beginning of the text, position zero.
  370. * @return The offset of the beginning of the text, zero.
  371. * @stable ICU 2.0
  372. */
  373. virtual int32_t first(void);
  374. /**
  375. * Sets the current iteration position to the end of the text.
  376. * @return The text's past-the-end offset.
  377. * @stable ICU 2.0
  378. */
  379. virtual int32_t last(void);
  380. /**
  381. * Advances the iterator either forward or backward the specified number of steps.
  382. * Negative values move backward, and positive values move forward. This is
  383. * equivalent to repeatedly calling next() or previous().
  384. * @param n The number of steps to move. The sign indicates the direction
  385. * (negative is backwards, and positive is forwards).
  386. * @return The character offset of the boundary position n boundaries away from
  387. * the current one.
  388. * @stable ICU 2.0
  389. */
  390. virtual int32_t next(int32_t n);
  391. /**
  392. * Advances the iterator to the next boundary position.
  393. * @return The position of the first boundary after this one.
  394. * @stable ICU 2.0
  395. */
  396. virtual int32_t next(void);
  397. /**
  398. * Moves the iterator backwards, to the last boundary preceding this one.
  399. * @return The position of the last boundary position preceding this one.
  400. * @stable ICU 2.0
  401. */
  402. virtual int32_t previous(void);
  403. /**
  404. * Sets the iterator to refer to the first boundary position following
  405. * the specified position.
  406. * @param offset The position from which to begin searching for a break position.
  407. * @return The position of the first break after the current position.
  408. * @stable ICU 2.0
  409. */
  410. virtual int32_t following(int32_t offset);
  411. /**
  412. * Sets the iterator to refer to the last boundary position before the
  413. * specified position.
  414. * @param offset The position to begin searching for a break from.
  415. * @return The position of the last boundary before the starting position.
  416. * @stable ICU 2.0
  417. */
  418. virtual int32_t preceding(int32_t offset);
  419. /**
  420. * Returns true if the specfied position is a boundary position. As a side
  421. * effect, leaves the iterator pointing to the first boundary position at
  422. * or after "offset".
  423. * @param offset the offset to check.
  424. * @return True if "offset" is a boundary position.
  425. * @stable ICU 2.0
  426. */
  427. virtual UBool isBoundary(int32_t offset);
  428. /**
  429. * Returns the current iteration position.
  430. * @return The current iteration position.
  431. * @stable ICU 2.0
  432. */
  433. virtual int32_t current(void) const;
  434. /**
  435. * Return the status tag from the break rule that determined the most recently
  436. * returned break position. For break rules that do not specify a
  437. * status, a default value of 0 is returned. If more than one break rule
  438. * would cause a boundary to be located at some position in the text,
  439. * the numerically largest of the applicable status values is returned.
  440. * <p>
  441. * Of the standard types of ICU break iterators, only word break and
  442. * line break provide status values. The values are defined in
  443. * the header file ubrk.h. For Word breaks, the status allows distinguishing between words
  444. * that contain alphabetic letters, "words" that appear to be numbers,
  445. * punctuation and spaces, words containing ideographic characters, and
  446. * more. For Line Break, the status distinguishes between hard (mandatory) breaks
  447. * and soft (potential) break positions.
  448. * <p>
  449. * <code>getRuleStatus()</code> can be called after obtaining a boundary
  450. * position from <code>next()</code>, <code>previous()</code>, or
  451. * any other break iterator functions that returns a boundary position.
  452. * <p>
  453. * When creating custom break rules, one is free to define whatever
  454. * status values may be convenient for the application.
  455. * <p>
  456. * Note: this function is not thread safe. It should not have been
  457. * declared const, and the const remains only for compatibility
  458. * reasons. (The function is logically const, but not bit-wise const).
  459. * <p>
  460. * @return the status from the break rule that determined the most recently
  461. * returned break position.
  462. *
  463. * @see UWordBreak
  464. * @stable ICU 2.2
  465. */
  466. virtual int32_t getRuleStatus() const;
  467. /**
  468. * Get the status (tag) values from the break rule(s) that determined the most
  469. * recently returned break position.
  470. * <p>
  471. * The returned status value(s) are stored into an array provided by the caller.
  472. * The values are stored in sorted (ascending) order.
  473. * If the capacity of the output array is insufficient to hold the data,
  474. * the output will be truncated to the available length, and a
  475. * U_BUFFER_OVERFLOW_ERROR will be signaled.
  476. *
  477. * @param fillInVec an array to be filled in with the status values.
  478. * @param capacity the length of the supplied vector. A length of zero causes
  479. * the function to return the number of status values, in the
  480. * normal way, without attemtping to store any values.
  481. * @param status receives error codes.
  482. * @return The number of rule status values from rules that determined
  483. * the most recent boundary returned by the break iterator.
  484. * In the event of a U_BUFFER_OVERFLOW_ERROR, the return value
  485. * is the total number of status values that were available,
  486. * not the reduced number that were actually returned.
  487. * @see getRuleStatus
  488. * @stable ICU 3.0
  489. */
  490. virtual int32_t getRuleStatusVec(int32_t *fillInVec, int32_t capacity, UErrorCode &status);
  491. /**
  492. * Returns a unique class ID POLYMORPHICALLY. Pure virtual override.
  493. * This method is to implement a simple version of RTTI, since not all
  494. * C++ compilers support genuine RTTI. Polymorphic operator==() and
  495. * clone() methods call this method.
  496. *
  497. * @return The class ID for this object. All objects of a
  498. * given class have the same class ID. Objects of
  499. * other classes have different class IDs.
  500. * @stable ICU 2.0
  501. */
  502. virtual UClassID getDynamicClassID(void) const;
  503. /**
  504. * Returns the class ID for this class. This is useful only for
  505. * comparing to a return value from getDynamicClassID(). For example:
  506. *
  507. * Base* polymorphic_pointer = createPolymorphicObject();
  508. * if (polymorphic_pointer->getDynamicClassID() ==
  509. * Derived::getStaticClassID()) ...
  510. *
  511. * @return The class ID for all objects of this class.
  512. * @stable ICU 2.0
  513. */
  514. static UClassID U_EXPORT2 getStaticClassID(void);
  515. /**
  516. * Deprecated functionality. Use clone() instead.
  517. *
  518. * Create a clone (copy) of this break iterator in memory provided
  519. * by the caller. The idea is to increase performance by avoiding
  520. * a storage allocation. Use of this functoin is NOT RECOMMENDED.
  521. * Performance gains are minimal, and correct buffer management is
  522. * tricky. Use clone() instead.
  523. *
  524. * @param stackBuffer The pointer to the memory into which the cloned object
  525. * should be placed. If NULL, allocate heap memory
  526. * for the cloned object.
  527. * @param BufferSize The size of the buffer. If zero, return the required
  528. * buffer size, but do not clone the object. If the
  529. * size was too small (but not zero), allocate heap
  530. * storage for the cloned object.
  531. *
  532. * @param status Error status. U_SAFECLONE_ALLOCATED_WARNING will be
  533. * returned if the the provided buffer was too small, and
  534. * the clone was therefore put on the heap.
  535. *
  536. * @return Pointer to the clone object. This may differ from the stackBuffer
  537. * address if the byte alignment of the stack buffer was not suitable
  538. * or if the stackBuffer was too small to hold the clone.
  539. * @deprecated ICU 52. Use clone() instead.
  540. */
  541. virtual BreakIterator * createBufferClone(void *stackBuffer,
  542. int32_t &BufferSize,
  543. UErrorCode &status);
  544. /**
  545. * Return the binary form of compiled break rules,
  546. * which can then be used to create a new break iterator at some
  547. * time in the future. Creating a break iterator from pre-compiled rules
  548. * is much faster than building one from the source form of the
  549. * break rules.
  550. *
  551. * The binary data can only be used with the same version of ICU
  552. * and on the same platform type (processor endian-ness)
  553. *
  554. * @param length Returns the length of the binary data. (Out paramter.)
  555. *
  556. * @return A pointer to the binary (compiled) rule data. The storage
  557. * belongs to the RulesBasedBreakIterator object, not the
  558. * caller, and must not be modified or deleted.
  559. * @stable ICU 4.8
  560. */
  561. virtual const uint8_t *getBinaryRules(uint32_t &length);
  562. /**
  563. * Set the subject text string upon which the break iterator is operating
  564. * without changing any other aspect of the matching state.
  565. * The new and previous text strings must have the same content.
  566. *
  567. * This function is intended for use in environments where ICU is operating on
  568. * strings that may move around in memory. It provides a mechanism for notifying
  569. * ICU that the string has been relocated, and providing a new UText to access the
  570. * string in its new position.
  571. *
  572. * Note that the break iterator implementation never copies the underlying text
  573. * of a string being processed, but always operates directly on the original text
  574. * provided by the user. Refreshing simply drops the references to the old text
  575. * and replaces them with references to the new.
  576. *
  577. * Caution: this function is normally used only by very specialized,
  578. * system-level code. One example use case is with garbage collection that moves
  579. * the text in memory.
  580. *
  581. * @param input The new (moved) text string.
  582. * @param status Receives errors detected by this function.
  583. * @return *this
  584. *
  585. * @stable ICU 49
  586. */
  587. virtual RuleBasedBreakIterator &refreshInputText(UText *input, UErrorCode &status);
  588. protected:
  589. //=======================================================================
  590. // implementation
  591. //=======================================================================
  592. /**
  593. * Dumps caches and performs other actions associated with a complete change
  594. * in text or iteration position.
  595. * @internal
  596. */
  597. virtual void reset(void);
  598. #if 0
  599. /**
  600. * Return true if the category lookup for this char
  601. * indicates that it is in the set of dictionary lookup chars.
  602. * This function is intended for use by dictionary based break iterators.
  603. * @return true if the category lookup for this char
  604. * indicates that it is in the set of dictionary lookup chars.
  605. * @internal
  606. */
  607. virtual UBool isDictionaryChar(UChar32);
  608. /**
  609. * Get the type of the break iterator.
  610. * @internal
  611. */
  612. virtual int32_t getBreakType() const;
  613. #endif
  614. /**
  615. * Set the type of the break iterator.
  616. * @internal
  617. */
  618. virtual void setBreakType(int32_t type);
  619. #ifndef U_HIDE_INTERNAL_API
  620. /**
  621. * Common initialization function, used by constructors and bufferClone.
  622. * @internal
  623. */
  624. void init();
  625. #endif /* U_HIDE_INTERNAL_API */
  626. private:
  627. /**
  628. * This method backs the iterator back up to a "safe position" in the text.
  629. * This is a position that we know, without any context, must be a break position.
  630. * The various calling methods then iterate forward from this safe position to
  631. * the appropriate position to return. (For more information, see the description
  632. * of buildBackwardsStateTable() in RuleBasedBreakIterator.Builder.)
  633. * @param statetable state table used of moving backwards
  634. * @internal
  635. */
  636. int32_t handlePrevious(const RBBIStateTable *statetable);
  637. /**
  638. * This method is the actual implementation of the next() method. All iteration
  639. * vectors through here. This method initializes the state machine to state 1
  640. * and advances through the text character by character until we reach the end
  641. * of the text or the state machine transitions to state 0. We update our return
  642. * value every time the state machine passes through a possible end state.
  643. * @param statetable state table used of moving forwards
  644. * @internal
  645. */
  646. int32_t handleNext(const RBBIStateTable *statetable);
  647. protected:
  648. #ifndef U_HIDE_INTERNAL_API
  649. /**
  650. * This is the function that actually implements dictionary-based
  651. * breaking. Covering at least the range from startPos to endPos,
  652. * it checks for dictionary characters, and if it finds them determines
  653. * the appropriate object to deal with them. It may cache found breaks in
  654. * fCachedBreakPositions as it goes. It may well also look at text outside
  655. * the range startPos to endPos.
  656. * If going forward, endPos is the normal Unicode break result, and
  657. * if goind in reverse, startPos is the normal Unicode break result
  658. * @param startPos The start position of a range of text
  659. * @param endPos The end position of a range of text
  660. * @param reverse The call is for the reverse direction
  661. * @internal
  662. */
  663. int32_t checkDictionary(int32_t startPos, int32_t endPos, UBool reverse);
  664. #endif /* U_HIDE_INTERNAL_API */
  665. private:
  666. /**
  667. * This function returns the appropriate LanguageBreakEngine for a
  668. * given character c.
  669. * @param c A character in the dictionary set
  670. * @internal
  671. */
  672. const LanguageBreakEngine *getLanguageBreakEngine(UChar32 c);
  673. /**
  674. * @internal
  675. */
  676. void makeRuleStatusValid();
  677. };
  678. //------------------------------------------------------------------------------
  679. //
  680. // Inline Functions Definitions ...
  681. //
  682. //------------------------------------------------------------------------------
  683. inline UBool RuleBasedBreakIterator::operator!=(const BreakIterator& that) const {
  684. return !operator==(that);
  685. }
  686. U_NAMESPACE_END
  687. #endif /* #if !UCONFIG_NO_BREAK_ITERATION */
  688. #endif