FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
pythonVSCode/pythonFiles/rope/refactor/restructure.py at master · InfernoZeus/pythonVSCode · GitHub
InfernoZeus
/
pythonVSCode
Public
forked from
DonJayamanne/pythonVSCode
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
pythonVSCode
/
pythonFiles
/
rope
/
refactor
/
restructure.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
307 lines (258 loc) · 11.3 KB
Breadcrumbs
pythonVSCode
/
pythonFiles
/
rope
/
refactor
/
restructure.py
Copy path
File metadata and controls
307 lines (258 loc) · 11.3 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
import
warnings
from
rope
.
base
import
change
,
taskhandle
,
builtins
,
ast
,
codeanalyze
from
rope
.
base
import
libutils
from
rope
.
refactor
import
patchedast
,
similarfinder
,
sourceutils
from
rope
.
refactor
.
importutils
import
module_imports
class
Restructure
(
object
):
"""A class to perform python restructurings
A restructuring transforms pieces of code matching `pattern` to
`goal`. In the `pattern` wildcards can appear. Wildcards match
some piece of code based on their kind and arguments that are
passed to them through `args`.
`args` is a dictionary of wildcard names to wildcard arguments.
If the argument is a tuple, the first item of the tuple is
considered to be the name of the wildcard to use; otherwise the
"default" wildcard is used. For getting the list arguments a
wildcard supports, see the pydoc of the wildcard. (see
`rope.refactor.wildcard.DefaultWildcard` for the default
wildcard.)
`wildcards` is the list of wildcard types that can appear in
`pattern`. See `rope.refactor.wildcards`. If a wildcard does not
specify its kind (by using a tuple in args), the wildcard named
"default" is used. So there should be a wildcard with "default"
name in `wildcards`.
`imports` is the list of imports that changed modules should
import. Note that rope handles duplicate imports and does not add
the import if it already appears.
Example #1::
pattern ${pyobject}.get_attribute(${name})
goal ${pyobject}[${name}]
args pyobject: instance=rope.base.pyobjects.PyObject
Example #2::
pattern ${name} in ${pyobject}.get_attributes()
goal ${name} in {pyobject}
args pyobject: instance=rope.base.pyobjects.PyObject
Example #3::
pattern ${pycore}.create_module(${project}.root, ${name})
goal generate.create_module(${project}, ${name})
imports
from rope.contrib import generate
args
project: type=rope.base.project.Project
Example #4::
pattern ${pow}(${param1}, ${param2})
goal ${param1} ** ${param2}
args pow: name=mod.pow, exact
Example #5::
pattern ${inst}.longtask(${p1}, ${p2})
goal
${inst}.subtask1(${p1})
${inst}.subtask2(${p2})
args
inst: type=mod.A,unsure
"""
def
__init__
(
self
,
project
,
pattern
,
goal
,
args
=
None
,
imports
=
None
,
wildcards
=
None
):
"""Construct a restructuring
See class pydoc for more info about the arguments.
"""
self
.
project
=
project
self
.
pattern
=
pattern
self
.
goal
=
goal
self
.
args
=
args
if
self
.
args
is
None
:
self
.
args
=
{}
self
.
imports
=
imports
if
self
.
imports
is
None
:
self
.
imports
=
[]
self
.
wildcards
=
wildcards
self
.
template
=
similarfinder
.
CodeTemplate
(
self
.
goal
)
def
get_changes
(
self
,
checks
=
None
,
imports
=
None
,
resources
=
None
,
task_handle
=
taskhandle
.
NullTaskHandle
()):
"""Get the changes needed by this restructuring
`resources` can be a list of `rope.base.resources.File`\s to
apply the restructuring on. If `None`, the restructuring will
be applied to all python files.
`checks` argument has been deprecated. Use the `args` argument
of the constructor. The usage of::
strchecks = {'obj1.type': 'mod.A', 'obj2': 'mod.B',
'obj3.object': 'mod.C'}
checks = restructuring.make_checks(strchecks)
can be replaced with::
args = {'obj1': 'type=mod.A', 'obj2': 'name=mod.B',
'obj3': 'object=mod.C'}
where obj1, obj2 and obj3 are wildcard names that appear
in restructuring pattern.
"""
if
checks
is
not
None
:
warnings
.
warn
(
'The use of checks parameter is deprecated; '
'use the args parameter of the constructor instead.'
,
DeprecationWarning
,
stacklevel
=
2
)
for
name
,
value
in
checks
.
items
():
self
.
args
[
name
]
=
similarfinder
.
_pydefined_to_str
(
value
)
if
imports
is
not
None
:
warnings
.
warn
(
'The use of imports parameter is deprecated; '
'use imports parameter of the constructor, instead.'
,
DeprecationWarning
,
stacklevel
=
2
)
self
.
imports
=
imports
changes
=
change
.
ChangeSet
(
'Restructuring <%s> to <%s>'
%
(
self
.
pattern
,
self
.
goal
))
if
resources
is
not
None
:
files
=
[
resource
for
resource
in
resources
if
libutils
.
is_python_file
(
self
.
project
,
resource
)]
else
:
files
=
self
.
project
.
get_python_files
()
job_set
=
task_handle
.
create_jobset
(
'Collecting Changes'
,
len
(
files
))
for
resource
in
files
:
job_set
.
started_job
(
resource
.
path
)
pymodule
=
self
.
project
.
get_pymodule
(
resource
)
finder
=
similarfinder
.
SimilarFinder
(
pymodule
,
wildcards
=
self
.
wildcards
)
matches
=
list
(
finder
.
get_matches
(
self
.
pattern
,
self
.
args
))
computer
=
self
.
_compute_changes
(
matches
,
pymodule
)
result
=
computer
.
get_changed
()
if
result
is
not
None
:
imported_source
=
self
.
_add_imports
(
resource
,
result
,
self
.
imports
)
changes
.
add_change
(
change
.
ChangeContents
(
resource
,
imported_source
))
job_set
.
finished_job
()
return
changes
def
_compute_changes
(
self
,
matches
,
pymodule
):
return
_ChangeComputer
(
pymodule
.
source_code
,
pymodule
.
get_ast
(),
pymodule
.
lines
,
self
.
template
,
matches
)
def
_add_imports
(
self
,
resource
,
source
,
imports
):
if
not
imports
:
return
source
import_infos
=
self
.
_get_import_infos
(
resource
,
imports
)
pymodule
=
libutils
.
get_string_module
(
self
.
project
,
source
,
resource
)
imports
=
module_imports
.
ModuleImports
(
self
.
project
,
pymodule
)
for
import_info
in
import_infos
:
imports
.
add_import
(
import_info
)
return
imports
.
get_changed_source
()
def
_get_import_infos
(
self
,
resource
,
imports
):
pymodule
=
libutils
.
get_string_module
(
self
.
project
,
'
\n
'
.
join
(
imports
),
resource
)
imports
=
module_imports
.
ModuleImports
(
self
.
project
,
pymodule
)
return
[
imports
.
import_info
for
imports
in
imports
.
imports
]
def
make_checks
(
self
,
string_checks
):
"""Convert str to str dicts to str to PyObject dicts
This function is here to ease writing a UI.
"""
checks
=
{}
for
key
,
value
in
string_checks
.
items
():
is_pyname
=
not
key
.
endswith
(
'.object'
)
and
\
not
key
.
endswith
(
'.type'
)
evaluated
=
self
.
_evaluate
(
value
,
is_pyname
=
is_pyname
)
if
evaluated
is
not
None
:
checks
[
key
]
=
evaluated
return
checks
def
_evaluate
(
self
,
code
,
is_pyname
=
True
):
attributes
=
code
.
split
(
'.'
)
pyname
=
None
if
attributes
[
0
]
in
(
'__builtin__'
,
'__builtins__'
):
class
_BuiltinsStub
(
object
):
def
get_attribute
(
self
,
name
):
return
builtins
.
builtins
[
name
]
pyobject
=
_BuiltinsStub
()
else
:
pyobject
=
self
.
project
.
get_module
(
attributes
[
0
])
for
attribute
in
attributes
[
1
:]:
pyname
=
pyobject
[
attribute
]
if
pyname
is
None
:
return
None
pyobject
=
pyname
.
get_object
()
return
pyname
if
is_pyname
else
pyobject
def
replace
(
code
,
pattern
,
goal
):
"""used by other refactorings"""
finder
=
similarfinder
.
RawSimilarFinder
(
code
)
matches
=
list
(
finder
.
get_matches
(
pattern
))
ast
=
patchedast
.
get_patched_ast
(
code
)
lines
=
codeanalyze
.
SourceLinesAdapter
(
code
)
template
=
similarfinder
.
CodeTemplate
(
goal
)
computer
=
_ChangeComputer
(
code
,
ast
,
lines
,
template
,
matches
)
result
=
computer
.
get_changed
()
if
result
is
None
:
return
code
return
result
class
_ChangeComputer
(
object
):
def
__init__
(
self
,
code
,
ast
,
lines
,
goal
,
matches
):
self
.
source
=
code
self
.
goal
=
goal
self
.
matches
=
matches
self
.
ast
=
ast
self
.
lines
=
lines
self
.
matched_asts
=
{}
self
.
_nearest_roots
=
{}
if
self
.
_is_expression
():
for
match
in
self
.
matches
:
self
.
matched_asts
[
match
.
ast
]
=
match
def
get_changed
(
self
):
if
self
.
_is_expression
():
result
=
self
.
_get_node_text
(
self
.
ast
)
if
result
==
self
.
source
:
return
None
return
result
else
:
collector
=
codeanalyze
.
ChangeCollector
(
self
.
source
)
last_end
=
-
1
for
match
in
self
.
matches
:
start
,
end
=
match
.
get_region
()
if
start
<
last_end
:
if
not
self
.
_is_expression
():
continue
last_end
=
end
replacement
=
self
.
_get_matched_text
(
match
)
collector
.
add_change
(
start
,
end
,
replacement
)
return
collector
.
get_changed
()
def
_is_expression
(
self
):
return
self
.
matches
and
isinstance
(
self
.
matches
[
0
],
similarfinder
.
ExpressionMatch
)
def
_get_matched_text
(
self
,
match
):
mapping
=
{}
for
name
in
self
.
goal
.
get_names
():
node
=
match
.
get_ast
(
name
)
if
node
is
None
:
raise
similarfinder
.
BadNameInCheckError
(
'Unknown name <%s>'
%
name
)
force
=
self
.
_is_expression
()
and
match
.
ast
==
node
mapping
[
name
]
=
self
.
_get_node_text
(
node
,
force
)
unindented
=
self
.
goal
.
substitute
(
mapping
)
return
self
.
_auto_indent
(
match
.
get_region
()[
0
],
unindented
)
def
_get_node_text
(
self
,
node
,
force
=
False
):
if
not
force
and
node
in
self
.
matched_asts
:
return
self
.
_get_matched_text
(
self
.
matched_asts
[
node
])
start
,
end
=
patchedast
.
node_region
(
node
)
main_text
=
self
.
source
[
start
:
end
]
collector
=
codeanalyze
.
ChangeCollector
(
main_text
)
for
node
in
self
.
_get_nearest_roots
(
node
):
sub_start
,
sub_end
=
patchedast
.
node_region
(
node
)
collector
.
add_change
(
sub_start
-
start
,
sub_end
-
start
,
self
.
_get_node_text
(
node
))
result
=
collector
.
get_changed
()
if
result
is
None
:
return
main_text
return
result
def
_auto_indent
(
self
,
offset
,
text
):
lineno
=
self
.
lines
.
get_line_number
(
offset
)
indents
=
sourceutils
.
get_indents
(
self
.
lines
,
lineno
)
result
=
[]
for
index
,
line
in
enumerate
(
text
.
splitlines
(
True
)):
if
index
!=
0
and
line
.
strip
():
result
.
append
(
' '
*
indents
)
result
.
append
(
line
)
return
''
.
join
(
result
)
def
_get_nearest_roots
(
self
,
node
):
if
node
not
in
self
.
_nearest_roots
:
result
=
[]
for
child
in
ast
.
get_child_nodes
(
node
):
if
child
in
self
.
matched_asts
:
result
.
append
(
child
)
else
:
result
.
extend
(
self
.
_get_nearest_roots
(
child
))
self
.
_nearest_roots
[
node
]
=
result
return
self
.
_nearest_roots
[
node
]
Back
|
FazBrowse Home
|
New Git URL