File size: 13,103 Bytes
d2c1791 639ed6f 1a85f63 fbdf819 1a85f63 639ed6f ba7196e 639ed6f 8e99545 8cd94a7 639ed6f 2b4b714 639ed6f 22947dc 639ed6f 0ae21d3 22947dc 639ed6f 22947dc 639ed6f 22947dc 639ed6f 22947dc 639ed6f 22947dc 639ed6f 22947dc 639ed6f 22947dc 639ed6f 22947dc 639ed6f 2b4b714 22947dc 523aeee b548ba5 48acd77 523aeee b548ba5 38e6801 2b4b714 8e99545 8cd94a7 8e99545 8cd94a7 8e99545 8cd94a7 8e99545 8cd94a7 8e99545 8cd94a7 8e99545 8cd94a7 8e99545 8cd94a7 8e99545 8cd94a7 8e99545 8cd94a7 8e99545 38e6801 2b4b714 48acd77 fbdf819 1a85f63 fbdf819 1a85f63 fbdf819 d58f531 1a85f63 d58f531 3d3a51b d58f531 0ae21d3 ba7196e 0ae21d3 9fe45ba ba7196e 0ae21d3 9fe45ba 0ae21d3 1a85f63 d2c1791 c096080 d2c1791 c096080 8e99545 |
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 |
import copy
import functools
import importlib.util
import json
import os
import random
import re
import time
from collections import OrderedDict
from contextvars import ContextVar
from functools import wraps
from typing import Any, Dict, Optional
from urllib.error import HTTPError as UrllibHTTPError
from requests.exceptions import ConnectionError, HTTPError
from requests.exceptions import Timeout as TimeoutError
from .logging_utils import get_logger
from .settings_utils import get_settings
from .text_utils import is_made_of_sub_strings
logger = get_logger()
settings = get_settings()
def retry_connection_with_exponential_backoff(
max_retries=None,
retry_exceptions=(
ConnectionError,
TimeoutError,
HTTPError,
FileNotFoundError,
UrllibHTTPError,
),
backoff_factor=1,
):
"""Decorator that implements retry with exponential backoff for network operations.
Also handles errors that were triggered by the specified retry exceptions,
whether they're direct causes or part of the exception context.
Args:
max_retries: Maximum number of retry attempts (falls back to settings if None)
retry_exceptions: Tuple of exceptions that should trigger a retry
backoff_factor: Base delay factor in seconds for backoff calculation
Returns:
The decorated function with retry logic
"""
def decorator(func):
@functools.wraps(func)
def wrapper(*args, **kwargs):
# Get max_retries from settings if not provided
retries = (
max_retries
if max_retries is not None
else settings.max_connection_retries
)
for attempt in range(retries):
try:
return func(*args, **kwargs)
except Exception as e:
# Check if this exception or any of its causes match the retry exceptions
should_retry = False
current_exc = e
# Check the exception chain for both __cause__ (explicit) and __context__ (implicit)
visited_exceptions = (
set()
) # To prevent infinite loops in rare cyclic exception references
while (
current_exc is not None
and id(current_exc) not in visited_exceptions
):
visited_exceptions.add(id(current_exc))
if isinstance(current_exc, retry_exceptions):
should_retry = True
break
# First check __cause__ (from "raise X from Y")
if current_exc.__cause__ is not None:
current_exc = current_exc.__cause__
# Then check __context__ (from "try: ... except: raise X")
elif current_exc.__context__ is not None:
current_exc = current_exc.__context__
else:
# No more causes in the chain
break
if not should_retry:
# Not a retry exception or caused by a retry exception, so re-raise
raise
if attempt >= retries - 1: # Last attempt
raise # Re-raise the last exception
# Calculate exponential backoff with jitter
wait_time = backoff_factor * (2**attempt) + random.uniform(0, 1)
logger.warning(
f"{func.__name__} failed (attempt {attempt+1}/{retries}). "
f"Retrying in {wait_time:.2f}s. Error: {e!s}"
)
time.sleep(wait_time)
raise ValueError("there was a problem") from None
return wrapper
return decorator
class Singleton(type):
_instances = {}
def __call__(cls, *args, **kwargs):
if cls not in cls._instances:
cls._instances[cls] = super().__call__(*args, **kwargs)
return cls._instances[cls]
class LRUCache:
def __init__(self, max_size: Optional[int] = 10):
self._max_size = max_size
self._context_cache = ContextVar("context_lru_cache", default=None)
def _get_cache(self):
cache = self._context_cache.get()
if cache is None:
cache = OrderedDict()
self._context_cache.set(cache)
return cache
def __setitem__(self, key, value):
cache = self._get_cache()
if key in cache:
cache.pop(key)
cache[key] = value
if self._max_size is not None:
while len(cache) > self._max_size:
cache.popitem(last=False)
def __getitem__(self, key):
cache = self._get_cache()
if key in cache:
value = cache.pop(key)
cache[key] = value
return value
raise KeyError(f"{key} not found in cache")
def get(self, key, default=None):
cache = self._get_cache()
if key in cache:
value = cache.pop(key)
cache[key] = value
return value
return default
def clear(self):
"""Clear all items from the cache."""
cache = self._get_cache()
cache.clear()
def __contains__(self, key):
return key in self._get_cache()
def __len__(self):
return len(self._get_cache())
def __repr__(self):
return f"LRUCache(max_size={self._max_size}, items={list(self._get_cache().items())})"
def lru_cache_decorator(max_size=128):
def decorator(func):
cache = LRUCache(max_size=max_size)
@wraps(func)
def wrapper(*args, **kwargs):
key = args
if kwargs:
key += tuple(sorted(kwargs.items()))
if key in cache:
return cache[key]
result = func(*args, **kwargs)
cache[key] = result
return result
wrapper.cache_clear = cache.clear
return wrapper
return decorator
@lru_cache_decorator(max_size=None)
def artifacts_json_cache(artifact_path):
return load_json(artifact_path)
def flatten_dict(
d: Dict[str, Any], parent_key: str = "", sep: str = "_"
) -> Dict[str, Any]:
items = []
for k, v in d.items():
new_key = parent_key + sep + k if parent_key else k
if isinstance(v, dict):
items.extend(flatten_dict(v, new_key, sep=sep).items())
else:
items.append((new_key, v))
return dict(items)
def load_json(path):
with open(path) as f:
try:
return json.load(f)
except json.decoder.JSONDecodeError as e:
with open(path) as f:
file_content = "\n".join(f.readlines())
raise RuntimeError(
f"Failed to decode json file at '{path}' with file content:\n{file_content}"
) from e
def save_to_file(path, data):
with open(path, "w") as f:
f.write(data)
f.write("\n")
def json_dump(data):
return json.dumps(data, indent=4, ensure_ascii=False)
def is_package_installed(package_name):
"""Check if a package is installed.
Parameters:
- package_name (str): The name of the package to check.
Returns:
- bool: True if the package is installed, False otherwise.
"""
unitxt_pkg = importlib.util.find_spec(package_name)
return unitxt_pkg is not None
def is_module_available(module_name):
"""Check if a module is available in the current Python environment.
Parameters:
- module_name (str): The name of the module to check.
Returns:
- bool: True if the module is available, False otherwise.
"""
try:
__import__(module_name)
return True
except ImportError:
return False
def remove_numerics_and_quoted_texts(input_str):
# Remove floats first to avoid leaving stray periods
input_str = re.sub(r"\d+\.\d+", "", input_str)
# Remove integers
input_str = re.sub(r"\d+", "", input_str)
# Remove strings in single quotes
input_str = re.sub(r"'.*?'", "", input_str)
# Remove strings in double quotes
input_str = re.sub(r'".*?"', "", input_str)
# Remove strings in triple quotes
return re.sub(r'""".*?"""', "", input_str, flags=re.DOTALL)
def safe_eval(expression: str, context: dict, allowed_tokens: list) -> any:
"""Evaluates a given expression in a restricted environment, allowing only specified tokens and context variables.
Args:
expression (str): The expression to evaluate.
context (dict): A dictionary mapping variable names to their values, which
can be used in the expression.
allowed_tokens (list): A list of strings representing allowed tokens (such as
operators, function names, etc.) that can be used in the expression.
Returns:
any: The result of evaluating the expression.
Raises:
ValueError: If the expression contains tokens not in the allowed list or context keys.
Note:
This function should be used carefully, as it employs `eval`, which can
execute arbitrary code. The function attempts to mitigate security risks
by restricting the available tokens and not exposing built-in functions.
"""
allowed_sub_strings = list(context.keys()) + allowed_tokens
if is_made_of_sub_strings(
remove_numerics_and_quoted_texts(expression), allowed_sub_strings
):
return eval(expression, {"__builtins__": {}}, context)
raise ValueError(
f"The expression '{expression}' can not be evaluated because it contains tokens outside the allowed list of {allowed_sub_strings}."
)
def import_module_from_file(file_path):
# Get the module name (file name without extension)
module_name = os.path.splitext(os.path.basename(file_path))[0]
# Create a module specification
spec = importlib.util.spec_from_file_location(module_name, file_path)
# Create a new module based on the specification
module = importlib.util.module_from_spec(spec)
# Load the module
spec.loader.exec_module(module)
return module
def deep_copy(obj):
"""Creates a deep copy of the given object.
Args:
obj: The object to be deep copied.
Returns:
A deep copy of the original object.
"""
return copy.deepcopy(obj)
def shallow_copy(obj):
"""Creates a shallow copy of the given object.
Args:
obj: The object to be shallow copied.
Returns:
A shallow copy of the original object.
"""
return copy.copy(obj)
def recursive_copy(obj, internal_copy=None):
"""Recursively copies an object with a selective copy method.
For `list`, `dict`, and `tuple` types, it recursively copies their contents.
For other types, it uses the provided `internal_copy` function if available.
Objects without a `copy` method are returned as is.
Args:
obj: The object to be copied.
internal_copy (callable, optional): The copy function to use for non-container objects.
If `None`, objects without a `copy` method are returned as is.
Returns:
The recursively copied object.
"""
# Handle dictionaries
if isinstance(obj, dict):
return type(obj)(
{key: recursive_copy(value, internal_copy) for key, value in obj.items()}
)
# Handle named tuples
if isinstance(obj, tuple) and hasattr(obj, "_fields"):
return type(obj)(*(recursive_copy(item, internal_copy) for item in obj))
# Handle tuples and lists
if isinstance(obj, (tuple, list)):
return type(obj)(recursive_copy(item, internal_copy) for item in obj)
if internal_copy is None:
return obj
return internal_copy(obj)
def recursive_deep_copy(obj):
"""Performs a recursive deep copy of the given object.
This function uses `deep_copy` as the internal copy method for non-container objects.
Args:
obj: The object to be deep copied.
Returns:
A recursively deep-copied version of the original object.
"""
return recursive_copy(obj, deep_copy)
def recursive_shallow_copy(obj):
"""Performs a recursive shallow copy of the given object.
This function uses `shallow_copy` as the internal copy method for non-container objects.
Args:
obj: The object to be shallow copied.
Returns:
A recursively shallow-copied version of the original object.
"""
return recursive_copy(obj, shallow_copy)
class LongString(str):
def __new__(cls, value, *, repr_str=None):
obj = super().__new__(cls, value)
obj._repr_str = repr_str
return obj
def __repr__(self):
if self._repr_str is not None:
return self._repr_str
return super().__repr__()
|