vote up 1 vote down star

How the Scala script that reads 5G log file from network drive should be modified in order to read last x lines (like 'tail' in Unix)?

::#!
@echo off
call scala %0 %*
goto :eof
::!#

import scala.io.Source
if (args.length > 0) {
for (line <-Source.fromFile(args(0)).getLines)
if(line.contains("percent")){
    print(line)
}
}
flag

3 Answers

vote up 1 vote down check

I'm using a mutable queue in this one:

::#!@echo off
call scala %0 %*
goto :eof
::!#
import scala.io.Source

val lastN = 5 // I guess you'll be getting them from args, but...
val queue = new scala.collection.mutable.Queue[String]

if (args.length > 0) {
  Source.fromFile(args(0)).getLines foreach { line =>
    queue.enqueue(line)
    if (queue.size > lastN) queue.dequeue
  }
  for (line <- queue)
    if (line.contains("percent")){
      print(line)
    }
}

If using an immutable queue, I'd use a reduceLeft, but I see no point in using an immutable queue for this.

link|flag
Reading the entire 5G file over the network and dumping out all but the last 5 lines doesn't seem ideal. – pumpkin Nov 4 at 0:24
It isn't. You'd have to read blocks of bytes from the end until you got the required number of lines to do it right, using a couple of stacks for the lines -- one for the current block, one for overall. That requires going through Java I/O library, which is so awful I won't touch without being paid for it. :-) – Daniel Nov 4 at 10:48
1  
Also it is not possible to read from a file backwards unless you know the encoding is fixed-byte-length – oxbow_lakes Nov 4 at 16:26
pumpkin's approach, from below, is the only sane way to do this, assuming that the network file system indeed allows seeking. As Daniel indicates, this will need calling into the java library. java.io.RandomAccessFile has a readLine() method that will let you read Strings directly from the file. Just back up generously, read lines into a buffer or queue until you hit the end, then take the last 5 lines you read. – Carl Smotricz Nov 4 at 20:15
@oxbow_lakes: very good point! – Daniel Nov 5 at 1:20
vote up 2 vote down

If reading the file is expensive, as I expect it is over the network, I'd seek to the end of the file and read progressively larger chunks (more domain knowledge of the log file format might give you a better strategy here) from the end until you find the number of lines you're looking for.

link|flag
vote up 0 vote down

You'll obviously have to keep a buffer of x lines which you update on each iteration:

var buf: List[String] = Nil

for (line <- ...) {
  buf = (buf ::: List(line)) match {
    case x :: xs if (xs.length == n) => xs 
  }
}
link|flag
1  
Isn't this a horrendously ugly way to do the same thing that Daniel did with a mutable queue? (It's inefficient too, since buf has to be copied in linear time on each iteration of the loop.) – Ken Bloom Nov 4 at 1:37
1  
I've streamlined the match (I put all the cases in for clarity). I think you need to read up on scala's immutable data structures as no copying is going on using List. I think it's quite elegant personally! – oxbow_lakes Nov 4 at 8:09
1  
Oxbow, buf is being copied in linear time. The arg to the left of ::: is always copied. It is :: which doesn't copy anything. – Daniel Nov 4 at 10:50
1  
@Daniel - I don't see that it is at all because I'm only :::-ing to a 1-element list! A ListBuffer is created and one element is copied into it. However the original list is then prepended via ListBuffer.prependToTail - this doesn't copy as ListBuffer.toList is a constant time operation – oxbow_lakes Nov 4 at 11:40
1  
Sorry - I meant ListBuffer.prependToList of course! – oxbow_lakes Nov 4 at 11:41
show 3 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.