swaydb.package.scala Maven / Gradle / Ivy
The newest version!
/*
* Copyright (c) 2019 Simer Plaha (@simerplaha)
*
* This file is a part of SwayDB.
*
* SwayDB is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* SwayDB is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with SwayDB. If not, see .
*/
import java.nio.file.{Path, Paths}
import swaydb.data.config.Dir
package object swaydb {
class AndThen[A](a: A) {
def andThen[B](f: A => B) = f(a)
}
object AndThen {
def apply[A](v: A) = new AndThen(v)
}
implicit def andThen[A](a: A): AndThen[A] = AndThen(a)
implicit def stringToPath(path: String): Path =
Paths.get(path)
implicit def pathStringToDir(path: String): Dir =
Dir(Paths.get(path), 1)
implicit def pathToDir(path: Path): Dir =
Dir(path, 1)
implicit def pathsToDirs(paths: Path*): Seq[Dir] =
pathSeqToDirs(paths)
implicit def pathSeqToDirs(paths: Seq[Path]): Seq[Dir] =
paths.map(Dir(_, 1))
implicit def tupleToDir(dir: (Path, Int)): Dir =
Dir(dir._1, dir._2)
implicit def tupleToDirs(dir: (Path, Int)): Seq[Dir] =
Seq(Dir(dir._1, dir._2))
implicit def tupleStringToDirs(dir: (String, Int)): Seq[Dir] =
Seq(Dir(dir._1, dir._2))
implicit def tuplesToDirs(dir: (Path, Int)*): Seq[Dir] =
tupleSeqToDirs(dir)
implicit def dirToDirs(dir: Dir*): Seq[Dir] =
Seq(dir: _*)
implicit def tupleSeqToDirs(dir: Seq[(Path, Int)]): Seq[Dir] =
dir.map {
case (path, dist) =>
Dir(path, dist)
}
implicit def tupleStringSeqToDirs(dir: Seq[(String, Int)]): Seq[Dir] =
dir.map {
case (path, dist) =>
Dir(path, dist)
}
implicit def pathToDirs(dir: Path): Seq[Dir] =
Seq(Dir(dir, 1))
implicit class StorageIntImplicits(measure: Int) {
def bytes = measure
def byte = measure
}
implicit class StorageDoubleImplicits(measure: Double) {
def mb: Int = (measure * 1000000).toInt
def gb: Int = measure.mb * 1000
def kb: Int = measure.mb * 1000
}
}