Class RepetitionAnalysisStep
- java.lang.Object
-
- net.sf.okapi.common.pipeline.BasePipelineStep
-
- net.sf.okapi.steps.repetitionanalysis.RepetitionAnalysisStep
-
- All Implemented Interfaces:
AutoCloseable
,Function<Stream<Event>,Stream<Event>>
,IPipelineStep
public class RepetitionAnalysisStep extends BasePipelineStep
The step analyzes repetitions in input documents. Either exact or configurable fuzzy search is performed.2 types of annotations are created for found repetitive segments -- RepetitiveSegmentAnnotation and AltTranslationsAnnotation. RepetitiveSegmentAnnotation's are attached to all repetitive source segments. AltTranslationsAnnotation's are attached to target segments, corresponding to repetitive source segments. AltTranslationsAnnotation is not attached for the first repetitive segment not to be counted by counting steps twice as repetitive with itself.
-
-
Constructor Summary
Constructors Constructor Description RepetitionAnalysisStep()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
cancel()
Cancel processing on this pipeline.static boolean
checkSegments(Segment sseg, Segment tseg)
void
close()
String
getDescription()
Gets a short localizable description of what this step does.String
getName()
Gets the localizable name of this step.Parameters
getParameters()
Gets the current parameters for this step.protected Event
handleEndDocument(Event event)
Handles theEventType.END_DOCUMENT
event.protected Event
handleStartDocument(Event event)
Handles theEventType.START_DOCUMENT
event.protected Event
handleTextUnit(Event event)
Handles theEventType.TEXT_UNIT
event.void
setParameters(IParameters params)
Sets new parameters for this step.void
setSourceLocale(LocaleId sourceLocale)
Delegate to concrete classvoid
setTargetLocale(LocaleId targetLocale)
-
Methods inherited from class net.sf.okapi.common.pipeline.BasePipelineStep
destroy, getHelpLocation, getSourceLocale, getTargetLocale, handleCustom, handleDocumentPart, handleEndBatch, handleEndBatchItem, handleEndGroup, handleEndSubDocument, handleEndSubfilter, handleEvent, handleMultiEvent, handlePipelineParameters, handleRawDocument, handleStartBatch, handleStartBatchItem, handleStartGroup, handleStartSubDocument, handleStartSubfilter, isDone, isLastOutputStep, setLastOutputStep
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface net.sf.okapi.common.pipeline.IPipelineStep
apply, handleStream
-
-
-
-
Method Detail
-
getName
public String getName()
Description copied from interface:IPipelineStep
Gets the localizable name of this step.- Returns:
- the localizable name of this step.
-
getDescription
public String getDescription()
Description copied from interface:IPipelineStep
Gets a short localizable description of what this step does.- Returns:
- the text of a short description of what this step does.
-
getParameters
public Parameters getParameters()
Description copied from interface:IPipelineStep
Gets the current parameters for this step.- Specified by:
getParameters
in interfaceIPipelineStep
- Overrides:
getParameters
in classBasePipelineStep
- Returns:
- the current parameters for this step or null if there are no parameters.
-
cancel
public void cancel()
Description copied from interface:IPipelineStep
Cancel processing on this pipeline. EachIPipelineStep
is responsible to implement a cancel method that will interrupt long running operations- Specified by:
cancel
in interfaceIPipelineStep
- Overrides:
cancel
in classBasePipelineStep
-
setParameters
public void setParameters(IParameters params)
Description copied from interface:IPipelineStep
Sets new parameters for this step.- Specified by:
setParameters
in interfaceIPipelineStep
- Overrides:
setParameters
in classBasePipelineStep
- Parameters:
params
- the new parameters to use.
-
setSourceLocale
public void setSourceLocale(LocaleId sourceLocale)
Description copied from interface:IPipelineStep
Delegate to concrete class- Specified by:
setSourceLocale
in interfaceIPipelineStep
- Overrides:
setSourceLocale
in classBasePipelineStep
-
setTargetLocale
public void setTargetLocale(LocaleId targetLocale)
- Specified by:
setTargetLocale
in interfaceIPipelineStep
- Overrides:
setTargetLocale
in classBasePipelineStep
-
close
public void close()
-
handleStartDocument
protected Event handleStartDocument(Event event)
Description copied from class:BasePipelineStep
Handles theEventType.START_DOCUMENT
event.- Overrides:
handleStartDocument
in classBasePipelineStep
- Parameters:
event
- event to handle.- Returns:
- the event returned.
-
handleEndDocument
protected Event handleEndDocument(Event event)
Description copied from class:BasePipelineStep
Handles theEventType.END_DOCUMENT
event.- Overrides:
handleEndDocument
in classBasePipelineStep
- Parameters:
event
- event to handle.- Returns:
- the event returned.
-
handleTextUnit
protected Event handleTextUnit(Event event)
Description copied from class:BasePipelineStep
Handles theEventType.TEXT_UNIT
event.- Overrides:
handleTextUnit
in classBasePipelineStep
- Parameters:
event
- event to handle.- Returns:
- the event returned.
-
-