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-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-09 16:31:46 +00:00
|
|
|
from decimal import Decimal
|
|
|
|
|
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
|
|
|
|
|
|
|
class MOError(Exception):
|
|
|
|
pass
|
|
|
|
|
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
|
|
|
|
|
|
|
|
This base class is representing int and Decimal. It stocks its value in
|
|
|
|
self.value and it
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self, value):
|
|
|
|
""" Initiate the MO
|
|
|
|
|
|
|
|
It should be idempotent.
|
|
|
|
|
|
|
|
>>> 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):
|
|
|
|
""" Factory to ensure that a value is a MO before using it """
|
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
|
|
|
|
|
|
|
return MO(value)
|
|
|
|
|
|
|
|
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-09 16:31:46 +00:00
|
|
|
class MOnumber(MO):
|
|
|
|
|
|
|
|
""" Base number math object (int or Decimal) """
|
|
|
|
|
|
|
|
def __init__(self, value, negative=False):
|
|
|
|
""" 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):
|
|
|
|
...
|
|
|
|
mapytex.calculus.core.MO.mo.MOError: The value of an MOnumber need to be a int, a float or a Decimal
|
|
|
|
|
|
|
|
"""
|
|
|
|
try:
|
|
|
|
val = value.value
|
|
|
|
except AttributeError:
|
|
|
|
val = value
|
|
|
|
|
|
|
|
if isinstance(val, int) or isinstance(val, Decimal):
|
|
|
|
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-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):
|
|
|
|
...
|
|
|
|
mapytex.calculus.core.MO.mo.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-09 16:31:46 +00:00
|
|
|
mapytex.calculus.core.MO.mo.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-09 16:31:46 +00:00
|
|
|
mapytex.calculus.core.MO.mo.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
|
|
|
|
|
|
|
|
# -----------------------------
|
|
|
|
# Reglages pour 'vim'
|
|
|
|
# vim:set autoindent expandtab tabstop=4 shiftwidth=4:
|
|
|
|
# cursor: 16 del
|