Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
synapse
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Timo Ley
synapse
Commits
04abf53a
Commit
04abf53a
authored
9 years ago
by
Mark Haines
Browse files
Options
Downloads
Patches
Plain Diff
Use argparse for definition finder
parent
3559a835
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
scripts-dev/definitions.py
+38
-26
38 additions, 26 deletions
scripts-dev/definitions.py
with
38 additions
and
26 deletions
scripts-dev/definitions.py
+
38
−
26
View file @
04abf53a
...
...
@@ -92,21 +92,32 @@ def used_names(prefix, defs, names):
if
__name__
==
'
__main__
'
:
import
sys
,
os
if
not
sys
.
argv
[
1
:]:
sys
.
stderr
.
write
(
"
Usage: definitions.py <directory> <regexp>
\n
"
"
definitions.py <directory>
\n
"
"
Either list the definitions matching the regexp or list
\n
"
"
'
unused
'
definitions
\n
"
)
import
sys
,
os
,
argparse
,
re
parser
=
argparse
.
ArgumentParser
(
description
=
'
Find definitions.
'
)
parser
.
add_argument
(
"
--unused
"
,
action
=
"
store_true
"
,
help
=
"
Only list unused definitions
"
)
parser
.
add_argument
(
"
--ignore
"
,
action
=
"
append
"
,
metavar
=
"
REGEXP
"
,
help
=
"
Ignore a pattern
"
)
parser
.
add_argument
(
"
--pattern
"
,
nargs
=
'
+
'
,
action
=
"
append
"
,
metavar
=
"
REGEXP
"
,
help
=
"
Search for a pattern
"
)
parser
.
add_argument
(
"
directories
"
,
nargs
=
'
+
'
,
metavar
=
"
DIR
"
,
help
=
"
Directories to search for definitions
"
)
args
=
parser
.
parse_args
()
definitions
=
{}
for
root
,
dirs
,
files
in
os
.
walk
(
sys
.
argv
[
1
]):
for
filename
in
files
:
if
filename
.
endswith
(
"
.py
"
):
filepath
=
os
.
path
.
join
(
root
,
filename
)
definitions
[
filepath
]
=
definitions_in_file
(
filepath
)
for
directory
in
args
.
directories
:
for
root
,
dirs
,
files
in
os
.
walk
(
directory
):
for
filename
in
files
:
if
filename
.
endswith
(
"
.py
"
):
filepath
=
os
.
path
.
join
(
root
,
filename
)
definitions
[
filepath
]
=
definitions_in_file
(
filepath
)
names
=
{}
for
filepath
,
defs
in
definitions
.
items
():
...
...
@@ -115,16 +126,17 @@ if __name__ == '__main__':
for
filepath
,
defs
in
definitions
.
items
():
used_names
(
filepath
+
"
:
"
,
defs
,
names
)
if
sys
.
argv
[
2
:]:
import
re
pattern
=
re
.
compile
(
sys
.
argv
[
2
])
for
name
in
list
(
names
):
if
not
pattern
.
match
(
name
):
del
names
[
name
]
else
:
for
name
in
list
(
names
):
if
'
used
'
in
names
[
name
]:
del
names
[
name
]
yaml
.
dump
(
names
,
sys
.
stdout
,
default_flow_style
=
False
)
#yaml.dump(definitions, sys.stdout, default_flow_style=False)
patterns
=
[
re
.
compile
(
pattern
)
for
pattern
in
args
.
pattern
or
()]
ignore
=
[
re
.
compile
(
pattern
)
for
pattern
in
args
.
ignore
or
()]
result
=
{}
for
name
,
definition
in
names
.
items
():
if
patterns
and
not
any
(
pattern
.
match
(
name
)
for
pattern
in
patterns
):
continue
if
ignore
and
any
(
pattern
.
match
(
name
)
for
pattern
in
ignore
):
continue
if
args
.
unused
and
definition
.
get
(
'
used
'
):
continue
result
[
name
]
=
definition
yaml
.
dump
(
result
,
sys
.
stdout
,
default_flow_style
=
False
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment