iT邦幫忙

2017 iT 邦幫忙鐵人賽
DAY 15
1
自我挑戰組

Julia語言—從入門到專案系列 第 15

[Day 15] Reactive programming--組合起來!

  • 分享至 

  • xImage
  •  

這邊我們要把前面的functional pattern跟Task組合成reactive programming。

import Base: get, map, filter, reduce

abstract Functor

function get{T <: Functor}(f::T)
end

function _map{T <: Functor}(x::T, f::Function)
    return T(f(get(x)))
end

function _filter{T <: Functor}(x::T, f::Function)
    if f(get(x))
        return x
    else
        return T(nothing)
    end
end

這邊基本上跟前面一樣,只不過我多宣告了_map_filter這兩個function。

immutable Disposible <: Functor
    value
end

function get(f::Disposible)
    return f.value
end

這邊是創建Functor的實作。

function init_task(f::Function, args::Vararg)
    x = @task f(args...)
    consume(x)
    return x
end

function map(f::Function)
    x = produce()
    while true
        y = _map(x, f)
        println(x, " -> ", y)
        x = produce(y)
    end
end

function filter(f::Function)
    x = produce()
    while true
        y = _filter(x, f)
        println(x, " -> ", y)
        x = produce(y)
    end
end

function bridge(f::Task, g::Task)
    x = produce()
    while true
        y = consume(f, x)
        z = consume(g, y)
        x = produce(z)
    end
end

這邊是前一篇的程式碼,map用到了functor的_mapfilter用到了functor的_filter
我們來測試看看!

t1 = init_task(map, x-> x+5)
t2 = init_task(map, x-> x*2)
t3 = init_task(bridge, t1, t2)
consume(t3, Disposible(5))

回傳

Disposible(5) -> Disposible(10)
Disposible(10) -> Disposible(20)

還可以

t4 = init_task(filter, x-> x>10)
t5 = init_task(bridge, t3, t4)
consume(t5, Disposible(5))

回傳

Disposible(5) -> Disposible(10)
Disposible(10) -> Disposible(20)
Disposible(20) -> Disposible(20)

這樣一來算是完成Reactive programming的部份功能了!


上一篇
[Day 14] Reactive programming--實作bridge
下一篇
[Day 16] Reactive programming--API設計
系列文
Julia語言—從入門到專案31
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言