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

org.chelona.NTriplesThreadWorker.scala Maven / Gradle / Ivy

/*
* Copyright (C) 2014, 2015, 2016 Juergen Pfundt
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.chelona

import org.parboiled2._

import scala.collection.mutable
import scala.util.{ Failure, Success }

final class NTriplesThreadWorker(parserQueue: mutable.Queue[_ <: NTriplesParser], filename: String, validate: Boolean, verbose: Boolean, trace: Boolean) extends Thread {

  @volatile var terminated = false

  var tripleCount = 0L

  final def poll(): Option[NTriplesParser] = parserQueue.synchronized {
    while (parserQueue.isEmpty && !terminated) parserQueue.wait()
    if (!terminated) Some(parserQueue.dequeue()) else None
  }

  import scala.annotation.tailrec

  @tailrec final override def run() = poll() match {
    case Some((parser)) ⇒
      val res = parser.ntriplesDoc.run()
      res match {
        case Success(count)         ⇒ tripleCount += count
        case Failure(e: ParseError) ⇒ if (!trace) System.err.println("File '" + filename + "': " + parser.formatError(e, new ChelonaErrorFormatter(block = tripleCount))) else System.err.println("File '" + filename + "': " + parser.formatError(e, new ChelonaErrorFormatter(block = tripleCount, showTraces = true)))
        case Failure(e)             ⇒ System.err.println("File '" + filename + "': Unexpected error during parsing run: " + e)
      }
      run()
    case None ⇒
  }

  final def shutdown() = parserQueue.synchronized {
    if (!terminated) {
      terminated = true
      parserQueue.notify()
    }
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy