
org.dbpedia.extraction.destinations.LoggerDestination.scala Maven / Gradle / Ivy
The newest version!
package org.dbpedia.extraction.destinations
import org.slf4j.LoggerFactory
import scala.collection.Seq
/**
* Just logs the extraction output to the screen
*/
class LoggerDestination(pageID: Long, pageTitle: String) extends LiveDestination {
private val logger = LoggerFactory.getLogger(classOf[LoggerDestination].getName)
private var addedTriples = 0
private var deletedTriples = 0
private var unmodifiedTriples = 0
private var extractors = 0;
private var now = System.currentTimeMillis
/**
* Opens this destination. This method should only be called once during the lifetime
* of a destination, and it should not be called concurrently with other methods of this class.
*/
def open() {}
override def write(extractor: String, hash: String, graphAdd: Seq[Quad], graphRemove: Seq[Quad], graphUnmodified: Seq[Quad]) {
extractors += 1
addedTriples += graphAdd.length
deletedTriples += graphRemove.length
unmodifiedTriples += graphUnmodified.length
}
override def close = {
val total = addedTriples + unmodifiedTriples
logger.info("Page with ID:" + pageID + " produced " + total +
" Triples (A:" + addedTriples + "/D:" + deletedTriples + "/U:" + unmodifiedTriples +
") in " + (System.currentTimeMillis - now) + "ms. (Title: " + pageTitle + ")")
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy