Class MultiDelimiterInterpolatorFilterReaderLineEnding
- java.lang.Object
-
- java.io.Reader
-
- java.io.FilterReader
-
- org.apache.maven.shared.filtering.AbstractFilterReaderLineEnding
-
- org.apache.maven.shared.filtering.MultiDelimiterInterpolatorFilterReaderLineEnding
-
- All Implemented Interfaces:
java.io.Closeable,java.lang.AutoCloseable,java.lang.Readable
public class MultiDelimiterInterpolatorFilterReaderLineEnding extends AbstractFilterReaderLineEnding
A FilterReader implementation, that works with Interpolator interface instead of its own interpolation implementation. This implementation is heavily based on org.codehaus.plexus.util.InterpolationFilterReader.- Since:
- 1.0
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.StringbeginTokenstatic java.lang.StringDEFAULT_BEGIN_TOKENDefault begin token.static java.lang.StringDEFAULT_END_TOKENDefault end token.private java.lang.StringendTokenprivate booleaneofprivate booleaninterpolateWithPrefixPatterntrue by default to preserve backward compprivate org.codehaus.plexus.interpolation.InterpolatorinterpolatorInterpolator used to interpolateprivate static intMAXIMUM_BUFFER_SIZEprivate org.codehaus.plexus.interpolation.RecursionInterceptorrecursionInterceptorprivate java.lang.StringreplaceDatareplacement text from a tokenprivate intreplaceIndexIndex into replacement dataprivate booleansupportMultiLineFiltering-
Fields inherited from class org.apache.maven.shared.filtering.AbstractFilterReaderLineEnding
delimiters, markLength, useEscape
-
-
Constructor Summary
Constructors Constructor Description MultiDelimiterInterpolatorFilterReaderLineEnding(java.io.Reader in, org.codehaus.plexus.interpolation.Interpolator interpolator, boolean supportMultiLineFiltering)This constructor uses default begin token ${ and default end token }.MultiDelimiterInterpolatorFilterReaderLineEnding(java.io.Reader in, org.codehaus.plexus.interpolation.Interpolator interpolator, org.codehaus.plexus.interpolation.RecursionInterceptor ri, boolean supportMultiLineFiltering)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.codehaus.plexus.interpolation.RecursionInterceptorgetRecursionInterceptor()booleanisInterpolateWithPrefixPattern()intread()Returns the next character in the filtered stream, replacing tokens from the original stream.intread(char[] cbuf, int off, int len)Reads characters into a portion of an array.booleanremoveDelimiterSpec(java.lang.String delimiterSpec)AbstractFilterReaderLineEndingsetDelimiterSpecs(java.util.Set<java.lang.String> specs)voidsetInterpolateWithPrefixPattern(boolean interpolateWithPrefixPattern)AbstractFilterReaderLineEndingsetRecursionInterceptor(org.codehaus.plexus.interpolation.RecursionInterceptor givenRecursionInterceptor)longskip(long n)Skips characters.-
Methods inherited from class org.apache.maven.shared.filtering.AbstractFilterReaderLineEnding
calculateMarkLength, getEscapeString, isPreserveEscapeString, setEscapeString, setPreserveEscapeString
-
-
-
-
Field Detail
-
interpolator
private org.codehaus.plexus.interpolation.Interpolator interpolator
Interpolator used to interpolate
-
recursionInterceptor
private org.codehaus.plexus.interpolation.RecursionInterceptor recursionInterceptor
-
replaceData
private java.lang.String replaceData
replacement text from a token
-
replaceIndex
private int replaceIndex
Index into replacement data
-
DEFAULT_BEGIN_TOKEN
public static final java.lang.String DEFAULT_BEGIN_TOKEN
Default begin token.- See Also:
- Constant Field Values
-
DEFAULT_END_TOKEN
public static final java.lang.String DEFAULT_END_TOKEN
Default end token.- See Also:
- Constant Field Values
-
interpolateWithPrefixPattern
private boolean interpolateWithPrefixPattern
true by default to preserve backward comp
-
beginToken
private java.lang.String beginToken
-
endToken
private java.lang.String endToken
-
supportMultiLineFiltering
private boolean supportMultiLineFiltering
-
MAXIMUM_BUFFER_SIZE
private static final int MAXIMUM_BUFFER_SIZE
- See Also:
- Constant Field Values
-
eof
private boolean eof
-
-
Constructor Detail
-
MultiDelimiterInterpolatorFilterReaderLineEnding
public MultiDelimiterInterpolatorFilterReaderLineEnding(java.io.Reader in, org.codehaus.plexus.interpolation.Interpolator interpolator, boolean supportMultiLineFiltering)This constructor uses default begin token ${ and default end token }.- Parameters:
in- reader to useinterpolator- interpolator instance to usesupportMultiLineFiltering- If multi line filtering is allowed
-
MultiDelimiterInterpolatorFilterReaderLineEnding
public MultiDelimiterInterpolatorFilterReaderLineEnding(java.io.Reader in, org.codehaus.plexus.interpolation.Interpolator interpolator, org.codehaus.plexus.interpolation.RecursionInterceptor ri, boolean supportMultiLineFiltering)- Parameters:
in- reader to useinterpolator- interpolator instance to useri- TheRecursionInterceptorto use to prevent recursive expressions.supportMultiLineFiltering- If multi line filtering is allowed
-
-
Method Detail
-
removeDelimiterSpec
public boolean removeDelimiterSpec(java.lang.String delimiterSpec)
- Parameters:
delimiterSpec- delimiter spec.- Returns:
- true/false.
-
setDelimiterSpecs
public AbstractFilterReaderLineEnding setDelimiterSpecs(java.util.Set<java.lang.String> specs)
- Parameters:
specs- set of specs.- Returns:
MultiDelimiterInterpolatorFilterReaderLineEnding
-
skip
public long skip(long n) throws java.io.IOException, java.lang.IllegalArgumentExceptionSkips characters. This method will block until some characters are available, an I/O error occurs, or the end of the stream is reached.- Overrides:
skipin classjava.io.FilterReader- Parameters:
n- The number of characters to skip- Returns:
- the number of characters actually skipped
- Throws:
java.lang.IllegalArgumentException- Ifnis negative.java.io.IOException- If an I/O error occurs
-
read
public int read(char[] cbuf, int off, int len) throws java.io.IOExceptionReads characters into a portion of an array. This method will block until some input is available, an I/O error occurs, or the end of the stream is reached.- Overrides:
readin classjava.io.FilterReader- Parameters:
cbuf- Destination buffer to write characters to. Must not benull.off- Offset at which to start storing characters.len- Maximum number of characters to read.- Returns:
- the number of characters read, or -1 if the end of the stream has been reached
- Throws:
java.io.IOException- If an I/O error occurs
-
read
public int read() throws java.io.IOExceptionReturns the next character in the filtered stream, replacing tokens from the original stream.- Overrides:
readin classjava.io.FilterReader- Returns:
- the next character in the resulting stream, or -1 if the end of the resulting stream has been reached
- Throws:
java.io.IOException- if the underlying stream throws an IOException during reading
-
isInterpolateWithPrefixPattern
public boolean isInterpolateWithPrefixPattern()
- Returns:
- interpolate with prefix pattern
true(active)falseotherwise.
-
setInterpolateWithPrefixPattern
public void setInterpolateWithPrefixPattern(boolean interpolateWithPrefixPattern)
- Parameters:
interpolateWithPrefixPattern- set the interpolate with prefix pattern.
-
getRecursionInterceptor
public org.codehaus.plexus.interpolation.RecursionInterceptor getRecursionInterceptor()
- Returns:
RecursionInterceptor
-
setRecursionInterceptor
public AbstractFilterReaderLineEnding setRecursionInterceptor(org.codehaus.plexus.interpolation.RecursionInterceptor givenRecursionInterceptor)
- Parameters:
givenRecursionInterceptor-RecursionInterceptor- Returns:
- this
-
-