Welcome to mirror list, hosted at ThFree Co, Russian Federation.

stats.py « tests - github.com/littlefs-project/littlefs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ab21b59a67493c7d55c3bdbb3b45b5af767d317c (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
#!/usr/bin/env python

import struct
import sys
import time
import os
import re

def main():
    with open('blocks/.config') as file:
        s = struct.unpack('<LLLL', file.read())
        print 'read_size: %d' % s[0]
        print 'prog_size: %d' % s[1]
        print 'block_size: %d' % s[2]
        print 'block_size: %d' % s[3]

    print 'real_size: %d' % sum(
        os.path.getsize(os.path.join('blocks', f))
        for f in os.listdir('blocks') if re.match('\d+', f))

    with open('blocks/.stats') as file:
        s = struct.unpack('<QQQ', file.read())
        print 'read_count: %d' % s[0]
        print 'prog_count: %d' % s[1]
        print 'erase_count: %d' % s[2]

    print 'runtime: %.3f' % (time.time() - os.stat('blocks').st_ctime)

if __name__ == "__main__":
    main(*sys.argv[1:])