X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/8462a1a27d5d9595a90f6c4f6dc65e70d279e6e3..5b9ad84fa8c98062be8d44fce9dc54bf44f29564:/org/simgrid/msg/Process.java diff --git a/org/simgrid/msg/Process.java b/org/simgrid/msg/Process.java index d2d657e589..c6005d6030 100644 --- a/org/simgrid/msg/Process.java +++ b/org/simgrid/msg/Process.java @@ -1,12 +1,10 @@ /* - * $Id$ - * - * Copyright 2006,2007 Martin Quinson, Malek Cherier + * Copyright 2006-2012 The SimGrid team * All right reserved. * * This program is free software; you can redistribute * it and/or modify it under the terms of the license - *(GNU LGPL) which comes with this package. + * (GNU LGPL) which comes with this package. */ package org.simgrid.msg; @@ -14,6 +12,8 @@ package org.simgrid.msg; import java.util.Arrays; import java.util.Hashtable; import java.util.Vector; +import java.lang.Runnable; +import java.util.concurrent.Semaphore; /** * A process may be defined as a code, with some private data, executing @@ -46,68 +46,71 @@ import java.util.Vector; * */ -public abstract class Process extends Thread { +public abstract class Process implements Runnable { /** * This attribute represents a bind between a java process object and * a native process. Even if this attribute is public you must never * access to it. It is set automatically during the build of the object. */ - public long bind; - + private long bind; + /** + * Indicates if the process is started + */ + boolean started; /** * Even if this attribute is public you must never access to it. * It is used to compute the id of an MSG process. */ public static long nextProcessId = 0; - + /** * Even if this attribute is public you must never access to it. * It is compute automatically during the creation of the object. * The native functions use this identifier to synchronize the process. */ public long id; + + /** + * Start time of the process + */ + public double startTime = 0; + /** + * Kill time of the process + */ + public double killTime = -1; - /** - * - */ public Hashtable properties; /** * The name of the process. */ protected String name; - /** - * - * @return - */ - public String msgName() { - return this.name; - } + /** + * The PID of the process + */ + protected int pid = -1; + /** + * The PPID of the process + */ + protected int ppid = -1; + /** + * The host of the process + */ + protected Host host = null; + /** The arguments of the method function of the process. */ public Vector args; - /* process synchronization tools */ - /** - * - */ - /** - * - */ - protected Sem schedBegin, schedEnd; - private boolean nativeStop = false; - + /** * Default constructor (used in ApplicationHandler to initialize it) */ protected Process() { - super(); this.id = nextProcessId++; this.name = null; this.bind = 0; this.args = new Vector(); this.properties = null; - schedBegin = new Sem(0); - schedEnd = new Sem(0); } @@ -159,12 +162,10 @@ public abstract class Process extends Thread { * @param host The host of the process to create. * @param name The name of the process. * @param args The arguments of main method of the process. - * - */ + */ public Process(Host host, String name, String[]args) { - /* This is the constructor called by all others */ this(); - + this.host = host; if (name == null) throw new NullPointerException("Process name cannot be NULL"); this.name = name; @@ -172,11 +173,41 @@ public abstract class Process extends Thread { this.args = new Vector(); if (null != args) this.args.addAll(Arrays.asList(args)); + + this.properties = new Hashtable(); + } + /** + * Constructs a new process from a host and his name, the arguments of here method function are + * specified by the parameter args. + * + * @param host The host of the process to create. + * @param name The name of the process. + * @param args The arguments of main method of the process. + * @param startTime Start time of the process + * @param killTime Kill time of the process + * + */ + public Process(Host host, String name, String[]args, double startTime, double killTime) { + this(); + this.host = host; + if (name == null) + throw new NullPointerException("Process name cannot be NULL"); + this.name = name; - MsgNative.processCreate(this, host); + this.args = new Vector(); + if (null != args) + this.args.addAll(Arrays.asList(args)); + + this.properties = new Hashtable(); + + this.startTime = startTime; + this.killTime = killTime; } - - + /** + * The natively implemented method to create an MSG process. + * @param host A valid (binded) host where create the process. + */ + protected native void create(String hostName) throws HostNotFoundException; /** * This method kills all running process of the simulation. * @@ -187,107 +218,51 @@ public abstract class Process extends Thread { * @return The function returns the PID of the next created process. * */ - public static int killAll(int resetPID) { - return MsgNative.processKillAll(resetPID); - } - - /** - * This method sets a flag to indicate that this thread must be killed. End user must use static method kill - * - * @return - * - */ - public void nativeStop() - { - nativeStop = true; - } - /** - * getter for the flag that indicates that this thread must be killed - * - * @return - * - */ - public boolean getNativeStop() - { - return nativeStop; - } - /** - * checks if the flag that indicates that this thread must be killed is set to true; if true, starts to kill it. End users should not have to deal with it - * If you develop a new MSG native call, please include a call to interruptedStop() at the beginning of your method code, so as the process can be killed if he call - * your method. - * - * @return - * - */ - public static void ifInterruptedStop() { - if ( (Thread.currentThread() instanceof Process) &&((Process) Thread.currentThread()).getNativeStop()) { - throw new RuntimeException("Interrupted"); - } - } - + public static native int killAll(int resetPID); /** * This method kill a process. - * @param process the process to be killed. * */ - public static void kill(Process process) { - process.nativeStop(); - Msg.info("Process " + process.msgName() + " will be killed."); - - } + public native void kill(); /** - * This method adds an argument in the list of the arguments of the main function - * of the process. - * - * @param arg The argument to add. - * - * @deprecated - */ - @Deprecated - protected void addArg(String arg) { - args.add(arg); - } - + * Suspends the process by suspending the task on which it was + * waiting for the completion. + */ + public native void suspend(); /** * Suspends the process by suspending the task on which it was * waiting for the completion. - * + * DEPRECATED: use suspend instead. */ + @Deprecated public void pause() { - Process.ifInterruptedStop(); - MsgNative.processSuspend(this); + suspend(); } /** * Resumes a suspended process by resuming the task on which it was * waiting for the completion. - * - * - */ - public void restart() { - Process.ifInterruptedStop(); - MsgNative.processResume(this); - } + */ + public native void resume(); /** * Tests if a process is suspended. * * @return The method returns true if the process is suspended. * Otherwise the method returns false. */ - public boolean isSuspended() { - Process.ifInterruptedStop(); - return MsgNative.processIsSuspended(this); + public native boolean isSuspended(); + /** + * Returns the name of the process + */ + public String msgName() { + return this.name; } /** - * Returns the host of a process. - * + * Returns the host of the process. * @return The host instance of the process. - * - * */ public Host getHost() { - Process.ifInterruptedStop(); - return MsgNative.processGetHost(this); + return this.host; } /** * This static method gets a process from a PID. @@ -298,10 +273,7 @@ public abstract class Process extends Thread { * * @exception NativeException on error in the native SimGrid code */ - public static Process fromPID(int PID) throws NativeException { - Process.ifInterruptedStop(); - return MsgNative.processFromPID(PID); - } + public static native Process fromPID(int PID) throws NativeException; /** * This method returns the PID of the process. * @@ -309,8 +281,7 @@ public abstract class Process extends Thread { * */ public int getPID() { - Process.ifInterruptedStop(); - return MsgNative.processGetPID(this); + return pid; } /** * This method returns the PID of the parent of a process. @@ -319,19 +290,21 @@ public abstract class Process extends Thread { * */ public int getPPID() { - Process.ifInterruptedStop(); - return MsgNative.processGetPPID(this); + return ppid; } + /** + * Set the kill time of the process + * @param killTime the time when the process is killed + */ + public native void setKillTime(double killTime); + /** * This static method returns the currently running process. * * @return The current process. * */ - public static Process currentProcess() { - Process.ifInterruptedStop(); - return MsgNative.processSelf(); - } + public static native Process currentProcess(); /** * Migrates a process to another host. * @@ -339,26 +312,34 @@ public abstract class Process extends Thread { * @param host The host where to migrate the process. * */ - public static void migrate(Process process, Host host) { - Process.ifInterruptedStop(); - MsgNative.processMigrate(process, host); + public native void migrate(Host host); + /** + * Makes the current process sleep until millis millisecondes have elapsed. + * You should note that unlike "waitFor" which takes seconds, this method takes milliseconds. + * FIXME: Not optimal, maybe we should have two native functions. + * @param millis the length of time to sleep in milliseconds. + */ + public static void sleep(long millis) throws HostFailureException { + sleep(millis,0); } + /** + * Makes the current process sleep until millis milliseconds and nanos nanoseconds + * have elapsed. + * You should note that unlike "waitFor" which takes seconds, this method takes milliseconds and nanoseconds. + * Overloads Thread.sleep. + * @param millis the length of time to sleep in milliseconds. + * @param nanos additionnal nanoseconds to sleep. + */ + public native static void sleep(long millis, int nanos) throws HostFailureException; /** * Makes the current process sleep until time seconds have elapsed. - * * @param seconds The time the current process must sleep. - * - * @exception HostFailureException on error in the native SimGrid code */ - public static void waitFor(double seconds) throws HostFailureException { - Process.ifInterruptedStop(); - MsgNative.processWaitFor(seconds); - } - /** + public native void waitFor(double seconds) throws HostFailureException; + /** * */ public void showArgs() { - Process.ifInterruptedStop(); Msg.info("[" + this.name + "/" + this.getHost().getName() + "] argc=" + this.args.size()); for (int i = 0; i < this.args.size(); i++) @@ -366,29 +347,25 @@ public abstract class Process extends Thread { "] args[" + i + "]=" + (String) (this.args.get(i))); } /** - * Let the simulated process sleep for the given amount of millisecond in the simulated world. - * - * You don't want to use sleep instead, because it would freeze your simulation - * run without any impact on the simulated world. - * @param millis + * This method actually creates and run the process. + * It is a noop if the process is already launched. + * @throws HostNotFoundException */ - public native void simulatedSleep(double seconds); - + public final void start() throws HostNotFoundException { + if (!started) { + started = true; + create(host.getName()); + } + } + /** * This method runs the process. Il calls the method function that you must overwrite. */ public void run() { - String[]args = null; /* do not fill it before the signal or this.args will be empty */ - + String[] args = null; /* do not fill it before the signal or this.args will be empty */ //waitSignal(); /* wait for other people to fill the process in */ - - try { - schedBegin.acquire(); - } catch(InterruptedException e) { - } - try { args = new String[this.args.size()]; if (this.args.size() > 0) { @@ -396,26 +373,15 @@ public abstract class Process extends Thread { } this.main(args); - MsgNative.processExit(this); - schedEnd.release(); } catch(MsgException e) { e.printStackTrace(); Msg.info("Unexpected behavior. Stopping now"); System.exit(1); } - catch(RuntimeException re) { - if (nativeStop) - { - MsgNative.processExit(this); - Msg.info(" Process " + ((Process) Thread.currentThread()).msgName() + " has been killed."); - schedEnd.release(); - } - else { - re.printStackTrace(); - Msg.info("Unexpected behavior. Stopping now"); - System.exit(1); - } - } + catch(ProcessKilledError pk) { + + } + exit(); } /** @@ -426,106 +392,12 @@ public abstract class Process extends Thread { */ public abstract void main(String[]args) throws MsgException; - - /** - * - */ - public void unschedule() { - //Process.ifInterruptedStop(); - try { - schedEnd.release(); - schedBegin.acquire(); - } catch (InterruptedException e) { - } - } - - /** - * - */ - public void schedule() { - //System.err.println("Scheduling process in Java"); - //Process.ifInterruptedStop(); - try { - schedBegin.release(); - schedEnd.acquire(); - } catch(InterruptedException e) { - System.err.println("Got an interuption while scheduling process in Java"); - e.printStackTrace(); - } - } - - /** Send the given task in the mailbox associated with the specified alias (waiting at most given time) - * @param mailbox - * @param task - * @param timeout - * @throws TimeoutException - * @throws HostFailureException - * @throws TransferFailureException */ - public void taskSend(String mailbox, Task task, double timeout) throws TransferFailureException, HostFailureException, TimeoutException { - Process.ifInterruptedStop(); - MsgNative.taskSend(mailbox, task, timeout); - } - - /** Send the given task in the mailbox associated with the specified alias - * @param mailbox - * @param task - * @throws TimeoutException - * @throws HostFailureException - * @throws TransferFailureException */ - public void taskSend(String mailbox, Task task) throws TransferFailureException, HostFailureException, TimeoutException { - Process.ifInterruptedStop(); - MsgNative.taskSend(mailbox, task, -1); - } - - /** Receive a task on mailbox associated with the specified mailbox - * @param mailbox - * @return - * @throws TransferFailureException - * @throws HostFailureException - * @throws TimeoutException - */ - public Task taskReceive(String mailbox) throws TransferFailureException, HostFailureException, TimeoutException { - Process.ifInterruptedStop(); - return MsgNative.taskReceive(mailbox, -1.0, null); - } - - /** Receive a task on mailbox associated with the specified alias (waiting at most given time) - * @param mailbox - * @param timeout - * @return - * @throws TransferFailureException - * @throws HostFailureException - * @throws TimeoutException - */ - public Task taskReceive(String mailbox, double timeout) throws TransferFailureException, HostFailureException, TimeoutException { - Process.ifInterruptedStop(); - return MsgNative.taskReceive(mailbox, timeout, null); - } - - /** Receive a task on mailbox associated with the specified alias from given sender - * @param mailbox - * @param host - * @param timeout - * @return - * @throws TransferFailureException - * @throws HostFailureException - * @throws TimeoutException - */ - public Task taskReceive(String mailbox, double timeout, Host host) throws TransferFailureException, HostFailureException, TimeoutException { - Process.ifInterruptedStop(); - return MsgNative.taskReceive(mailbox, timeout, host); - } - - /** Receive a task on mailbox associated with the specified alias from given sender - * @param mailbox - * @param host - * @return - * @throws TransferFailureException - * @throws HostFailureException - * @throws TimeoutException - */ - public Task taskReceive(String mailbox, Host host) throws TransferFailureException, HostFailureException, TimeoutException { - Process.ifInterruptedStop(); - return MsgNative.taskReceive(mailbox, -1.0, host); + public native void exit(); + /** + * Class initializer, to initialize various JNI stuff + */ + public static native void nativeInit(); + static { + nativeInit(); } }