1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525
|
# ==================================================================================================================== #
# _____ _ _ ____ _ _ ____ ____ __ #
# _ __ _ |_ _|__ ___ | (_)_ __ __ _ / ___|__ _| | | __ ) _ _| _ \ ___ / _| #
# | '_ \| | | || |/ _ \ / _ \| | | '_ \ / _` || | / _` | | | _ \| | | | |_) / _ \ |_ #
# | |_) | |_| || | (_) | (_) | | | | | | (_| || |__| (_| | | | |_) | |_| | _ < __/ _| #
# | .__/ \__, ||_|\___/ \___/|_|_|_| |_|\__, (_)____\__,_|_|_|____/ \__, |_| \_\___|_| #
# |_| |___/ |___/ |___/ #
# ==================================================================================================================== #
# Authors: #
# Patrick Lehmann #
# #
# License: #
# ==================================================================================================================== #
# Copyright 2017-2026 Patrick Lehmann - Bötzingen, Germany #
# #
# Licensed under the Apache License, Version 2.0 (the "License"); #
# you may not use this file except in compliance with the License. #
# You may obtain a copy of the License at #
# #
# http://www.apache.org/licenses/LICENSE-2.0 #
# #
# Unless required by applicable law or agreed to in writing, software #
# distributed under the License is distributed on an "AS IS" BASIS, #
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. #
# See the License for the specific language governing permissions and #
# limitations under the License. #
# #
# SPDX-License-Identifier: Apache-2.0 #
# ==================================================================================================================== #
#
"""
Auxiliary classes to implement call-by-reference.
.. hint::
See :ref:`high-level help <COMMON/CallByRef>` for explanations and usage examples.
"""
from decimal import Decimal
from typing import Any, Generic, TypeVar, Optional as Nullable
try:
from pyTooling.Decorators import export
from pyTooling.MetaClasses import ExtendedType
except (ImportError, ModuleNotFoundError): # pragma: no cover
print("[pyTooling.CallByRef] Could not import from 'pyTooling.*'!")
try:
from Decorators import export
from MetaClasses import ExtendedType
except (ImportError, ModuleNotFoundError) as ex: # pragma: no cover
print("[pyTooling.CallByRef] Could not import directly!")
raise ex
T = TypeVar("T")
@export
class CallByRefParam(Generic[T], metaclass=ExtendedType, slots=True):
"""
Implements a *call-by-reference* parameter.
.. seealso::
* :class:`CallByRefBoolParam` |br|
|rarr| A special *call-by-reference* implementation for boolean reference types.
* :class:`CallByRefIntParam` |br|
|rarr| A special *call-by-reference* implementation for integer reference types.
"""
Value: T #: internal value
def __init__(self, value: Nullable[T] = None) -> None:
"""Constructs a *call-by-reference* object for any type.
:param value: The value to be set as an initial value.
"""
self.Value = value
def __ilshift__(self, other: T) -> 'CallByRefParam[T]': # Starting with Python 3.11+, use typing.Self as return type
"""Assigns a value to the *call-by-reference* object.
:param other: The value to be assigned to this *call-by-reference* object.
:returns: Itself.
"""
self.Value = other
return self
# binary operators - comparison
def __eq__(self, other: Any) -> bool:
"""
Compare a CallByRefParam wrapped value with another instances (CallbyRefParam) or non-wrapped value for equality.
:param other: Parameter to compare against.
:returns: ``True``, if both values are equal.
"""
if isinstance(other, CallByRefParam):
return self.Value == other.Value
else:
return self.Value == other
def __ne__(self, other) -> bool:
"""
Compare a CallByRefParam wrapped value with another instances (CallbyRefParam) or non-wrapped value for inequality.
:param other: Parameter to compare against.
:returns: ``True``, if both values are unequal.
"""
if isinstance(other, CallByRefParam):
return self.Value != other.Value
else:
return self.Value != other
# Type conversion operators
def __repr__(self) -> str:
"""
Returns the wrapped object's string representation.
:returns: The string representation of the wrapped value.
"""
return repr(self.Value)
def __str__(self) -> str:
"""
Returns the wrapped object's string equivalent.
:returns: The string equivalent of the wrapped value.
"""
return str(self.Value)
@export
class CallByRefBoolParam(CallByRefParam):
"""A special *call-by-reference* implementation for boolean reference types."""
# Binary operators - comparison
def __eq__(self, other: Any) -> bool:
"""
Compare a CallByRefBoolParam wrapped boolean value with another instances (CallByRefBoolParam) or non-wrapped boolean value for equality.
:param other: Parameter to compare against.
:returns: ``True``, if both values are equal.
:raises TypeError: If parameter ``other`` is not of type :class:`bool` or :class:`CallByRefBoolParam`.
"""
if isinstance(other, bool):
return self.Value == other
elif isinstance(other, CallByRefBoolParam):
return self.Value == other.Value
else:
ex = TypeError(f"Second operand of type '{other.__class__.__name__}' is not supported by == operator.")
ex.add_note("Supported types for second operand: bool, CallByRefBoolParam")
raise ex
def __ne__(self, other) -> bool:
"""
Compare a CallByRefBoolParam wrapped boolean value with another instances (CallByRefBoolParam) or non-wrapped boolean value for inequality.
:param other: Parameter to compare against.
:returns: ``True``, if both values are unequal.
:raises TypeError: If parameter ``other`` is not of type :class:`bool` or :class:`CallByRefBoolParam`.
"""
if isinstance(other, bool):
return self.Value != other
elif isinstance(other, CallByRefBoolParam):
return self.Value != other.Value
else:
ex = TypeError(f"Second operand of type '{other.__class__.__name__}' is not supported by != operator.")
ex.add_note(f"Supported types for second operand: bool, CallByRefBoolParam")
raise ex
# Type conversion operators
def __bool__(self) -> bool:
"""
Type conversion to :class:`bool`.
:returns: The wrapped value.
"""
return self.Value
def __int__(self) -> int:
"""
Type conversion to :class:`int`.
:returns: The integer representation of the wrapped boolean value.
"""
return int(self.Value)
@export
class CallByRefIntParam(CallByRefParam):
"""A special *call-by-reference* implementation for integer reference types."""
# Unary operators
def __neg__(self) -> int:
"""Negate: -self."""
return -self.Value
def __pos__(self) -> int:
"""Positive: +self."""
return +self.Value
def __invert__(self) -> int:
"""Invert: ~self."""
return ~self.Value
# Binary operators - logical
def __and__(self, other: Any) -> int:
"""And: self & other."""
if isinstance(other, int):
return self.Value & other
else:
ex = TypeError(f"Second operand of type '{other.__class__.__name__}' is not supported by and operator.")
ex.add_note(f"Supported types for second operand: int")
raise ex
def __or__(self, other: Any) -> int:
"""Or: self | other."""
if isinstance(other, int):
return self.Value | other
else:
ex = TypeError(f"Second operand of type '{other.__class__.__name__}' is not supported by or operator.")
ex.add_note(f"Supported types for second operand: int")
raise ex
def __xor__(self, other: Any) -> int:
"""Xor: self ^ other."""
if isinstance(other, int):
return self.Value ^ other
else:
ex = TypeError(f"Second operand of type '{other.__class__.__name__}' is not supported by xor operator.")
ex.add_note(f"Supported types for second operand: int")
raise ex
# Binary inplace operators
def __iand__(self, other: Any) -> 'CallByRefIntParam': # Starting with Python 3.11+, use typing.Self as return type
"""Inplace and: self &= other."""
if isinstance(other, int):
self.Value &= other
return self
else:
ex = TypeError(f"Second operand of type '{other.__class__.__name__}' is not supported by &= operator.")
ex.add_note(f"Supported types for second operand: int")
raise ex
def __ior__(self, other: Any) -> 'CallByRefIntParam': # Starting with Python 3.11+, use typing.Self as return type
r"""Inplace or: self \|= other."""
if isinstance(other, int):
self.Value |= other
return self
else:
ex = TypeError(f"Second operand of type '{other.__class__.__name__}' is not supported by |= operator.")
ex.add_note(f"Supported types for second operand: int")
raise ex
def __ixor__(self, other: Any) -> 'CallByRefIntParam': # Starting with Python 3.11+, use typing.Self as return type
r"""Inplace or: self \|= other."""
if isinstance(other, int):
self.Value ^= other
return self
else:
ex = TypeError(f"Second operand of type '{other.__class__.__name__}' is not supported by ^= operator.")
ex.add_note(f"Supported types for second operand: int")
raise ex
# Binary operators - arithmetic
def __add__(self, other: Any) -> int:
"""Addition: self + other."""
if isinstance(other, int):
return self.Value + other
else:
ex = TypeError(f"Second operand of type '{other.__class__.__name__}' is not supported by + operator.")
ex.add_note(f"Supported types for second operand: int")
raise ex
def __sub__(self, other: Any) -> int:
"""Subtraction: self - other."""
if isinstance(other, int):
return self.Value - other
else:
ex = TypeError(f"Second operand of type '{other.__class__.__name__}' is not supported by - operator.")
ex.add_note(f"Supported types for second operand: int")
raise ex
def __truediv__(self, other: Any) -> int:
"""Division: self / other."""
if isinstance(other, int):
return self.Value / other
else:
ex = TypeError(f"Second operand of type '{other.__class__.__name__}' is not supported by / operator.")
ex.add_note(f"Supported types for second operand: int")
raise ex
def __floordiv__(self, other: Any) -> int:
"""Floor division: self // other."""
if isinstance(other, int):
return self.Value // other
else:
ex = TypeError(f"Second operand of type '{other.__class__.__name__}' is not supported by // operator.")
ex.add_note(f"Supported types for second operand: int")
raise ex
def __mul__(self, other: Any) -> int:
"""Multiplication: self * other."""
if isinstance(other, int):
return self.Value * other
else:
ex = TypeError(f"Second operand of type '{other.__class__.__name__}' is not supported by * operator.")
ex.add_note(f"Supported types for second operand: int")
raise ex
def __mod__(self, other: Any) -> int:
"""Modulo: self % other."""
if isinstance(other, int):
return self.Value % other
else:
ex = TypeError(f"Second operand of type '{other.__class__.__name__}' is not supported by % operator.")
ex.add_note(f"Supported types for second operand: int")
raise ex
def __pow__(self, other: Any) -> int:
"""Power: self ** other."""
if isinstance(other, int):
return self.Value ** other
else:
ex = TypeError(f"Second operand of type '{other.__class__.__name__}' is not supported by ** operator.")
ex.add_note(f"Supported types for second operand: int")
raise ex
# Binary inplace operators - arithmetic
def __iadd__(self, other: Any) -> 'CallByRefIntParam':
"""Addition: self += other."""
if isinstance(other, int):
self.Value += other
return self
else:
ex = TypeError(f"Second operand of type '{other.__class__.__name__}' is not supported by xor operator.")
ex.add_note(f"Supported types for second operand: int")
raise ex
def __isub__(self, other: Any) -> 'CallByRefIntParam':
"""Subtraction: self -= other."""
if isinstance(other, int):
self.Value -= other
return self
else:
ex = TypeError(f"Second operand of type '{other.__class__.__name__}' is not supported by xor operator.")
ex.add_note(f"Supported types for second operand: int")
raise ex
def __idiv__(self, other: Any) -> 'CallByRefIntParam':
"""Division: self /= other."""
if isinstance(other, int):
self.Value /= other
return self
else:
ex = TypeError(f"Second operand of type '{other.__class__.__name__}' is not supported by xor operator.")
ex.add_note(f"Supported types for second operand: int")
raise ex
def __ifloordiv__(self, other: Any) -> 'CallByRefIntParam':
"""Floor division: self // other."""
if isinstance(other, int):
self.Value //= other
return self
else:
ex = TypeError(f"Second operand of type '{other.__class__.__name__}' is not supported by xor operator.")
ex.add_note(f"Supported types for second operand: int")
raise ex
def __imul__(self, other: Any) -> 'CallByRefIntParam':
r"""Multiplication: self \*= other."""
if isinstance(other, int):
self.Value *= other
return self
else:
ex = TypeError(f"Second operand of type '{other.__class__.__name__}' is not supported by xor operator.")
ex.add_note(f"Supported types for second operand: int")
raise ex
def __imod__(self, other: Any) -> 'CallByRefIntParam':
"""Modulo: self %= other."""
if isinstance(other, int):
self.Value %= other
return self
else:
ex = TypeError(f"Second operand of type '{other.__class__.__name__}' is not supported by xor operator.")
ex.add_note(f"Supported types for second operand: int")
raise ex
def __ipow__(self, other: Any) -> 'CallByRefIntParam':
r"""Power: self \*\*= other."""
if isinstance(other, int):
self.Value **= other
return self
else:
ex = TypeError(f"Second operand of type '{other.__class__.__name__}' is not supported by xor operator.")
ex.add_note(f"Supported types for second operand: int")
raise ex
# Binary operators - comparison
def __eq__(self, other: Any) -> bool:
"""
Compare a CallByRefIntParam wrapped integer value with another instances (CallByRefIntParam) or non-wrapped integer value for equality.
:param other: Parameter to compare against.
:returns: ``True``, if both values are equal.
:raises TypeError: If parameter ``other`` is not of type :class:`int`, :class:`float`, :class:`complex`, :class:`Decimal` or :class:`CallByRefParam`.
"""
if isinstance(other, (int, float, complex, Decimal)) and not isinstance(other, bool):
return self.Value == other
elif isinstance(other, CallByRefIntParam):
return self.Value == other.Value
else:
ex = TypeError(f"Second operand of type '{other.__class__.__name__}' is not supported by == operator.")
ex.add_note(f"Supported types for second operand: int, float, complex, Decimal, CallByRefIntParam")
raise ex
def __ne__(self, other) -> bool:
"""
Compare a CallByRefIntParam wrapped integer value with another instances (CallByRefIntParam) or non-wrapped integer value for inequality.
:param other: Parameter to compare against.
:returns: ``True``, if both values are unequal.
:raises TypeError: If parameter ``other`` is not of type :class:`int`, :class:`float`, :class:`complex`, :class:`Decimal` or :class:`CallByRefParam`.
"""
if isinstance(other, (int, float, complex, Decimal)) and not isinstance(other, bool):
return self.Value != other
elif isinstance(other, CallByRefIntParam):
return self.Value != other.Value
else:
ex = TypeError(f"Second operand of type '{other.__class__.__name__}' is not supported by != operator.")
ex.add_note(f"Supported types for second operand: int, float, complex, Decimal, CallByRefIntParam")
raise ex
def __lt__(self, other: Any) -> bool:
"""
Compare a CallByRefIntParam wrapped integer value with another instances (CallByRefIntParam) or non-wrapped integer value for less-than.
:param other: Parameter to compare against.
:returns: ``True``, if the wrapped value is less than the other value.
:raises TypeError: If parameter ``other`` is not of type :class:`int`, :class:`float`, :class:`complex`, :class:`Decimal` or :class:`CallByRefParam`.
"""
if isinstance(other, (int, float, complex, Decimal)) and not isinstance(other, bool):
return self.Value < other
elif isinstance(other, CallByRefIntParam):
return self.Value < other.Value
else:
ex = TypeError(f"Second operand of type '{other.__class__.__name__}' is not supported by < operator.")
ex.add_note(f"Supported types for second operand: int, float, complex, Decimal, CallByRefIntParam")
raise ex
def __le__(self, other: Any) -> bool:
"""
Compare a CallByRefIntParam wrapped integer value with another instances (CallByRefIntParam) or non-wrapped integer value for less-than-or-equal.
:param other: Parameter to compare against.
:returns: ``True``, if the wrapped value is less than or equal the other value.
:raises TypeError: If parameter ``other`` is not of type :class:`int`, :class:`float`, :class:`complex`, :class:`Decimal` or :class:`CallByRefParam`.
"""
if isinstance(other, (int, float, complex, Decimal)) and not isinstance(other, bool):
return self.Value <= other
elif isinstance(other, CallByRefIntParam):
return self.Value <= other.Value
else:
ex = TypeError(f"Second operand of type '{other.__class__.__name__}' is not supported by <= operator.")
ex.add_note(f"Supported types for second operand: int, float, complex, Decimal, CallByRefIntParam")
raise ex
def __gt__(self, other: Any) -> bool:
"""
Compare a CallByRefIntParam wrapped integer value with another instances (CallByRefIntParam) or non-wrapped integer value for geater-than.
:param other: Parameter to compare against.
:returns: ``True``, if the wrapped value is greater than the other value.
:raises TypeError: If parameter ``other`` is not of type :class:`int`, :class:`float`, :class:`complex`, :class:`Decimal` or :class:`CallByRefParam`.
"""
if isinstance(other, (int, float, complex, Decimal)) and not isinstance(other, bool):
return self.Value > other
elif isinstance(other, CallByRefIntParam):
return self.Value > other.Value
else:
ex = TypeError(f"Second operand of type '{other.__class__.__name__}' is not supported by > operator.")
ex.add_note(f"Supported types for second operand: int, float, complex, Decimal, CallByRefIntParam")
raise ex
def __ge__(self, other: Any) -> bool:
"""
Compare a CallByRefIntParam wrapped integer value with another instances (CallByRefIntParam) or non-wrapped integer value for greater-than-or-equal.
:param other: Parameter to compare against.
:returns: ``True``, if the wrapped value is greater than or equal the other value.
:raises TypeError: If parameter ``other`` is not of type :class:`int`, :class:`float`, :class:`complex`, :class:`Decimal` or :class:`CallByRefParam`.
"""
if isinstance(other, (int, float, complex, Decimal)) and not isinstance(other, bool):
return self.Value >= other
elif isinstance(other, CallByRefIntParam):
return self.Value >= other.Value
else:
ex = TypeError(f"Second operand of type '{other.__class__.__name__}' is not supported by >= operator.")
ex.add_note(f"Supported types for second operand: int, float, complex, Decimal, CallByRefIntParam")
raise ex
# Type conversion operators
def __bool__(self) -> bool:
"""
Type conversion to :class:`bool`.
:returns: The boolean representation of the wrapped integer value.
"""
return bool(self.Value)
def __int__(self) -> int:
"""
Type conversion to :class:`int`.
:returns: The wrapped value."""
return self.Value
def __float__(self) -> float:
"""
Type conversion to :class:`float`.
:returns: The float representation of the wrapped integer value.
"""
return float(self.Value)
|