用kotlin来实现dsl风格的编程

简介: 用kotlin来实现dsl风格的编程

Anko



Anko 是一个 DSL (Domain-Specific Language), 它是JetBrains出品的,用 Kotlin 开发的安卓框架。它主要的目的是用来替代以前XML的方式来使用代码生成UI布局。


先来看一个直观的例子

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_height="match_parent"
    android:layout_width="match_parent">
    <EditText
        android:id="@+id/todo_title"
        android:layout_width="match_parent"
        android:layout_heigh="wrap_content"
        android:hint="@string/title_hint" />
    <!-- Cannot directly add an inline click listener as onClick delegates implementation to the activity -->
    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="@string/add_todo" />
</LinearLayout>


使用Anko之后,可以用代码实现布局,并且button还绑定了点击事件。

verticalLayout {
    var title = editText {
        id = R.id.todo_title
        hintResource = R.string.title_hint
    }
    button {
        textResource = R.string.add_todo
        onClick { view -> {
                // do something here
                title.text = "Foo"
            }
        }
    }
}


可以看到 DSL 的一个主要优点在于,它需要很少的时间即可理解和传达某个领域的详细信息。


简单封装OkHttp



OkHttp是一个成熟且强大的网络库,在Android源码中已经使用OkHttp替代原先的HttpURLConnection。很多著名的框架例如Picasso、Retrofit也使用OkHttp作为底层框架。在这里我对OkHttp做一下简单的封装,其实封装得有点粗暴只是为了演示如何实现dsl。

import io.reactivex.BackpressureStrategy
import io.reactivex.Flowable
import io.reactivex.schedulers.Schedulers
import okhttp3.OkHttpClient
import okhttp3.Request
import okhttp3.RequestBody
import okhttp3.Response
import java.util.concurrent.TimeUnit
/**
 * Created by Tony Shen on 2017/6/1.
 */
class RequestWrapper {
    var url:String? = null
    var method:String? = null
    var body: RequestBody? = null
    var timeout:Long = 10
    internal var _success: (String) -> Unit = { }
    internal var _fail: (Throwable) -> Unit = {}
    fun onSuccess(onSuccess: (String) -> Unit) {
        _success = onSuccess
    }
    fun onFail(onError: (Throwable) -> Unit) {
        _fail = onError
    }
}
fun http(init: RequestWrapper.() -> Unit) {
    val wrap = RequestWrapper()
    wrap.init()
    executeForResult(wrap)
}
private fun executeForResult(wrap:RequestWrapper) {
    Flowable.create<Response>({
        e -> e.onNext(onExecute(wrap))
    }, BackpressureStrategy.BUFFER)
            .subscribeOn(Schedulers.io())
            .subscribe(
                    { resp ->
                        wrap._success(resp.body()!!.string())
                    },
                    { e -> wrap._fail(e) })
}
private fun onExecute(wrap:RequestWrapper): Response? {
    var req:Request? = null
    when(wrap.method) {
        "get","Get","GET" -> req =Request.Builder().url(wrap.url).build()
        "post","Post","POST" -> req = Request.Builder().url(wrap.url).post(wrap.body).build()
        "put","Put","PUT" -> req = Request.Builder().url(wrap.url).put(wrap.body).build()
        "delete","Delete","DELETE" -> req = Request.Builder().url(wrap.url).delete(wrap.body).build()
    }
    val http = OkHttpClient.Builder().connectTimeout(wrap.timeout, TimeUnit.SECONDS).build()
    val resp = http.newCall(req).execute()
    return resp
}


封装完OkHttp之后,看看如何来编写get请求

http {
            url = "http://www.163.com/"
            method = "get"
            onSuccess {
                string -> L.i(string)
            }
            onFail {
                e -> L.i(e.message)
            }
        }


是不是很像以前用jquery来写ajax?


post请求也是类似的,只不过多了body

var json = JSONObject()
        json.put("xxx","yyyy")
        ....
        val postBody = RequestBody.create(MediaType.parse("application/json; charset=utf-8"),json.toString())
        http {
            url = "https://......"
            method = "post"
            body = postBody
            onSuccess {
                string -> L.json(string)
            }
            onFail {
                e -> L.i(e.message)
            }
        }


封装自己的图像处理框架



cv4j 是我们开发的实时图像处理框架。最早使用滤镜的方式如下:

CV4JImage cv4jImage = new CV4JImage(bitmap);
        CommonFilter filter = new NatureFilter();
        Bitmap newBitMap = filter.filter(cv4jImage.getProcessor()).getImage().toBitmap();
        image.setImageBitmap(newBitMap);


后来增加了RxJava封装的版本

RxImageData.bitmap(bitmap).addFilter(new NatureFilter()).into(image);


现在Kotlin项目除了可以使用上述两种方式之外,还多了一种方式。

cv4j {
            bitmap = BitmapFactory.decodeResource(resources, R.drawable.test_io)
            filter = NatureFilter()
            imageView = image
        }


这个dsl是如何封装的呢?其实是对RxJava版本进一步封装。

/**
 * Copyright (c) 2017-present, CV4J Contributors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.cv4j.rxjava
import android.app.Dialog
import android.graphics.Bitmap
import android.widget.ImageView
import com.cv4j.core.datamodel.CV4JImage
import com.cv4j.core.filters.CommonFilter
/**
 * only for Kotlin code,this class provides the DSL style for cv4j
 */
class Wrapper {
    var bitmap:Bitmap? = null
    var cv4jImage: CV4JImage? = null
    var bytes:ByteArray? = null
    var useCache:Boolean = true
    var imageView: ImageView? = null
    var filter: CommonFilter? = null
    var dialog: Dialog? = null
}
fun cv4j(init: Wrapper.() -> Unit) {
    val wrap = Wrapper()
    wrap.init()
    render(wrap)
}
private fun render(wrap: Wrapper) {
    if (wrap.bitmap!=null) {
        if (wrap.filter!=null) {
            RxImageData.bitmap(wrap.bitmap).dialog(wrap.dialog).addFilter(wrap.filter).isUseCache(wrap.useCache).into(wrap.imageView)
        } else {
            RxImageData.bitmap(wrap.bitmap).dialog(wrap.dialog).isUseCache(wrap.useCache).into(wrap.imageView)
        }
    } else if (wrap.cv4jImage!=null) {
        if (wrap.filter!=null) {
            RxImageData.image(wrap.cv4jImage).dialog(wrap.dialog).addFilter(wrap.filter).isUseCache(wrap.useCache).into(wrap.imageView)
        } else {
            RxImageData.image(wrap.cv4jImage).dialog(wrap.dialog).isUseCache(wrap.useCache).into(wrap.imageView)
        }
    } else if (wrap.bytes!=null) {
        if (wrap.filter!=null) {
            RxImageData.bytes(wrap.bytes).dialog(wrap.dialog).addFilter(wrap.filter).isUseCache(wrap.useCache).into(wrap.imageView)
        } else {
            RxImageData.bytes(wrap.bytes).dialog(wrap.dialog).isUseCache(wrap.useCache).into(wrap.imageView)
        }
    }
}


来看一下程序的最终效果图


image.png

dsl风格使用滤镜.png


cv4j 目前已经支持了几十种滤镜,当然除了滤镜还有其他功能,感兴趣的童鞋可以看我们的源码:)。


总结



使用dsl的代码风格,可以让程序更加直观和简洁。如果使用Kotlin来开发项目的话,完全可以尝试一下。


公司的sdk项目我也考虑引入Kotlin,我已经写了一个module用于封装原先的sdk,这个module只适用于Kotlin项目。用于简化初始化sdk和实现deep link的注册服务。


image.png

初始化sdk.jpg


image.png

注册各个mLink服务.jpg


可以感受一下,使用dsl是不是比原先的代码更加简洁和直观呢?

另外,众所周知的Gradle也是基于DSL的Java构建工具。

相关文章
|
6月前
|
Java 调度 Android开发
构建高效Android应用:探究Kotlin多线程编程
【2月更文挑战第17天】 在现代移动开发领域,性能优化一直是开发者关注的焦点。特别是在Android平台上,合理利用多线程技术可以显著提升应用程序的响应性和用户体验。本文将深入探讨使用Kotlin进行Android多线程编程的策略与实践,旨在为开发者提供系统化的解决方案和性能提升技巧。我们将从基础概念入手,逐步介绍高级特性,并通过实际案例分析如何有效利用Kotlin协程、线程池以及异步任务处理机制来构建一个更加高效的Android应用。
|
6月前
|
XML 编译器 Android开发
Kotlin DSL 实战:像 Compose 一样写代码
Kotlin DSL 实战:像 Compose 一样写代码
152 0
|
Kotlin
Kotlin | 实现数据类(data)深拷贝
在Kotlin中,data数据类默认的copy方法实现的是浅拷贝,但我们有时候需要实现深拷贝。 在kotlin中,实现就比较容易了。
730 0
Kotlin | 实现数据类(data)深拷贝
|
3月前
|
Java Android开发 开发者
Kotlin 循环与函数详解:高效编程指南
高效编程实践 • 避免不必要的循环 - 尽量使用集合操作如 map、filter 来减少显式的循环。 • 使用尾递归优化 - 对于需要大量递归的情况,考虑使用尾递归以优化性能。 • 内联函数 - 对于传递 Lambda 表达式的函数,使用 inline 关键字可以减少运行时开销。 通过上述指南,您应该能够更好地理解 Kotlin 中的循环和函数,并能够编写更加高效和简洁的代码。Kotlin 的设计哲学鼓励开发者编写易于理解和维护的代码,而掌握循环和函数是实现这一目标的关键步骤。 如果您想了解更多关于 Kotlin 的循环和函数的信息,以下是一些官方文档和资源,它们可以提供额外的参考
48 1
|
3月前
|
Java Kotlin
Kotlin 循环与函数详解:高效编程指南
Kotlin中的循环结构让你能轻松遍历数组或范围内的元素。使用`for`循环结合`in`操作符,可以简洁地访问数组中的每个项,如字符串数组或整数数组。对于范围,可以用`..`来定义一系列连续的值并进行迭代。此外,Kotlin支持通过`break`和`continue`控制循环流程。函数则允许封装可复用的代码块,你可以定义接受参数并返回值的函数,利用简写语法使代码更加紧凑。例如,`myFunction(x: Int, y: Int) = x + y`简洁地定义了一个计算两数之和的函数。
48 1
|
API Kotlin
Kotlin中扩展函数、infix关键字、apply函数和DSL的详解
Kotlin中扩展函数、infix关键字、apply函数和DSL的详解
125 0
|
Java Shell API
Scala和Kotlin脚本编程
Scala和Kotlin作为运行在JVM上的编程语言,解决了Java的很多痛点。今天我们来聊聊如何将Scala和Kotlin作为脚本语言使用(Java不支持以脚本形式运行哦)。
89 0
|
安全 Java 编译器
Kotlin 进阶之路(一) 编程基础(下)
Kotlin 进阶之路(一) 编程基础(下)
108 0
|
存储 Java Kotlin
Kotlin 进阶之路(一) 编程基础(上)
Kotlin 进阶之路(一) 编程基础
135 0
|
设计模式 Kotlin
Kotlin设计模式实现之装饰者模式(Decorator)
装饰者模式(Decorator):在不改变对象自身的基础上,动态地给一个对象添加一些额外的职责。与继承相比,装饰者是一种更轻便灵活的做法。若要扩展功能,装饰者提供了比继承更有弹性的替代方法。
187 0
Kotlin设计模式实现之装饰者模式(Decorator)