| """Module for translating a function into an argparse program.""" |
|
|
| import argparse |
| import inspect |
| import re |
| from copy import deepcopy |
| from typing import ( |
| Any, |
| Callable, |
| Dict, |
| List, |
| Literal, |
| Optional, |
| Tuple, |
| Type, |
| Union, |
| get_args, |
| get_origin, |
| get_type_hints, |
| ) |
|
|
| from openbb_core.app.model.field import OpenBBField |
| from pydantic import BaseModel |
| from typing_extensions import Annotated |
|
|
| from openbb_cli.argparse_translator.argparse_argument import ( |
| ArgparseArgumentGroupModel, |
| ArgparseArgumentModel, |
| ) |
| from openbb_cli.argparse_translator.utils import ( |
| get_argument_choices, |
| get_argument_optional_choices, |
| in_group, |
| remove_argument, |
| set_optional_choices, |
| ) |
|
|
| |
|
|
| SEP = "__" |
|
|
|
|
| class ArgparseTranslator: |
| """Class to translate a function into an argparse program.""" |
|
|
| def __init__( |
| self, |
| func: Callable, |
| custom_argument_groups: Optional[List[ArgparseArgumentGroupModel]] = None, |
| add_help: Optional[bool] = True, |
| ): |
| """ |
| Initialize the ArgparseTranslator. |
| |
| Args: |
| func (Callable): The function to translate into an argparse program. |
| add_help (Optional[bool], optional): Whether to add the help argument. Defaults to False. |
| """ |
| self.func = func |
| self.signature = inspect.signature(func) |
| self.type_hints = get_type_hints(func) |
| self.provider_parameters: Dict[str, List[str]] = {} |
|
|
| self._parser = argparse.ArgumentParser( |
| prog=func.__name__, |
| description=self._build_description(func.__doc__), |
| formatter_class=argparse.RawTextHelpFormatter, |
| add_help=add_help if add_help else False, |
| ) |
| self._required = self._parser.add_argument_group("required arguments") |
|
|
| if any(param in self.type_hints for param in self.signature.parameters): |
| self._generate_argparse_arguments(self.signature.parameters) |
|
|
| if custom_argument_groups: |
| for group in custom_argument_groups: |
| self.provider_parameters[group.name] = [] |
| argparse_group = self._parser.add_argument_group(group.name) |
| for argument in group.arguments: |
| self._handle_argument_in_groups(argument, argparse_group) |
|
|
| def _handle_argument_in_groups(self, argument, group): |
| """Handle the argument and add it to the parser.""" |
|
|
| def _update_providers( |
| input_string: str, new_provider: List[Optional[str]] |
| ) -> str: |
| pattern = r"\(provider:\s*(.*?)\)" |
| providers = re.findall(pattern, input_string) |
| providers.extend(new_provider) |
| |
| input_string = re.sub(pattern, "", input_string).strip() |
| return f"{input_string} (provider: {', '.join(providers)})" |
|
|
| |
| if f"--{argument.name}" not in self._parser._option_string_actions: |
| kwargs = argument.model_dump(exclude={"name"}, exclude_none=True) |
| group.add_argument(f"--{argument.name}", **kwargs) |
| if group.title in self.provider_parameters: |
| self.provider_parameters[group.title].append(argument.name) |
|
|
| else: |
| kwargs = argument.model_dump(exclude={"name"}, exclude_none=True) |
| model_choices = kwargs.get("choices", ()) or () |
| |
| existing_choices = get_argument_choices(self._parser, argument.name) |
| choices = tuple(set(existing_choices + model_choices)) |
| optional_choices = bool(existing_choices and not model_choices) |
|
|
| |
| if in_group(self._parser, argument.name, group_title="required arguments"): |
| for action in self._required._group_actions: |
| if action.dest == argument.name and choices: |
| |
| action.choices = choices |
| set_optional_choices(action, optional_choices) |
| return |
|
|
| |
| if in_group(self._parser, argument.name, group_title="optional arguments"): |
| for action in self._parser._actions: |
| if action.dest == argument.name: |
| |
| if choices: |
| action.choices = choices |
| set_optional_choices(action, optional_choices) |
| if argument.name not in self.signature.parameters: |
| |
| action.help = _update_providers( |
| action.help or "", [group.title] |
| ) |
| return |
|
|
| |
| |
| if not optional_choices: |
| optional_choices = get_argument_optional_choices( |
| self._parser, argument.name |
| ) |
|
|
| |
| |
| groups_w_arg = remove_argument(self._parser, argument.name) |
| groups_w_arg.append(group.title) |
|
|
| |
| if choices: |
| kwargs["choices"] = choices |
| |
| kwargs["help"] = _update_providers(argument.help or "", groups_w_arg) |
| action = self._parser.add_argument(f"--{argument.name}", **kwargs) |
| set_optional_choices(action, optional_choices) |
|
|
| @property |
| def parser(self) -> argparse.ArgumentParser: |
| """Get the argparse parser.""" |
| return deepcopy(self._parser) |
|
|
| @staticmethod |
| def _build_description(func_doc: str) -> str: |
| """Build the description of the argparse program from the function docstring.""" |
| patterns = ["openbb\n ======", "Parameters\n ----------"] |
|
|
| if func_doc: |
| for pattern in patterns: |
| if pattern in func_doc: |
| func_doc = func_doc[: func_doc.index(pattern)].strip() |
| break |
|
|
| return func_doc |
|
|
| @staticmethod |
| def _param_is_default(param: inspect.Parameter) -> bool: |
| """Return True if the parameter has a default value.""" |
| return param.default != inspect.Parameter.empty |
|
|
| def _get_action_type(self, param: inspect.Parameter) -> str: |
| """Return the argparse action type for the given parameter.""" |
| param_type = self.type_hints[param.name] |
| type_origin = get_origin(param_type) |
| if param_type is bool or ( |
| type_origin is Union and bool in get_args(param_type) |
| ): |
| return "store_true" |
| return "store" |
|
|
| def _get_type_and_choices( |
| self, param: inspect.Parameter |
| ) -> Tuple[Type[Any], Tuple[Any, ...]]: |
| """Return the type and choices for the given parameter.""" |
| param_type = self.type_hints[param.name] |
| type_origin = get_origin(param_type) |
|
|
| choices: tuple[Any, ...] = () |
|
|
| if type_origin is Literal: |
| choices = get_args(param_type) |
| |
| if all(isinstance(choice, bool) for choice in choices): |
| return bool, () |
| param_type = type(choices[0]) |
|
|
| if type_origin is list: |
| param_type = get_args(param_type)[0] |
|
|
| if get_origin(param_type) is Literal: |
| choices = get_args(param_type) |
| |
| if all(isinstance(choice, bool) for choice in choices): |
| return bool, () |
| param_type = type(choices[0]) |
|
|
| if type_origin is Union: |
| union_args = get_args(param_type) |
| |
| if bool in union_args and (str in union_args or len(union_args) == 2): |
| return bool, () |
|
|
| |
| literal_choices: list = [] |
| for arg in union_args: |
| if get_origin(arg) is Literal: |
| literal_choices.extend(get_args(arg)) |
|
|
| if literal_choices: |
| |
| if all(isinstance(choice, bool) for choice in literal_choices): |
| return bool, () |
| |
| choices = tuple(literal_choices) |
| param_type = type(choices[0]) |
| elif str in union_args: |
| param_type = str |
|
|
| |
| if type(None) in get_args(param_type): |
| |
| args = [arg for arg in get_args(param_type) if arg is not None] |
| |
| if len(args) == 1: |
| param_type = args[0] |
|
|
| if get_origin(param_type) is Literal: |
| choices = get_args(param_type) |
| |
| if all(isinstance(choice, bool) for choice in choices): |
| return bool, () |
| param_type = type(choices[0]) |
| elif len(args) > 1: |
| |
| |
| literal_choices = [] |
| for arg in args: |
| if get_origin(arg) is Literal: |
| literal_choices.extend(get_args(arg)) |
|
|
| if literal_choices: |
| |
| if all(isinstance(choice, bool) for choice in literal_choices): |
| return bool, () |
| choices = tuple(set(literal_choices)) |
| param_type = type(choices[0]) |
|
|
| |
| custom_choices = self._get_argument_custom_choices(param) |
| if custom_choices and param_type is not bool: |
| choices = tuple(custom_choices) |
|
|
| return param_type, choices |
|
|
| @staticmethod |
| def _split_annotation( |
| base_annotation: Type[Any], custom_annotation_type: Type |
| ) -> Tuple[Type[Any], List[Any]]: |
| """Find the base annotation and the custom annotations, namely the OpenBBField.""" |
| if get_origin(base_annotation) is not Annotated: |
| return base_annotation, [] |
| base_annotation, *maybe_custom_annotations = get_args(base_annotation) |
| return base_annotation, [ |
| annotation |
| for annotation in maybe_custom_annotations |
| if isinstance(annotation, custom_annotation_type) |
| ] |
|
|
| @classmethod |
| def _get_argument_custom_help(cls, param: inspect.Parameter) -> Optional[str]: |
| """Return the help annotation for the given parameter.""" |
| base_annotation = param.annotation |
| _, custom_annotations = cls._split_annotation(base_annotation, OpenBBField) |
| help_annotation = ( |
| custom_annotations[0].description if custom_annotations else None |
| ) |
| return help_annotation |
|
|
| @classmethod |
| def _get_argument_custom_choices(cls, param: inspect.Parameter) -> Optional[str]: |
| """Return the help annotation for the given parameter.""" |
| base_annotation = param.annotation |
| _, custom_annotations = cls._split_annotation(base_annotation, OpenBBField) |
| choices_annotation = ( |
| custom_annotations[0].choices if custom_annotations else None |
| ) |
| return choices_annotation |
|
|
| def _get_nargs(self, param: inspect.Parameter) -> Optional[str]: |
| """Return the nargs annotation for the given parameter.""" |
| param_type = self.type_hints[param.name] |
| origin = get_origin(param_type) |
|
|
| if origin is list: |
| return "+" |
|
|
| if origin is Union and any( |
| get_origin(arg) is list for arg in get_args(param_type) |
| ): |
| return "+" |
|
|
| return None |
|
|
| def _generate_argparse_arguments(self, parameters) -> None: |
| """Generate the argparse arguments from the function parameters.""" |
| for param in parameters.values(): |
| if param.name == "kwargs": |
| continue |
|
|
| param_type, choices = self._get_type_and_choices(param) |
|
|
| |
| if inspect.isclass(param_type) and issubclass(param_type, BaseModel): |
| |
| type_hints = get_type_hints(param_type) |
| |
| type_hints = { |
| f"{param.name}{SEP}{key}": value |
| for key, value in type_hints.items() |
| } |
| self.type_hints.update(type_hints) |
| |
| sig = inspect.signature(param_type) |
|
|
| |
| annotated_parameters: List[inspect.Parameter] = [] |
| for child_param in sig.parameters.values(): |
| new_child_param = child_param.replace( |
| name=f"{param.name}{SEP}{child_param.name}", |
| annotation=Annotated[ |
| child_param.annotation, |
| OpenBBField( |
| description=param_type.model_json_schema()[ |
| "properties" |
| ][child_param.name].get("description", None) |
| ), |
| ], |
| kind=inspect.Parameter.KEYWORD_ONLY, |
| ) |
| annotated_parameters.append(new_child_param) |
|
|
| |
| new_signature = inspect.Signature( |
| parameters=annotated_parameters, |
| return_annotation=sig.return_annotation, |
| ) |
| self._generate_argparse_arguments(new_signature.parameters) |
|
|
| |
| continue |
|
|
| required = not self._param_is_default(param) |
|
|
| |
| action = self._get_action_type(param) |
|
|
| |
| if param_type is bool: |
| choices = () |
| action = "store_true" |
|
|
| argument = ArgparseArgumentModel( |
| name=param.name, |
| type=param_type, |
| dest=param.name, |
| default=param.default, |
| required=required, |
| action=action, |
| help=self._get_argument_custom_help(param), |
| nargs=self._get_nargs(param), |
| choices=choices, |
| ) |
| kwargs = argument.model_dump(exclude={"name"}, exclude_none=True) |
|
|
| if required: |
| self._required.add_argument( |
| f"--{argument.name}", |
| **kwargs, |
| ) |
| else: |
| self._parser.add_argument( |
| f"--{argument.name}", |
| **kwargs, |
| ) |
|
|
| @staticmethod |
| def _unflatten_args(args: dict) -> Dict[str, Any]: |
| """Unflatten the args that were flattened by the custom types.""" |
| result: Dict[str, Any] = {} |
| for key, value in args.items(): |
| if SEP in key: |
| parts = key.split(SEP) |
| nested_dict = result |
| for part in parts[:-1]: |
| if part not in nested_dict: |
| nested_dict[part] = {} |
| nested_dict = nested_dict[part] |
| nested_dict[parts[-1]] = value |
| else: |
| result[key] = value |
| return result |
|
|
| def _update_with_custom_types(self, kwargs: Dict[str, Any]) -> Dict[str, Any]: |
| """Update the kwargs with the custom types.""" |
| |
| |
| for param in self.signature.parameters.values(): |
| if param.name == "kwargs": |
| continue |
| param_type, _ = self._get_type_and_choices(param) |
| if inspect.isclass(param_type) and issubclass(param_type, BaseModel): |
| custom_type_kwargs = kwargs[param.name] |
| kwargs[param.name] = param_type(**custom_type_kwargs) |
|
|
| return kwargs |
|
|
| def execute_func( |
| self, |
| parsed_args: Optional[argparse.Namespace] = None, |
| ) -> Any: |
| """ |
| Execute the original function with the parsed arguments. |
| |
| Args: |
| parsed_args (Optional[argparse.Namespace], optional): The parsed arguments. Defaults to None. |
| |
| Returns: |
| Any: The return value of the original function. |
| |
| """ |
| kwargs = self._unflatten_args(vars(parsed_args)) |
| kwargs = self._update_with_custom_types(kwargs) |
| provider = kwargs.get("provider") |
| provider_args: List = [] |
| if provider and provider in self.provider_parameters: |
| provider_args = self.provider_parameters[provider] |
| else: |
| for args in self.provider_parameters.values(): |
| provider_args.extend(args) |
|
|
| |
| kwargs = { |
| key: value |
| for key, value in kwargs.items() |
| if ( |
| (key in self.signature.parameters or key in provider_args) |
| and (value or value is False) |
| ) |
| } |
| return self.func(**kwargs) |
|
|
| def parse_args_and_execute(self) -> Any: |
| """ |
| Parse the arguments and executes the original function. |
| |
| Returns: |
| Any: The return value of the original function. |
| """ |
| parsed_args = self._parser.parse_args() |
|
|
| return self.execute_func(parsed_args) |
|
|
| def translate(self) -> Callable: |
| """ |
| Wrap the original function with an argparse program. |
| |
| Returns: |
| Callable: The original function wrapped with an argparse program. |
| """ |
|
|
| def wrapper_func(): |
| return self.parse_args_and_execute() |
|
|
| return wrapper_func |
|
|