CPD Results

The following document contains the results of PMD's CPD 6.55.0.

Duplications

File Line
org/codehaus/plexus/interpolation/InterpolatorFilterReader.java 159
org/codehaus/plexus/interpolation/multi/MultiDelimiterInterpolatorFilterReader.java 171
  1. }
  2.  
  3. /**
  4. * Skips characters. This method will block until some characters are available, an I/O error occurs, or the end of
  5. * the stream is reached.
  6. *
  7. * @param n The number of characters to skip
  8. * @return the number of characters actually skipped
  9. * @exception IllegalArgumentException If <code>n</code> is negative.
  10. * @exception IOException If an I/O error occurs
  11. */
  12. public long skip(long n) throws IOException {
  13. if (n < 0L) {
  14. throw new IllegalArgumentException("skip value is negative");
  15. }
  16.  
  17. for (long i = 0; i < n; i++) {
  18. if (read() == -1) {
  19. return i;
  20. }
  21. }
  22. return n;
  23. }
  24.  
  25. /**
  26. * Reads characters into a portion of an array. This method will block until some input is available, an I/O error
  27. * occurs, or the end of the stream is reached.
  28. *
  29. * @param cbuf Destination buffer to write characters to. Must not be <code>null</code>.
  30. * @param off Offset at which to start storing characters.
  31. * @param len Maximum number of characters to read.
  32. * @return the number of characters read, or -1 if the end of the stream has been reached
  33. * @exception IOException If an I/O error occurs
  34. */
  35. public int read(char cbuf[], int off, int len) throws IOException {
  36. for (int i = 0; i < len; i++) {
  37. int ch = read();
  38. if (ch == -1) {
  39. if (i == 0) {
  40. return -1;
  41. } else {
  42. return i;
  43. }
  44. }
  45. cbuf[off + i] = (char) ch;
  46. }
  47. return len;
  48. }
  49.  
  50. /**
  51. * Returns the next character in the filtered stream, replacing tokens from the original stream.
  52. *
  53. * @return the next character in the resulting stream, or -1 if the end of the resulting stream has been reached
  54. * @exception IOException if the underlying stream throws an IOException during reading
  55. */
  56. public int read() throws IOException {
  57. if (replaceIndex != -1 && replaceIndex < replaceData.length()) {
  58. int ch = replaceData.charAt(replaceIndex++);
  59. if (replaceIndex >= replaceData.length()) {
  60. replaceIndex = -1;
  61. }
  62. return ch;
  63. }
  64.  
  65. int ch = -1;
  66. if (previousIndex != -1 && previousIndex < this.endToken.length()) {
  67. ch = this.endToken.charAt(previousIndex++);
  68. } else {
  69. ch = in.read();
  70. }
File Line
org/codehaus/plexus/interpolation/InterpolatorFilterReader.java 304
org/codehaus/plexus/interpolation/multi/MultiDelimiterInterpolatorFilterReader.java 339
  1. if (key.toString().startsWith(escapeString + orginalBeginToken)) {
  2. String keyStr = key.toString();
  3. if (!preserveEscapeString) {
  4. value = keyStr.substring(escapeString.length(), keyStr.length());
  5. } else {
  6. value = keyStr;
  7. }
  8. escapeFound = true;
  9. }
  10. }
  11. if (!escapeFound) {
  12. if (interpolateWithPrefixPattern) {
  13. value = interpolator.interpolate(key.toString(), "", recursionInterceptor);
  14. } else {
  15. value = interpolator.interpolate(key.toString(), recursionInterceptor);
  16. }
  17. }
  18. } catch (InterpolationException e) {
  19. IllegalArgumentException error = new IllegalArgumentException(e.getMessage());
  20. error.initCause(e);
  21.  
  22. throw error;
  23. }
  24.  
  25. if (value != null) {
  26. if (value.length() != 0) {
  27. replaceData = value;
  28. replaceIndex = 0;
  29. }
  30. return read();
  31. } else {
  32. previousIndex = 0;
  33. replaceData = key.substring(0, key.length() - this.endToken.length());
  34. replaceIndex = 0;
  35. return this.beginToken.charAt(0);
  36. }
  37. }
  38.  
  39. return ch;
  40. }
File Line
org/codehaus/plexus/interpolation/InterpolatorFilterReader.java 264
org/codehaus/plexus/interpolation/multi/MultiDelimiterInterpolatorFilterReader.java 299
  1. } while (ch != this.endToken.charAt(0));
  2.  
  3. // now test endToken
  4. if (ch != -1 && this.endToken.length() > 1) {
  5. int endTokenMatchPos = 1;
  6.  
  7. do {
  8. if (previousIndex != -1 && previousIndex < this.endToken.length()) {
  9. ch = this.endToken.charAt(previousIndex++);
  10. } else {
  11. ch = in.read();
  12. }
  13.  
  14. if (ch != -1) {
  15. key.append((char) ch);
  16.  
  17. if (ch != this.endToken.charAt(endTokenMatchPos++)) {
  18. ch = -1; // not really EOF but to trigger code below
  19. break;
  20. }
  21.  
  22. } else {
  23. break;
  24. }
  25. } while (endTokenMatchPos < this.endToken.length());
  26. }
  27.  
  28. // There is nothing left to read so we have the situation where the begin/end token
  29. // are in fact the same and as there is nothing left to read we have got ourselves
  30. // end of a token boundary so let it pass through.
  31. if (ch == -1) {
  32. replaceData = key.toString();
  33. replaceIndex = 1;
  34. return replaceData.charAt(0);
  35. }
  36.  
  37. String value = null;
  38. try {
  39. boolean escapeFound = false;
  40. if (useEscape) {
  41. if (key.toString().startsWith(escapeString + orginalBeginToken)) {
File Line
org/codehaus/plexus/interpolation/StringSearchInterpolator.java 124
org/codehaus/plexus/interpolation/fixed/FixedStringSearchInterpolator.java 181
  1. do {
  2. result.append(input, endIdx + 1, startIdx);
  3.  
  4. endIdx = input.indexOf(endExpr, startIdx + 1);
  5. if (endIdx < 0) {
  6. break;
  7. }
  8.  
  9. final String wholeExpr = input.substring(startIdx, endIdx + endExpr.length());
  10. String realExpr = wholeExpr.substring(startExpr.length(), wholeExpr.length() - endExpr.length());
  11.  
  12. if (startIdx >= 0 && escapeString != null && escapeString.length() > 0) {
  13. int startEscapeIdx = startIdx == 0 ? 0 : startIdx - escapeString.length();
  14. if (startEscapeIdx >= 0) {
  15. String escape = input.substring(startEscapeIdx, startIdx);
  16. if (escapeString.equals(escape)) {
  17. result.append(wholeExpr);
  18. result.replace(startEscapeIdx, startEscapeIdx + escapeString.length(), "");
  19. continue;
  20. }
  21. }
  22. }
  23.  
  24. boolean resolved = false;
  25. if (!unresolvable.contains(wholeExpr)) {
File Line
org/codehaus/plexus/interpolation/StringSearchInterpolator.java 54
org/codehaus/plexus/interpolation/multi/MultiDelimiterStringSearchInterpolator.java 78
  1. }
  2.  
  3. /**
  4. * {@inheritDoc}
  5. */
  6. public void addValueSource(ValueSource valueSource) {
  7. valueSources.add(valueSource);
  8. }
  9.  
  10. /**
  11. * {@inheritDoc}
  12. */
  13. public void removeValuesSource(ValueSource valueSource) {
  14. valueSources.remove(valueSource);
  15. }
  16.  
  17. /**
  18. * {@inheritDoc}
  19. */
  20. public void addPostProcessor(InterpolationPostProcessor postProcessor) {
  21. postProcessors.add(postProcessor);
  22. }
  23.  
  24. /**
  25. * {@inheritDoc}
  26. */
  27. public void removePostProcessor(InterpolationPostProcessor postProcessor) {
  28. postProcessors.remove(postProcessor);
  29. }
  30.  
  31. public String interpolate(String input, String thisPrefixPattern) throws InterpolationException {
  32. return interpolate(input, new SimpleRecursionInterceptor());
  33. }
  34.  
  35. public String interpolate(String input, String thisPrefixPattern, RecursionInterceptor recursionInterceptor)
  36. throws InterpolationException {
  37. return interpolate(input, recursionInterceptor);
  38. }
  39.  
  40. public String interpolate(String input) throws InterpolationException {
  41. return interpolate(input, new SimpleRecursionInterceptor());
  42. }
  43.  
  44. /**
  45. * Entry point for recursive resolution of an expression and all of its
  46. * nested expressions.
  47. *
  48. * TODO: Ensure unresolvable expressions don't trigger infinite recursion.
  49. */
  50. public String interpolate(String input, RecursionInterceptor recursionInterceptor) throws InterpolationException {
  51. try {
  52. return interpolate(input, recursionInterceptor, new HashSet<String>());
File Line
org/codehaus/plexus/interpolation/StringSearchInterpolator.java 239
org/codehaus/plexus/interpolation/multi/MultiDelimiterStringSearchInterpolator.java 291
  1. List<?> messages = new ArrayList();
  2. for (ValueSource vs : valueSources) {
  3. List feedback = vs.getFeedback();
  4. if (feedback != null && !feedback.isEmpty()) {
  5. messages.addAll(feedback);
  6. }
  7. }
  8.  
  9. return messages;
  10. }
  11.  
  12. /**
  13. * Clear the feedback messages from previous interpolate(..) calls.
  14. */
  15. public void clearFeedback() {
  16. for (ValueSource vs : valueSources) {
  17. vs.clearFeedback();
  18. }
  19. }
  20.  
  21. public boolean isCacheAnswers() {
  22. return cacheAnswers;
  23. }
  24.  
  25. public void setCacheAnswers(boolean cacheAnswers) {
  26. this.cacheAnswers = cacheAnswers;
  27. }
  28.  
  29. public void clearAnswers() {
  30. existingAnswers.clear();
  31. }
  32.  
  33. public String getEscapeString() {
  34. return escapeString;
  35. }
  36.  
  37. public void setEscapeString(String escapeString) {
  38. this.escapeString = escapeString;
  39. }