If you're interested in functional programming, you might also want to checkout my second blog which i'm actively working on!!

Thursday, July 18, 2013

Mimicking grep command in Scala

package implicits
import java.io.File
import scala.io.Source
object RichFileDemo {
class RichFile(file: String) {
def matchLines(source: Source, pattern: String): Iterator[(String, Int)] = {
source.getLines.zipWithIndex.filter(l => pattern.r.findFirstIn(l._1) != None)
}
def grep(pattern: String): Unit = {
val source = Source.fromFile(file)
matchLines(source,pattern).foreach(x => println("line " + x._2 + ": " + x._1))
source.close
}
}
def main(args: Array[String]): Unit = {
val file = new RichFile("c:/scalademo/news.txt")
file.grep("com")
}
}
//news.txt
/**
Working together with leaders of the Play Framework, Akka, and Scala open source communities,
Typesafe seeks to give developers the modern tools they need to build the next generation of
software applications for the era of multicore hardware and cloud computing workloads.
**/
//output program
/**
line 0: Working together with leaders of the Play Framework, Akka, and Scala open source communities,
line 2: software applications for the era of multicore hardware and cloud computing workloads.
**/
view raw gistfile1.scala hosted with ❤ by GitHub

4 comments:

  1. hi Robby, in these examples, how do you close Source returned by Source.fromFile(file)? Seems like it just kept open until process terminates.

    ReplyDelete
  2. You are right... i fixed the implementation and it now closes the source after usage

    ReplyDelete
  3. This comment has been removed by the author.

    ReplyDelete
  4. So helpful! Thanks very much :)

    ReplyDelete