- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
fork-exec *nix process from scala
Sun, 2009-01-04, 20:16
Scalads and Lasses,
Anybody have any tips for exec'ing a *nix process from scala? The following blocks indefinitely.
Best wishes,
--greg
scala> Runtime.getRuntime().exec( "dot -Tsvg phred.dot -o phred" + (System.currentTimeMillis) + ".svg" )
res1: java.lang.Process = java.lang.UNIXProcess@1e0b6a
scala> res1.waitFor
C-c C-cres4: Int = 0
scala> bash-3.2$
--
L.G. Meredith
Managing Partner
Biosimilarity LLC
806 55th St NE
Seattle, WA 98105
+1 206.650.3740
http://biosimilarity.blogspot.com
Anybody have any tips for exec'ing a *nix process from scala? The following blocks indefinitely.
Best wishes,
--greg
scala> Runtime.getRuntime().exec( "dot -Tsvg phred.dot -o phred" + (System.currentTimeMillis) + ".svg" )
res1: java.lang.Process = java.lang.UNIXProcess@1e0b6a
scala> res1.waitFor
C-c C-cres4: Int = 0
scala> bash-3.2$
--
L.G. Meredith
Managing Partner
Biosimilarity LLC
806 55th St NE
Seattle, WA 98105
+1 206.650.3740
http://biosimilarity.blogspot.com
Mon, 2009-01-05, 02:07
#2
Re: fork-exec *nix process from scala
See http://www.jroller.com/thebugslayer/entry/executing_external_system_commands_in
On Sun, Jan 4, 2009 at 11:15 AM, Meredith Gregory <lgreg.meredith@gmail.com> wrote:
On Sun, Jan 4, 2009 at 11:15 AM, Meredith Gregory <lgreg.meredith@gmail.com> wrote:
Scalads and Lasses,
Anybody have any tips for exec'ing a *nix process from scala? The following blocks indefinitely.
Best wishes,
--greg
scala> Runtime.getRuntime().exec( "dot -Tsvg phred.dot -o phred" + (System.currentTimeMillis) + ".svg" )
res1: java.lang.Process = java.lang.UNIXProcess@1e0b6a
scala> res1.waitFor
C-c C-cres4: Int = 0
scala> bash-3.2$
--
L.G. Meredith
Managing Partner
Biosimilarity LLC
806 55th St NE
Seattle, WA 98105
+1 206.650.3740
http://biosimilarity.blogspot.com
Mon, 2009-01-05, 03:37
#3
Re: fork-exec *nix process from scala
I played quite a bit with this a few months ago (mainly on Windows XP, but
also on Ubuntu). Results here:
http://github.com/litan/scrisca/tree/master/src/main/scala/com/kogics/sc...
Looks like a lot of code in there ;). The core method to look at is
RichProcessBuilder.exec...
Cheers,
- Lalit
http://www.kogics.net
Meredith Gregory wrote:
>
> Scalads and Lasses,
>
> Anybody have any tips for exec'ing a *nix process from scala? The
> following
> blocks indefinitely.
>
> Best wishes,
>
> --greg
>
> scala> Runtime.getRuntime().exec( "dot -Tsvg phred.dot -o phred" +
> (System.currentTimeMillis) + ".svg" )
> res1: java.lang.Process = java.lang.UNIXProcess@1e0b6a
> scala> res1.waitFor
> C-c C-cres4: Int = 0
>
> scala> bash-3.2$
>
>
Mon, 2009-01-05, 03:57
#4
Re: fork-exec *nix process from scala
I don't know about the command your executing but if the program
generates output you need to be consuming that output. At least under
Linux, the process will wait for the output buffer to be drained
before executing. If this is the case, start a thread that reads from
the Process InputStream while you're waiting for the command to be
executed.
On Sun, Jan 4, 2009 at 9:22 PM, Lalit Pant wrote:
>
> I played quite a bit with this a few months ago (mainly on Windows XP, but
> also on Ubuntu). Results here:
> http://github.com/litan/scrisca/tree/master/src/main/scala/com/kogics/sc...
>
> Looks like a lot of code in there ;). The core method to look at is
> RichProcessBuilder.exec...
>
> Cheers,
> - Lalit
> http://www.kogics.net
>
>
>
> Meredith Gregory wrote:
>>
>> Scalads and Lasses,
>>
>> Anybody have any tips for exec'ing a *nix process from scala? The
>> following
>> blocks indefinitely.
>>
>> Best wishes,
>>
>> --greg
>>
>> scala> Runtime.getRuntime().exec( "dot -Tsvg phred.dot -o phred" +
>> (System.currentTimeMillis) + ".svg" )
>> res1: java.lang.Process = java.lang.UNIXProcess@1e0b6a
>> scala> res1.waitFor
>> C-c C-cres4: Int = 0
>>
>> scala> bash-3.2$
>>
>>
>> --
>> L.G. Meredith
>> Managing Partner
>> Biosimilarity LLC
>> 806 55th St NE
>> Seattle, WA 98105
>>
>> +1 206.650.3740
>>
>> http://biosimilarity.blogspot.com
>>
>>
>
> --
> View this message in context: http://www.nabble.com/-scala--fork-exec-*nix-process-from-scala-tp212799...
> Sent from the Scala mailing list archive at Nabble.com.
>
>
Mon, 2009-01-05, 07:27
#5
Re: fork-exec *nix process from scala
All,
Many thanks for all your replies. i ended up wrapping this in actor goop and it worked. i'm not sure what was causing the blocking behavior i was seeing in other contexts, and unfortunately, don't have the cycles to track it down to minimal case.
On the other hand, i don't know the scala actor package at all and couldn't see an obvious way to get a non-polling form to get the results from the completed process. i wrote this truly god-awful-anathema-to-actors code to get the data out of the file it was dumped in by the forked process. You can see it here. If you've got any quick tips to avoid this mishigosh, i'm all ears.
Best wishes,
--greg
On Sun, Jan 4, 2009 at 6:46 PM, Jim Miller <gordon.j.miller@gmail.com> wrote:
--
L.G. Meredith
Managing Partner
Biosimilarity LLC
806 55th St NE
Seattle, WA 98105
+1 206.650.3740
http://biosimilarity.blogspot.com
Many thanks for all your replies. i ended up wrapping this in actor goop and it worked. i'm not sure what was causing the blocking behavior i was seeing in other contexts, and unfortunately, don't have the cycles to track it down to minimal case.
On the other hand, i don't know the scala actor package at all and couldn't see an obvious way to get a non-polling form to get the results from the completed process. i wrote this truly god-awful-anathema-to-actors code to get the data out of the file it was dumped in by the forked process. You can see it here. If you've got any quick tips to avoid this mishigosh, i'm all ears.
Best wishes,
--greg
On Sun, Jan 4, 2009 at 6:46 PM, Jim Miller <gordon.j.miller@gmail.com> wrote:
I don't know about the command your executing but if the program
generates output you need to be consuming that output. At least under
Linux, the process will wait for the output buffer to be drained
before executing. If this is the case, start a thread that reads from
the Process InputStream while you're waiting for the command to be
executed.
On Sun, Jan 4, 2009 at 9:22 PM, Lalit Pant <lalit_pant@yahoo.com> wrote:
>
> I played quite a bit with this a few months ago (mainly on Windows XP, but
> also on Ubuntu). Results here:
> http://github.com/litan/scrisca/tree/master/src/main/scala/com/kogics/scrisca/proc/Process.scala
>
> Looks like a lot of code in there ;). The core method to look at is
> RichProcessBuilder.exec...
>
> Cheers,
> - Lalit
> http://www.kogics.net
>
>
>
> Meredith Gregory wrote:
>>
>> Scalads and Lasses,
>>
>> Anybody have any tips for exec'ing a *nix process from scala? The
>> following
>> blocks indefinitely.
>>
>> Best wishes,
>>
>> --greg
>>
>> scala> Runtime.getRuntime().exec( "dot -Tsvg phred.dot -o phred" +
>> (System.currentTimeMillis) + ".svg" )
>> res1: java.lang.Process = java.lang.UNIXProcess@1e0b6a
>> scala> res1.waitFor
>> C-c C-cres4: Int = 0
>>
>> scala> bash-3.2$
>>
>>
>> --
>> L.G. Meredith
>> Managing Partner
>> Biosimilarity LLC
>> 806 55th St NE
>> Seattle, WA 98105
>>
>> +1 206.650.3740
>>
>> http://biosimilarity.blogspot.com
>>
>>
>
> --
> View this message in context: http://www.nabble.com/-scala--fork-exec-*nix-process-from-scala-tp21279953p21284430.html
> Sent from the Scala mailing list archive at Nabble.com.
>
>
--
L.G. Meredith
Managing Partner
Biosimilarity LLC
806 55th St NE
Seattle, WA 98105
+1 206.650.3740
http://biosimilarity.blogspot.com
The process is forked when you exec(). When you call waitFor(), this is
causing the blocking (like a join()). You could skip calling waitFor,
or do the exec+waitFor in a new Thread (or with an Actor) if you need to
know when it's finished.
Sam Reid
Meredith Gregory wrote:
> Scalads and Lasses,
>
> Anybody have any tips for exec'ing a *nix process from scala? The
> following blocks indefinitely.
>
> Best wishes,
>
> --greg
>
> scala> Runtime.getRuntime().exec( "dot -Tsvg phred.dot -o phred" +
> (System.currentTimeMillis) + ".svg" )
> res1: java.lang.Process = java.lang.UNIXProcess@1e0b6a
> scala> res1.waitFor
> C-c C-cres4: Int = 0
>
> scala> bash-3.2$
>
>