core/homeassistant/util/enum.py

29 lines
702 B
Python
Raw Normal View History

"""Helpers for working with enums."""
2023-02-12 09:57:36 +00:00
from collections.abc import Callable
import contextlib
from enum import Enum
2023-02-12 09:57:36 +00:00
from typing import TYPE_CHECKING, Any, TypeVar
# https://github.com/python/mypy/issues/5107
if TYPE_CHECKING:
_LruCacheT = TypeVar("_LruCacheT", bound=Callable)
def lru_cache(func: _LruCacheT) -> _LruCacheT:
"""Stub for lru_cache."""
else:
from functools import lru_cache
_EnumT = TypeVar("_EnumT", bound=Enum)
2023-02-12 09:57:36 +00:00
@lru_cache
def try_parse_enum(cls: type[_EnumT], value: Any) -> _EnumT | None:
"""Try to parse the value into an Enum.
Return None if parsing fails.
"""
with contextlib.suppress(ValueError):
return cls(value)
return None