codepointiterator_internal.h 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 5 |
  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. using U_ICU_NAMESPACE::BreakIterator;
  20. namespace PHP {
  21. class CodePointBreakIterator : public BreakIterator {
  22. public:
  23. static UClassID getStaticClassID();
  24. CodePointBreakIterator();
  25. CodePointBreakIterator(const CodePointBreakIterator &other);
  26. CodePointBreakIterator& operator=(const CodePointBreakIterator& that);
  27. virtual ~CodePointBreakIterator();
  28. virtual UBool operator==(const BreakIterator& that) const;
  29. virtual CodePointBreakIterator* clone(void) const;
  30. virtual UClassID getDynamicClassID(void) const;
  31. virtual CharacterIterator& getText(void) const;
  32. virtual UText *getUText(UText *fillIn, UErrorCode &status) const;
  33. virtual void setText(const UnicodeString &text);
  34. virtual void setText(UText *text, UErrorCode &status);
  35. virtual void adoptText(CharacterIterator* it);
  36. virtual int32_t first(void);
  37. virtual int32_t last(void);
  38. virtual int32_t previous(void);
  39. virtual int32_t next(void);
  40. virtual int32_t current(void) const;
  41. virtual int32_t following(int32_t offset);
  42. virtual int32_t preceding(int32_t offset);
  43. virtual UBool isBoundary(int32_t offset);
  44. virtual int32_t next(int32_t n);
  45. virtual CodePointBreakIterator *createBufferClone(void *stackBuffer,
  46. int32_t &BufferSize,
  47. UErrorCode &status);
  48. virtual CodePointBreakIterator &refreshInputText(UText *input, UErrorCode &status);
  49. inline UChar32 getLastCodePoint()
  50. {
  51. return this->lastCodePoint;
  52. }
  53. private:
  54. UText *fText;
  55. UChar32 lastCodePoint;
  56. mutable CharacterIterator *fCharIter;
  57. inline void clearCurrentCharIter()
  58. {
  59. delete this->fCharIter;
  60. this->fCharIter = NULL;
  61. this->lastCodePoint = U_SENTINEL;
  62. }
  63. };
  64. }
  65. #endif