Source code for nvflare.apis.workspace

# Copyright (c) 2021, 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 os
from typing import List, Union

from nvflare.apis.fl_constant import WorkspaceConstants


[docs]class Workspace: def __init__(self, root_dir: str, site_name: str = "", config_folder: str = "config"): """Define a workspace. NOTE:: Example of client workspace folder structure: Workspace ROOT local authorization.json.default resources.json.default custom/ custom python code ... startup (optional) provisioned content fed_client.json run_1 app config (required) configurations custom (optional) custom python code other_folder (app defined) log.txt job_meta.json ... Args: root_dir: root directory of the workspace site_name: site name of the workspace config_folder: where to find required config inside an app """ self.root_dir = root_dir self.site_name = site_name self.config_folder = config_folder # check to make sure the workspace is valid if not os.path.isdir(root_dir): raise RuntimeError(f"invalid workspace {root_dir}: it does not exist or not a valid dir") startup_dir = self.get_startup_kit_dir() if not os.path.isdir(startup_dir): raise RuntimeError( f"invalid workspace {root_dir}: missing startup folder '{startup_dir}' or not a valid dir" ) site_dir = self.get_site_config_dir() if not os.path.isdir(site_dir): raise RuntimeError( f"invalid workspace {root_dir}: missing site config folder '{site_dir}' or not a valid dir" ) def _fallback_path(self, file_names: [str]): for n in file_names: f = self.get_file_path_in_site_config(n) if os.path.exists(f): return f return None
[docs] def get_authorization_file_path(self): return self._fallback_path( [WorkspaceConstants.AUTHORIZATION_CONFIG, WorkspaceConstants.DEFAULT_AUTHORIZATION_CONFIG] )
[docs] def get_resources_file_path(self): return self._fallback_path([WorkspaceConstants.RESOURCES_CONFIG, WorkspaceConstants.DEFAULT_RESOURCES_CONFIG])
[docs] def get_job_resources_file_path(self): return self.get_file_path_in_site_config(WorkspaceConstants.JOB_RESOURCES_CONFIG)
[docs] def get_log_config_file_path(self): return self._fallback_path([WorkspaceConstants.LOGGING_CONFIG, WorkspaceConstants.DEFAULT_LOGGING_CONFIG])
[docs] def get_file_path_in_site_config(self, file_basename: Union[str, List[str]]): if isinstance(file_basename, str): return os.path.join(self.get_site_config_dir(), file_basename) elif isinstance(file_basename, list): return self._fallback_path(file_basename) else: raise ValueError(f"invalid file_basename '{file_basename}': must be str or List[str]")
[docs] def get_file_path_in_startup(self, file_basename: str): return os.path.join(self.get_startup_kit_dir(), file_basename)
[docs] def get_file_path_in_root(self, file_basename: str): return os.path.join(self.root_dir, file_basename)
[docs] def get_server_startup_file_path(self): # this is to get the full path to "fed_server.json" return self.get_file_path_in_startup(WorkspaceConstants.SERVER_STARTUP_CONFIG)
[docs] def get_server_app_config_file_path(self, job_id): return os.path.join(self.get_app_config_dir(job_id), WorkspaceConstants.SERVER_APP_CONFIG)
[docs] def get_client_app_config_file_path(self, job_id): return os.path.join(self.get_app_config_dir(job_id), WorkspaceConstants.CLIENT_APP_CONFIG)
[docs] def get_client_startup_file_path(self): # this is to get the full path to "fed_client.json" return self.get_file_path_in_startup(WorkspaceConstants.CLIENT_STARTUP_CONFIG)
[docs] def get_admin_startup_file_path(self): # this is to get the full path to "fed_admin.json" return self.get_file_path_in_startup(WorkspaceConstants.ADMIN_STARTUP_CONFIG)
[docs] def get_site_config_dir(self) -> str: return os.path.join(self.root_dir, WorkspaceConstants.SITE_FOLDER_NAME)
[docs] def get_site_custom_dir(self) -> str: return os.path.join(self.get_site_config_dir(), WorkspaceConstants.CUSTOM_FOLDER_NAME)
[docs] def get_startup_kit_dir(self) -> str: return os.path.join(self.root_dir, WorkspaceConstants.STARTUP_FOLDER_NAME)
[docs] def get_audit_file_path(self) -> str: return os.path.join(self.root_dir, WorkspaceConstants.AUDIT_LOG)
[docs] def get_log_file_path(self) -> str: return os.path.join(self.root_dir, WorkspaceConstants.LOG_FILE_NAME)
[docs] def get_root_dir(self) -> str: return self.root_dir
[docs] def get_run_dir(self, job_id: str) -> str: return os.path.join(self.root_dir, WorkspaceConstants.WORKSPACE_PREFIX + str(job_id))
[docs] def get_app_dir(self, job_id: str) -> str: return os.path.join(self.get_run_dir(job_id), WorkspaceConstants.APP_PREFIX + self.site_name)
[docs] def get_app_log_file_path(self, job_id: str) -> str: return os.path.join(self.get_run_dir(job_id), WorkspaceConstants.LOG_FILE_NAME)
[docs] def get_app_config_dir(self, job_id: str) -> str: return os.path.join(self.get_app_dir(job_id), self.config_folder)
[docs] def get_app_custom_dir(self, job_id: str) -> str: return os.path.join(self.get_app_dir(job_id), WorkspaceConstants.CUSTOM_FOLDER_NAME)
[docs] def get_job_meta_path(self, job_id: str) -> str: return os.path.join(self.get_run_dir(job_id), WorkspaceConstants.JOB_META_FILE)
[docs] def get_site_privacy_file_path(self): return self.get_file_path_in_site_config(WorkspaceConstants.PRIVACY_CONFIG)
[docs] def get_client_custom_dir(self) -> str: return os.path.join(self.get_site_config_dir(), WorkspaceConstants.CUSTOM_FOLDER_NAME)
[docs] def get_stats_pool_summary_path(self, job_id: str, prefix=None) -> str: file_name = WorkspaceConstants.STATS_POOL_SUMMARY_FILE_NAME if prefix: file_name = f"{prefix}.{file_name}" return os.path.join(self.get_run_dir(job_id), file_name)
[docs] def get_stats_pool_records_path(self, job_id: str, prefix=None) -> str: file_name = WorkspaceConstants.STATS_POOL_RECORDS_FILE_NAME if prefix: file_name = f"{prefix}.{file_name}" return os.path.join(self.get_run_dir(job_id), file_name)