1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-28 11:18:11 +00:00

Parallel execution when closing VMs.

This commit is contained in:
Jeremy 2015-02-05 14:24:06 -07:00
parent f2ff933b20
commit 8118d7762f
2 changed files with 22 additions and 6 deletions

View File

@ -97,11 +97,17 @@ class BaseManager:
@asyncio.coroutine
def unload(self):
tasks = []
for vm_id in self._vms.keys():
tasks.append(asyncio.async(self.close_vm(vm_id)))
if tasks:
done, _ = yield from asyncio.wait(tasks)
for future in done:
try:
yield from self.close_vm(vm_id)
future.result()
except Exception as e:
log.error("Could not delete VM {}: {}".format(vm_id, e), exc_info=1)
log.error("Could not close VM {}".format(e), exc_info=1)
continue
if hasattr(BaseManager, "_instance"):

View File

@ -243,11 +243,21 @@ class Project:
:param cleanup: If True drop the project directory
"""
tasks = []
for vm in self._vms:
if asyncio.iscoroutinefunction(vm.close):
yield from vm.close()
tasks.append(asyncio.async(vm.close()))
else:
vm.close()
if tasks:
done, _ = yield from asyncio.wait(tasks)
for future in done:
try:
future.result()
except Exception as e:
log.error("Could not close VM {}".format(e), exc_info=1)
if cleanup and os.path.exists(self.path):
try:
yield from wait_run_in_executor(shutil.rmtree, self.path)