Source code for nvflare.apis.client_engine_spec

# Copyright (c) 2021-2022, NVIDIA CORPORATION.  All rights reserved.
#
# 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.

import time
from abc import ABC, abstractmethod

from nvflare.widgets.widget import Widget

from .fl_context import FLContext
from .shareable import Shareable
from .workspace import Workspace


[docs]class TaskAssignment(object): def __init__(self, name: str, task_id: str, data: Shareable): """Init TaskAssignment. Keeps track of information about the assignment of a task, including the time that it was created after being fetched by the Client Run Manager. Args: name: task name task_id: task id data: the Shareable data for the task assignment """ self.name = name self.task_id = task_id self.data = data self.receive_time = time.time()
[docs]class ClientEngineSpec(ABC):
[docs] @abstractmethod def fire_event(self, event_type: str, fl_ctx: FLContext): pass
[docs] @abstractmethod def get_task_assignment(self, fl_ctx: FLContext) -> TaskAssignment: pass
[docs] @abstractmethod def new_context(self) -> FLContext: # the engine must use FLContextManager to create a new context! pass
[docs] @abstractmethod def send_task_result(self, result: Shareable, fl_ctx: FLContext) -> bool: pass
[docs] @abstractmethod def get_workspace(self) -> Workspace: pass
[docs] @abstractmethod def get_component(self, component_id: str) -> object: pass
[docs] @abstractmethod def get_all_components(self) -> dict: pass
[docs] def get_widget(self, widget_id: str) -> Widget: pass