-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
2,027 additions
and
125 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,26 @@ | ||
"""Various utils.""" | ||
from itertools import chain | ||
from pathlib import Path | ||
from typing import Any, Generator | ||
|
||
from aea.helpers.env_vars import ENV_VARIABLE_RE, is_env_variable | ||
from autonomy.configurations.loader import load_service_config | ||
|
||
|
||
def get_all_env_vars(d): | ||
def get_all_env_vars(d: Any) -> Generator[tuple[str | Any, str | Any] | Any, Any, None]: | ||
"""Get env vars from dict.""" | ||
for value in d.values(): | ||
if is_env_variable(value): | ||
result = ENV_VARIABLE_RE.match(value) | ||
_, var_name, _, _, default = result.groups() | ||
result = ENV_VARIABLE_RE.match(value) # type: ignore | ||
_, var_name, _, _, default = result.groups() # type: ignore | ||
yield var_name, default | ||
if isinstance(value, dict): | ||
yield from get_all_env_vars(value) | ||
|
||
|
||
def get_env_vars_for_service(service_path: Path): | ||
def get_env_vars_for_service( | ||
service_path: Path, | ||
) -> set[tuple[str | Any, str | Any] | Any]: | ||
"""Get env vars for service path.""" | ||
service = load_service_config(service_path) | ||
return set(chain(*(get_all_env_vars(i) for i in service.overrides))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters