mirror of
https://github.com/gitbucket/gitbucket.git
synced 2025-11-08 22:45:51 +01:00
47 lines
1.1 KiB
Scala
47 lines
1.1 KiB
Scala
package util
|
|
|
|
import org.eclipse.jgit.api.Git
|
|
import org.eclipse.jgit.revwalk.RevWalk
|
|
import org.eclipse.jgit.treewalk.TreeWalk
|
|
import scala.util.control.Exception._
|
|
import scala.language.reflectiveCalls
|
|
|
|
/**
|
|
* Provides control facilities.
|
|
*/
|
|
object ControlUtil {
|
|
|
|
def defining[A, B](value: A)(f: A => B): B = f(value)
|
|
|
|
def using[A <% { def close(): Unit }, B](resource: A)(f: A => B): B =
|
|
try f(resource) finally {
|
|
if(resource != null){
|
|
ignoring(classOf[Throwable]) {
|
|
resource.close()
|
|
}
|
|
}
|
|
}
|
|
|
|
def using[T](git: Git)(f: Git => T): T =
|
|
try f(git) finally git.getRepository.close()
|
|
|
|
def using[T](git1: Git, git2: Git)(f: (Git, Git) => T): T =
|
|
try f(git1, git2) finally {
|
|
git1.getRepository.close()
|
|
git2.getRepository.close()
|
|
}
|
|
|
|
def using[T](revWalk: RevWalk)(f: RevWalk => T): T =
|
|
try f(revWalk) finally revWalk.release()
|
|
|
|
def using[T](treeWalk: TreeWalk)(f: TreeWalk => T): T =
|
|
try f(treeWalk) finally treeWalk.release()
|
|
|
|
def ignore[T](f: => Unit): Unit = try {
|
|
f
|
|
} catch {
|
|
case e: Exception => ()
|
|
}
|
|
|
|
}
|