123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- #!/usr/bin/env python3
- # -*- coding: utf-8 -*-
- """
- Created on Wed Sep 25 08:22:20 2019
- @author: tanya
- """
- import os
- import sys
- import abc
- sys.path.append(os.getcwd())
- class ParseDbSchema(metaclass=abc.ABCMeta):
- '''
- '''
- def __init__(self, schema_paths: [list, str], log_file: str = None):
- '''
- '''
- from libraries.log import Log
- self._log = Log(name="ParseDbSchema:", log_file=log_file)
- if isinstance(schema_paths, str):
- schema_paths = [schema_paths]
- for schema_path in schema_paths:
- if not os.path.isfile(schema_path):
- err = "Schema not found"
- self._log.error(err)
- raise FileNotFoundError(err)
- @abc.abstractmethod
- def get_fields(self) -> list:
- '''
- '''
- return
- @abc.abstractmethod
- def get_datetime_fields(self) -> list:
- '''
- '''
- return
- @abc.abstractmethod
- def get_python_types(self) -> list:
- '''
- '''
- return
- @abc.abstractmethod
- def get_default_values(self) -> list:
- '''
- '''
- return
- @abc.abstractmethod
- def get_allowed_values(self) -> list:
- '''
- '''
- return
|