Source code for mosec.ipc

# Copyright 2022 MOSEC Authors
#
# 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.

"""Wrapper layer for IPC between workers.

This will be called before sending data or after receiving data through the Protocol.


.. warning::
    This implementation is deprecated. Please use
    :py:mod:`PlasmaShmIPCMixin <mosec.mixin.PlasmaShmIPCMixin>`
"""

import abc
from typing import List


[docs]class IPCWrapper(abc.ABC): """This public class defines the mosec IPC wrapper plugin interface. The wrapper has to implement at least ``put`` and ``get`` methods. """
[docs] @abc.abstractmethod def put(self, data: List[bytes]) -> List[bytes]: """Put bytes to somewhere to get ids, which are sent via protocol. Args: data: List of bytes data. Returns: List of bytes ID. """
[docs] @abc.abstractmethod def get(self, ids: List[bytes]) -> List[bytes]: """Get bytes from somewhere by ids, which are received via protocol. Args: ids: List of bytes ID. Returns: List of bytes data. """