|
- # Copyright 2020 Huawei Technologies Co., Ltd
- #
- # 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.
- # ============================================================================
- """Debugger hook."""
-
- import argparse
-
- from mindinsight.conf import settings
- from mindinsight.utils.hook import BaseHook
-
-
- def str2bool(string):
- """Convert str to bool"""
- if string.lower() == 'false':
- return False
- if string.lower() == 'true':
- return True
- raise ValueError
-
-
- class EnableDebuggerAction(argparse.Action):
- """Enable debugger action class definition."""
-
- def __call__(self, parser, namespace, values, option_string=None):
- """
- Inherited __call__ method from argparse.Action.
-
- Args:
- parser (ArgumentParser): Passed-in argument parser.
- namespace (Namespace): Namespace object to hold arguments.
- values (object): Argument values with type depending on argument definition.
- option_string (str): Optional string for specific argument name. Default: None.
- """
- enable_debugger = values
- setattr(namespace, self.dest, enable_debugger)
-
-
- class PortAction(argparse.Action):
- """Port action class definition."""
-
- MIN_PORT = 1
- MAX_PORT = 65535
-
- OPEN_PORT_LIMIT = 1024
-
- def __call__(self, parser, namespace, values, option_string=None):
- """
- Inherited __call__ method from argparse.Action.
-
- Args:
- parser (ArgumentParser): Passed-in argument parser.
- namespace (Namespace): Namespace object to hold arguments.
- values (object): Argument values with type depending on argument definition.
- option_string (str): Optional string for specific argument name. Default: None.
- """
- port = values
- if not self.MIN_PORT <= port <= self.MAX_PORT:
- parser.error(f'{option_string} should be chosen from {self.MIN_PORT} to {self.MAX_PORT}')
-
- setattr(namespace, self.dest, port)
-
-
- class Hook(BaseHook):
- """Hook class definition."""
-
- def register_startup_arguments(self, parser):
- """
- Hook function to register startup arguments.
-
- Args:
- parser (ArgumentParser): Specify parser to which arguments are added.
- """
- parser.add_argument(
- '--enable-debugger',
- type=str2bool,
- action=EnableDebuggerAction,
- default=False,
- help="""
- Enable debugger or not.
- Default is False.""")
-
- parser.add_argument(
- '--debugger-port',
- type=int,
- action=PortAction,
- help="""
- Debugger port ranging from %s to %s. Default value is %s.
- """ % (PortAction.MIN_PORT, PortAction.MAX_PORT, settings.DEBUGGER_PORT))
|