All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cron4s.expr.parts.scala Maven / Gradle / Ivy

There is a newer version: 0.6.1
Show newest version
/*
 * 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.expr

import cats.Show

import shapeless._

final case class DateCronExpr(
    daysOfMonth: DaysOfMonthNode,
    months: MonthsNode,
    daysOfWeek: DaysOfWeekNode
  ) {

  private[cron4s] lazy val raw: RawDateCronExpr = Generic[DateCronExpr].to(this)

  override lazy val toString: String =
    raw.map(ops.show).toList.mkString(" ")

}

object DateCronExpr {

  implicit val dateCronShow: Show[DateCronExpr] =
    Show.fromToString[DateCronExpr]

}

final case class TimeCronExpr(
    seconds: SecondsNode,
    minutes: MinutesNode,
    hours: HoursNode
  ) {

  private[cron4s] lazy val raw: RawTimeCronExpr = Generic[TimeCronExpr].to(this)

  override lazy val toString: String =
    raw.map(ops.show).toList.mkString(" ")

}

object TimeCronExpr {

  implicit val timeCronShow: Show[TimeCronExpr] =
    Show.fromToString[TimeCronExpr]

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy