Package net.sf.okapi.filters.po
Class POWriter
- java.lang.Object
-
- net.sf.okapi.filters.po.POWriter
-
- All Implemented Interfaces:
AutoCloseable,IFilterWriter
public class POWriter extends Object implements IFilterWriter
Implementation ofIFilterWriterfor PO. This class is not designed to be used with the PO Filter, but as a standalone writer that can be driven by filter events.In extraction/merging mode the context line holds a trace of the current sub-document, group and text unit. okpctx: sd=ID:gp=ID:gp=ID...:tuID
-
-
Field Summary
Fields Modifier and Type Field Description static StringCRUMBS_PREFIXstatic StringGROUP_CRUMBstatic StringSUBDOCUMENT_CRUMBstatic StringTEXTUNIT_CRUMB
-
Constructor Summary
Constructors Constructor Description POWriter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcancel()Cancels the current process.voidclose()Closes the output.EncoderManagergetEncoderManager()Gets the current encoder manager for this writer.StringgetName()Gets the name of this writer.ParametersgetParameters()Gets the current parameters for this writer.ISkeletonWritergetSkeletonWriter()Gets the skeleton writer associated with this writer.EventhandleEvent(Event event)Handles the filter events.voidsetMode(boolean forExtractMerge, boolean makePOT, boolean transFuzzy)Sets the creation mode for this writer.voidsetOptions(LocaleId language, String defaultEncoding)Sets the options for this writer.voidsetOutput(OutputStream output)Sets the output through its output stream.voidsetOutput(String path)Sets the output through the path of the output file.voidsetParameters(IParameters params)Sets new parameters for this writer.
-
-
-
Field Detail
-
CRUMBS_PREFIX
public static final String CRUMBS_PREFIX
- See Also:
- Constant Field Values
-
SUBDOCUMENT_CRUMB
public static final String SUBDOCUMENT_CRUMB
- See Also:
- Constant Field Values
-
GROUP_CRUMB
public static final String GROUP_CRUMB
- See Also:
- Constant Field Values
-
TEXTUNIT_CRUMB
public static final String TEXTUNIT_CRUMB
- See Also:
- Constant Field Values
-
-
Method Detail
-
cancel
public void cancel()
Description copied from interface:IFilterWriterCancels the current process.- Specified by:
cancelin interfaceIFilterWriter
-
setMode
public void setMode(boolean forExtractMerge, boolean makePOT, boolean transFuzzy)Sets the creation mode for this writer.- Parameters:
forExtractMerge- true to create a file that can be merged back into its original format.makePOT- true to create a PO template file.transFuzzy- true to set existing translations as fuzzy (only when forExtractMerge is true)
-
close
public void close()
Description copied from interface:IFilterWriterCloses the output. Developers must make sure this method is safe to call even if there is nothing to close.- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceIFilterWriter
-
getName
public String getName()
Description copied from interface:IFilterWriterGets the name of this writer.- Specified by:
getNamein interfaceIFilterWriter- Returns:
- The name of the writer.
-
getEncoderManager
public EncoderManager getEncoderManager()
Description copied from interface:IFilterWriterGets the current encoder manager for this writer. Some special implementation of IFilterWriter may not use an encoder manager (for example writers that do not use skeleton).- Specified by:
getEncoderManagerin interfaceIFilterWriter- Returns:
- the current encoder manager for this writer, or null if none exists for this writer.
-
getSkeletonWriter
public ISkeletonWriter getSkeletonWriter()
Description copied from interface:IFilterWriterGets the skeleton writer associated with this writer. Some implementation of IFilterWriter may not use a skeleton writer.- Specified by:
getSkeletonWriterin interfaceIFilterWriter- Returns:
- the skeleton writer associated with this writer or null if none is associated.
-
getParameters
public Parameters getParameters()
Description copied from interface:IFilterWriterGets the current parameters for this writer.- Specified by:
getParametersin interfaceIFilterWriter- Returns:
- The current parameters for this writer.
-
handleEvent
public Event handleEvent(Event event)
Description copied from interface:IFilterWriterHandles the filter events.- Specified by:
handleEventin interfaceIFilterWriter- Parameters:
event- The event to process.- Returns:
- The event that was processed.
-
setOptions
public void setOptions(LocaleId language, String defaultEncoding)
Description copied from interface:IFilterWriterSets the options for this writer.- Specified by:
setOptionsin interfaceIFilterWriter- Parameters:
language- the output locale.defaultEncoding- Name of the character set encoding for the output.
-
setOutput
public void setOutput(String path)
Description copied from interface:IFilterWriterSets the output through the path of the output file.- Specified by:
setOutputin interfaceIFilterWriter- Parameters:
path- Full path of the output file.
-
setOutput
public void setOutput(OutputStream output)
Description copied from interface:IFilterWriterSets the output through its output stream.- Specified by:
setOutputin interfaceIFilterWriter- Parameters:
output- Output stream to use for the output.
-
setParameters
public void setParameters(IParameters params)
Description copied from interface:IFilterWriterSets new parameters for this writer.- Specified by:
setParametersin interfaceIFilterWriter- Parameters:
params- The new parameters to use.
-
-