构建domain层

我们现在创建一个新的包作为domain层。这一层中会包含一些Commands的实现来为app执行任务。

首先,必须要定义一个Command

  1. public interface Command<T> {
  2. fun execute(): T
  3. }

这个command会执行一个操作并且返回某种类型的对象,这个类型可以通过范型被指定。你需要知道一个有趣的概念,一切kotlin函数都会返回一个值。如果没有指定,它就默认返回一个Unit类。所以如果我们想让Command不返回数据,我们可以指定它的类型为Unit。

Kotlin中的接口比Java(Java 8以前)中的强大多了,因为它们可以包含代码。但是我们现在不需要更多的代码,以后的章节中会仔细讲这个话题。

第一个command需要去请求天气预报结构然后转换结果为domain类。下面这些类会在domain类中被定义:

  1. data class ForecastList(val city: String, val country: String,
  2. val dailyForecast:List<Forecast>)
  3. data class Forecast(val date: String, val description: String, val high: Int,
  4. val low: Int)

当更多的功能被增加,这些类可能会需要在以后被审查。但是现在这些类对我们来说已经足够了。

这些类必须从数据映射到我们的domain类,所以我接下来需要创建一个DataMapper

  1. public class ForecastDataMapper {
  2. fun convertFromDataModel(forecast: ForecastResult): ForecastList {
  3. return ForecastList(forecast.city.name, forecast.city.country,
  4. convertForecastListToDomain(forecast.list))
  5. private fun convertForecastListToDomain(list: List<Forecast>):
  6. List<ModelForecast> {
  7. return list.map { convertForecastItemToDomain(it) }
  8. }
  9. private fun convertForecastItemToDomain(forecast: Forecast): ModelForecast {
  10. return ModelForecast(convertDate(forecast.dt),
  11. forecast.weather[0].description, forecast.temp.max.toInt(),
  12. forecast.temp.min.toInt())
  13. }
  14. private fun convertDate(date: Long): String {
  15. val df = DateFormat.getDateInstance(DateFormat.MEDIUM, Locale.getDefault())
  16. return df.format(date * 1000)
  17. }
  18. }

当我们使用了两个相同名字的类,我们可以给其中一个指定一个别名,这样我们就不需要写完整的包名了:

  1. import com.antonioleiva.weatherapp.domain.model.Forecast as ModelForecast

这些代码中另一个有趣的是我们从一个forecast list中转换为domain model的方法:

  1. return list.map { convertForecastItemToDomain(it) }

这一条语句,我们就可以循环这个集合并且返回一个转换后的新的List。Kotlin在List中提供了很多不错的函数操作符,它们可以在这个List的每个item中应用这个操作并且任何方式转换它们。对比Java 7,这是Kotlin其中一个强大的功能。我们很快就会查看所有不同的操作符。知道它们的存在是很重要的,因为它们要方便得多,并可以节省很多时间和模版。

现在,编写命令前的准备就绪:

  1. class RequestForecastCommand(val zipCode: String) :
  2. Command<ForecastList> {
  3. override fun execute(): ForecastList {
  4. val forecastRequest = ForecastRequest(zipCode)
  5. return ForecastDataMapper().convertFromDataModel(
  6. forecastRequest.execute())
  7. }
  8. }