使用Precog配置模式的Scala cake-pattern编译错误

dam*_*irv 4 scala compiler-errors existential-type cake-pattern

关于这个问题,我现在有以下内容:

case class Pet(val name: String)

trait ConfigComponent {
  type Config

  def config: Config
}

trait VetModule extends ConfigComponent {
  type Config <: VetModuleConfig

  def vet: Vet

  trait Vet {
    def vaccinate(pet: Pet)
  }

  trait VetModuleConfig {
    def extra: String
  }

}

trait VetModuleImpl extends VetModule {
  override def vet: Vet = VetImpl

  object VetImpl extends Vet {
    def vaccinate(pet: Pet) = println("Vaccinate:" + pet + " " + config.extra)
  }

}

trait AnotherModule extends ConfigComponent {
  type Config <: AnotherConfig

  def getLastName(): String

  trait AnotherConfig {
    val lastName: String
  }

}

trait AnotherModuleImpl extends AnotherModule {
  override def getLastName(): String = config.lastName
}

trait PetStoreModule extends ConfigComponent {
  type Config <: PetStoreConfig

  def petStore: PetStore

  trait PetStore {
    def sell(pet: Pet): Unit
  }

  trait PetStoreConfig {
    val petStoreName: String
  }

}

trait PetStoreModuleImpl extends PetStoreModule {
  self: VetModule with AnotherModule =>
  override def petStore: PetStore = PetstoreImpl

  object PetstoreImpl extends PetStore {
    def sell(pet: Pet) {
      vet.vaccinate(pet)
      println(s"Sold $pet! [Store: ${config.petStoreName}, lastName: $getLastName]")
    }
  }
}

class MyApp extends PetStoreModuleImpl with VetModuleImpl with AnotherModuleImpl {

  type Config = PetStoreConfig with AnotherConfig

  override object config extends PetStoreConfig with AnotherConfig {
    val petStoreName = "MyPetStore"
    val lastName = "MyLastName"
  }

  petStore.sell(new Pet("Fido"))
}


object Main {
  def main(args: Array[String]) {
    new MyApp
  }
}
Run Code Online (Sandbox Code Playgroud)

我得到以下编译错误:

value petStoreName is not a member of PetStoreModuleImpl.this.Config
     println(s"Sold $pet! [Store: ${config.petStoreName}, lastName: $getLastName]")
                                   ^
Run Code Online (Sandbox Code Playgroud)

这实际上是我一直在努力的错误.有人可以解释它为什么会发生吗?目前,作为一种解决方法,我只是在每个模块实现中显式地转换配置对象.

Tra*_*own 6

你写的东西应该有效,但不是,因为这个bug.

您可以使用许多变通方法.添加type Config = PetStoreConfig with AnotherConfig到您的模块实现可能比铸造更不愉快.

更新:正如som-snytt在评论和回答中指出的那样,在自我类型的结尾添加with PetStoreModuleImpl(至关重要的不是with PetStoreModule,如你所料)是一个更好的解决方案.

作为脚注:正如在SI-7255的评论中所讨论的,依赖对象类型微积分(它被设计为"Scala类型系统的新基础")将解决这个"Scala类型系统中的基本问题".