blob: 9d5c6e413e89c5a03763fc9fab401d18ac44d273 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# Copyright (c) 2016 Egor Tensin <Egor.Tensin@gmail.com>
# This file is part of the "VK scripts" project.
# For details, see https://github.com/egor-tensin/vk-scripts.
# Distributed under the MIT License.
from enum import Enum
from . import backend
class Format(Enum):
CSV = 'csv'
LOG = 'log'
NULL = 'null'
def create_writer(self, fd):
if self is Format.CSV:
return backend.csv.Writer(fd)
elif self is Format.LOG:
return backend.log.Writer(fd)
elif self is Format.NULL:
return backend.null.Writer(fd)
else:
raise NotImplementedError('unsupported database format: ' + str(self))
def create_reader(self, fd):
if self is Format.CSV:
return backend.csv.Reader(fd)
elif self is Format.LOG:
raise NotImplementedError()
elif self is Format.NULL:
return backend.null.Reader(fd)
else:
raise NotImplementedError('unsupported database format: ' + str(self))
def __str__(self):
return self.value
|