blob: 9135af9e38e96cffd4a849b8f6ed9e23643f6ca7 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.apache.nlpcraft
import java.util.concurrent.Callable
import java.util.function.{BiPredicate, Consumer, Supplier, FunctionJFunction, PredicateJPredicate}
import org.apache.nlpcraft.common.util.NCUtils
import scala.language.implicitConversions
/**
* Package scope.
*/
package object common {
// Type aliases for `org.apache.nlpcraft`
type NCE = NCException
final val U = NCUtils
// Internal deep debug flag (more verbose tracing).
final val DEEP_DEBUG = false
// Model and token **internal** metadata keys.
final val MDL_META_ALL_ELM_IDS_KEY = "__NLPCRAFT_MDL_META_ALL_ELM_IDS"
final val MDL_META_ALL_GRP_IDS_KEY = "__NLPCRAFT_MDL_META_ALL_GRP_IDS"
final val MDL_META_ALL_ALIASES_KEY = "__NLPCRAFT_MDL_META_ALL_ALIASES"
final val TOK_META_ALIASES_KEY = "__NLPCRAFT_TOK_META_ALIASES"
/**
*
* @param f
* @tparam T
* @return
*/
implicit def toJavaConsumer[T](f: T ⇒ Unit): Consumer[T] = new Consumer[T] {
override def accept(t: T): Unit = f(t)
}
/**
*
* @param f
* @tparam A
* @return
*/
implicit def toJavaSupplier[A](f: () ⇒ A): Supplier[A] = new Supplier[A] {
override def get(): A = f()
}
/**
*
* @param f
* @tparam A
* @tparam B
* @return
*/
implicit def toJavaFunction[A, B](f: A ⇒ B): JFunction[A, B] = new JFunction[A, B] {
override def apply(a: A): B = f(a)
}
/**
*
* @param f
* @tparam A
* @return
*/
implicit def toJavaPredicate[A](f: A ⇒ Boolean): JPredicate[A] = new JPredicate[A] {
override def test(a: A): Boolean = f(a)
}
/**
*
* @param predicate
* @tparam A
* @tparam B
* @return
*/
implicit def toJavaBiPredicate[A, B](predicate: (A, B)Boolean): BiPredicate[A, B] = new BiPredicate[A, B] {
override def test(a: A, b: B): Boolean = predicate(a, b)
}
/**
* @param f Lambda to convert.
* @return Runnable object.
*/
implicit def toRunnable(f: ()Unit): Runnable =
new Runnable() {
override def run(): Unit = f()
}
/**
* @param f Lambda to convert.
* @return Callable object.
*/
implicit def toCallable[R](f: () ⇒ R): Callable[R] =
new Callable[R] {
override def call(): R = f()
}
}