|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- # 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.
- # ============================================================================
- """The proposer factory."""
- import threading
-
- import mindinsight.profiler.proposer.allproposers as proposer_module
- from mindinsight.profiler.common.log import logger
-
-
- class ProposerFactory:
- """The Proposer factory is used to create Proposer special instance."""
- _lock = threading.Lock()
- _instance = None
-
- def __new__(cls, *args, **kwargs):
- if cls._instance is None:
- with cls._lock:
- if cls._instance is None:
- cls._instance = super().__new__(cls, *args, **kwargs)
- return cls._instance
-
- @classmethod
- def instance(cls):
- """The factory instance."""
- if cls._instance is None:
- cls._instance = cls()
- return cls._instance
-
- def get_proposer(self, proposer_type, *args):
- """
- Get the specified proposer according to the proposer type.
-
- Args:
- proposer_type (str): The proposer type.
- args (list): The parameters required for the specific proposer class.
-
- Returns:
- Proposer, the specified proposer instance.
-
- Examples:
- >>> proposer_type = 'step_trace'
- >>> proposer = ProposerFactory.instance().get_proposer(proposer_type, self.profiling_dir, self.device_id)
-
- """
- logger.debug("The 'proposer_type' is %s,The 'args' is %s", proposer_type, str(args))
- proposer_instance = None
- sub_name = proposer_type.split('_')
- proposer_class_name = ''.join([name.capitalize() for name in sub_name])
- proposer_class_name += 'Proposer'
-
- if hasattr(proposer_module, proposer_class_name):
- proposer_instance = getattr(proposer_module, proposer_class_name)(*args)
- else:
- logger.warning("The proposer class %s does not exist.", proposer_class_name)
- return proposer_instance
|