codepointiterator_internal.h 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 7 |
  4. +----------------------------------------------------------------------+
  5. | This source file is subject to version 3.01 of the PHP license, |
  6. | that is bundled with this package in the file LICENSE, and is |
  7. | available through the world-wide-web at the following url: |
  8. | http://www.php.net/license/3_01.txt |
  9. | If you did not receive a copy of the PHP license and are unable to |
  10. | obtain it through the world-wide-web, please send a note to |
  11. | license@php.net so we can mail you a copy immediately. |
  12. +----------------------------------------------------------------------+
  13. | Authors: Gustavo Lopes <cataphract@php.net> |
  14. +----------------------------------------------------------------------+
  15. */
  16. #ifndef CODEPOINTITERATOR_INTERNAL_H
  17. #define CODEPOINTITERATOR_INTERNAL_H
  18. #include <unicode/brkiter.h>
  19. #include <unicode/unistr.h>
  20. using icu::BreakIterator;
  21. using icu::CharacterIterator;
  22. using icu::UnicodeString;
  23. namespace PHP {
  24. class CodePointBreakIterator : public BreakIterator {
  25. public:
  26. static UClassID getStaticClassID();
  27. CodePointBreakIterator();
  28. CodePointBreakIterator(const CodePointBreakIterator &other);
  29. CodePointBreakIterator& operator=(const CodePointBreakIterator& that);
  30. virtual ~CodePointBreakIterator();
  31. virtual UBool operator==(const BreakIterator& that) const;
  32. virtual CodePointBreakIterator* clone(void) const;
  33. virtual UClassID getDynamicClassID(void) const;
  34. virtual CharacterIterator& getText(void) const;
  35. virtual UText *getUText(UText *fillIn, UErrorCode &status) const;
  36. virtual void setText(const UnicodeString &text);
  37. virtual void setText(UText *text, UErrorCode &status);
  38. virtual void adoptText(CharacterIterator* it);
  39. virtual int32_t first(void);
  40. virtual int32_t last(void);
  41. virtual int32_t previous(void);
  42. virtual int32_t next(void);
  43. virtual int32_t current(void) const;
  44. virtual int32_t following(int32_t offset);
  45. virtual int32_t preceding(int32_t offset);
  46. virtual UBool isBoundary(int32_t offset);
  47. virtual int32_t next(int32_t n);
  48. virtual CodePointBreakIterator *createBufferClone(void *stackBuffer,
  49. int32_t &BufferSize,
  50. UErrorCode &status);
  51. virtual CodePointBreakIterator &refreshInputText(UText *input, UErrorCode &status);
  52. inline UChar32 getLastCodePoint()
  53. {
  54. return this->lastCodePoint;
  55. }
  56. private:
  57. UText *fText;
  58. UChar32 lastCodePoint;
  59. mutable CharacterIterator *fCharIter;
  60. inline void clearCurrentCharIter()
  61. {
  62. delete this->fCharIter;
  63. this->fCharIter = NULL;
  64. this->lastCodePoint = U_SENTINEL;
  65. }
  66. };
  67. }
  68. #endif