All Downloads are FREE. Search and download functionalities are using the official Maven repository.

edu.stanford.nlp.util.logging.LogRecordHandler Maven / Gradle / Ivy

Go to download

Stanford Parser processes raw text in English, Chinese, German, Arabic, and French, and extracts constituency parse trees.

There is a newer version: 3.9.2
Show newest version

package edu.stanford.nlp.util.logging;

import edu.stanford.nlp.util.logging.Redwood.Record;

import java.util.Collections;
import java.util.List;

/**
 * A log message handler. This can take the role of a filter, which blocks future handlers from
 * receiving the message, or as an entity that produces a side effect based on the message
 * (e.g. printing it to console or a file).
 *
 * All log Records pass through an ordered list of Handler objects; all operations done on a log
 * Record are done by some handler or another.
 *
 * When writing filters, you should see {@link BooleanLogRecordHandler} instead which allows for a
 * simpler interface.
 *
 * @see BooleanLogRecordHandler
 */
public abstract class LogRecordHandler {
  /**
   * An empty list to serve as the FALSE token for filters
   */
  public static final List EMPTY = Collections.emptyList();

  /**
   * Handle a log Record, either as a filter or by producing a side effect.
   * @param record The log record to handle
   * @return a (possibly empty) list of records to be sent on in the pipeline
   */
  public abstract List handle(Record record);

  /**
   * Signal the start of a track, i.e. that we have descended a level deeper.
   * @param signal A record corresponding to the information in the track header.
   *               The depth in this object is the old log depth.
   * @return A list of records to pass down the pipeline, not including the startTrack() signal.
   *         The returned records are passed to handle(), not startTrack(),
   *         and are sent before the startTrack() signal.
   */
  public List signalStartTrack(Record signal) {
    return EMPTY;
  }

  /**
   * Signal the end of a track, i.e. that we have popped up to a higher level.
   * @param newDepth The new depth; that is, the current depth - 1.
    * @return A list of records to pass down the pipeline.
   *         The returned records are passed to handle(), not endTrack().
   *         and are sent before the startTrack() signal.
   */
  public List signalEndTrack(int newDepth, long timeEnded) {
    return EMPTY;
  }

  public List signalShutdown(){
    return EMPTY;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy