summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2024-01-07 09:01:57 +0100
committerGitHub <noreply@github.com>2024-01-07 09:01:57 +0100
commitf67c73eed92509e4341f24e5075611a11249200e (patch)
tree8aa110dbdc0065a942c55b0e63dbb9734b965790 /python
parent20b77b392105fc23a71481833b3bd1d442728e31 (diff)
parent368ff14787d6a021d105055f3dd5e0e0870b0dfc (diff)
downloadvyos-1x-f67c73eed92509e4341f24e5075611a11249200e.tar.gz
vyos-1x-f67c73eed92509e4341f24e5075611a11249200e.zip
Merge pull request #2767 from vyos/mergify/bp/sagitta/pr-2764
T5195: add timeout argument to process_named_running() (backport #2764)
Diffstat (limited to 'python')
-rw-r--r--python/vyos/utils/process.py27
1 files changed, 21 insertions, 6 deletions
diff --git a/python/vyos/utils/process.py b/python/vyos/utils/process.py
index e09c7d86d..cd58b4be2 100644
--- a/python/vyos/utils/process.py
+++ b/python/vyos/utils/process.py
@@ -204,17 +204,32 @@ def process_running(pid_file):
pid = f.read().strip()
return pid_exists(int(pid))
-def process_named_running(name, cmdline: str=None):
+def process_named_running(name, cmdline: str=None, timeout=0):
""" Checks if process with given name is running and returns its PID.
If Process is not running, return None
"""
from psutil import process_iter
- for p in process_iter(['name', 'pid', 'cmdline']):
- if cmdline:
- if p.info['name'] == name and cmdline in p.info['cmdline']:
+ def check_process(name, cmdline):
+ for p in process_iter(['name', 'pid', 'cmdline']):
+ if cmdline:
+ if name in p.info['name'] and cmdline in p.info['cmdline']:
+ return p.info['pid']
+ elif name in p.info['name']:
return p.info['pid']
- elif p.info['name'] == name:
- return p.info['pid']
+ return None
+ if timeout:
+ import time
+ time_expire = time.time() + timeout
+ while True:
+ tmp = check_process(name, cmdline)
+ if not tmp:
+ if time.time() > time_expire:
+ break
+ time.sleep(0.100) # wait 250ms
+ continue
+ return tmp
+ else:
+ return check_process(name, cmdline)
return None
def is_systemd_service_active(service):