There are two obvious approaches here. The first uses pattern matching to decompose the data structure:
// Just use Boolean for status
type Status = Boolean
trait Statusable
class class A(isOk : Boolean) extends Statusable
class class B(a : A) extends Statusable
class class C(first : B, second : B) extends Statusable
def status(a : Statusable) : Status = a match {
case a : A => a.isOk
case B(a) => status(b.a)
case C(first, second) => status(first) && status(second)
}
status(C(B(A(true)), B(A(false))))
// returns false
status(C(B(A(true)), B(A(true))))
// returns true
Now, you might be thinking that that trait 'Stat' looks a little horrible, and you might not want to enforce that your data classes derive from a common base. In this case, type classes come to the rescue:
trait HasStatus[A] { def getStatus(a : A) : Status }
object HasStatus {
def status[A : HasStatus](a : A) = implicitly[HasStatus[A]].getStatus(a)
implicit object AHasStatus extends HasStatus[A] {
def getStatus(a : A) = a.isOk
}
implicit object BHasStatus extends HasStatus[B] {
def getStatus(b : B) = status(b.a)
}
implicit object CHasStatus extends HasStatus[C] {
def getStatus(c : C) = status(c.first) && status(c.second)
}
}
import HasStatus._
status(C(B(A(true)), B(A(false))))
//returns false