aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin/utils/io.py
blob: 70c1a3aeda0f37e19202df0671ee8447c6f58f57 (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
37
38
39
40
41
42
43
# Copyright (c) 2017 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 contextlib import contextmanager
import csv
import json
import sys

class FileWriterJSON:
    def __init__(self, fd=sys.stdout):
        self._fd = fd

    def write(self, something):
        self._fd.write(json.dumps(something, indent=3, ensure_ascii=False))
        self._fd.write('\n')

class FileWriterCSV:
    def __init__(self, fd=sys.stdout):
        self._writer = csv.writer(fd, lineterminator='\n')

    def write_row(self, row):
        self._writer.writerow(row)

@contextmanager
def _open_file(path=None, default=None, **kwargs):
    fd = default
    if path is None:
        pass
    else:
        fd = open(path, **kwargs)
    try:
        yield fd
    finally:
        if fd is not sys.stdout:
            fd.close()

def open_output_text_file(path=None):
    return _open_file(path, default=sys.stdout, mode='w', encoding='utf-8')

def open_output_binary_file(path=None):
    return _open_file(path, default=sys.stdout, mode='wb')