This page is no longer maintained — Please continue to the home page at www.scala-lang.org

Re: platform-independent version of /dev/null?

No replies
Stefan Langer
Joined: 2009-10-23,
User offline. Last seen 42 years 45 weeks ago.

Ok this is from my head not tested so errors included ;) .

object PrintWriterx {
val NULL_DEVICE = "/dev/null"
object NULL_WRITER extends java.io.Writer {
override def flush(): Unit = { /* ignore */}
override def close(): Unit = {/* ignore */}
override def write(cbuf: Array[Char], off: Int, len: Int): Unit
{/*ignore this call*/}
}

def apply(fileName: String = NULL_DEVICE) = {
if(fileName == NULL_DEVICE) {
new PrintWriterx(NULL_DEVICE) extends java.io.PrintWriter(NULL_WRITER)
else
new PrintWriterx(fileName)
}

}
}

Regards
Stefan

2011/10/9 Russ Paielli :
> But my PrintWriterx class takes a fileName String as its argument and passes
> it to the PrintWriter constructor, so I am not sure how to do what you are
> suggesting. I guess I could use an alternate constructor. If you could give
> me an example of what you mean, that would be helpful. Thanks.
>
> --Russ
>
>
> On Sun, Oct 9, 2011 at 3:03 AM, Stefan Langer
> wrote:
>>
>> Simply implement a null operator stream and use that as initialization for
>> your default pentagram. This way you are platform neutral.
>>
>> -
>> Stefan
>>
>> Am 07.10.2011 21:19 schrieb "Russ P." :
>>>
>>> I extended the Java PrintWriter class to add a few convenience
>>> features. I would like to have a nullary constructor, so I set the
>>> default file name to "/dev/null":
>>>
>>> class PrintWriterx(val fileName: String="/dev/null")
>>>    extends java.io.PrintWriter(fileName) { ... }
>>>
>>> Unfortunately, this does not work on Windows. I don't use Windows
>>> myself, but I have been told that it has it's own null file called
>>> "NUL". What is the best way to make this class platform independent?
>>> Do I need to somehow query for the platform, then set the default file
>>> name accordingly? If so, how do I do that? Or is there a better way?
>>> Thanks.
>>>
>>> --Russ P.
>
>
>
> --
> http://RussP.us
>

Copyright © 2012 École Polytechnique Fédérale de Lausanne (EPFL), Lausanne, Switzerland