aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/prompt-toolkit/py2/prompt_toolkit/reactive.py
diff options
context:
space:
mode:
authornkozlovskiy <nmk@ydb.tech>2023-09-29 12:24:06 +0300
committernkozlovskiy <nmk@ydb.tech>2023-09-29 12:41:34 +0300
commite0e3e1717e3d33762ce61950504f9637a6e669ed (patch)
treebca3ff6939b10ed60c3d5c12439963a1146b9711 /contrib/python/prompt-toolkit/py2/prompt_toolkit/reactive.py
parent38f2c5852db84c7b4d83adfcb009eb61541d1ccd (diff)
downloadydb-e0e3e1717e3d33762ce61950504f9637a6e669ed.tar.gz
add ydb deps
Diffstat (limited to 'contrib/python/prompt-toolkit/py2/prompt_toolkit/reactive.py')
-rw-r--r--contrib/python/prompt-toolkit/py2/prompt_toolkit/reactive.py56
1 files changed, 56 insertions, 0 deletions
diff --git a/contrib/python/prompt-toolkit/py2/prompt_toolkit/reactive.py b/contrib/python/prompt-toolkit/py2/prompt_toolkit/reactive.py
new file mode 100644
index 0000000000..ec3aa06712
--- /dev/null
+++ b/contrib/python/prompt-toolkit/py2/prompt_toolkit/reactive.py
@@ -0,0 +1,56 @@
+"""
+Prompt_toolkit is designed a way that the amount of changing state is reduced
+to a minimum. Where possible, code is written in a pure functional way. In
+general, this results in code where the flow is very easy to follow: the value
+of a variable can be deducted from its first assignment.
+
+However, often, practicality and performance beat purity and some classes still
+have a changing state. In order to not having to care too much about
+transferring states between several components we use some reactive
+programming. Actually some kind of data binding.
+
+We introduce two types:
+
+- Filter: for binding a boolean state. They can be chained using & and |
+ operators. Have a look in the ``filters`` module. Resolving the actual value
+ of a filter happens by calling it.
+
+- Integer: for binding integer values. Reactive operations (like addition and
+ substraction) are not suppported. Resolving the actual value happens by
+ casting it to int, like ``int(integer)``. This way, it is possible to use
+ normal integers as well for static values.
+"""
+from __future__ import unicode_literals
+from abc import ABCMeta, abstractmethod
+from six import with_metaclass
+
+
+class Integer(with_metaclass(ABCMeta, object)):
+ """
+ Reactive integer -- anything that can be resolved to an ``int``.
+ """
+ @abstractmethod
+ def __int__(self):
+ return 0
+
+ @classmethod
+ def from_callable(cls, func):
+ """
+ Create an Integer-like object that calls the given function when it is
+ resolved to an int.
+ """
+ return _IntegerFromCallable(func)
+
+
+Integer.register(int)
+
+
+class _IntegerFromCallable(Integer):
+ def __init__(self, func=0):
+ self.func = func
+
+ def __repr__(self):
+ return 'Integer.from_callable(%r)' % self.func
+
+ def __int__(self):
+ return int(self.func())