Loaner Pattern in Scala

后端 未结 2 489
滥情空心
滥情空心 2020-12-01 02:23

Scala in Depth demonstrates the Loaner Pattern:

def readFile[T](f: File)(handler: FileInputStream => T): T = {
  val resource = new java.io.FileI         


        
相关标签:
2条回答
  • 2020-12-01 02:44

    Make sure that whatever you compute is evaluated eagerly and no longer depends on the resource. Scala makes lazy computation fairly easy. For instance, if you wrap scala.io.Source.fromFile in this way, you might try

    readFile("test.txt")(_.getLines)
    

    Unfortunately, this doesn't work because getLines is lazy (returns an iterator). And Scala doesn't have any great way to indicate which methods are lazy and which are not. So you just have to know (docs will tend to tell you), and you have to actually do the work before returning:

    readFile("test.txt")(_.getLines.toVector)
    

    Overall, it's a very useful pattern. Just make sure that all accesses to the resource are completed before exiting the block (so no uncompleted futures, no lazy vals that depend on the resource, no iterators, no returning the resource itself, no streams that haven't been fully read, etc.; of course any of these things are okay if they do not depend on the open resource but only on some fully-computed quantity based upon the resource).

    0 讨论(0)
  • 2020-12-01 03:07

    With the Loan pattern it is important to know when the "bit" of code that is going to actually call your loaned resource is going to use it.

    If you want to return a future from a loan pattern I advise to not create it inside the function that is passed to the loan pattern function.

    Don't write

    readFile("text.file")(future { doSomething })
    

    but do:

    future { readFile("text.file")( doSomething ) }
    

    what I usually do is that I define two types of loan pattern functions: Synchronous and Async

    So in your case I would have:

    def asyncReadFile[T](f: File)(handler: FileInputStream => T): Future[T] = {
      future{
        readFile(f)(handler)
      }
    }
    

    This way you avoid calling closed resources. And you reuse your already tested and hopefully correct code of the Synchronous function.

    0 讨论(0)
提交回复
热议问题