Реализация конечного кодирования без тегов в F # с SRTP - PullRequest
1 голос
/ 03 апреля 2019

Я хотел бы преобразовать мою версию F # OOP Tagless Final в типичный подход FP, и я думаю использовать Статически разрешенные параметры типа из Классы типовот ОО .

То, что я сделал, это

open System
open FSharpPlus

type UserName = string
type DataResult<'t> = DataResult of 't with
    static member Map ( x:DataResult<'t>  , f) =
        match x with 
        | DataResult t -> DataResult (f t)

создание SRTP, которое мне нужно

type Cache = 
    static member inline getOfCache cacheImpl data =
        ( ^T : (member getFromCache : 't -> DataResult<'t> option) (cacheImpl, data))
    static member inline storeOfCache cacheImpl data =
        ( ^T : (member storeToCache : 't -> unit) (cacheImpl, data))

type DataSource() =
    static member inline getOfSource dataSourceImpl data =
        ( ^T : (member getFromSource : 't -> DataResult<'t>) (dataSourceImpl, data))
    static member inline storeOfSource dataSourceImpl data =
        ( ^T : (member storeToSource : 't -> unit) (dataSourceImpl, data))

и их конкретные реализации

type CacheNotInCache() = 
        member this.getFromCache _ = None
        member this.storeCache _ = () 

type CacheInCache() =
        member this.getFromCache user = monad { 
           return! DataResult user |> Some}
        member this.storeCache _ = () 

type  DataSourceNotInCache() = 
          member this.getFromSource user = monad { 
               return! DataResult user } 

type  DataSourceInCache()  =
          member this.getFromSource _  = 
              raise (NotImplementedException())        

, с помощью которыхЯ могу определить конечный DSL без тегов

let requestData (cacheImpl: ^Cache) (dataSourceImpl: ^DataSource) (userName:UserName) = monad {
    match Cache.getOfCache cacheImpl userName with
    | Some dataResult -> 
            return! map ((+) "cache: ") dataResult
    | None -> 
            return! map ((+) "source: ") (DataSource.getOfSource dataSourceImpl userName) }

, и он работает следующим образом

[<EntryPoint>]
let main argv =
    let cacheImpl1 = CacheInCache() 
    let dataSourceImpl1 = DataSourceInCache()
    let cacheImpl2 = CacheNotInCache() 
    let dataSourceImpl2 = DataSourceNotInCache()
    requestData cacheImpl1 dataSourceImpl1 "john" |> printfn "%A"
    //requestData (cacheImpl2 ) dataSourceImpl2 "john" |> printfn "%A"
    0 

Проблема в том, что я получаю предупреждение

конструкция заставляет код быть менее универсальным, чем указано в аннотациях типа

для cacheImpl1 и dataSourceImpl1, поэтому я не могу повторно использовать requestData для другого случая.Есть ли способ обойти эту проблему?

1 Ответ

1 голос
/ 03 апреля 2019

Я не знаком с абстракцией, которую вы пытаетесь реализовать, но, глядя на ваш код, кажется, вам не хватает модификатора inline:

let inline requestData (cacheImpl: ^Cache) (dataSourceImpl: ^DataSource) (userName:UserName) = monad {
    match Cache.getOfCache cacheImpl userName with
    | Some dataResult -> 
            return! map ((+) "cache: ") dataResult
    | None -> 
            return! map ((+) "source: ") (DataSource.getOfSource dataSourceImpl userName) }

В качестве примечания,Вы можете упростить функцию карты следующим образом:

type DataResult<'t> = DataResult of 't with
    static member Map (DataResult t, f) = DataResult (f t)
...