Mercurial > hg > TextShaper
annotate textshaper/indent.py @ 31:23616399f36c
make indent a @lines function and test
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Sun, 23 Feb 2014 14:48:40 -0800 |
parents | c23782a7b7ba |
children | 88a69d587326 |
rev | line source |
---|---|
9
71fb16088d54
add file for indentation; wth did my work go??? :(
Jeff Hammel <k0scist@gmail.com>
parents:
diff
changeset
|
1 #!/usr/bin/env python |
71fb16088d54
add file for indentation; wth did my work go??? :(
Jeff Hammel <k0scist@gmail.com>
parents:
diff
changeset
|
2 |
71fb16088d54
add file for indentation; wth did my work go??? :(
Jeff Hammel <k0scist@gmail.com>
parents:
diff
changeset
|
3 """ |
71fb16088d54
add file for indentation; wth did my work go??? :(
Jeff Hammel <k0scist@gmail.com>
parents:
diff
changeset
|
4 indentation of text blocks |
71fb16088d54
add file for indentation; wth did my work go??? :(
Jeff Hammel <k0scist@gmail.com>
parents:
diff
changeset
|
5 """ |
71fb16088d54
add file for indentation; wth did my work go??? :(
Jeff Hammel <k0scist@gmail.com>
parents:
diff
changeset
|
6 |
24
0930c6884f8a
STUB: README.txt setup.py textshaper/indent.py
Jeff Hammel <k0scist@gmail.com>
parents:
11
diff
changeset
|
7 import argparse |
9
71fb16088d54
add file for indentation; wth did my work go??? :(
Jeff Hammel <k0scist@gmail.com>
parents:
diff
changeset
|
8 import os |
71fb16088d54
add file for indentation; wth did my work go??? :(
Jeff Hammel <k0scist@gmail.com>
parents:
diff
changeset
|
9 import sys |
31
23616399f36c
make indent a @lines function and test
Jeff Hammel <k0scist@gmail.com>
parents:
26
diff
changeset
|
10 from .decorator import lines |
9
71fb16088d54
add file for indentation; wth did my work go??? :(
Jeff Hammel <k0scist@gmail.com>
parents:
diff
changeset
|
11 |
31
23616399f36c
make indent a @lines function and test
Jeff Hammel <k0scist@gmail.com>
parents:
26
diff
changeset
|
12 @lines |
9
71fb16088d54
add file for indentation; wth did my work go??? :(
Jeff Hammel <k0scist@gmail.com>
parents:
diff
changeset
|
13 def indent(text, indentation=4, space=' ', strict=False): |
71fb16088d54
add file for indentation; wth did my work go??? :(
Jeff Hammel <k0scist@gmail.com>
parents:
diff
changeset
|
14 """ |
71fb16088d54
add file for indentation; wth did my work go??? :(
Jeff Hammel <k0scist@gmail.com>
parents:
diff
changeset
|
15 indent a block of text |
71fb16088d54
add file for indentation; wth did my work go??? :(
Jeff Hammel <k0scist@gmail.com>
parents:
diff
changeset
|
16 |
71fb16088d54
add file for indentation; wth did my work go??? :(
Jeff Hammel <k0scist@gmail.com>
parents:
diff
changeset
|
17 text -- lines of text to indent |
71fb16088d54
add file for indentation; wth did my work go??? :(
Jeff Hammel <k0scist@gmail.com>
parents:
diff
changeset
|
18 indentation -- number of spaces to indent |
71fb16088d54
add file for indentation; wth did my work go??? :(
Jeff Hammel <k0scist@gmail.com>
parents:
diff
changeset
|
19 space -- what to indent with |
71fb16088d54
add file for indentation; wth did my work go??? :(
Jeff Hammel <k0scist@gmail.com>
parents:
diff
changeset
|
20 strict -- whether to enforce required whitespace for negative indentation |
71fb16088d54
add file for indentation; wth did my work go??? :(
Jeff Hammel <k0scist@gmail.com>
parents:
diff
changeset
|
21 """ |
71fb16088d54
add file for indentation; wth did my work go??? :(
Jeff Hammel <k0scist@gmail.com>
parents:
diff
changeset
|
22 |
71fb16088d54
add file for indentation; wth did my work go??? :(
Jeff Hammel <k0scist@gmail.com>
parents:
diff
changeset
|
23 if not indentation: |
71fb16088d54
add file for indentation; wth did my work go??? :(
Jeff Hammel <k0scist@gmail.com>
parents:
diff
changeset
|
24 # nothing to do |
71fb16088d54
add file for indentation; wth did my work go??? :(
Jeff Hammel <k0scist@gmail.com>
parents:
diff
changeset
|
25 return text |
71fb16088d54
add file for indentation; wth did my work go??? :(
Jeff Hammel <k0scist@gmail.com>
parents:
diff
changeset
|
26 |
71fb16088d54
add file for indentation; wth did my work go??? :(
Jeff Hammel <k0scist@gmail.com>
parents:
diff
changeset
|
27 if indentation > 0: |
71fb16088d54
add file for indentation; wth did my work go??? :(
Jeff Hammel <k0scist@gmail.com>
parents:
diff
changeset
|
28 retval = [space * indentation + line for line in text] |
71fb16088d54
add file for indentation; wth did my work go??? :(
Jeff Hammel <k0scist@gmail.com>
parents:
diff
changeset
|
29 else: |
71fb16088d54
add file for indentation; wth did my work go??? :(
Jeff Hammel <k0scist@gmail.com>
parents:
diff
changeset
|
30 # negative indentation |
71fb16088d54
add file for indentation; wth did my work go??? :(
Jeff Hammel <k0scist@gmail.com>
parents:
diff
changeset
|
31 indentation = -indentation |
71fb16088d54
add file for indentation; wth did my work go??? :(
Jeff Hammel <k0scist@gmail.com>
parents:
diff
changeset
|
32 retval = [] |
71fb16088d54
add file for indentation; wth did my work go??? :(
Jeff Hammel <k0scist@gmail.com>
parents:
diff
changeset
|
33 for line in text: |
71fb16088d54
add file for indentation; wth did my work go??? :(
Jeff Hammel <k0scist@gmail.com>
parents:
diff
changeset
|
34 prefix = line[:indentation] |
71fb16088d54
add file for indentation; wth did my work go??? :(
Jeff Hammel <k0scist@gmail.com>
parents:
diff
changeset
|
35 for index, char in enumerate(prefix): |
71fb16088d54
add file for indentation; wth did my work go??? :(
Jeff Hammel <k0scist@gmail.com>
parents:
diff
changeset
|
36 if not char == space: |
71fb16088d54
add file for indentation; wth did my work go??? :(
Jeff Hammel <k0scist@gmail.com>
parents:
diff
changeset
|
37 if strict: |
71fb16088d54
add file for indentation; wth did my work go??? :(
Jeff Hammel <k0scist@gmail.com>
parents:
diff
changeset
|
38 raise AssertionError("Found non-'%s' charcter at column %d for indentation -%d" % (space, index, indentation)) |
71fb16088d54
add file for indentation; wth did my work go??? :(
Jeff Hammel <k0scist@gmail.com>
parents:
diff
changeset
|
39 break |
71fb16088d54
add file for indentation; wth did my work go??? :(
Jeff Hammel <k0scist@gmail.com>
parents:
diff
changeset
|
40 else: |
71fb16088d54
add file for indentation; wth did my work go??? :(
Jeff Hammel <k0scist@gmail.com>
parents:
diff
changeset
|
41 index = indentation |
71fb16088d54
add file for indentation; wth did my work go??? :(
Jeff Hammel <k0scist@gmail.com>
parents:
diff
changeset
|
42 retval.append(line[index:]) |
71fb16088d54
add file for indentation; wth did my work go??? :(
Jeff Hammel <k0scist@gmail.com>
parents:
diff
changeset
|
43 |
10 | 44 return retval |
45 | |
46 | |
24
0930c6884f8a
STUB: README.txt setup.py textshaper/indent.py
Jeff Hammel <k0scist@gmail.com>
parents:
11
diff
changeset
|
47 def add_arguments(parser): |
0930c6884f8a
STUB: README.txt setup.py textshaper/indent.py
Jeff Hammel <k0scist@gmail.com>
parents:
11
diff
changeset
|
48 parser.add_argument('infile', nargs='?', type=argparse.FileType('r'), |
0930c6884f8a
STUB: README.txt setup.py textshaper/indent.py
Jeff Hammel <k0scist@gmail.com>
parents:
11
diff
changeset
|
49 default=sys.stdin) |
0930c6884f8a
STUB: README.txt setup.py textshaper/indent.py
Jeff Hammel <k0scist@gmail.com>
parents:
11
diff
changeset
|
50 parser.add_argument('-o', '--output', dest='output', |
0930c6884f8a
STUB: README.txt setup.py textshaper/indent.py
Jeff Hammel <k0scist@gmail.com>
parents:
11
diff
changeset
|
51 help="output file or stdout if not given") |
0930c6884f8a
STUB: README.txt setup.py textshaper/indent.py
Jeff Hammel <k0scist@gmail.com>
parents:
11
diff
changeset
|
52 |
26 | 53 |
9
71fb16088d54
add file for indentation; wth did my work go??? :(
Jeff Hammel <k0scist@gmail.com>
parents:
diff
changeset
|
54 def main(args=sys.argv[1:]): |
71fb16088d54
add file for indentation; wth did my work go??? :(
Jeff Hammel <k0scist@gmail.com>
parents:
diff
changeset
|
55 |
10 | 56 # parse command line |
57 description = """indent files or stdin if no files given""" | |
24
0930c6884f8a
STUB: README.txt setup.py textshaper/indent.py
Jeff Hammel <k0scist@gmail.com>
parents:
11
diff
changeset
|
58 parser = argparse.Argument(description=__doc__) |
0930c6884f8a
STUB: README.txt setup.py textshaper/indent.py
Jeff Hammel <k0scist@gmail.com>
parents:
11
diff
changeset
|
59 add_arguments(parser) |
0930c6884f8a
STUB: README.txt setup.py textshaper/indent.py
Jeff Hammel <k0scist@gmail.com>
parents:
11
diff
changeset
|
60 options = parser.parse_args(args) |
10 | 61 |
62 # process input | |
63 for f in _files(): | |
24
0930c6884f8a
STUB: README.txt setup.py textshaper/indent.py
Jeff Hammel <k0scist@gmail.com>
parents:
11
diff
changeset
|
64 |
0930c6884f8a
STUB: README.txt setup.py textshaper/indent.py
Jeff Hammel <k0scist@gmail.com>
parents:
11
diff
changeset
|
65 # indent the text |
26 | 66 indented = '\n'.join(indent(f)) |
24
0930c6884f8a
STUB: README.txt setup.py textshaper/indent.py
Jeff Hammel <k0scist@gmail.com>
parents:
11
diff
changeset
|
67 |
0930c6884f8a
STUB: README.txt setup.py textshaper/indent.py
Jeff Hammel <k0scist@gmail.com>
parents:
11
diff
changeset
|
68 # append to output |
0930c6884f8a
STUB: README.txt setup.py textshaper/indent.py
Jeff Hammel <k0scist@gmail.com>
parents:
11
diff
changeset
|
69 if options.output: |
0930c6884f8a
STUB: README.txt setup.py textshaper/indent.py
Jeff Hammel <k0scist@gmail.com>
parents:
11
diff
changeset
|
70 with open(options.output, 'a') as f: |
0930c6884f8a
STUB: README.txt setup.py textshaper/indent.py
Jeff Hammel <k0scist@gmail.com>
parents:
11
diff
changeset
|
71 f.write(indented) |
0930c6884f8a
STUB: README.txt setup.py textshaper/indent.py
Jeff Hammel <k0scist@gmail.com>
parents:
11
diff
changeset
|
72 else: |
0930c6884f8a
STUB: README.txt setup.py textshaper/indent.py
Jeff Hammel <k0scist@gmail.com>
parents:
11
diff
changeset
|
73 sys.stdout.write(indented) |
9
71fb16088d54
add file for indentation; wth did my work go??? :(
Jeff Hammel <k0scist@gmail.com>
parents:
diff
changeset
|
74 |
71fb16088d54
add file for indentation; wth did my work go??? :(
Jeff Hammel <k0scist@gmail.com>
parents:
diff
changeset
|
75 if __name__ == '__main__': |
71fb16088d54
add file for indentation; wth did my work go??? :(
Jeff Hammel <k0scist@gmail.com>
parents:
diff
changeset
|
76 main() |