summaryrefslogtreecommitdiff
path: root/client/src/leap/soledad/client/_pipes.py
blob: ed89e14d4244fdf8db1edea1f25b61883adf1307 (plain)
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
44
45
46
47
48
49
50
51
# -*- coding: utf-8 -*-
# _pipes.py
# Copyright (C) 2017 LEAP
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
"""
Components for piping data on streams.
"""
from io import BytesIO


__all__ = ['TruncatedTailPipe']


class TruncatedTailPipe(object):
    """
    Truncate the last `tail_size` bytes from the stream.
    """

    def __init__(self, output=None, tail_size=16):
        self.tail_size = tail_size
        self.output = output or BytesIO()
        self.buffer = BytesIO()

    def write(self, data):
        self.buffer.write(data)
        if self.buffer.tell() > self.tail_size:
            self._truncate_tail()

    def _truncate_tail(self):
            overflow_size = self.buffer.tell() - self.tail_size
            self.buffer.seek(0)
            self.output.write(self.buffer.read(overflow_size))
            remaining = self.buffer.read()
            self.buffer.seek(0)
            self.buffer.write(remaining)
            self.buffer.truncate()

    def close(self):
        return self.output