X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=src%2Fnepi%2Fresources%2Flinux%2Fns3%2Fns3simulation.py;h=0a44d7aebd15cb80ff7b85e30cbc3d7037f7fef9;hb=6285ca51026efb69642eea9dfc7c480e722d84a9;hp=51da3a295225662b36a6b807d32498f821e5f8a1;hpb=d50ba1a08e541ded7a8b322493ebb1d0cc59c6ff;p=nepi.git diff --git a/src/nepi/resources/linux/ns3/ns3simulation.py b/src/nepi/resources/linux/ns3/ns3simulation.py index 51da3a29..0a44d7ae 100644 --- a/src/nepi/resources/linux/ns3/ns3simulation.py +++ b/src/nepi/resources/linux/ns3/ns3simulation.py @@ -3,9 +3,8 @@ # Copyright (C) 2014 INRIA # # This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. +# it under the terms of the GNU General Public License version 2 as +# published by the Free Software Foundation; # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -32,9 +31,6 @@ import os import time import threading -## TODO: Clean up DCE part. All that is DCE specific should go -## in the linux ns3dceapplication.py - @clsinit_copy class LinuxNS3Simulation(LinuxApplication, NS3Simulation): _rtype = "linux::ns3::Simulation" @@ -139,6 +135,7 @@ class LinuxNS3Simulation(LinuxApplication, NS3Simulation): self._home = "ns3-simu-%s" % self.guid self._socket_name = "ns3-%s.sock" % os.urandom(4).encode('hex') self._enable_dce = None + self._dce_helper = None @property def socket_name(self): @@ -314,7 +311,7 @@ class LinuxNS3Simulation(LinuxApplication, NS3Simulation): else: msg = " Failed to execute command '%s'" % command self.error(msg, out, err) - raise RuntimeError, msg + raise RuntimeError(msg) def do_stop(self): """ Stops simulation execution @@ -338,6 +335,27 @@ class LinuxNS3Simulation(LinuxApplication, NS3Simulation): super(LinuxApplication, self).do_release() + @property + def state(self): + super(LinuxApplication, self).state + + if self._state == ResourceState.STARTED: + try: + is_finished = self.invoke(SIMULATOR_UUID, "isFinished") + + if is_finished: + self.set_stopped() + except: + msg = "Simulator failed. Can not retrieve state" + out = "" + + import traceback + err = traceback.format_exc() + self.error(msg, out, err) + self.do_fail() + + return self._state + @property def enable_dce(self): if self._enable_dce is None: @@ -350,10 +368,17 @@ class LinuxNS3Simulation(LinuxApplication, NS3Simulation): rm = self.ec.get_resource(guid) if isinstance(rm, rclass): self._enable_dce = True + + from nepi.resources.ns3.ns3dcehelper import NS3DceHelper + self._dce_helper = NS3DceHelper(self) break return self._enable_dce + @property + def dce_helper(self): + return self._dce_helper + @property def _start_command(self): command = []