ICU 77.1  77.1
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
search.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) 2001-2011 IBM and others. All rights reserved.
6 **********************************************************************
7 * Date Name Description
8 * 03/22/2000 helena Creation.
9 **********************************************************************
10 */
11 
12 #ifndef SEARCH_H
13 #define SEARCH_H
14 
15 #include "unicode/utypes.h"
16 
17 #if U_SHOW_CPLUSPLUS_API
18 
24 #if !UCONFIG_NO_COLLATION && !UCONFIG_NO_BREAK_ITERATION
25 
26 #include "unicode/uobject.h"
27 #include "unicode/unistr.h"
28 #include "unicode/chariter.h"
29 #include "unicode/brkiter.h"
30 #include "unicode/usearch.h"
31 
35 struct USearch;
39 typedef struct USearch USearch;
40 
41 U_NAMESPACE_BEGIN
42 
83 
84 public:
85 
86  // public constructors and destructors -------------------------------
87 
95 
100  virtual ~SearchIterator();
101 
102  // public get and set methods ----------------------------------------
103 
117  virtual void setOffset(int32_t position, UErrorCode &status) = 0;
118 
127  virtual int32_t getOffset() const = 0;
128 
139  USearchAttributeValue value,
140  UErrorCode &status);
141 
149 
166  int32_t getMatchedStart() const;
167 
182  int32_t getMatchedLength() const;
183 
198  void getMatchedText(UnicodeString &result) const;
199 
215  void setBreakIterator(BreakIterator *breakiter, UErrorCode &status);
216 
228 
239  virtual void setText(const UnicodeString &text, UErrorCode &status);
240 
256  virtual void setText(CharacterIterator &text, UErrorCode &status);
257 
263  const UnicodeString& getText() const;
264 
265  // operator overloading ----------------------------------------------
266 
275  virtual bool operator==(const SearchIterator &that) const;
276 
283  bool operator!=(const SearchIterator &that) const;
284 
285  // public methods ----------------------------------------------------
286 
294  virtual SearchIterator* safeClone() const = 0;
295 
309  int32_t first(UErrorCode &status);
310 
328  int32_t following(int32_t position, UErrorCode &status);
329 
343  int32_t last(UErrorCode &status);
344 
368  int32_t preceding(int32_t position, UErrorCode &status);
369 
384  int32_t next(UErrorCode &status);
385 
399  int32_t previous(UErrorCode &status);
400 
409  virtual void reset();
410 
411 protected:
412  // protected data members ---------------------------------------------
413 
419 
429 
435 
436  // protected constructors and destructors -----------------------------
437 
444 
461  BreakIterator *breakiter = nullptr);
462 
482  SearchIterator(CharacterIterator &text, BreakIterator *breakiter = nullptr);
483 
484  // protected methods --------------------------------------------------
485 
493 
513  virtual int32_t handleNext(int32_t position, UErrorCode &status)
514  = 0;
515 
535  virtual int32_t handlePrev(int32_t position, UErrorCode &status)
536  = 0;
537 
548  virtual void setMatchLength(int32_t length);
549 
560  virtual void setMatchStart(int32_t position);
561 
567 };
568 
569 inline bool SearchIterator::operator!=(const SearchIterator &that) const
570 {
571  return !operator==(that);
572 }
573 U_NAMESPACE_END
574 
575 #endif /* #if !UCONFIG_NO_COLLATION */
576 
577 #endif /* U_SHOW_CPLUSPLUS_API */
578 
579 #endif
580 
C++ API: Break Iterator.
C++ API: Character Iterator.
The BreakIterator class implements methods for finding the location of boundaries in text.
Definition: brkiter.h:108
Abstract class that defines an API for iteration on text objects.
Definition: chariter.h:361
SearchIterator is an abstract base class that provides methods to search for a pattern within a text ...
Definition: search.h:82
USearch * m_search_
C search data struct.
Definition: search.h:418
SearchIterator(CharacterIterator &text, BreakIterator *breakiter=nullptr)
Constructor for use by subclasses.
SearchIterator(const SearchIterator &other)
Copy constructor that creates a SearchIterator instance with the same behavior, and iterating over th...
SearchIterator & operator=(const SearchIterator &that)
Assignment operator.
int32_t getMatchedLength() const
Returns the length of text in the string which matches the search pattern.
int32_t next(UErrorCode &status)
Returns the index of the next point at which the text matches the search pattern, starting from the c...
virtual void setMatchLength(int32_t length)
Sets the length of the currently matched string in the text string to be searched.
virtual SearchIterator * safeClone() const =0
Returns a copy of SearchIterator with the same behavior, and iterating over the same text,...
int32_t first(UErrorCode &status)
Returns the first index at which the string text matches the search pattern.
void setAttribute(USearchAttribute attribute, USearchAttributeValue value, UErrorCode &status)
Sets the text searching attributes located in the enum USearchAttribute with values from the enum USe...
virtual int32_t handleNext(int32_t position, UErrorCode &status)=0
Abstract method which subclasses override to provide the mechanism for finding the next match in the ...
virtual int32_t getOffset() const =0
Return the current index in the text being searched.
int32_t previous(UErrorCode &status)
Returns the index of the previous point at which the string text matches the search pattern,...
int32_t preceding(int32_t position, UErrorCode &status)
Returns the first index less than position at which the string text matches the search pattern.
int32_t last(UErrorCode &status)
Returns the last index in the target text at which it matches the search pattern.
virtual void setText(const UnicodeString &text, UErrorCode &status)
Set the string text to be searched.
const UnicodeString & getText() const
Return the string text to be searched.
SearchIterator()
Default constructor.
UnicodeString m_text_
Unicode string version of the search text.
Definition: search.h:434
int32_t getMatchedStart() const
Returns the index to the match in the text string that was searched.
virtual void setMatchStart(int32_t position)
Sets the offset of the currently matched string in the text string to be searched.
const BreakIterator * getBreakIterator() const
Returns the BreakIterator that is used to restrict the points at which matches are detected.
void setMatchNotFound()
sets match not found
int32_t following(int32_t position, UErrorCode &status)
Returns the first index equal or greater than position at which the string text matches the search pa...
virtual void reset()
Resets the iteration.
void setBreakIterator(BreakIterator *breakiter, UErrorCode &status)
Set the BreakIterator that will be used to restrict the points at which matches are detected.
void getMatchedText(UnicodeString &result) const
Returns the text that was matched by the most recent call to first, next, previous,...
BreakIterator * m_breakiterator_
Break iterator.
Definition: search.h:428
virtual bool operator==(const SearchIterator &that) const
Equality operator.
virtual int32_t handlePrev(int32_t position, UErrorCode &status)=0
Abstract method which subclasses override to provide the mechanism for finding the previous match in ...
USearchAttributeValue getAttribute(USearchAttribute attribute) const
Gets the text searching attributes.
virtual void setOffset(int32_t position, UErrorCode &status)=0
Sets the index to point to the given position, and clears any state that's affected.
virtual void setText(CharacterIterator &text, UErrorCode &status)
Set the string text to be searched.
SearchIterator(const UnicodeString &text, BreakIterator *breakiter=nullptr)
Constructor for use by subclasses.
virtual ~SearchIterator()
Destructor.
UObject is the common ICU "boilerplate" class.
Definition: uobject.h:223
UnicodeString is a string class that stores Unicode characters directly and provides similar function...
Definition: unistr.h:296
U_EXPORT UBool operator==(const StringPiece &x, const StringPiece &y)
Global operator == for StringPiece.
bool operator!=(const StringPiece &x, const StringPiece &y)
Global operator != for StringPiece.
Definition: stringpiece.h:346
struct USearch USearch
Definition: search.h:39
C++ API: Unicode String.
C++ API: Common ICU base class UObject.
C API: StringSearch.
USearchAttribute
Definition: usearch.h:167
USearchAttributeValue
Definition: usearch.h:209
Basic definitions for ICU, for both C and C++ APIs.
UErrorCode
Standard ICU4C error code type, a substitute for exceptions.
Definition: utypes.h:430
#define U_I18N_API
Set to export library symbols from inside the i18n library, and to import them from outside.
Definition: utypes.h:316