ICU 77.1  77.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
brkiter.h
Go to the documentation of this file.
1 // © 2016 and later: Unicode, Inc. and others.
2 // License & terms of use: http://www.unicode.org/copyright.html
3 /*
4 ********************************************************************************
5 * Copyright (C) 1997-2016, International Business Machines
6 * Corporation and others. All Rights Reserved.
7 ********************************************************************************
8 *
9 * File brkiter.h
10 *
11 * Modification History:
12 *
13 * Date Name Description
14 * 02/18/97 aliu Added typedef for TextCount. Made DONE const.
15 * 05/07/97 aliu Fixed DLL declaration.
16 * 07/09/97 jfitz Renamed BreakIterator and interface synced with JDK
17 * 08/11/98 helena Sync-up JDK1.2.
18 * 01/13/2000 helena Added UErrorCode parameter to createXXXInstance methods.
19 ********************************************************************************
20 */
21 
22 #ifndef BRKITER_H
23 #define BRKITER_H
24 
25 #include "unicode/utypes.h"
26 
32 #include "unicode/utypes.h"
33 
34 #if U_SHOW_CPLUSPLUS_API
35 
36 #if UCONFIG_NO_BREAK_ITERATION
37 
38 U_NAMESPACE_BEGIN
39 
40 /*
41  * Allow the declaration of APIs with pointers to BreakIterator
42  * even when break iteration is removed from the build.
43  */
44 class BreakIterator;
45 
46 U_NAMESPACE_END
47 
48 #else
49 
50 #include "unicode/uobject.h"
51 #include "unicode/unistr.h"
52 #include "unicode/chariter.h"
53 #include "unicode/locid.h"
54 #include "unicode/ubrk.h"
55 #include "unicode/strenum.h"
56 #include "unicode/utext.h"
57 #include "unicode/umisc.h"
58 
59 U_NAMESPACE_BEGIN
60 
61 class CharString;
62 
109 public:
114  virtual ~BreakIterator();
115 
129  virtual bool operator==(const BreakIterator&) const = 0;
130 
137  bool operator!=(const BreakIterator& rhs) const { return !operator==(rhs); }
138 
144  virtual BreakIterator* clone() const = 0;
145 
151  virtual UClassID getDynamicClassID() const override = 0;
152 
157  virtual CharacterIterator& getText() const = 0;
158 
173  virtual UText *getUText(UText *fillIn, UErrorCode &status) const = 0;
174 
186  virtual void setText(const UnicodeString &text) = 0;
187 
206  virtual void setText(UText *text, UErrorCode &status) = 0;
207 
216  virtual void adoptText(CharacterIterator* it) = 0;
217 
218  enum {
224  DONE = static_cast<int32_t>(-1)
225  };
226 
232  virtual int32_t first() = 0;
233 
239  virtual int32_t last() = 0;
240 
247  virtual int32_t previous() = 0;
248 
255  virtual int32_t next() = 0;
256 
262  virtual int32_t current() const = 0;
263 
272  virtual int32_t following(int32_t offset) = 0;
273 
282  virtual int32_t preceding(int32_t offset) = 0;
283 
292  virtual UBool isBoundary(int32_t offset) = 0;
293 
303  virtual int32_t next(int32_t n) = 0;
304 
318  virtual int32_t getRuleStatus() const;
319 
348  virtual int32_t getRuleStatusVec(int32_t *fillInVec, int32_t capacity, UErrorCode &status);
349 
369  static BreakIterator* U_EXPORT2
370  createWordInstance(const Locale& where, UErrorCode& status);
371 
393  static BreakIterator* U_EXPORT2
394  createLineInstance(const Locale& where, UErrorCode& status);
395 
415  static BreakIterator* U_EXPORT2
416  createCharacterInstance(const Locale& where, UErrorCode& status);
417 
436  static BreakIterator* U_EXPORT2
437  createSentenceInstance(const Locale& where, UErrorCode& status);
438 
439 #ifndef U_HIDE_DEPRECATED_API
440 
462  static BreakIterator* U_EXPORT2
463  createTitleInstance(const Locale& where, UErrorCode& status);
464 #endif /* U_HIDE_DEPRECATED_API */
465 
475  static const Locale* U_EXPORT2 getAvailableLocales(int32_t& count);
476 
486  static UnicodeString& U_EXPORT2 getDisplayName(const Locale& objectLocale,
487  const Locale& displayLocale,
488  UnicodeString& name);
489 
498  static UnicodeString& U_EXPORT2 getDisplayName(const Locale& objectLocale,
499  UnicodeString& name);
500 
501 #ifndef U_FORCE_HIDE_DEPRECATED_API
502 
521  virtual BreakIterator * createBufferClone(void *stackBuffer,
522  int32_t &BufferSize,
523  UErrorCode &status) = 0;
524 #endif // U_FORCE_HIDE_DEPRECATED_API
525 
526 #ifndef U_HIDE_DEPRECATED_API
527 
534  inline UBool isBufferClone();
535 
536 #endif /* U_HIDE_DEPRECATED_API */
537 
538 #if !UCONFIG_NO_SERVICE
539 
554  static URegistryKey U_EXPORT2 registerInstance(BreakIterator* toAdopt,
555  const Locale& locale,
556  UBreakIteratorType kind,
557  UErrorCode& status);
558 
571  static UBool U_EXPORT2 unregister(URegistryKey key, UErrorCode& status);
572 
579  static StringEnumeration* U_EXPORT2 getAvailableLocales();
580 #endif
581 
587  Locale getLocale(ULocDataLocaleType type, UErrorCode& status) const;
588 
589 #ifndef U_HIDE_INTERNAL_API
590 
596  const char *getLocaleID(ULocDataLocaleType type, UErrorCode& status) const;
597 #endif /* U_HIDE_INTERNAL_API */
598 
624  virtual BreakIterator &refreshInputText(UText *input, UErrorCode &status) = 0;
625 
626  private:
627  static BreakIterator* buildInstance(const Locale& loc, const char *type, UErrorCode& status);
628  static BreakIterator* createInstance(const Locale& loc, int32_t kind, UErrorCode& status);
629  static BreakIterator* makeInstance(const Locale& loc, int32_t kind, UErrorCode& status);
630 
631  friend class ICUBreakIteratorFactory;
632  friend class ICUBreakIteratorService;
633 
634 protected:
635  // Do not enclose protected default/copy constructors with #ifndef U_HIDE_INTERNAL_API
636  // or else the compiler will create a public ones.
638  BreakIterator();
640  BreakIterator (const BreakIterator &other);
641 #ifndef U_HIDE_INTERNAL_API
642 
643  BreakIterator (const Locale& valid, const Locale &actual);
645  BreakIterator &operator = (const BreakIterator &other);
646 #endif /* U_HIDE_INTERNAL_API */
647 
648 private:
649 
651  CharString* actualLocale = nullptr;
652  CharString* validLocale = nullptr;
653  CharString* requestLocale = nullptr;
654 };
655 
656 #ifndef U_HIDE_DEPRECATED_API
657 
659 {
660  return false;
661 }
662 
663 #endif /* U_HIDE_DEPRECATED_API */
664 
665 U_NAMESPACE_END
666 
667 #endif /* #if !UCONFIG_NO_BREAK_ITERATION */
668 
669 #endif /* U_SHOW_CPLUSPLUS_API */
670 
671 #endif // BRKITER_H
672 //eof
virtual UClassID getDynamicClassID() const
ICU4C &quot;poor man&#39;s RTTI&quot;, returns a UClassID for the actual ICU class.
C++ API: Unicode String.
U_EXPORT UBool operator==(const StringPiece &x, const StringPiece &y)
Global operator == for StringPiece.
UBreakIteratorType
The possible types of text boundaries.
Definition: ubrk.h:102
void * UClassID
UClassID is used to identify classes without using the compiler&#39;s RTTI.
Definition: uobject.h:96
C API: Miscellaneous definitions.
Base class for &#39;pure&#39; C++ implementations of uenum api.
Definition: strenum.h:61
C API: Abstract Unicode Text API.
Abstract class that defines an API for iteration on text objects.
Definition: chariter.h:361
The BreakIterator class implements methods for finding the location of boundaries in text...
Definition: brkiter.h:108
C++ API: Common ICU base class UObject.
const void * URegistryKey
Opaque type returned by registerInstance, registerFactory and unregister for service registration...
Definition: umisc.h:57
UErrorCode
Standard ICU4C error code type, a substitute for exceptions.
Definition: utypes.h:430
UBool isBufferClone()
Determine whether the BreakIterator was created in user memory by createBufferClone(), and thus should not be deleted.
Definition: brkiter.h:658
ULocDataLocaleType
Constants for *_getLocale() Allow user to select whether she wants information on requested...
Definition: uloc.h:338
C API: BreakIterator.
C++ API: String Enumeration.
C++ API: Locale ID object.
UText struct.
Definition: utext.h:1328
Basic definitions for ICU, for both C and C++ APIs.
#define U_COMMON_API
Set to export library symbols from inside the common library, and to import them from outside...
Definition: utypes.h:315
UnicodeString is a string class that stores Unicode characters directly and provides similar function...
Definition: unistr.h:295
C++ API: Character Iterator.
UObject is the common ICU &quot;boilerplate&quot; class.
Definition: uobject.h:223
bool operator!=(const BreakIterator &rhs) const
Returns the complement of the result of operator==.
Definition: brkiter.h:137
int8_t UBool
The ICU boolean type, a signed-byte integer.
Definition: umachine.h:247
A Locale object represents a specific geographical, political, or cultural region.
Definition: locid.h:195