-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstrip.py
More file actions
executable file
·204 lines (144 loc) · 7.19 KB
/
strip.py
File metadata and controls
executable file
·204 lines (144 loc) · 7.19 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
#!/usr/bin/python3
# Copyright (c) 2021, Craig Altenburg
# All rights reserved.
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
# 1. Redistributions of source code must retain the above copyright notice, this
# list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
# 3. Neither the name of the copyright holder nor the names of its
# contributors may be used to endorse or promote products derived from
# this software without specific prior written permission.
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
""" Strip comments and docstrings from a file. """
import sys, token, tokenize
# ------------------------------------------------------------------------------
# Function stripFile
# ------------------------------------------------------------------------------
def stripFile( source, destination, indent = 0, dump = False ):
""" Strip comments, document strings and extraneous white space
from a file
Parameters:
source: A readable file with source to strip.
destination: A writable file when we put the stripped source.
debug: Pass "True" to dump tokens to stderr as they are processed
"""
previousTokenType = token.INDENT
indentLevel = 0
didNewLine = False
needNewLine = False
indentChar = "\t" if indent == 0 else " " * indent
tokenizer = tokenize.generate_tokens( source.readline )
for tokenType, tokenText, (startLine, startCol), (endLine, endCol), lineText in tokenizer:
if dump:
print( "%2d %10s %4d.%-3d %4d.%-3d %-20r %r"
% (indentLevel,
tokenize.tok_name.get( tokenType, tokenType ),
startLine,
startCol,
endLine,
endCol,
tokenText,
lineText), file=sys.stderr )
# We want to eliminate comments and doc string so if we have one
# of those we just ignore the token.
if ( (tokenType != token.STRING or previousTokenType != token.INDENT)
and tokenType != token.COMMENT):
if tokenType == token.INDENT:
# If we have an INDENT token we update the indentLevel count.
indentLevel += 1
# If we just generated a new line we add one more indentLevel character
# Otherwise, we set the flag to generate a new line
if (didNewLine):
mod.write( indentChar )
else:
needNewLine = True
elif tokenType == token.DEDENT:
# If we have a DEDENT token we decrement the indentLevel count
indentLevel -= 1
# If we just started a new line, we'll have to start another
# with the correct indentation.
if (didNewLine):
needNewLine = True;
elif tokenType == token.NEWLINE or tokenType == token.NL:
# If we saw a NEWLINE or NL token we'll need a new line
needNewLine = True
else:
if needNewLine:
destination.write( "\n" )
destination.write( indentChar * indentLevel )
didNewLine = True
needNewLine = False
else:
didNewLine = False
# If we have two names or numbers (or one of each) side by
# side, put a space between them.
if ( (tokenType == token.NAME or tokenType == token.NUMBER)
and (previousTokenType == token.NAME or previousTokenType == token.NUMBER)):
destination.write( " " )
destination.write( tokenText )
previousTokenType = tokenType
# ------------------------------------------------------------------------------
# Main code
# ------------------------------------------------------------------------------
if __name__ == '__main__':
import argparse
parser = argparse.ArgumentParser(
formatter_class = argparse.RawDescriptionHelpFormatter,
description = ( """\
Strip comments, docstrings, and extra space from python source.
If no ouput file is specified, each converted file will be
written to a file matching the name of the input file but
with "-strip" inserted before the file extension.
""") )
parser.add_argument( "-V", "--version",
action = 'version',
version = '%(prog)s 1.0.1' )
parser.add_argument( "-o", "--output",
action = 'store',
metavar = 'output-file',
help = 'specifiy output file (use - to output to stdout)' )
parser.add_argument( "-i", "--indent",
action = 'store',
metavar = 'count',
type = int,
default = 0,
help = 'number of spaces to indent, or zero (default) to indent with tabs' )
parser.add_argument( "-d", "--dump",
action = 'store_true',
help = 'dump tokens to stderr' )
parser.add_argument( 'files',
nargs = '+' )
args = parser.parse_args()
if args.output == None:
outputFile = None
elif args.output == "-":
outputFile = sys.stdout
else:
outputFile = open( args.output, "w" )
for sourcePath in args.files:
sourceFile = open( sourcePath, "r" )
if outputFile == None:
parts = sourcePath.rpartition( '.' )
if parts[0]:
destinationPath = parts[0] + "-strip" + parts[1] + parts[2]
else:
destinationPath = sourcePath + "-strip"
destinationFile = open( destinationPath, "w" )
else:
destinationFile = outputFile
stripFile( sourceFile, destinationFile, args.indent, args.dump )
sourceFile.close()
if outputFile != None and outputFile != sys.stdout:
outputFile.close()