File: gzlog.py

package info (click to toggle)
python-skytools 3.3-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 496 kB
  • sloc: python: 5,456; ansic: 1,016; makefile: 13
file content (40 lines) | stat: -rw-r--r-- 831 bytes parent folder | download
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

"""Atomic append of gzipped data.

The point is - if several gzip streams are concatenated,
they are read back as one whole stream.
"""

from __future__ import division, absolute_import, print_function

import gzip
from io import BytesIO

__all__ = ['gzip_append']

#
# gzip storage
#
def gzip_append(filename, data, level=6):
    """Append a block of data to file with safety checks."""

    # compress data
    buf = BytesIO()
    g = gzip.GzipFile(fileobj=buf, compresslevel=level, mode="w")
    g.write(data)
    g.close()
    zdata = buf.getvalue()

    # append, safely
    f = open(filename, "ab+", 0)
    f.seek(0, 2)
    pos = f.tell()
    try:
        f.write(zdata)
        f.close()
    except Exception as ex:
        # rollback on error
        f.seek(pos, 0)
        f.truncate()
        f.close()
        raise ex