PHP 8.3.30
Preview: serialization.py Size: 1.72 KB
/opt/imunify360/venv/lib64/python3.11/site-packages/defence360agent/utils/serialization.py

import functools
import logging
import pickle
from asyncio import iscoroutinefunction
from typing import Union, Callable

logger = logging.getLogger(__name__)


def _dump(path, obj):
    # separate function to mock in tests
    with open(path, "wb") as w:
        pickle.dump(obj, w)


def serialize_attr(*, path: str, attr: str):
    """
    Make decorator to serialize an object or object's attribute
    :param path: path to file to serialize into
    :param attr: attribute name to serialize
    """

    def decorator(f):
        @functools.wraps(f)
        def wrapper(self, *args, **kwargs):
            result = f(self, *args, **kwargs)
            obj = getattr(self, attr)
            logger.debug("Write %r to %r", obj, path)
            _dump(path, obj)
            return result

        @functools.wraps(f)
        async def async_wrapper(self, *args, **kwargs):
            result = await f(self, *args, **kwargs)
            obj = getattr(self, attr)
            logger.debug("Write %r to %r", obj, path)
            _dump(path, obj)
            return result

        if iscoroutinefunction(f):
            return async_wrapper
        return wrapper

    return decorator


def unserialize(*, path: str, fallback: Union[Callable, object] = None):
    """
    Restore an object from file
    :param path: path to read from
    :param fallback: return or call it if unserialization fails
    :return:
    """
    try:
        with open(path, "rb") as r:
            return pickle.load(r)
    except FileNotFoundError:
        logger.warning("Can't find %s to unserialize", path)
    except Exception as e:
        logger.error("Unserialize failed with %r. Returning an fallback", e)
    return fallback() if callable(fallback) else fallback

Directory Contents

Dirs: 1 × Files: 30

Name Size Perms Modified Actions
- drwxr-xr-x 2026-03-03 08:55:59
Edit Download
497 B lrw-r--r-- 2026-01-23 13:13:42
Edit Download
718 B lrw-r--r-- 2026-01-23 13:13:42
Edit Download
538 B lrw-r--r-- 2026-01-23 13:13:42
Edit Download
1.24 KB lrw-r--r-- 2026-01-23 13:13:42
Edit Download
7.72 KB lrw-r--r-- 2026-01-23 13:13:42
Edit Download
636 B lrw-r--r-- 2026-01-23 13:13:42
Edit Download
7.39 KB lrw-r--r-- 2026-01-23 13:13:42
Edit Download
14.41 KB lrw-r--r-- 2026-01-23 13:13:42
Edit Download
999 B lrw-r--r-- 2026-01-23 13:13:42
Edit Download
902 B lrw-r--r-- 2026-01-23 13:13:42
Edit Download
1.00 KB lrw-r--r-- 2026-01-23 13:13:42
Edit Download
149 B lrw-r--r-- 2026-01-23 13:13:42
Edit Download
2.67 KB lrw-r--r-- 2026-01-23 13:13:42
Edit Download
3.17 KB lrw-r--r-- 2026-01-23 13:13:44
Edit Download
953 B lrw-r--r-- 2026-01-23 13:13:42
Edit Download
1.56 KB lrw-r--r-- 2026-01-23 13:13:42
Edit Download
11.12 KB lrw-r--r-- 2026-01-23 13:13:42
Edit Download
2.29 KB lrw-r--r-- 2026-01-23 13:13:42
Edit Download
7.99 KB lrw-r--r-- 2026-01-23 13:13:42
Edit Download
363 B lrw-r--r-- 2026-01-23 13:13:42
Edit Download
1.72 KB lrw-r--r-- 2026-01-23 13:13:42
Edit Download
7.94 KB lrw-r--r-- 2026-01-23 13:13:42
Edit Download
1.53 KB lrw-r--r-- 2026-01-23 13:13:42
Edit Download
5.20 KB lrw-r--r-- 2026-01-23 13:13:42
Edit Download
1005 B lrw-r--r-- 2026-01-23 13:13:42
Edit Download
4.27 KB lrw-r--r-- 2026-01-23 13:13:42
Edit Download
7.60 KB lrw-r--r-- 2026-01-23 13:13:42
Edit Download
1.41 KB lrw-r--r-- 2026-01-23 13:13:42
Edit Download
795 B lrw-r--r-- 2026-01-23 13:13:42
Edit Download
55.96 KB lrw-r--r-- 2026-01-23 13:13:42
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).