2020-03-30 20:56:08 +02:00
|
|
|
# pylint: disable=C0111,R0903,W1401
|
|
|
|
|
2020-06-02 20:27:52 +02:00
|
|
|
r""" Execute command in shell and print result
|
2020-03-30 20:56:08 +02:00
|
|
|
|
|
|
|
Few command examples:
|
2020-03-30 21:09:09 +02:00
|
|
|
'ping -c 1 1.1.1.1 | grep -Po '(?<=time=)\d+(\.\d+)? ms''
|
2020-03-30 20:56:35 +02:00
|
|
|
'echo 'BTC=$(curl -s rate.sx/1BTC | grep -Po \'^\d+\')USD''
|
2020-03-30 20:56:08 +02:00
|
|
|
'curl -s https://wttr.in/London?format=%l+%t+%h+%w'
|
|
|
|
'pip3 freeze | wc -l'
|
|
|
|
'any_custom_script.sh | grep arguments'
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
* shell.command: Command to execute
|
2020-05-06 12:57:38 +02:00
|
|
|
Use single parentheses if evaluating anything inside (sh-style)
|
|
|
|
For example shell.command='echo $(date +'%H:%M:%S')'
|
|
|
|
But NOT shell.command='echo $(date +'%H:%M:%S')'
|
|
|
|
Second one will be evaluated only once at startup
|
2020-03-30 20:56:08 +02:00
|
|
|
* shell.interval: Update interval in seconds
|
2020-05-06 12:57:38 +02:00
|
|
|
(defaults to 1s == every bumblebee-status update)
|
2020-03-30 20:56:08 +02:00
|
|
|
* shell.async: Run update in async mode. Won't run next thread if
|
2020-05-06 12:57:38 +02:00
|
|
|
previous one didn't finished yet. Useful for long
|
|
|
|
running scripts to avoid bumblebee-status freezes
|
|
|
|
(defaults to False)
|
2020-05-08 20:58:35 +02:00
|
|
|
|
|
|
|
contributed by `rrhuffy <https://github.com/rrhuffy>`_ - many thanks!
|
2020-03-30 20:56:08 +02:00
|
|
|
"""
|
|
|
|
|
|
|
|
import os
|
|
|
|
import subprocess
|
|
|
|
import threading
|
|
|
|
|
2020-03-30 21:09:09 +02:00
|
|
|
import core.module
|
|
|
|
import core.widget
|
|
|
|
import core.input
|
|
|
|
import util.format
|
|
|
|
import util.cli
|
2020-03-30 20:56:08 +02:00
|
|
|
|
2020-05-03 11:15:52 +02:00
|
|
|
|
2020-03-30 21:09:09 +02:00
|
|
|
class Module(core.module.Module):
|
2020-04-26 16:39:24 +02:00
|
|
|
def __init__(self, config, theme):
|
|
|
|
super().__init__(config, theme, core.widget.Widget(self.get_output))
|
2020-03-30 20:56:08 +02:00
|
|
|
|
2020-05-03 11:15:52 +02:00
|
|
|
self.__command = self.parameter("command", 'echo "no command configured"')
|
|
|
|
self.__async = util.format.asbool(self.parameter("async"))
|
2020-03-30 20:56:08 +02:00
|
|
|
|
2020-03-30 21:09:09 +02:00
|
|
|
if self.__async:
|
2020-05-03 11:15:52 +02:00
|
|
|
self.__output = "please wait..."
|
2020-03-30 21:18:28 +02:00
|
|
|
self.__current_thread = threading.Thread()
|
2020-03-30 20:56:08 +02:00
|
|
|
|
|
|
|
# LMB and RMB will update output regardless of timer
|
2020-03-30 21:09:09 +02:00
|
|
|
core.input.register(self, button=core.input.LEFT_MOUSE, cmd=self.update)
|
|
|
|
core.input.register(self, button=core.input.RIGHT_MOUSE, cmd=self.update)
|
2020-03-30 20:56:08 +02:00
|
|
|
|
2020-03-30 21:18:28 +02:00
|
|
|
def set_output(self, value):
|
|
|
|
self.__output = value
|
|
|
|
|
2020-03-30 20:56:08 +02:00
|
|
|
def get_output(self, _):
|
2020-03-30 21:09:09 +02:00
|
|
|
return self.__output
|
2020-03-30 20:56:08 +02:00
|
|
|
|
2020-03-30 21:09:09 +02:00
|
|
|
def update(self):
|
2020-03-30 20:56:08 +02:00
|
|
|
# if requested then run not async version and just execute command in this thread
|
2020-03-30 21:09:09 +02:00
|
|
|
if not self.__async:
|
2020-04-06 08:23:17 +02:00
|
|
|
self.__output = util.cli.execute(self.__command, ignore_errors=True).strip()
|
2020-03-30 20:56:08 +02:00
|
|
|
return
|
|
|
|
|
|
|
|
# if previous thread didn't end yet then don't do anything
|
2020-03-30 21:18:28 +02:00
|
|
|
if self.__current_thread.is_alive():
|
2020-03-30 20:56:08 +02:00
|
|
|
return
|
|
|
|
|
|
|
|
# spawn new thread to execute command and pass callback method to get output from it
|
2020-03-30 21:09:09 +02:00
|
|
|
self.__current_thread = threading.Thread(
|
2020-05-03 11:15:52 +02:00
|
|
|
target=lambda obj, cmd: obj.set_output(
|
|
|
|
util.cli.execute(cmd, ignore_errors=True)
|
|
|
|
),
|
|
|
|
args=(self, self.__command),
|
2020-03-30 21:09:09 +02:00
|
|
|
)
|
|
|
|
self.__current_thread.start()
|
|
|
|
|
2020-04-06 08:23:17 +02:00
|
|
|
def state(self, _):
|
2020-05-03 11:15:52 +02:00
|
|
|
if self.__output == "no command configured":
|
|
|
|
return "warning"
|
|
|
|
|
2020-04-06 08:23:17 +02:00
|
|
|
|
2020-03-30 20:56:08 +02:00
|
|
|
# vim: tabstop=4 expandtab shiftwidth=4 softtabstop=4
|