[~] Refactor
This commit is contained in:
parent
302464bff9
commit
a979b64261
@ -3,6 +3,7 @@ import traceback
|
|||||||
import time
|
import time
|
||||||
import sys
|
import sys
|
||||||
import subprocess
|
import subprocess
|
||||||
|
import logging
|
||||||
|
|
||||||
msg = None
|
msg = None
|
||||||
|
|
||||||
@ -53,6 +54,66 @@ def eternal_oom():
|
|||||||
t4()
|
t4()
|
||||||
time.sleep(1)
|
time.sleep(1)
|
||||||
|
|
||||||
|
def resilient_vlc(stream=None):
|
||||||
|
if stream is None:
|
||||||
|
streams_path = os.path.join(
|
||||||
|
os.environ['CACHE_PATH'],
|
||||||
|
'resilient-vlc-streams.json'
|
||||||
|
)
|
||||||
|
|
||||||
|
if os.path.exists(streams_path):
|
||||||
|
with io.open(
|
||||||
|
streams_path,
|
||||||
|
'r'
|
||||||
|
) as f:
|
||||||
|
stream = json.load(f)
|
||||||
|
else:
|
||||||
|
raise RuntimeError(
|
||||||
|
'not found, %s' % streams_path
|
||||||
|
)
|
||||||
|
|
||||||
|
if isinstance(stream, str):
|
||||||
|
stream = [stream]
|
||||||
|
|
||||||
|
if len(stream) == 0:
|
||||||
|
raise RuntimeError('no streams')
|
||||||
|
|
||||||
|
import subprocess
|
||||||
|
import time
|
||||||
|
while True:
|
||||||
|
print('new start')
|
||||||
|
with subprocess.Popen([
|
||||||
|
'cvlc', '--verbose', '2', *stream,
|
||||||
|
], stderr=subprocess.PIPE) as p:
|
||||||
|
while p.returncode is None:
|
||||||
|
t1 = p.stderr.readline().decode('utf-8')
|
||||||
|
if len(t1) > 0:
|
||||||
|
print(t1)
|
||||||
|
if not all([
|
||||||
|
o in t1
|
||||||
|
for o in [
|
||||||
|
'prefetch stream error',
|
||||||
|
'terror',
|
||||||
|
'main interface error',
|
||||||
|
]
|
||||||
|
]) and any([
|
||||||
|
o in t1
|
||||||
|
for o in [
|
||||||
|
'pulse audio output debug: underflow'
|
||||||
|
]
|
||||||
|
]):
|
||||||
|
print('shit')
|
||||||
|
p.kill()
|
||||||
|
while True:
|
||||||
|
try:
|
||||||
|
t2 = p.wait(timeout=1)
|
||||||
|
print(t2)
|
||||||
|
break
|
||||||
|
except:
|
||||||
|
print('shit')
|
||||||
|
pass
|
||||||
|
time.sleep(1.0)
|
||||||
|
|
||||||
def status():
|
def status():
|
||||||
return ' | '.join([
|
return ' | '.join([
|
||||||
subprocess.check_output(o, shell=True).decode('utf-8').strip()
|
subprocess.check_output(o, shell=True).decode('utf-8').strip()
|
||||||
@ -133,14 +194,17 @@ try:
|
|||||||
''', shell=True)
|
''', shell=True)
|
||||||
elif sys.argv[1] == 'eternal-oom':
|
elif sys.argv[1] == 'eternal-oom':
|
||||||
eternal_oom()
|
eternal_oom()
|
||||||
|
elif sys.argv[1] == 'resilient-vlc':
|
||||||
|
resilient_vlc(sys.argv[2:])
|
||||||
else:
|
else:
|
||||||
raise NotImplementedError
|
raise NotImplementedError
|
||||||
except:
|
except:
|
||||||
msg = 'not implemented\n%s' % traceback.format_exc()
|
msg = 'not implemented\n%s' % traceback.format_exc()
|
||||||
|
logging.error(msg)
|
||||||
|
|
||||||
if not msg is None:
|
if not msg is None:
|
||||||
subprocess.check_call([
|
subprocess.check_call([
|
||||||
'notify-send',
|
'notify-send',
|
||||||
'commands',
|
'commands',
|
||||||
msg
|
msg[-128:]
|
||||||
])
|
])
|
||||||
|
Loading…
Reference in New Issue
Block a user