|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--websphinx.HTMLTransformer
Field Summary | |
private java.lang.String |
content
|
private int |
emitEnd
|
private int |
emitStart
|
private HTMLTransformer |
head
|
private HTMLTransformer |
next
|
private boolean |
openedStream
|
private java.io.RandomAccessFile |
readwrite
|
private java.io.Writer |
stream
|
private HTMLTransformer |
tail
|
private int |
transformEnd
|
Constructor Summary | |
HTMLTransformer(HTMLTransformer next)
Make an HTMLTransformer that writes pages to a downstream HTMLTransformer. |
|
HTMLTransformer(java.io.OutputStream out)
Make an HTMLTransformer that writes pages to a stream. |
|
HTMLTransformer(java.lang.String filename)
Make an HTMLTransformer that writes pages to a file. |
|
HTMLTransformer(java.lang.String filename,
boolean seekable)
Make an HTMLTransformer that writes pages to a file. |
|
HTMLTransformer(java.io.Writer stream)
Make an HTMLTransformer that writes pages to a stream. |
Method Summary | |
void |
close()
Close the transformer. |
protected void |
emit(Region r)
Emit a region on the transformer chain's final output. |
protected void |
emit(java.lang.String string)
Emit a string on the transformer chain's final output. |
private void |
emitInternal(java.lang.String str,
int start,
int end)
|
private void |
emitPendingRegion()
|
protected void |
finalize()
Finalizes the transformer (calling close()). |
void |
flush()
Flushes transformer to its destination stream. |
long |
getFilePointer()
Get the file pointer. |
java.io.Writer |
getOutput()
|
java.io.RandomAccessFile |
getRandomAccessFile()
|
protected void |
handleElement(Element elem)
Handle the transformation of an HTML element. |
private void |
openFile(java.lang.String filename,
boolean seekable)
|
private void |
processElementsInRegion(Element elem,
int start,
int end)
|
void |
seek(long pos)
Seek to a file position. |
void |
setOutput(java.io.OutputStream out)
|
void |
setOutput(java.io.Writer out)
|
void |
setRandomAccessFile(java.io.RandomAccessFile raf)
|
protected void |
transformContents(Element elem)
Transform the contents of an element. |
protected void |
transformElement(Element elem)
Transform an element by passing it through the entire filter chain. |
void |
write(Region region)
Writes a chunk of HTML through the HTML transformer. |
void |
write(java.lang.String string)
Writes a literal string through the HTML transformer (without parsing it or transforming it). |
void |
writePage(Page page)
Writes a page through the HTML transformer. |
private void |
writeStream(java.lang.String s)
|
Methods inherited from class java.lang.Object |
|
Field Detail |
private java.io.Writer stream
private boolean openedStream
private java.io.RandomAccessFile readwrite
private HTMLTransformer next
private HTMLTransformer head
private HTMLTransformer tail
private java.lang.String content
private int emitStart
private int emitEnd
private int transformEnd
Constructor Detail |
public HTMLTransformer(java.io.OutputStream out)
out
- Stream to receive HTML outputpublic HTMLTransformer(java.lang.String filename) throws java.io.IOException
filename
- Name of file to receive HTML outputjava.io.IOException
- if file cannot be openedpublic HTMLTransformer(java.lang.String filename, boolean seekable) throws java.io.IOException
filename
- Name of file to receive HTML outputseekable
- True if file should be opened for random accesspublic HTMLTransformer(java.io.Writer stream)
stream
- Stream to receive HTML outputpublic HTMLTransformer(HTMLTransformer next)
next
- HTMLTransformer to receive HTML outputMethod Detail |
private void openFile(java.lang.String filename, boolean seekable) throws java.io.IOException
public void setOutput(java.io.OutputStream out)
public void setOutput(java.io.Writer out)
public java.io.Writer getOutput()
public void setRandomAccessFile(java.io.RandomAccessFile raf)
public java.io.RandomAccessFile getRandomAccessFile()
public void write(java.lang.String string) throws java.io.IOException
string
- String to writepublic void write(Region region) throws java.io.IOException
region
- Region to writepublic void writePage(Page page) throws java.io.IOException
page
- Page to writepublic void flush() throws java.io.IOException
public void close() throws java.io.IOException
java.io.IOException
- if an I/O error occursprotected void finalize() throws java.lang.Throwable
finalize
in class java.lang.Object
public long getFilePointer() throws java.io.IOException
java.io.IOException
- if this transformer not opened for random accesspublic void seek(long pos) throws java.io.IOException
pos
- file position to seekjava.io.IOException
- if this transformer not opened for random accessprotected void transformElement(Element elem) throws java.io.IOException
elem
- Element to be transformedprotected void transformContents(Element elem) throws java.io.IOException
elem
- Element whose contents should be transformedprotected void handleElement(Element elem) throws java.io.IOException
elem
- Element to transformprotected void emit(Region r) throws java.io.IOException
r
- Region to emitprotected void emit(java.lang.String string) throws java.io.IOException
string
- String to emitprivate void processElementsInRegion(Element elem, int start, int end) throws java.io.IOException
private void emitInternal(java.lang.String str, int start, int end) throws java.io.IOException
private void emitPendingRegion() throws java.io.IOException
private void writeStream(java.lang.String s) throws java.io.IOException
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |