2015-08-31 12:46:18 +03:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
import threading
|
2016-04-26 12:16:49 +03:00
|
|
|
import re
|
2015-10-01 23:03:54 +03:00
|
|
|
import sys
|
2015-10-02 12:08:05 +03:00
|
|
|
import six
|
2015-08-31 12:46:18 +03:00
|
|
|
from six import string_types
|
|
|
|
|
|
|
|
# Python3 queue support.
|
2015-10-02 12:08:05 +03:00
|
|
|
|
2015-08-31 12:46:18 +03:00
|
|
|
try:
|
|
|
|
import Queue
|
|
|
|
except ImportError:
|
|
|
|
import queue as Queue
|
|
|
|
|
2015-10-01 12:33:23 +03:00
|
|
|
from telebot import logger
|
|
|
|
|
2015-08-31 12:46:18 +03:00
|
|
|
|
2015-10-01 23:03:54 +03:00
|
|
|
class WorkerThread(threading.Thread):
|
2015-08-31 12:46:18 +03:00
|
|
|
count = 0
|
|
|
|
|
2015-10-13 08:05:38 +03:00
|
|
|
def __init__(self, exception_callback=None, queue=None, name=None):
|
2015-10-01 23:03:54 +03:00
|
|
|
if not name:
|
|
|
|
name = "WorkerThread{0}".format(self.__class__.count + 1)
|
|
|
|
self.__class__.count += 1
|
2015-10-13 08:05:38 +03:00
|
|
|
if not queue:
|
|
|
|
queue = Queue.Queue()
|
2015-10-01 23:03:54 +03:00
|
|
|
|
|
|
|
threading.Thread.__init__(self, name=name)
|
2015-08-31 12:46:18 +03:00
|
|
|
self.queue = queue
|
|
|
|
self.daemon = True
|
|
|
|
|
2015-10-01 23:03:54 +03:00
|
|
|
self.received_task_event = threading.Event()
|
|
|
|
self.done_event = threading.Event()
|
|
|
|
self.exception_event = threading.Event()
|
|
|
|
self.continue_event = threading.Event()
|
|
|
|
|
|
|
|
self.exception_callback = exception_callback
|
|
|
|
self.exc_info = None
|
2015-08-31 12:46:18 +03:00
|
|
|
self._running = True
|
|
|
|
self.start()
|
|
|
|
|
|
|
|
def run(self):
|
|
|
|
while self._running:
|
|
|
|
try:
|
2015-10-02 01:00:54 +03:00
|
|
|
task, args, kwargs = self.queue.get(block=True, timeout=.5)
|
2015-10-02 18:24:54 +03:00
|
|
|
self.continue_event.clear()
|
|
|
|
self.received_task_event.clear()
|
|
|
|
self.done_event.clear()
|
|
|
|
self.exception_event.clear()
|
2015-10-01 23:03:54 +03:00
|
|
|
logger.debug("Received task")
|
|
|
|
self.received_task_event.set()
|
|
|
|
|
2015-08-31 12:46:18 +03:00
|
|
|
task(*args, **kwargs)
|
2015-10-01 23:03:54 +03:00
|
|
|
logger.debug("Task complete")
|
|
|
|
self.done_event.set()
|
2015-08-31 12:46:18 +03:00
|
|
|
except Queue.Empty:
|
|
|
|
pass
|
2015-10-01 23:03:54 +03:00
|
|
|
except:
|
|
|
|
logger.debug("Exception occurred")
|
|
|
|
self.exc_info = sys.exc_info()
|
|
|
|
self.exception_event.set()
|
|
|
|
|
|
|
|
if self.exception_callback:
|
|
|
|
self.exception_callback(self, self.exc_info)
|
|
|
|
self.continue_event.wait()
|
|
|
|
|
|
|
|
def put(self, task, *args, **kwargs):
|
|
|
|
self.queue.put((task, args, kwargs))
|
|
|
|
|
|
|
|
def raise_exceptions(self):
|
|
|
|
if self.exception_event.is_set():
|
2015-10-02 12:08:05 +03:00
|
|
|
six.reraise(self.exc_info[0], self.exc_info[1], self.exc_info[2])
|
2015-10-01 23:03:54 +03:00
|
|
|
|
|
|
|
def clear_exceptions(self):
|
|
|
|
self.exception_event.clear()
|
|
|
|
self.continue_event.set()
|
2015-08-31 12:46:18 +03:00
|
|
|
|
|
|
|
def stop(self):
|
|
|
|
self._running = False
|
|
|
|
|
|
|
|
|
2015-10-01 23:03:54 +03:00
|
|
|
class ThreadPool:
|
|
|
|
|
|
|
|
def __init__(self, num_threads=2):
|
|
|
|
self.tasks = Queue.Queue()
|
|
|
|
self.workers = [WorkerThread(self.on_exception, self.tasks) for _ in range(num_threads)]
|
2015-08-31 12:46:18 +03:00
|
|
|
self.num_threads = num_threads
|
|
|
|
|
2015-10-01 23:03:54 +03:00
|
|
|
self.exception_event = threading.Event()
|
|
|
|
self.exc_info = None
|
|
|
|
|
2015-08-31 12:46:18 +03:00
|
|
|
def put(self, func, *args, **kwargs):
|
|
|
|
self.tasks.put((func, args, kwargs))
|
|
|
|
|
2015-10-01 23:03:54 +03:00
|
|
|
def on_exception(self, worker_thread, exc_info):
|
|
|
|
self.exc_info = exc_info
|
|
|
|
self.exception_event.set()
|
|
|
|
worker_thread.continue_event.set()
|
|
|
|
|
|
|
|
def raise_exceptions(self):
|
|
|
|
if self.exception_event.is_set():
|
2015-10-02 12:08:05 +03:00
|
|
|
six.reraise(self.exc_info[0], self.exc_info[1], self.exc_info[2])
|
2015-10-01 23:03:54 +03:00
|
|
|
|
|
|
|
def clear_exceptions(self):
|
|
|
|
self.exception_event.clear()
|
|
|
|
|
2015-08-31 12:46:18 +03:00
|
|
|
def close(self):
|
|
|
|
for worker in self.workers:
|
|
|
|
worker.stop()
|
|
|
|
for worker in self.workers:
|
|
|
|
worker.join()
|
|
|
|
|
2015-10-01 12:33:23 +03:00
|
|
|
|
2015-08-31 12:46:18 +03:00
|
|
|
class AsyncTask:
|
|
|
|
def __init__(self, target, *args, **kwargs):
|
|
|
|
self.target = target
|
|
|
|
self.args = args
|
|
|
|
self.kwargs = kwargs
|
|
|
|
|
|
|
|
self.done = False
|
|
|
|
self.thread = threading.Thread(target=self._run)
|
|
|
|
self.thread.start()
|
|
|
|
|
|
|
|
def _run(self):
|
|
|
|
try:
|
|
|
|
self.result = self.target(*self.args, **self.kwargs)
|
2015-10-01 23:03:54 +03:00
|
|
|
except:
|
|
|
|
self.result = sys.exc_info()
|
2015-08-31 12:46:18 +03:00
|
|
|
self.done = True
|
|
|
|
|
|
|
|
def wait(self):
|
|
|
|
if not self.done:
|
|
|
|
self.thread.join()
|
2015-10-01 23:03:54 +03:00
|
|
|
if isinstance(self.result, BaseException):
|
2015-10-02 12:08:05 +03:00
|
|
|
six.reraise(self.result[0], self.result[1], self.result[2])
|
2015-08-31 12:46:18 +03:00
|
|
|
else:
|
|
|
|
return self.result
|
|
|
|
|
|
|
|
|
|
|
|
def async():
|
|
|
|
def decorator(fn):
|
|
|
|
def wrapper(*args, **kwargs):
|
|
|
|
return AsyncTask(fn, *args, **kwargs)
|
|
|
|
|
|
|
|
return wrapper
|
|
|
|
|
|
|
|
return decorator
|
|
|
|
|
|
|
|
|
|
|
|
def is_string(var):
|
|
|
|
return isinstance(var, string_types)
|
|
|
|
|
|
|
|
def is_command(text):
|
|
|
|
"""
|
|
|
|
Checks if `text` is a command. Telegram chat commands start with the '/' character.
|
|
|
|
:param text: Text to check.
|
|
|
|
:return: True if `text` is a command, else False.
|
|
|
|
"""
|
|
|
|
return text.startswith('/')
|
|
|
|
|
|
|
|
|
|
|
|
def extract_command(text):
|
|
|
|
"""
|
|
|
|
Extracts the command from `text` (minus the '/') if `text` is a command (see is_command).
|
|
|
|
If `text` is not a command, this function returns None.
|
|
|
|
|
|
|
|
Examples:
|
|
|
|
extract_command('/help'): 'help'
|
|
|
|
extract_command('/help@BotName'): 'help'
|
|
|
|
extract_command('/search black eyed peas'): 'search'
|
|
|
|
extract_command('Good day to you'): None
|
|
|
|
|
|
|
|
:param text: String to extract the command from
|
|
|
|
:return: the command if `text` is a command (according to is_command), else None.
|
|
|
|
"""
|
|
|
|
return text.split()[0].split('@')[0][1:] if is_command(text) else None
|
|
|
|
|
|
|
|
|
|
|
|
def split_string(text, chars_per_string):
|
|
|
|
"""
|
|
|
|
Splits one string into multiple strings, with a maximum amount of `chars_per_string` characters per string.
|
|
|
|
This is very useful for splitting one giant message into multiples.
|
|
|
|
|
|
|
|
:param text: The text to split
|
|
|
|
:param chars_per_string: The number of characters per line the text is split into.
|
|
|
|
:return: The splitted text as a list of strings.
|
|
|
|
"""
|
|
|
|
return [text[i:i + chars_per_string] for i in range(0, len(text), chars_per_string)]
|
2015-10-01 23:03:54 +03:00
|
|
|
|
|
|
|
# CREDITS TO http://stackoverflow.com/questions/12317940#answer-12320352
|
|
|
|
def or_set(self):
|
|
|
|
self._set()
|
|
|
|
self.changed()
|
|
|
|
|
|
|
|
|
|
|
|
def or_clear(self):
|
|
|
|
self._clear()
|
|
|
|
self.changed()
|
|
|
|
|
|
|
|
|
|
|
|
def orify(e, changed_callback):
|
|
|
|
e._set = e.set
|
|
|
|
e._clear = e.clear
|
|
|
|
e.changed = changed_callback
|
|
|
|
e.set = lambda: or_set(e)
|
|
|
|
e.clear = lambda: or_clear(e)
|
|
|
|
|
|
|
|
def OrEvent(*events):
|
|
|
|
or_event = threading.Event()
|
|
|
|
def changed():
|
|
|
|
bools = [e.is_set() for e in events]
|
|
|
|
if any(bools):
|
|
|
|
or_event.set()
|
|
|
|
else:
|
|
|
|
or_event.clear()
|
2015-10-03 13:48:56 +03:00
|
|
|
|
|
|
|
def busy_wait():
|
|
|
|
while not or_event.is_set():
|
|
|
|
or_event._wait(3)
|
|
|
|
|
2015-10-01 23:03:54 +03:00
|
|
|
for e in events:
|
|
|
|
orify(e, changed)
|
2015-10-03 13:48:56 +03:00
|
|
|
or_event._wait = or_event.wait
|
|
|
|
or_event.wait = busy_wait
|
2015-10-01 23:03:54 +03:00
|
|
|
changed()
|
|
|
|
return or_event
|
2016-03-17 08:18:08 +03:00
|
|
|
|
|
|
|
def extract_arguments(text):
|
|
|
|
"""
|
|
|
|
Returns the argument after the command.
|
|
|
|
|
|
|
|
Examples:
|
|
|
|
extract_arguments("/get name"): 'name'
|
|
|
|
extract_arguments("/get"): ''
|
|
|
|
extract_arguments("/get@botName name"): 'name'
|
|
|
|
|
|
|
|
:param text: String to extract the arguments from a command
|
|
|
|
:return: the arguments if `text` is a command (according to is_command), else None.
|
|
|
|
"""
|
2016-03-18 05:47:06 +03:00
|
|
|
regexp = re.compile("\/\w*(@\w*)*\s*([\s\S]*)",re.IGNORECASE)
|
2016-03-17 08:18:08 +03:00
|
|
|
result = regexp.match(text)
|
2016-03-17 08:21:02 +03:00
|
|
|
return result.group(2) if is_command(text) else None
|