unirepl.h 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. /*
  2. **********************************************************************
  3. * Copyright (c) 2002-2005, International Business Machines Corporation
  4. * and others. All Rights Reserved.
  5. **********************************************************************
  6. * Date Name Description
  7. * 01/14/2002 aliu Creation.
  8. **********************************************************************
  9. */
  10. #ifndef UNIREPL_H
  11. #define UNIREPL_H
  12. #include "unicode/utypes.h"
  13. /**
  14. * \file
  15. * \brief C++ API: UnicodeReplacer
  16. */
  17. U_NAMESPACE_BEGIN
  18. class Replaceable;
  19. class UnicodeString;
  20. class UnicodeSet;
  21. /**
  22. * <code>UnicodeReplacer</code> defines a protocol for objects that
  23. * replace a range of characters in a Replaceable string with output
  24. * text. The replacement is done via the Replaceable API so as to
  25. * preserve out-of-band data.
  26. *
  27. * <p>This is a mixin class.
  28. * @author Alan Liu
  29. * @stable ICU 2.4
  30. */
  31. class U_I18N_API UnicodeReplacer /* not : public UObject because this is an interface/mixin class */ {
  32. public:
  33. /**
  34. * Destructor.
  35. * @stable ICU 2.4
  36. */
  37. virtual ~UnicodeReplacer();
  38. /**
  39. * Replace characters in 'text' from 'start' to 'limit' with the
  40. * output text of this object. Update the 'cursor' parameter to
  41. * give the cursor position and return the length of the
  42. * replacement text.
  43. *
  44. * @param text the text to be matched
  45. * @param start inclusive start index of text to be replaced
  46. * @param limit exclusive end index of text to be replaced;
  47. * must be greater than or equal to start
  48. * @param cursor output parameter for the cursor position.
  49. * Not all replacer objects will update this, but in a complete
  50. * tree of replacer objects, representing the entire output side
  51. * of a transliteration rule, at least one must update it.
  52. * @return the number of 16-bit code units in the text replacing
  53. * the characters at offsets start..(limit-1) in text
  54. * @stable ICU 2.4
  55. */
  56. virtual int32_t replace(Replaceable& text,
  57. int32_t start,
  58. int32_t limit,
  59. int32_t& cursor) = 0;
  60. /**
  61. * Returns a string representation of this replacer. If the
  62. * result of calling this function is passed to the appropriate
  63. * parser, typically TransliteratorParser, it will produce another
  64. * replacer that is equal to this one.
  65. * @param result the string to receive the pattern. Previous
  66. * contents will be deleted.
  67. * @param escapeUnprintable if TRUE then convert unprintable
  68. * character to their hex escape representations, \\uxxxx or
  69. * \\Uxxxxxxxx. Unprintable characters are defined by
  70. * Utility.isUnprintable().
  71. * @return a reference to 'result'.
  72. * @stable ICU 2.4
  73. */
  74. virtual UnicodeString& toReplacerPattern(UnicodeString& result,
  75. UBool escapeUnprintable) const = 0;
  76. /**
  77. * Union the set of all characters that may output by this object
  78. * into the given set.
  79. * @param toUnionTo the set into which to union the output characters
  80. * @stable ICU 2.4
  81. */
  82. virtual void addReplacementSetTo(UnicodeSet& toUnionTo) const = 0;
  83. };
  84. U_NAMESPACE_END
  85. #endif