Source code for nvflare.private.fed.client.training_cmds

# 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 json
from typing import List

from nvflare.private.admin_defs import Message
from nvflare.private.defs import RequestHeader, TrainingTopic
from nvflare.private.fed.client.admin import RequestProcessor
from nvflare.private.fed.client.client_engine_internal_spec import ClientEngineInternalSpec


[docs]class StartAppProcessor(RequestProcessor):
[docs] def get_topics(self) -> List[str]: return [TrainingTopic.START]
[docs] def process(self, req: Message, app_ctx) -> Message: engine = app_ctx if not isinstance(engine, ClientEngineInternalSpec): raise TypeError("engine must be ClientEngineInternalSpec, but got {}".format(type(engine))) job_id = req.get_header(RequestHeader.JOB_ID) result = engine.start_app(job_id) if not result: result = "OK" return Message(topic="reply_" + req.topic, body=result)
[docs]class AbortAppProcessor(RequestProcessor):
[docs] def get_topics(self) -> List[str]: return [TrainingTopic.ABORT]
[docs] def process(self, req: Message, app_ctx) -> Message: engine = app_ctx if not isinstance(engine, ClientEngineInternalSpec): raise TypeError("engine must be ClientEngineInternalSpec, but got {}".format(type(engine))) job_id = req.get_header(RequestHeader.JOB_ID) result = engine.abort_app(job_id) if not result: result = "OK" return Message(topic="reply_" + req.topic, body=result)
[docs]class AbortTaskProcessor(RequestProcessor):
[docs] def get_topics(self) -> List[str]: return [TrainingTopic.ABORT_TASK]
[docs] def process(self, req: Message, app_ctx) -> Message: engine = app_ctx if not isinstance(engine, ClientEngineInternalSpec): raise TypeError("engine must be ClientEngineInternalSpec, but got {}".format(type(engine))) job_id = req.get_header(RequestHeader.JOB_ID) result = engine.abort_task(job_id) if not result: result = "OK" return Message(topic="reply_" + req.topic, body=result)
[docs]class ShutdownClientProcessor(RequestProcessor):
[docs] def get_topics(self) -> List[str]: return [TrainingTopic.SHUTDOWN]
[docs] def process(self, req: Message, app_ctx) -> Message: engine = app_ctx if not isinstance(engine, ClientEngineInternalSpec): raise TypeError("engine must be ClientEngineInternalSpec, but got {}".format(type(engine))) result = engine.shutdown() if not result: result = "OK" return Message(topic="reply_" + req.topic, body=result)
[docs]class RestartClientProcessor(RequestProcessor):
[docs] def get_topics(self) -> List[str]: return [TrainingTopic.RESTART]
[docs] def process(self, req: Message, app_ctx) -> Message: engine = app_ctx if not isinstance(engine, ClientEngineInternalSpec): raise TypeError("engine must be ClientEngineInternalSpec, but got {}".format(type(engine))) result = engine.restart() if not result: result = "OK" return Message(topic="reply_" + req.topic, body=result)
[docs]class DeployProcessor(RequestProcessor):
[docs] def get_topics(self) -> List[str]: return [TrainingTopic.DEPLOY]
[docs] def process(self, req: Message, app_ctx) -> Message: engine = app_ctx if not isinstance(engine, ClientEngineInternalSpec): raise TypeError("engine must be ClientEngineInternalSpec, but got {}".format(type(engine))) job_id = req.get_header(RequestHeader.JOB_ID) app_name = req.get_header(RequestHeader.APP_NAME) client_name = engine.get_client_name() result = engine.deploy_app(app_name=app_name, job_id=job_id, client_name=client_name, app_data=req.body) if not result: result = "OK" return Message(topic="reply_" + req.topic, body=result)
[docs]class DeleteRunNumberProcessor(RequestProcessor):
[docs] def get_topics(self) -> List[str]: return [TrainingTopic.DELETE_RUN]
[docs] def process(self, req: Message, app_ctx) -> Message: engine = app_ctx if not isinstance(engine, ClientEngineInternalSpec): raise TypeError("engine must be ClientEngineInternalSpec, but got {}".format(type(engine))) job_id = req.get_header(RequestHeader.JOB_ID) result = engine.delete_run(job_id) if not result: result = "OK" message = Message(topic="reply_" + req.topic, body=result) return message
[docs]class ClientStatusProcessor(RequestProcessor):
[docs] def get_topics(self) -> List[str]: return [TrainingTopic.CHECK_STATUS]
[docs] def process(self, req: Message, app_ctx) -> Message: engine = app_ctx if not isinstance(engine, ClientEngineInternalSpec): raise TypeError("engine must be ClientEngineInternalSpec, but got {}".format(type(engine))) result = engine.get_engine_status() # run_info = engine.get_current_run_info() # if not run_info or run_info.job_id < 0: # result = { # ClientStatusKey.RUN_NUM: 'none', # ClientStatusKey.CURRENT_TASK: 'none' # } # else: # result = { # ClientStatusKey.RUN_NUM: str(run_info.job_id), # ClientStatusKey.CURRENT_TASK: run_info.current_task_name # } result = json.dumps(result) message = Message(topic="reply_" + req.topic, body=result) return message