First implementation of extract variable

This commit is contained in:
Dave Halter
2020-02-15 12:17:29 +01:00
parent ee8cdb667d
commit d1f7400829
3 changed files with 73 additions and 23 deletions

View File

@@ -552,6 +552,7 @@ class Script(object):
return refactoring.rename(self._grammar, definitions, new_name)
@no_py2_support
@validate_line_column
def extract_variable(self, line=None, column=None, **kwargs):
"""
:param new_name: The variable under the cursor will be renamed to this
@@ -561,9 +562,18 @@ class Script(object):
return self._extract_variable(line, column, **kwargs) # Python 2...
def _extract_variable(self, line, column, new_name, until_line=None, until_column=None):
raise NotImplementedError
if until_line is None or until_column is None:
if until_line is not until_column:
raise TypeError('If you provide until_line or until_column '
'you have to provide both')
until_pos = None
else:
until_pos = until_line, until_column
return refactoring.extract_variable(
self._grammar, self.path, self._module_node, new_name, (line, column), until_pos)
@no_py2_support
@validate_line_column
def extract_function(self, line=None, column=None, **kwargs):
"""
"""

View File

@@ -6,11 +6,13 @@ import difflib
from parso import split_lines
from jedi.api.exceptions import RefactoringError
from jedi.inference.utils import indent_block
_INLINE_NEEDS_BRACKET = (
'xor_expr and_expr shift_expr arith_expr term factor power atom_expr '
'or_test and_test not_test comparison'
).split()
_DEFINITION_SCOPES = ('suite', 'file_input')
class ChangedFile(object):
@@ -215,8 +217,57 @@ def inline(grammar, names):
return Refactoring(grammar, file_to_node_changes)
def extract_variable(grammar, path, module_node, new_name, pos, until_pos):
start_leaf = module_node.get_leaf_for_position(pos, include_prefixes=True)
if until_pos is None:
node = start_leaf
if node.type == 'operator':
node = node.parent
while node.parent.type in _INLINE_NEEDS_BRACKET:
node = node.parent
start_leaf
extracted = node.get_code(include_prefix=False)
nodes = [node]
else:
end_leaf = module_node.get_leaf_for_position(until_pos, include_prefixes=True)
if end_leaf.start_pos > until_pos:
end_leaf = end_leaf.get_previous_leaf()
if end_leaf is None:
raise RefactoringError('Cannot extract anything from that')
definition = _get_parent_definition(node)
first_definition_leaf = definition.get_first_leaf()
dct = {}
for i, node in enumerate(nodes):
dct[node] = node.get_first_leaf().prefix + new_name if i == 0 else ''
dct[first_definition_leaf] = _insert_line_before(
first_definition_leaf,
new_name + ' = ' + extracted,
)
file_to_node_changes = {path: dct}
return Refactoring(grammar, file_to_node_changes)
def _remove_indent_of_prefix(prefix):
r"""
Removes the last indentation of a prefix, e.g. " \n \n " becomes " \n \n".
"""
return ''.join(split_lines(prefix, keepends=True)[:-1])
def _insert_line_before(leaf, code):
lines = split_lines(leaf.prefix, keepends=True)
lines[-1:-1] = [indent_block(code, lines[-1]) + '\n']
return ''.join(lines) + leaf.value
def _get_parent_definition(node):
"""
Returns the statement where a node is defined.
"""
while node is not None:
if node.parent.type in _DEFINITION_SCOPES:
return node
node = node.parent
raise NotImplementedError('We should never even get here')

View File

@@ -1,51 +1,40 @@
# -------------------------------------------------- simple-1
def test():
#? 35 {'new_name': 'a'}
#? 35 text {'new_name': 'a'}
return test(100, (30 + b, c) + 1)
# ++++++++++++++++++++++++++++++++++++++++++++++++++
def test():
#? 35 {'new_name': 'a'}
#? 35 text {'new_name': 'a'}
a = (30 + b, c) + 1
return test(100, a)
# -------------------------------------------------- simple-2
def test():
#? 25 {'new_name': 'a'}
#? 25 text {'new_name': 'a'}
return test(100, (30 + b, c) + 1)
# ++++++++++++++++++++++++++++++++++++++++++++++++++
def test():
#? 25 {'new_name': 'a'}
#? 25 text {'new_name': 'a'}
a = 30 + b
return test(100, (a, c) + 1)
# -------------------------------------------------- multiline-1
def test():
#? 30 {'new_name': 'a'}
#? 30 text {'new_name': 'x'}
return test(1, (30 + b, c)
+ 1)
# ++++++++++++++++++++++++++++++++++++++++++++++++++
def test():
#? 30 {'new_name': 'a'}
x = ((30 + b, c)
+ 1)
return test(1, x
)
#? 30 text {'new_name': 'x'}
x = (30 + b, c)
+ 1
return test(1, x)
# -------------------------------------------------- multiline-2
def test():
#? 25 {'new_name': 'a'}
#? 25 text {'new_name': 'x'}
return test(1, (30 + b, c)
+ 1)
# ++++++++++++++++++++++++++++++++++++++++++++++++++
def test():
#? 25 {'new_name': 'a'}
#? 25 text {'new_name': 'x'}
x = 30 + b
return test(1, (x, c)
+ 1)