mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-04-05 19:09:32 +00:00
commit
8de4b67b45
@ -101,8 +101,11 @@ trait DSL extends DoobieMeta {
|
|||||||
def concat(expr: SelectExpr, exprs: SelectExpr*): DBFunction =
|
def concat(expr: SelectExpr, exprs: SelectExpr*): DBFunction =
|
||||||
DBFunction.Concat(Nel.of(expr, exprs: _*))
|
DBFunction.Concat(Nel.of(expr, exprs: _*))
|
||||||
|
|
||||||
def lit[A](value: A)(implicit P: Put[A]): SelectExpr.SelectLit[A] =
|
def const[A](value: A)(implicit P: Put[A]): SelectExpr.SelectConstant[A] =
|
||||||
SelectExpr.SelectLit(value, None)
|
SelectExpr.SelectConstant(value, None)
|
||||||
|
|
||||||
|
def lit(value: String): SelectExpr.SelectLiteral =
|
||||||
|
SelectExpr.SelectLiteral(value, None)
|
||||||
|
|
||||||
def plus(left: SelectExpr, right: SelectExpr): DBFunction =
|
def plus(left: SelectExpr, right: SelectExpr): DBFunction =
|
||||||
DBFunction.Calc(DBFunction.Operator.Plus, left, right)
|
DBFunction.Calc(DBFunction.Operator.Plus, left, right)
|
||||||
@ -291,7 +294,7 @@ trait DSL extends DoobieMeta {
|
|||||||
DBFunction.Calc(
|
DBFunction.Calc(
|
||||||
DBFunction.Operator.Minus,
|
DBFunction.Operator.Minus,
|
||||||
SelectExpr.SelectFun(dbf, None),
|
SelectExpr.SelectFun(dbf, None),
|
||||||
SelectExpr.SelectLit(value, None)
|
SelectExpr.SelectConstant(value, None)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -18,9 +18,14 @@ object SelectExpr {
|
|||||||
copy(alias = Some(a))
|
copy(alias = Some(a))
|
||||||
}
|
}
|
||||||
|
|
||||||
case class SelectLit[A](value: A, alias: Option[String])(implicit val P: Put[A])
|
case class SelectConstant[A](value: A, alias: Option[String])(implicit val P: Put[A])
|
||||||
extends SelectExpr {
|
extends SelectExpr {
|
||||||
def as(a: String): SelectLit[A] =
|
def as(a: String): SelectConstant[A] =
|
||||||
|
copy(alias = Some(a))
|
||||||
|
}
|
||||||
|
|
||||||
|
case class SelectLiteral(value: String, alias: Option[String]) extends SelectExpr {
|
||||||
|
def as(a: String): SelectLiteral =
|
||||||
copy(alias = Some(a))
|
copy(alias = Some(a))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -12,9 +12,12 @@ object SelectExprBuilder extends CommonBuilder {
|
|||||||
case SelectExpr.SelectColumn(col, alias) =>
|
case SelectExpr.SelectColumn(col, alias) =>
|
||||||
column(col) ++ appendAs(alias)
|
column(col) ++ appendAs(alias)
|
||||||
|
|
||||||
case s @ SelectExpr.SelectLit(value, aliasOpt) =>
|
case s @ SelectExpr.SelectConstant(value, aliasOpt) =>
|
||||||
ConditionBuilder.buildValue(value)(s.P) ++ appendAs(aliasOpt)
|
ConditionBuilder.buildValue(value)(s.P) ++ appendAs(aliasOpt)
|
||||||
|
|
||||||
|
case SelectExpr.SelectLiteral(value, alias) =>
|
||||||
|
Fragment.const(value) ++ appendAs(alias)
|
||||||
|
|
||||||
case SelectExpr.SelectFun(fun, alias) =>
|
case SelectExpr.SelectFun(fun, alias) =>
|
||||||
DBFunctionBuilder.build(fun) ++ appendAs(alias)
|
DBFunctionBuilder.build(fun) ++ appendAs(alias)
|
||||||
|
|
||||||
|
@ -28,17 +28,17 @@ object QCollective {
|
|||||||
val created = Column[Timestamp]("created", TableDef(""))
|
val created = Column[Timestamp]("created", TableDef(""))
|
||||||
union(
|
union(
|
||||||
Select(
|
Select(
|
||||||
select(ro.name.s, lit(1).as("kind"), ro.created.as(created)),
|
select(ro.name.s, lit("1").as("kind"), ro.created.as(created)),
|
||||||
from(ro),
|
from(ro),
|
||||||
ro.cid === collective
|
ro.cid === collective
|
||||||
),
|
),
|
||||||
Select(
|
Select(
|
||||||
select(rp.name.s, lit(2).as("kind"), rp.created.as(created)),
|
select(rp.name.s, lit("2").as("kind"), rp.created.as(created)),
|
||||||
from(rp),
|
from(rp),
|
||||||
rp.cid === collective
|
rp.cid === collective
|
||||||
),
|
),
|
||||||
Select(
|
Select(
|
||||||
select(re.name.s, lit(3).as("kind"), re.created.as(created)),
|
select(re.name.s, lit("3").as("kind"), re.created.as(created)),
|
||||||
from(re),
|
from(re),
|
||||||
re.cid === collective
|
re.cid === collective
|
||||||
)
|
)
|
||||||
|
@ -138,7 +138,7 @@ object QItem {
|
|||||||
i.source.s,
|
i.source.s,
|
||||||
i.incoming.s,
|
i.incoming.s,
|
||||||
i.created.s,
|
i.created.s,
|
||||||
coalesce(Attachs.num.s, lit(0)).s,
|
coalesce(Attachs.num.s, const(0)).s,
|
||||||
org.oid.s,
|
org.oid.s,
|
||||||
org.name.s,
|
org.name.s,
|
||||||
pers0.pid.s,
|
pers0.pid.s,
|
||||||
@ -302,10 +302,10 @@ object QItem {
|
|||||||
|
|
||||||
val basicFields = Nel.of(
|
val basicFields = Nel.of(
|
||||||
count(i.id).as("fc"),
|
count(i.id).as("fc"),
|
||||||
lit(0).as("favg"),
|
const(0).as("favg"),
|
||||||
lit(0).as("fsum"),
|
const(0).as("fsum"),
|
||||||
lit(0).as("fmax"),
|
const(0).as("fmax"),
|
||||||
lit(0).as("fmin")
|
const(0).as("fmin")
|
||||||
)
|
)
|
||||||
val valueNum = cast(cv.value.s, "decimal").s
|
val valueNum = cast(cv.value.s, "decimal").s
|
||||||
val numericFields = Nel.of(
|
val numericFields = Nel.of(
|
||||||
|
@ -118,8 +118,8 @@ object QJob {
|
|||||||
|
|
||||||
private def stuckTriggerValue(t: RJob.Table, initialPause: Duration, now: Timestamp) =
|
private def stuckTriggerValue(t: RJob.Table, initialPause: Duration, now: Timestamp) =
|
||||||
plus(
|
plus(
|
||||||
coalesce(t.startedmillis.s, lit(now.toMillis)).s,
|
coalesce(t.startedmillis.s, const(now.toMillis)).s,
|
||||||
mult(power(2, t.retries.s).s, lit(initialPause.millis)).s
|
mult(power(2, t.retries.s).s, const(initialPause.millis)).s
|
||||||
)
|
)
|
||||||
|
|
||||||
def selectNextJob(
|
def selectNextJob(
|
||||||
|
@ -12,7 +12,6 @@ object Dependencies {
|
|||||||
val ClipboardJsVersion = "2.0.6"
|
val ClipboardJsVersion = "2.0.6"
|
||||||
val DoobieVersion = "0.10.0"
|
val DoobieVersion = "0.10.0"
|
||||||
val EmilVersion = "0.7.1"
|
val EmilVersion = "0.7.1"
|
||||||
val FastparseVersion = "2.1.3"
|
|
||||||
val FlexmarkVersion = "0.62.2"
|
val FlexmarkVersion = "0.62.2"
|
||||||
val FlywayVersion = "7.5.1"
|
val FlywayVersion = "7.5.1"
|
||||||
val Fs2Version = "2.5.0"
|
val Fs2Version = "2.5.0"
|
||||||
@ -113,7 +112,7 @@ object Dependencies {
|
|||||||
"com.github.eikek" %% "emil-doobie" % EmilVersion
|
"com.github.eikek" %% "emil-doobie" % EmilVersion
|
||||||
)
|
)
|
||||||
val emilTnef = Seq(
|
val emilTnef = Seq(
|
||||||
"com.github.eikek" %% "emil-tnef" % EmilVersion excludeAll(
|
("com.github.eikek" %% "emil-tnef" % EmilVersion).excludeAll(
|
||||||
ExclusionRule("org.apache.poi")
|
ExclusionRule("org.apache.poi")
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
@ -214,10 +213,6 @@ object Dependencies {
|
|||||||
"com.github.pureconfig" %% "pureconfig" % PureConfigVersion
|
"com.github.pureconfig" %% "pureconfig" % PureConfigVersion
|
||||||
)
|
)
|
||||||
|
|
||||||
val fastparse = Seq(
|
|
||||||
"com.lihaoyi" %% "fastparse" % FastparseVersion
|
|
||||||
)
|
|
||||||
|
|
||||||
// https://github.com/h2database/h2database
|
// https://github.com/h2database/h2database
|
||||||
// MPL 2.0 or EPL 1.0
|
// MPL 2.0 or EPL 1.0
|
||||||
val h2 = Seq(
|
val h2 = Seq(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user