log_parser.py 437 B

12345678910111213141516171819202122
  1. #!/usr/bin/env python3
  2. #
  3. # Copyright (c) 2021 Intel Corporation
  4. #
  5. # SPDX-License-Identifier: Apache-2.0
  6. """
  7. Abstract Class for Dictionary-based Logging Parsers
  8. """
  9. import abc
  10. class LogParser(abc.ABC):
  11. """Abstract class of log parser"""
  12. def __init__(self, database):
  13. self.database = database
  14. @abc.abstractmethod
  15. def parse_log_data(self, logdata, debug=False):
  16. """Parse log data"""
  17. return None