cron4s.syntax.cron.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cron4s-core_sjs0.6_2.12 Show documentation
Show all versions of cron4s-core_sjs0.6_2.12 Show documentation
CRON expression parser for Scala
/*
* Copyright 2017 Antonio Alonso Dominguez
*
* 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 cron4s.syntax
import cron4s.CronField
import cron4s.datetime.{DateTimeCron, IsDateTime}
import cron4s.expr.FieldSelector
/**
* Created by alonsodomin on 25/01/2017.
*/
private[syntax] class DateTimeCronOps[E](self: E, tc: DateTimeCron[E]) {
def allOf[DateTime](dt: DateTime)
(implicit DT: IsDateTime[DateTime]): Boolean =
tc.allOf(self, DT)(dt)
def anyOf[DateTime](dt: DateTime)
(implicit DT: IsDateTime[DateTime]): Boolean =
tc.anyOf(self, DT)(dt)
def next[DateTime](from: DateTime)
(implicit DT: IsDateTime[DateTime]): Option[DateTime] =
step(from, 1)
def prev[DateTime](from: DateTime)
(implicit DT: IsDateTime[DateTime]): Option[DateTime] =
step(from, -1)
def step[DateTime](from: DateTime, stepSize: Int)
(implicit DT: IsDateTime[DateTime]): Option[DateTime] =
tc.step(self, DT)(from, stepSize)
def ranges: Map[CronField, IndexedSeq[Int]] =
tc.ranges(self)
def supportedFields: List[CronField] =
tc.supportedFields
def field[F <: CronField](implicit selector: FieldSelector[E, F]): selector.Out[F] =
tc.field[F](self)
}
private[syntax] trait DateTimeCronSyntax extends DateTimeCronFunctions {
implicit def toDateTimeCronOps[E, DateTime]
(target: E)
(implicit tc0: DateTimeCron[E]): DateTimeCronOps[E] =
new DateTimeCronOps[E](target, tc0)
}
private[syntax] trait DateTimeCronFunctions {
def supportedFields[E](implicit E: DateTimeCron[E]): List[CronField] =
E.supportedFields
}
object cron extends DateTimeCronSyntax