Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
ansible
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
ansible
Commits
8e07d83a
Commit
8e07d83a
authored
Mar 03, 2012
by
Michael DeHaan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Async module, mostly operational, daemonizing/watch code may have bugs
parent
718e2930
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
16 deletions
+25
-16
library/async_wrapper
+25
-16
No files found.
library/async_wrapper
View file @
8e07d83a
...
...
@@ -28,6 +28,8 @@ import subprocess
import
sys
import
datetime
import
traceback
import
signal
import
time
if
len
(
sys
.
argv
)
<
3
:
print
json
.
dumps
({
...
...
@@ -66,7 +68,6 @@ def _run_command(wrapped_cmd, jid, log_path):
try
:
cmd
=
shlex
.
split
(
wrapped_cmd
)
subprocess
.
call
(
"/usr/bin/logger
%
s"
%
wrapped_cmd
,
shell
=
True
)
script
=
subprocess
.
Popen
(
cmd
,
shell
=
False
,
stdout
=
subprocess
.
PIPE
,
stderr
=
subprocess
.
PIPE
)
out
,
err
=
script
.
communicate
()
...
...
@@ -90,28 +91,36 @@ def _run_command(wrapped_cmd, jid, log_path):
logfile
.
write
(
json
.
dumps
(
result
))
logfile
.
close
()
# TODO: daemonize this with time limits
# TODO: might be nice to keep timing data, eventually...
# immediately exit this process, leaving an orphaned process
# running which immediately forks a supervisory timing process
pid
=
os
.
fork
()
if
pid
==
0
:
print
"RETURNING SUCCESS IN UNO"
print
json
.
dumps
({
"started"
:
1
,
"ansible_job_id"
:
jid
})
sys
.
exit
(
0
)
else
:
# FIXME: need to implement time limits
# probably something easy like:
#
# sub_pid = os.fork()
# if sub_pid == 0:
# run command
# else
# check status
# sleep 1 second
# kill if greater than timelimit
print
"DAEMONIZED DOS"
sub_pid
=
os
.
fork
()
if
sub_pid
==
0
:
print
"RUNNING IN KID A"
_run_command
(
cmd
,
jid
,
log_path
)
sys
.
exit
(
0
)
else
:
print
"WATCHING IN KID B"
remaining
=
int
(
time_limit
)
if
os
.
path
.
exists
(
"/proc/
%
s"
%
sub_pid
):
print
"STILL RUNNING"
time
.
sleep
(
1
)
remaining
=
remaining
-
1
else
:
print
"DONE IN KID B"
sys
.
exit
(
0
)
if
remaining
==
0
:
print
"SLAYING IN KID B"
os
.
kill
(
sub_pid
,
signals
.
SIGKILL
)
sys
.
exit
(
1
)
sys
.
exit
(
0
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment