How to run a new image to execute a process

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
4 messages Options
Reply | Threaded
Open this post in threaded view
|

How to run a new image to execute a process

Guillaume Larcheveque
Hello,

I want to run the generation of a mooseModel in a new image with a new vm process (To avoid freezing or occupying space of my first one and also have more available memory).

I know i can use OSProcess but Cyril told me it will not work on Windows and i don't want to be platform dependent.

Do you see another solution to do that?

--
Guillaume Larcheveque

Reply | Threaded
Open this post in threaded view
|

Re: How to run a new image to execute a process

Blondeau Vincent

Hello,

 

The main problem under Windows is that the return value of the execution of the process cannot be received  because the stdin stdout streams are not integrated.

But I think you should be able to launch the process and to find a way to communicate between both images (Http or file change?).

 

If you just want to avoid freezing, you can try to fork the import process.

 

Cheers,

Vincent

 

 

De : Pharo-dev [mailto:[hidden email]] De la part de Guillaume Larcheveque
Envoyé : lundi 29 février 2016 14:01
À : Pharo Development List
Objet : [Pharo-dev] How to run a new image to execute a process

 

Hello,

 

I want to run the generation of a mooseModel in a new image with a new vm process (To avoid freezing or occupying space of my first one and also have more available memory).

 

I know i can use OSProcess but Cyril told me it will not work on Windows and i don't want to be platform dependent.

 

Do you see another solution to do that?

 

--

Guillaume Larcheveque


!!!*************************************************************************************
"Ce message et les pièces jointes sont confidentiels et réservés à l'usage exclusif de ses destinataires. Il peut également être protégé par le secret professionnel. Si vous recevez ce message par erreur, merci d'en avertir immédiatement l'expéditeur et de le détruire. L'intégrité du message ne pouvant être assurée sur Internet, la responsabilité de Worldline ne pourra être recherchée quant au contenu de ce message. Bien que les meilleurs efforts soient faits pour maintenir cette transmission exempte de tout virus, l'expéditeur ne donne aucune garantie à cet égard et sa responsabilité ne saurait être recherchée pour tout dommage résultant d'un virus transmis.

This e-mail and the documents attached are confidential and intended solely for the addressee; it may also be privileged. If you receive this e-mail in error, please notify the sender immediately and destroy it. As its integrity cannot be secured on the Internet, the Worldline liability cannot be triggered for the message content. Although the sender endeavours to maintain a computer virus-free network, the sender does not warrant that this transmission is virus-free and will not be liable for any damages resulting from any virus transmitted.!!!"
Reply | Threaded
Open this post in threaded view
|

Re: How to run a new image to execute a process

Damien Cassou-2
In reply to this post by Guillaume Larcheveque
Guillaume Larcheveque <[hidden email]> writes:

> I want to run the generation of a mooseModel in a new image with a new vm
> process (To avoid freezing or occupying space of my first one and also have
> more available memory).

this is what happens for the launcher and it works on Windows:

execute
   self needsSpurVm ifTrue: [
      context singleImage launch: self class spurFullPath ]
   ifFalse:[
      context singleImage launch: self class vmFullPath].
   self class quitOnLaunch
      ifTrue: [ self quit ]

PhLImage>>launch: aFullPathString
   "Use the VM that launched the current image to launch me"
   
   ^ OSProcess command: (self launchCommandWith: aFullPathString)

launchCommandWith: aFullPathString
   | command vmCommand imagePath |
   vmCommand := aFullPathString isEmpty
      ifTrue: [ Smalltalk vm fullPath asString ]
      ifFalse: [ aFullPathString ].
   imagePath := file pathString.
   command := $" asString , vmCommand , '"  "' , imagePath , '"'.
   ^ command



--
Damien Cassou
http://damiencassou.seasidehosting.st

"Success is the ability to go from one failure to another without
losing enthusiasm." --Winston Churchill

Reply | Threaded
Open this post in threaded view
|

Re: How to run a new image to execute a process

Guillaume Larcheveque
Thank you very much Damien :-)

we will do that

2016-02-29 14:21 GMT+01:00 Damien Cassou <[hidden email]>:
Guillaume Larcheveque <[hidden email]> writes:

> I want to run the generation of a mooseModel in a new image with a new vm
> process (To avoid freezing or occupying space of my first one and also have
> more available memory).

this is what happens for the launcher and it works on Windows:

execute
   self needsSpurVm ifTrue: [
      context singleImage launch: self class spurFullPath ]
   ifFalse:[
      context singleImage launch: self class vmFullPath].
   self class quitOnLaunch
      ifTrue: [ self quit ]

PhLImage>>launch: aFullPathString
   "Use the VM that launched the current image to launch me"

   ^ OSProcess command: (self launchCommandWith: aFullPathString)

launchCommandWith: aFullPathString
   | command vmCommand imagePath |
   vmCommand := aFullPathString isEmpty
      ifTrue: [ Smalltalk vm fullPath asString ]
      ifFalse: [ aFullPathString ].
   imagePath := file pathString.
   command := $" asString , vmCommand , '"  "' , imagePath , '"'.
   ^ command



--
Damien Cassou
http://damiencassou.seasidehosting.st

"Success is the ability to go from one failure to another without
losing enthusiasm." --Winston Churchill



--
Guillaume Larcheveque