2018-03-08 14:01:47 +00:00
|
|
|
#! /usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# vim:fenc=utf-8
|
|
|
|
#
|
|
|
|
# Copyright © 2017 lafrite <lafrite@Poivre>
|
|
|
|
#
|
|
|
|
# Distributed under terms of the MIT license.
|
|
|
|
|
2018-03-13 11:43:48 +00:00
|
|
|
from decimal import Decimal
|
2018-03-14 08:04:13 +00:00
|
|
|
from .exceptions import MOError
|
2018-03-10 05:44:01 +00:00
|
|
|
from ..coroutine import coroutine, STOOOP
|
2018-03-10 13:08:28 +00:00
|
|
|
from ..renders import tree2txt, tree2tex
|
2018-03-15 13:38:25 +00:00
|
|
|
from functools import total_ordering
|
2018-03-09 16:31:46 +00:00
|
|
|
|
2018-03-10 05:44:01 +00:00
|
|
|
|
2018-03-09 16:31:46 +00:00
|
|
|
__all__ = ["moify", "MO", "MOstr"]
|
2018-03-08 14:01:47 +00:00
|
|
|
|
2018-03-09 16:31:46 +00:00
|
|
|
@coroutine
|
|
|
|
def moify(target):
|
|
|
|
""" Coroutine which try to convert everything into an MO """
|
|
|
|
try:
|
|
|
|
target_ = target()
|
|
|
|
except TypeError:
|
|
|
|
target_ = target
|
|
|
|
|
|
|
|
try:
|
|
|
|
while True:
|
|
|
|
tok = yield
|
|
|
|
try:
|
|
|
|
target_.send(MOnumber(tok))
|
|
|
|
except MOError:
|
|
|
|
try:
|
|
|
|
target_.send(MOstr(tok))
|
|
|
|
except MOError:
|
|
|
|
target_.send(tok)
|
|
|
|
|
|
|
|
except STOOOP as err:
|
|
|
|
yield target_.throw(err)
|
|
|
|
|
|
|
|
|
2018-03-08 14:01:47 +00:00
|
|
|
class MO(object):
|
|
|
|
|
|
|
|
"""MO for math object
|
|
|
|
|
2018-03-13 11:43:48 +00:00
|
|
|
This base class is representing int and Decimal. It stocks its value in
|
|
|
|
self.value and it
|
|
|
|
|
2018-03-08 14:01:47 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self, value):
|
|
|
|
""" Initiate the MO
|
|
|
|
|
|
|
|
It should be idempotent.
|
2018-03-13 11:43:48 +00:00
|
|
|
|
2018-03-08 14:01:47 +00:00
|
|
|
>>> a = MO(3)
|
|
|
|
>>> a
|
|
|
|
<MO 3>
|
|
|
|
>>> a = MO(a)
|
|
|
|
>>> a
|
|
|
|
<MO 3>
|
|
|
|
"""
|
|
|
|
try:
|
|
|
|
self.value = value.value
|
|
|
|
except AttributeError:
|
|
|
|
self.value = value
|
|
|
|
|
|
|
|
self.is_scalar = True
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def factory(cls, value):
|
2018-03-14 08:42:10 +00:00
|
|
|
""" Factory to ensure that a value is a MO before using it
|
|
|
|
|
|
|
|
Idempotent??
|
|
|
|
|
|
|
|
>>> MO.factory("x")
|
|
|
|
<MOstr x>
|
|
|
|
>>> MO.factory(2)
|
|
|
|
<MOnumber 2>
|
|
|
|
>>> MO.factory(2.3)
|
|
|
|
<MOnumber 2.29999999999999982236431605997495353221893310546875>
|
|
|
|
>>> MO.factory(Decimal("2.3"))
|
|
|
|
<MOnumber 2.3>
|
|
|
|
>>> x = MO.factory("x")
|
|
|
|
>>> MO.factory(x)
|
|
|
|
<MOstr x>
|
|
|
|
"""
|
2018-03-11 15:34:41 +00:00
|
|
|
if isinstance(value, str):
|
2018-03-08 14:01:47 +00:00
|
|
|
return MOstr(value)
|
2018-03-11 15:34:41 +00:00
|
|
|
elif isinstance(value, int) \
|
|
|
|
or isinstance(value, Decimal) \
|
|
|
|
or isinstance(value, float):
|
|
|
|
return MOnumber(value)
|
|
|
|
elif isinstance(value, MO):
|
|
|
|
return value
|
2018-03-08 14:01:47 +00:00
|
|
|
|
2018-03-14 08:42:10 +00:00
|
|
|
raise MOError("Can't convert it into a MO."
|
|
|
|
f"Need str, int, Decimal, float or MO, got {value}")
|
2018-03-08 14:01:47 +00:00
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return f"<{self.__class__.__name__} {self.__txt__}>"
|
|
|
|
|
|
|
|
def __str__(self):
|
2018-03-10 05:03:55 +00:00
|
|
|
return str(self.value)
|
2018-03-08 14:01:47 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
def __txt__(self):
|
2018-03-10 05:44:01 +00:00
|
|
|
try:
|
|
|
|
return tree2txt(self.value)
|
|
|
|
except AttributeError:
|
|
|
|
return str(self.value)
|
2018-03-08 14:01:47 +00:00
|
|
|
|
2018-03-10 13:08:28 +00:00
|
|
|
@property
|
|
|
|
def __tex__(self):
|
|
|
|
try:
|
|
|
|
return tree2tex(self.value)
|
|
|
|
except AttributeError:
|
|
|
|
return str(self.value)
|
|
|
|
|
2018-03-10 05:44:01 +00:00
|
|
|
|
2018-03-15 13:38:25 +00:00
|
|
|
@total_ordering
|
2018-03-09 16:31:46 +00:00
|
|
|
class MOnumber(MO):
|
|
|
|
|
|
|
|
""" Base number math object (int or Decimal) """
|
|
|
|
|
2018-03-13 11:43:48 +00:00
|
|
|
def __init__(self, value):
|
2018-03-09 16:31:46 +00:00
|
|
|
""" Initiate a number MO
|
|
|
|
|
|
|
|
>>> MOnumber(23)
|
|
|
|
<MOnumber 23>
|
|
|
|
>>> MOnumber(-23)
|
2018-03-10 05:03:55 +00:00
|
|
|
<MOnumber - 23>
|
2018-03-09 16:31:46 +00:00
|
|
|
>>> MOnumber(23.3)
|
|
|
|
<MOnumber 23.300000000000000710542735760100185871124267578125>
|
|
|
|
>>> MOnumber(Decimal("23.3"))
|
|
|
|
<MOnumber 23.3>
|
2018-03-10 05:03:55 +00:00
|
|
|
>>> MOnumber(Decimal("-23.3"))
|
|
|
|
<MOnumber - 23.3>
|
2018-03-09 16:31:46 +00:00
|
|
|
>>> a = MOnumber(23)
|
|
|
|
>>> MOnumber(a)
|
|
|
|
<MOnumber 23>
|
|
|
|
>>> MOnumber("a")
|
|
|
|
Traceback (most recent call last):
|
|
|
|
...
|
2018-03-14 08:04:13 +00:00
|
|
|
mapytex.calculus.core.MO.exceptions.MOError: The value of an MOnumber need to be a int, a float or a Decimal
|
2018-03-09 16:31:46 +00:00
|
|
|
|
|
|
|
"""
|
|
|
|
try:
|
|
|
|
val = value.value
|
|
|
|
except AttributeError:
|
|
|
|
val = value
|
|
|
|
|
2018-03-13 11:43:48 +00:00
|
|
|
if isinstance(val, (int, Decimal)):
|
2018-03-09 16:31:46 +00:00
|
|
|
MO.__init__(self, value)
|
|
|
|
elif isinstance(val, float):
|
|
|
|
MO.__init__(self, Decimal(val))
|
|
|
|
else:
|
|
|
|
raise MOError("The value of an MOnumber need to be a int, a float or a Decimal")
|
|
|
|
|
2018-03-10 05:03:55 +00:00
|
|
|
@property
|
|
|
|
def __txt__(self):
|
2018-03-11 17:04:47 +00:00
|
|
|
if self.value >= 0:
|
2018-03-10 05:03:55 +00:00
|
|
|
return str(self.value)
|
|
|
|
|
|
|
|
return f"- {abs(self.value)}"
|
|
|
|
|
2018-03-10 13:08:28 +00:00
|
|
|
@property
|
|
|
|
def __tex__(self):
|
|
|
|
if self.value > 0:
|
|
|
|
return str(self.value)
|
|
|
|
|
|
|
|
return f"- {abs(self.value)}"
|
2018-03-13 11:43:48 +00:00
|
|
|
|
2018-03-13 15:57:38 +00:00
|
|
|
def __add__(self, other):
|
|
|
|
""" Adding a MOnumber """
|
|
|
|
try:
|
|
|
|
return self.value + other.value
|
|
|
|
except AttributeError:
|
|
|
|
return self.value + other
|
|
|
|
|
|
|
|
def __radd__(self, other):
|
|
|
|
""" rAdding a MOnumber """
|
|
|
|
try:
|
|
|
|
return self.value + other.value
|
|
|
|
except AttributeError:
|
|
|
|
return self.value + other
|
|
|
|
|
|
|
|
def __sub__(self, other):
|
|
|
|
""" Subing a MOnumber """
|
|
|
|
try:
|
|
|
|
return self.value - other.value
|
|
|
|
except AttributeError:
|
|
|
|
return self.value - other
|
|
|
|
|
|
|
|
def __rsub__(self, other):
|
|
|
|
""" rSubing a MOnumber """
|
|
|
|
try:
|
|
|
|
return self.value - other.value
|
|
|
|
except AttributeError:
|
|
|
|
return self.value - other
|
|
|
|
|
|
|
|
def __mul__(self, other):
|
|
|
|
""" Multiply a MOnumber """
|
|
|
|
try:
|
|
|
|
return self.value * other.value
|
|
|
|
except AttributeError:
|
|
|
|
return self.value * other
|
|
|
|
|
|
|
|
def __rmul__(self, other):
|
|
|
|
""" rMultiply a MOnumber """
|
|
|
|
try:
|
|
|
|
return self.value * other.value
|
|
|
|
except AttributeError:
|
|
|
|
return self.value * other
|
|
|
|
|
|
|
|
def __truediv__(self, other):
|
|
|
|
""" Divide a MOnumber """
|
|
|
|
try:
|
|
|
|
return self.value / other.value
|
|
|
|
except AttributeError:
|
|
|
|
return self.value / other
|
|
|
|
|
|
|
|
def __rtruediv__(self, other):
|
|
|
|
""" rDivide a MOnumber """
|
|
|
|
try:
|
|
|
|
return self.value / other.value
|
|
|
|
except AttributeError:
|
|
|
|
return self.value / other
|
|
|
|
|
|
|
|
def __floordiv__(self, other):
|
|
|
|
""" Integer Division a MOnumber """
|
|
|
|
try:
|
|
|
|
return self.value // other.value
|
|
|
|
except AttributeError:
|
|
|
|
return self.value // other
|
|
|
|
|
|
|
|
def __rfloordiv__(self, other):
|
|
|
|
""" rInteger Division a MOnumber """
|
|
|
|
try:
|
|
|
|
return other.value // self.value
|
|
|
|
except AttributeError:
|
|
|
|
return other // self.value
|
|
|
|
|
|
|
|
def __mod__(self, other):
|
|
|
|
""" Moduling a MOnumber """
|
|
|
|
try:
|
|
|
|
return self.value % other.value
|
|
|
|
except AttributeError:
|
|
|
|
return self.value % other
|
|
|
|
|
|
|
|
def __rmod__(self, other):
|
|
|
|
""" rModuling a MOnumber """
|
|
|
|
try:
|
|
|
|
return other.value % self.value
|
|
|
|
except AttributeError:
|
|
|
|
return other % self.value
|
|
|
|
|
|
|
|
def __eq__(self, other):
|
|
|
|
""" == a MOnumber """
|
|
|
|
try:
|
|
|
|
return self.value == other.value
|
|
|
|
except AttributeError:
|
|
|
|
return self.value == other
|
|
|
|
|
|
|
|
def __lt__(self, other):
|
|
|
|
""" < a MOnumber """
|
|
|
|
try:
|
|
|
|
return self.value < other.value
|
|
|
|
except AttributeError:
|
|
|
|
return self.value < other
|
|
|
|
|
|
|
|
def __hash__(self):
|
|
|
|
return self.value.__hash__()
|
|
|
|
|
2018-03-08 14:01:47 +00:00
|
|
|
class MOstr(MO):
|
|
|
|
|
|
|
|
""" Unknown math object like x or n"""
|
|
|
|
|
2018-03-10 05:44:01 +00:00
|
|
|
def __init__(self, value):
|
2018-03-08 14:01:47 +00:00
|
|
|
""" Initiate a string MO
|
|
|
|
|
|
|
|
>>> a = MOstr("x")
|
|
|
|
>>> a
|
|
|
|
<MOstr x>
|
|
|
|
>>> b = MOstr(a)
|
|
|
|
>>> b
|
|
|
|
<MOstr x>
|
|
|
|
|
2018-03-09 16:31:46 +00:00
|
|
|
>>> a = MOstr("+")
|
|
|
|
Traceback (most recent call last):
|
|
|
|
...
|
2018-03-14 08:04:13 +00:00
|
|
|
mapytex.calculus.core.MO.exceptions.MOError: An MOstr should be initiate with a alpha string, got +
|
2018-03-08 14:01:47 +00:00
|
|
|
>>> MOstr("ui")
|
|
|
|
Traceback (most recent call last):
|
|
|
|
...
|
2018-03-14 08:04:13 +00:00
|
|
|
mapytex.calculus.core.MO.exceptions.MOError: An MOstr should be initiate with a single caracter string, got ui
|
2018-03-08 14:01:47 +00:00
|
|
|
>>> MOstr(2)
|
|
|
|
Traceback (most recent call last):
|
|
|
|
...
|
2018-03-14 08:04:13 +00:00
|
|
|
mapytex.calculus.core.MO.exceptions.MOError: An MOstr should be initiate with a string - the unknown, got 2
|
2018-03-08 14:01:47 +00:00
|
|
|
|
|
|
|
"""
|
|
|
|
try:
|
|
|
|
val = value.value
|
|
|
|
except AttributeError:
|
|
|
|
val = value
|
|
|
|
|
|
|
|
if not isinstance(val, str):
|
2018-03-09 16:31:46 +00:00
|
|
|
raise MOError(f"An MOstr should be initiate with a string - the unknown, got {val}")
|
2018-03-08 14:01:47 +00:00
|
|
|
if len(val) != 1:
|
2018-03-09 16:31:46 +00:00
|
|
|
raise MOError(f"An MOstr should be initiate with a single caracter string, got {val}")
|
|
|
|
if not val.isalpha():
|
|
|
|
raise MOError(f"An MOstr should be initiate with a alpha string, got {val}")
|
2018-03-08 14:01:47 +00:00
|
|
|
|
|
|
|
MO.__init__(self, value)
|
|
|
|
self.is_scalar = False
|
2018-03-13 11:43:48 +00:00
|
|
|
|
2018-03-08 14:01:47 +00:00
|
|
|
# -----------------------------
|
|
|
|
# Reglages pour 'vim'
|
|
|
|
# vim:set autoindent expandtab tabstop=4 shiftwidth=4:
|
|
|
|
# cursor: 16 del
|