aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/gizak/termui/config.py
blob: 9152bf517c0054695963ffa55440d824bb92ed63 (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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#!/usr/bin/env python3

# use v6;
#
# my $copyright = '// Copyright 2016 Zack Guo <gizak@icloud.com>. All rights reserved.
# // Use of this source code is governed by a MIT license that can
# // be found in the LICENSE file.
#
# ';
#
# sub MAIN('update-docstr', Str $srcp) {
#     if $srcp.IO.f {
#         $_ = $srcp.IO.slurp;
#         if m/^ \/\/\s Copyright .+? \n\n/ {
#             unless ~$/ eq $copyright {
#                 s/^ \/\/\s Copyright .+? \n\n /$copyright/;
#                 spurt $srcp, $_;
#                 say "[updated] doc string for:"~$srcp;
#             }
#         } else {
#             say "[added] doc string for "~$srcp~" (no match found)";
#             $_ = $copyright ~ $_;
#             spurt $srcp, $_;
#         }
#     }
# }

import re
import os
import io

copyright = """// Copyright 2016 Zack Guo <zack.y.guo@gmail.com>. All rights reserved.
// Use of this source code is governed by a MIT license that can
// be found in the LICENSE file.

"""

exclude_dirs = [".git", "_docs"]
exclude_files = []
include_dirs = [".", "debug", "extra", "test", "_example"]


def is_target(fpath):
    if os.path.splitext(fpath)[-1] == ".go":
        return True
    return False


def update_copyright(fpath):
    print("processing " + fpath)
    f = io.open(fpath, 'r', encoding='utf-8')
    fstr = f.read()
    f.close()

    # remove old
    m = re.search('^// Copyright .+?\r?\n\r?\n', fstr, re.MULTILINE|re.DOTALL)
    if m:
        fstr = fstr[m.end():]

    # add new
    fstr = copyright + fstr
    f = io.open(fpath, 'w',encoding='utf-8')
    f.write(fstr)
    f.close()


def main():
    for d in include_dirs:
        files = [
            os.path.join(d, f) for f in os.listdir(d)
            if os.path.isfile(os.path.join(d, f))
        ]
        for f in files:
            if is_target(f):
                update_copyright(f)


if __name__ == '__main__':
    main()