Defining sum types across files

Recently, I had to write an ADT. Interestingly, the sum types had quite a bit of logic in them - implicit definitions, type specific helpers and so on. Having them all in one file was a bit much; nothing but distraction to the reader.

Here is a contrived example:

sealed trait ErrorType

object ErrorType {
  final case object None extends ErrorType
	final case class BadRequest(field: String) extends ErrorType
	final case class NotFound(id: Long, msg: String) extends ErrorType
	. . .
	final case class Unknown(msg: String) extends ErrorType

	object BadRequest {
		// implicit definitions
		// BadRequest specific helpers
	}

	object NotFound {
		// implicit definitions
		// NotFound specific helpers
	}

	object Unknown {
		// implicit definitions
		// Unknown specific helpers
	}

	. . .
}

As I mentioned, each of the sum types needed a companion object with implicits and helpers. I wouldn’t mind having it all in ErrorType.scala if the it were only a couple of sum types.

In my case, even though the number of sum types was finite but definitely more than a handful. So, having all the companions with their big fat body in the same file was definitely not something I wanted to do. Also, I did not want to lose the power and guarantee of an ADT (sealed trait).

Note that you could have the companion object declarations in different files outside the file that defines the sealed trait. If you do, those definitions are not going to be considered as companion objetcts, which means that the compiler will not automatically use those definitions during an implicit lookup.

Fortunaely, there is a workaround, one that I learnt from BalsungSan in the Scala Discord Channel.

// ErrorType.scala

package domain.errors

object trait ErrorType {
	final case class BadRequest(field: String) extends ErrorType
	final case class NotFound(id: Long, msg: String) extends ErrorType
  . . .
	final case class Unknown(msg: String) extends ErrorType

	object BadRequest extends BadRequestCompanion
	object NotFound extends NotFoundCompanion
	. . .
	object Unknown extends UnknownCompanion
}
// BadRequest.scala
package domain.errors

private[errors] trait BadRequestCompanion { self: BadRequest.type =>
	 // implicit and helpers, a bunch
}
// NotFound.scala
package domain.errors

private[errors] trait NotFoundCompanion { self: NotFound.type =>
	// implicit and helpers, a bunch
}

// . . . and so on in other files, you get the idea

So, you see what is going on. It is a workaround but clever. It works well and covers all bases.

Yes, I called it a workaround. Because the inability to define sum types across files is not exclusive to the problem at hand. I am not a compiler writer / expert but here is an imaginary version if / when Scala decides to support it firsthand.

// ErrorType.scala
package domain.errors

object trait ErrorType {
	final case class BadRequest(field: String) extends ErrorType
	final case class NotFound(id: Long, msg: String) extends ErrorType
  . . .
	final case class Unknown(msg: String) extends ErrorType

	partial object BadRequest
	partial object NotFound
	. . .
	partial object Unknown
}

// BadRequest.scala
package domain.errors

partial object BadRequest {
	// implicit and helpers, a bunch
}

// NotFound.scala
partial object NotFound {
	// implicit and helpers, a bunch
}

// . . . and so on for other companions

Taking the C#’s partial keyword as inspiration, we are instructing the compiler that the definition / body of the type may be defined in constituents across files. This also gets rid of the noise / ceremony - private[errors], self type etc.

Note, for our problem at hand, the partial keyword is applied only to the companion, not to the definition of the sum type (case class). I am not sure if marking the partial case class would work because it would break the guarantee or contradict with the sealed trait tenet. Some food for thought if Scala compiler team were to ever consider this.

In general, if the Scala compiler were to provide the partial keyword, it could be applied to any type that will be defined across compilation units. This includes regular classes and other types alike. C# uses partial classes and methods for duming IDE generated code for user interfaces in XAML/WPF, which works really well.

While partial in Scala is a speck in the wishlist for the foreseeable future, the above workaround (companion helper trait) is no less. You could say our needs are partially served.