Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Port typo module to 2.12 (Towards #52) #127

Merged
merged 1 commit into from
Jul 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,20 @@ jobs:
bleep compile jvm${{ matrix.scala-version }}
bleep test jvm${{ matrix.scala-version }}

build-scala212:
runs-on: ubuntu-latest
timeout-minutes: 20
if: "!contains(github.event.head_commit.message, 'ci skip')"
steps:
- uses: actions/checkout@v4
- uses: bleep-build/bleep-setup-action@0.0.1
- uses: coursier/cache-action@v6
with:
extraFiles: bleep.yaml

- name: Compile for 2.12
run: bleep compile typo@jvm212

build-docs:
timeout-minutes: 20
runs-on: ubuntu-latest
Expand Down
6 changes: 6 additions & 0 deletions bleep.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ projects:
isTestProject: true
# main project
typo:
cross:
jvm212:
scala:
strict: false
options: -Xsource:3 -language:higherKinds -language:implicitConversions
version: 2.12.19
dependencies:
- com.typesafe.play::play-json:2.10.6
- org.playframework.anorm::anorm:2.7.0
Expand Down
4 changes: 3 additions & 1 deletion typo/src/scala/typo/ProjectGraph.scala
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
package typo

import typo.internal.compat.*

import java.nio.file.Path
import scala.concurrent.{ExecutionContext, Future}

Expand All @@ -11,7 +13,7 @@ import scala.concurrent.{ExecutionContext, Future}
*/
final case class ProjectGraph[T, S](name: String, target: Path, testTarget: Option[Path], value: T, scripts: S, downstream: List[ProjectGraph[T, S]]) {
def toList: List[ProjectGraph[T, S]] =
(this :: downstream.flatMap(_.toList)).distinctBy(_.target)
(this :: downstream.flatMap(_.toList)).distinctByCompat(_.target)

def valueFromProject[TT, SS](f: ProjectGraph[T, S] => (TT, SS)): ProjectGraph[TT, SS] = {
val (tt, ss) = f(this)
Expand Down
3 changes: 2 additions & 1 deletion typo/src/scala/typo/internal/ComputedTestInserts.scala
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package internal

import typo.db.Type
import typo.internal.codegen.*
import typo.internal.compat.*

case class ComputedTestInserts(tpe: sc.Type.Qualified, methods: List[ComputedTestInserts.InsertMethod], maybeDomainMethods: Option[ComputedTestInserts.GenerateDomainMethods])

Expand Down Expand Up @@ -223,7 +224,7 @@ object ComputedTestInserts {
}
} yield GenerateDomainMethod(domain)

NonEmptyList.fromList(all.toList.distinctBy(_.dom.tpe).sortBy(_.dom.tpe))
NonEmptyList.fromList(all.toList.distinctByCompat(_.dom.tpe).sortBy(_.dom.tpe))
}
}
}
6 changes: 4 additions & 2 deletions typo/src/scala/typo/internal/FkAnalysis.scala
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package typo
package internal

import typo.internal.codegen.*
import typo.internal.compat.*

class FkAnalysis(table: ComputedTable, candidateFks: List[FkAnalysis.CandidateFk]) {
lazy val createWithFkIdsRow: Option[FkAnalysis.CreateWithFkIds] =
Expand Down Expand Up @@ -44,7 +45,8 @@ object FkAnalysis {
lazy val exprsForColumn: Map[sc.Ident, List[sc.Code]] =
byFks.toList
.flatMap(colsFromFk => colsFromFk.colPairs.map { case (_, col) => (col.name, colsFromFk.expr(col.name)) })
.groupMap { case (colName, _) => colName } { case (_, expr) => expr }
.groupBy { case (colName, _) => colName }
.map { case (k, tuples) => (k, tuples.map { case (_, expr) => expr }) }

/** reduce the potentially multiple values in [[exprsForColumn]] down to one expression, with `require` to assert that the others contain the same value */
lazy val exprForColumn: Map[sc.Ident, sc.Code] =
Expand Down Expand Up @@ -164,7 +166,7 @@ object FkAnalysis {
.toList
// consider longest first, plus disambiguate for consistency
.sortBy(x => (-x.colPairs.length, x.name))
.distinctBy(_.name)
.distinctByCompat(_.name)
}

case class CandidateFk(thisFk: db.ForeignKey, otherTable: ComputedTable, otherId: IdComputed.Composite)
Expand Down
4 changes: 3 additions & 1 deletion typo/src/scala/typo/internal/IdComputed.scala
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
package typo
package internal

import typo.internal.compat.*

sealed trait IdComputed {
def paramName: sc.Ident
def cols: NonEmptyList[ComputedColumn]
def tpe: sc.Type
final def param: sc.Param = sc.Param(paramName, tpe, None)

final lazy val userDefinedColTypes: List[sc.Type] =
cols.toList.collect { case x if sc.Type.containsUserDefined(x.tpe) => x }.map(_.tpe).distinctBy(sc.Type.base)
cols.toList.collect { case x if sc.Type.containsUserDefined(x.tpe) => x }.map(_.tpe).distinctByCompat(sc.Type.base)
}

object IdComputed {
Expand Down
3 changes: 2 additions & 1 deletion typo/src/scala/typo/internal/analysis/DecomposedSql.scala
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package typo.internal.analysis

import typo.internal.codegen.CodeOps
import typo.internal.compat.*
import typo.{db, sc}

case class DecomposedSql(frags: List[DecomposedSql.Fragment]) {
Expand Down Expand Up @@ -42,7 +43,7 @@ case class DecomposedSql(frags: List[DecomposedSql.Fragment]) {
paramsWithIndex.collect { case (DecomposedSql.NamedParam(parsedName), i) if parsedName.name == name => i }

paramsWithIndex
.distinctBy {
.distinctByCompat {
case (DecomposedSql.NotNamedParam, idx) => idx.toString
case (DecomposedSql.NamedParam(parsedName), _) => parsedName.name
}
Expand Down
5 changes: 3 additions & 2 deletions typo/src/scala/typo/internal/codegen/FilesRelation.scala
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package internal
package codegen

import play.api.libs.json.Json
import typo.internal.compat.*

case class FilesRelation(
naming: Naming,
Expand Down Expand Up @@ -33,7 +34,7 @@ case class FilesRelation(
| ${args.mkCode(",\n")}
|)""".stripMargin

sc.Value(Nil, extractFkId.name.prepended("extract"), Nil, Nil, extractFkId.otherCompositeIdType, body)
sc.Value(Nil, extractFkId.name.prepended("extract"), Nil, Nil, extractFkId.otherCompositeIdType, body).code
},
maybeUnsavedRow.map { case (unsaved, defaults) =>
val (partOfId, rest) = unsaved.defaultCols.toList.partition { case (col, _) => names.isIdColumn(col.dbName) }
Expand Down Expand Up @@ -182,7 +183,7 @@ case class FilesRelation(
| ${columnPairs.mkCode("\n")}""".stripMargin
(fkName, body)
}
.distinctBy(_._1)
.distinctByCompat(_._1)
.map(_._2)
case Source.SqlFile(_) => Nil
}
Expand Down
23 changes: 23 additions & 0 deletions typo/src/scala/typo/internal/compat.scala
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
package typo.internal

import scala.collection.mutable

object compat {
// compat with scala 2.12
implicit class ListOps[A](as: List[A]) {
def distinctByCompat[B, C](f: A => B): List[A] = {
if (as.lengthCompare(1) <= 0) as
else {
val builder = List.newBuilder[A]
val seen = mutable.HashSet.empty[B]
val it = as.iterator
var different = false
while (it.hasNext) {
val next = it.next()
if (seen.add(f(next))) builder += next else different = true
}
if (different) builder.result() else as
}
}
}
}
3 changes: 2 additions & 1 deletion typo/src/scala/typo/internal/findTypeFromFk.scala
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package typo
package internal

import typo.internal.rewriteDependentData.EvalMaybe
import typo.internal.compat.*

// we let types flow through constraints down to this column, the point is to reuse id types downstream
object findTypeFromFk {
Expand All @@ -25,7 +26,7 @@ object findTypeFromFk {
} yield Right(otherCol.tpe)
}

all.distinctBy { e => sc.Type.base(e.merge) } match {
all.distinctByCompat { e => sc.Type.base(e.merge) } match {
case Nil => None
case e :: Nil => Some(e.merge)
case all =>
Expand Down
5 changes: 5 additions & 0 deletions typo/src/scala/typo/internal/forget.scala
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
package typo.internal

object forget {
def apply[T](t: T): Unit = (t, ())._2
}
4 changes: 1 addition & 3 deletions typo/src/scala/typo/internal/generate.scala
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ package internal
import typo.internal.codegen.*
import typo.internal.sqlfiles.SqlFile

import scala.annotation.nowarn
import scala.collection.immutable
import scala.collection.immutable.SortedMap

Expand Down Expand Up @@ -77,8 +76,7 @@ object generate {

computedLazyRelations.foreach { case (relName, lazyValue) =>
if (selector.include(relName)) {
lazyValue.get: @nowarn
()
forget(lazyValue.get)
}
}

Expand Down
6 changes: 4 additions & 2 deletions typo/src/scala/typo/internal/quote.scala
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
package typo.internal

object quote {
def apply(str: String) = s"'$str'"
def double(str: String) = s"\"$str\""
val Quote = '\''
val DoubleQuote = '"'
def apply(str: String) = s"$Quote${str}$Quote"
def double(str: String) = s"$DoubleQuote${str}$DoubleQuote"
}
Loading