2018-11-30 23:39:13 +03:00
|
|
|
import csv
|
2018-12-03 17:56:38 +03:00
|
|
|
import enum
|
|
|
|
|
|
|
|
|
|
|
|
class Usability(enum.Enum):
|
|
|
|
UNKNOWN = 0
|
|
|
|
USER = 1
|
|
|
|
BOT = 2
|
|
|
|
BOTH = 4
|
2018-11-30 23:39:13 +03:00
|
|
|
|
|
|
|
|
|
|
|
class MethodInfo:
|
|
|
|
def __init__(self, name, usability, errors):
|
|
|
|
self.name = name
|
|
|
|
self.errors = errors
|
2018-12-03 17:56:38 +03:00
|
|
|
try:
|
|
|
|
self.usability = {
|
|
|
|
'unknown': Usability.UNKNOWN,
|
|
|
|
'user': Usability.USER,
|
|
|
|
'bot': Usability.BOT,
|
|
|
|
'both': Usability.BOTH,
|
|
|
|
}[usability.lower()]
|
|
|
|
except KeyError:
|
|
|
|
raise ValueError('Usability must be either user, bot, both or '
|
|
|
|
'unknown, not {}'.format(usability)) from None
|
2018-11-30 23:39:13 +03:00
|
|
|
|
|
|
|
|
|
|
|
def parse_methods(csv_file, errors_dict):
|
|
|
|
"""
|
|
|
|
Parses the input CSV file with columns (method, usability, errors)
|
|
|
|
and yields `MethodInfo` instances as a result.
|
|
|
|
"""
|
2018-12-21 15:24:16 +03:00
|
|
|
with csv_file.open(newline='') as f:
|
2018-11-30 23:39:13 +03:00
|
|
|
f = csv.reader(f)
|
|
|
|
next(f, None) # header
|
|
|
|
for line, (method, usability, errors) in enumerate(f, start=2):
|
|
|
|
try:
|
|
|
|
errors = [errors_dict[x] for x in errors.split()]
|
|
|
|
except KeyError:
|
|
|
|
raise ValueError('Method {} references unknown errors {}'
|
|
|
|
.format(method, errors)) from None
|
|
|
|
|
|
|
|
yield MethodInfo(method, usability, errors)
|