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

skunk.tables.FromTable.scala Maven / Gradle / Ivy

/*
 * Copyright 2023 Foldables
 *
 * 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 skunk.tables

import scala.compiletime.{erasedValue, summonInline, constValueTuple}

import skunk.*
import skunk.implicits.*

import skunk.tables.internal.{TwiddleTC, Pick}

/** An evidence holding info for selecting a set of columns (or labels - `RL`) from a table (`C`).
  * Holds type info, decoder and column names.
  *
  * It has single instance and gets generated automatically if all labels in `RL` have a matching
  * counterpart in table columns `C`
  */
trait FromTable[C <: NonEmptyTuple, RL <: Tuple]:

  type Out

  type Columns <: Tuple

  def decoder: Decoder[Out]

  /** Column names in proper order */
  def columns: List[String]

  def columnsFragment: Fragment[Void] =
    sql"#${columns.mkString(", ")}"

object FromTable:

  inline transparent given [C <: NonEmptyTuple, RL <: Tuple]: FromTable[C, RL] =
    new FromTable[C, RL]:
      /** A homogenous tuple of `TypedColumn` */
      type Columns =
        Pick[C, RL]

      /** A tuple derivated from `Columns` by extracting `A` type from each `TypedColumn` */
      type Out =
        TwiddleTC[Columns]

      def columns: List[String] =
        constValueTuple[RL].toList.map(_.toString)

      def decoder =
        getCodec[Columns]

  /** Summon all instances of `Codec` (via `IsColumn`) into a twiddled tuple generated from `T` */
  inline def getCodec[T <: Tuple]: Decoder[TwiddleTC[T]] =
    val codec = inline erasedValue[T] match
      case EmptyTuple =>
        Void.codec
      case _: (TypedColumn[?, h1, ?, ?] *: EmptyTuple) =>
        summonInline[IsColumn[h1]].codec
      case _: (TypedColumn[?, h1, ?, ?] *: t) =>
        summonInline[IsColumn[h1]].codec ~ getCodec[t]

    codec.asInstanceOf[Decoder[TwiddleTC[T]]]




© 2015 - 2025 Weber Informatics LLC | Privacy Policy