我正在玩猫和自由Monads,我写了一个玩具REST服务代数和一个名为ensureOneProduct
的"程序"。 不幸的是,ensureOneProduct
的样板代码比我希望看到的要多。 有没有更好的方法来编写下面的ensureOneProduct
方法? 还是我只是被哈斯克尔的做符号宠坏了? 谢谢!
import cats.free.Free
import cats.free.Free.liftF
import cats.{Id, ~>}
object Algebra3 {
type Url = String
/**
* The REST Service Algebra
*/
sealed trait Service[+A]
case class Get[T](url: Url) extends Service[Option[T]]
case class Put[T](url: Url, rep: T) extends Service[T]
case class Post[T](url: Url, rep: T) extends Service[Option[Url]]
case class Delete(url: Url) extends Service[Unit]
// A Free REST Service
type ServiceF[A] = Free[Service, A]
// The Product resource
case class Product(name: String, quantity: Int)
/**
* Bad example of REST but I'm focusing on learning about Free Monads.
*/
def ensureOneProduct[T](url: Url, rep: T): ServiceF[Url] = {
for {
// Attempt to retrieve the product...
res <- get[Product](url)
_ <- if (res.isDefined)
for {
// The product existed so delete it.
_ <- delete(url)
// Now create the product
_ <- put(url, rep)
} yield ()
else {
// The product did not exist so create it.
put(url, rep)
}
} yield url
}
def get[T](url: Url): ServiceF[Option[T]] = liftF[Service, Option[T]](Get[T](url))
def put[T](url: Url, rep: T): ServiceF[T] = liftF[Service, T](Put[T](url, rep))
def post[T](url: Url, value: T): ServiceF[Option[Url]] = liftF[Service, Option[Url]](Post[T](url, value))
def delete(key: String): ServiceF[Unit] = liftF(Delete(key))
def defaultCompiler: Service ~> Id =
new (Service ~> Id) {
def apply[A](fa: Service[A]): Id[A] =
fa match {
case Get(key) =>
println(s"GET($key)")
Some(new Product("Hat", 3))
case Put(key, rep) =>
println(s"PUT($key, $rep)")
rep
case Post(url, rep) =>
println(s"POST($url)")
Some(url)
case Delete(key) =>
println(s"DELETE($key)")
()
}
}
def main(args: Array[String]) = {
val url = "https://www.example.com/api/v1/hats/1024"
val product = new Product("Hat", 1)
println(ensureOneProduct(url, product).foldMap(defaultCompiler))
}
}
此代码打印:
GET(https://www.example.com/api/v1/hats/1024)
DELETE(https://www.example.com/api/v1/hats/1024)
PUT(https://www.example.com/api/v1/hats/1024, Product(Hat,1))
https://www.example.com/api/v1/hats/1024
有趣的是,当我忘记将嵌套的delete
和put
调用括在 for 表达式中时,它编译但没有运行delete
操作。 为什么省略delete
调用是有道理的,但我更愿意得到某种编译时反馈。
您可以使用后跟 (>>
( 运算符来废弃内部以进行理解:
for {
res <- get[Product](url) // Attempt to retrieve the product...
_ <- if (res.isDefined)
delete(url) >> put(url, rep) // It exists: delete & recreate it
else
put(url, rep) // It does not exist: create it
} yield url