Upgrade to Pro — share decks privately, control downloads, hide ads and more …

一歩進んだ拡張関数の活用とその濫用で後悔した話 #m3kt

一歩進んだ拡張関数の活用とその濫用で後悔した話 #m3kt

Taro Nagasawa

August 25, 2017
Tweet

More Decks by Taro Nagasawa

Other Decks in Programming

Transcript

  1. AndroidではContextを第1引数によく取る class MyView: FrameLayout { // 各コンストラクタは省略 init { //

    LayoutInflaterオブジェクトが欲しい LayoutInflater.from(context) .inflate(R.layout.my_view, this) } }
  2. class MyView: FrameLayout { // 各コンストラクタは省略 init { // LayoutInflaterオブジェクトが欲しい

    LayoutInflater.from(context) .inflate(R.layout.my_view, this) } } AndroidではContextを第1引数によく取る getContext()でも同じ
  3. そんなときはエクステンション class MyView: FrameLayout { init { // LayoutInflaterオブジェクトが欲しい context.layoutInflater()

    .inflate(R.layout.my_view, this) } } fun Context.layoutInflater(): LayoutInflater = LayoutInflater.from(this)
  4. さらに短く class MyView: FrameLayout { init { // LayoutInflaterオブジェクトが欲しい layoutInflater()

    .inflate(R.layout.my_view, this) } } fun View.layoutInflater(): LayoutInflater = LayoutInflater.from(context)
  5. さらに短く class MyView: FrameLayout { init { // LayoutInflaterオブジェクトが欲しい layoutInflater()

    .inflate(R.layout.my_view, this) } } fun View.layoutInflater(): LayoutInflater = LayoutInflater.from(context) Viewでしか使えない
  6. 似ているエクステンションを量産? class MyAdapter: ArrayAdapter<MyItem> { override fun getView(...) { //

    LayoutInflaterオブジェクトが欲しい layoutInflater() .inflate(R.layout.item_view, null) } } fun ArrayAdapter<*>.layoutInflater(): LayoutInflater = LayoutInflater.from(context)
  7. ContextHolderと拡張関数1個で賄える class MyAdapter: ArrayAdapter<MyItem>, ContextHolder { override fun getView(...) {

    layoutInflater().inflate(...) } } class MyView: FrameLayout, ContextHolder { init { layoutInflater().inflate(...) }
  8. 大きくなりがちなActivity class MainActivity: AppCompatActivity() { var textView: TextView? = null

    override fun onCreate(bundle: Bundle?) { super.onCreate(bundle) prepare() setupViews() } private fun prepare() {...} private fun setupViews() {...} }
  9. 大きくなりがちなActivity class MainActivity: AppCompatActivity() { var textView: TextView? = null

    override fun onCreate(bundle: Bundle?) { super.onCreate(bundle) prepare() setupViews() } private fun prepare() {...} private fun setupViews() {...} } privateなヘルパーメソッド
  10. インタフェース+エクステンションで分割 class MainActivity: AppCompatActivity(), MainActivityHelper { override fun onCreate(bundle: Bundle?)

    { super.onCreate(bundle) prepare() setupViews() } interface MainActivityHelper { fun MainActivity.prepare() {...} fun MainActivity.setupViews() {...} }
  11. インタフェース+エクステンションで分割 class MainActivity: AppCompatActivity(), MainActivityHelper { override fun onCreate(bundle: Bundle?)

    { super.onCreate(bundle) prepare() setupViews() } interface MainActivityHelper { fun MainActivity.prepare() {...} fun MainActivity.setupViews() {...} } ヘルパーメソッドを 拡張関数として定義
  12. 公開されているレシーバのAPIが使える interface MainActivityHelper { fun MainAcitivty.prepare() { ... } fun

    MainActivity.setupViews() { setContentView(R.layout.activity_main) textView = findViewById(R.id.text_view) } }
  13. class MyActivity: AppCompatActivity() { ... fun showMessage() { // myDialog.show(supportFragmentManager,

    "tag") myDialog.show("tag") } } こんな関数呼び出しをしたい! これを渡すのはお決まりだから 省略したい
  14. class MyActivity: AppCompatActivity() { ... fun showMessage() { // myDialog.show(supportFragmentManager,

    "tag") myDialog.show("tag") } } こんな関数呼び出しをしたい! DialogFragmentに拡張関数showを生やせば? いや、プロパティsupportFragmentManagerが必要だ...  →FragmentManagerに依存
  15. 方法1: エクステンション in インタフェース interface DialogFeature { fun getSupportFragmentManager(): FragmentManager

    fun DialogFragment.show(tag: String) { show(getSupportFragmentManager(), tag) } } class MyActivity: AppComatActivity(), DialogFeature { ... fun showMessage() { myDialog.show("tag) }
  16. 方法1: エクステンション in インタフェース interface DialogFeature { fun getSupportFragmentManager(): FragmentManager

    fun DialogFragment.show(tag: String) { show(getSupportFragmentManager(), tag) } } class MyActivity: AppComatActivity(), DialogFeature { ... fun showMessage() { myDialog.show("tag) } インタフェースを 実装したくない!
  17. 方法2: Double Context Extension • 2つのコンテキストを持った拡張関数 • 命名 by 私

    • 見た目: 型Aの定義中で、型Aに依存しながらも型Bの拡張関 数を生やすことができる class MyActivity: AppCompatActivity() { ... fun showMessage() { myDialog.show("tag") } } この関数は、引数の他に DialogFragmentとFragmentActivity の2つに依存する
  18. どう解釈されるのか val FragmentActivity.show: DialogFragment.(String)->Unit get() = { tag -> show(supportFragmentManager,

    tag) } class MyActivity: AppCompatActivity() { ... fun showMessage() { myDialog.show("tag") } }
  19. どう解釈されるのか val FragmentActivity.show: DialogFragment.(String)->Unit get() = { tag -> show(supportFragmentManager,

    tag) } class MyActivity: AppCompatActivity() { ... fun showMessage() { myDialog.show("tag") } }
  20. どう解釈されるのか val FragmentActivity.show: DialogFragment.(String)->Unit get() = { tag -> show(supportFragmentManager,

    tag) } class MyActivity: AppCompatActivity() { ... fun showMessage() { myDialog.show("tag") } } myDialog.(this.show)("tag") と書いても同じ
  21. どう解釈されるのか val FragmentActivity.show: DialogFragment.(String)->Unit get() = { tag -> show(supportFragmentManager,

    tag) } class MyActivity: AppCompatActivity() { ... fun showMessage() { myDialog.show("tag") } }
  22. どう解釈されるのか val FragmentActivity.show: DialogFragment.(String)->Unit get() = { tag -> show(supportFragmentManager,

    tag) } class MyActivity: AppCompatActivity() { ... fun showMessage() { myDialog.show("tag") } }
  23. どう解釈されるのか val FragmentActivity.show: DialogFragment.(String)->Unit get() = { tag -> show(supportFragmentManager,

    tag) } class MyActivity: AppCompatActivity() { ... fun showMessage() { myDialog.show("tag") } }
  24. どう解釈されるのか val FragmentActivity.show: DialogFragment.(String)->Unit get() = { tag -> show(supportFragmentManager,

    tag) } class MyActivity: AppCompatActivity() { ... fun showMessage() { myDialog.show("tag") } }
  25. どう解釈されるのか val FragmentActivity.show: DialogFragment.(String)->Unit get() = { tag -> show(supportFragmentManager,

    tag) } class MyActivity: AppCompatActivity() { ... fun showMessage() { myDialog.show("tag") } } A.(B)->Cは(A, B)->Cと 見なせる性質を利用して show(myDialog, "tag") or show.invoke(myDialog, "tag")
  26. まとめ • 拡張関数って便利だよね • でも限界がある • インタフェースと組み合わせる • Double Context

    Extensionという提案 • 変なことしないで素直なコードを心がけましょう