File: tag_loader.py

package info (click to toggle)
ezdxf 1.4.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 104,528 kB
  • sloc: python: 182,341; makefile: 116; lisp: 20; ansic: 4
file content (40 lines) | stat: -rw-r--r-- 968 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
#  Copyright (c) 2020-2022, Manfred Moitzi
#  License: MIT License
import time
import ezdxf
from ezdxf.lldxf.tagger import ascii_tags_loader
from ezdxf.recover import bytes_loader, synced_bytes_loader

BIG_FILE = ezdxf.options.test_files_path / "CADKitSamples" / "torso_uniform.dxf"


def load_ascii():
    with open(BIG_FILE, "rt") as fp:
        list(ascii_tags_loader(fp))


def load_bytes():
    with open(BIG_FILE, "rb") as fp:
        list(bytes_loader(fp))


def load_synced_bytes():
    with open(BIG_FILE, "rb") as fp:
        list(synced_bytes_loader(fp))


def print_result(time, text):
    print(f"Operation: {text} takes {time:.2f} s\n")


def run(func):
    start = time.perf_counter()
    func()
    end = time.perf_counter()
    return end - start


if __name__ == "__main__":
    print_result(run(load_ascii), "ascii_tags_loader()")
    print_result(run(load_bytes), "bytes_loader()")
    print_result(run(load_synced_bytes), "synced_bytes_loader()")