18
18
import org .fife .ui .autocomplete .Completion ;
19
19
import org .fife .ui .autocomplete .DefaultCompletionProvider ;
20
20
import org .fife .ui .rsyntaxtextarea .RSyntaxTextArea ;
21
- import org .scijava .ui .swing .script .ClassUtil ;
22
21
23
- public class AutocompletionProvider extends DefaultCompletionProvider {
22
+ public class JythonAutocompletionProvider extends DefaultCompletionProvider {
24
23
25
24
private final RSyntaxTextArea text_area ;
25
+ private final ImportFormat formatter ;
26
26
27
- public AutocompletionProvider (final RSyntaxTextArea text_area ) {
27
+ public JythonAutocompletionProvider (final RSyntaxTextArea text_area , final ImportFormat formatter ) {
28
28
this .text_area = text_area ;
29
+ this .formatter = formatter ;
29
30
new Thread (new Runnable () {
30
31
@ Override
31
32
public void run () {
@@ -58,7 +59,7 @@ public boolean isValidChar(final char c) {
58
59
59
60
private final List <Completion > asCompletionList (final Stream <String > stream , final String pre ) {
60
61
return stream
61
- .map ((s ) -> new BasicCompletion (AutocompletionProvider .this , pre + s ))
62
+ .map ((s ) -> new BasicCompletion (JythonAutocompletionProvider .this , pre + s ))
62
63
.collect (Collectors .toList ());
63
64
}
64
65
@@ -72,20 +73,11 @@ public List<Completion> getCompletionsImpl(final JTextComponent comp) {
72
73
// E.g. "from ij" to expand to a package name and class like ij or ij.gui or ij.plugin
73
74
final Matcher m1 = fromImport .matcher (text );
74
75
if (m1 .find ())
75
- return asCompletionList (ClassUtil .findClassNamesContaining (m1 .group (3 ))
76
- .map (new Function <String , String >() {
77
- @ Override
78
- public final String apply (final String s ) {
79
- final int idot = s .lastIndexOf ('.' );
80
- return "from " + s .substring (0 , Math .max (0 , idot )) + " import " + s .substring (idot +1 );
81
- }
82
- }),
83
- "" );
76
+ return asCompletionList (ClassUtil .findClassNamesContaining (m1 .group (3 )).map (formatter ::singleToImportStatement ), "" );
84
77
85
78
final Matcher m1f = fastImport .matcher (text );
86
79
if (m1f .find ())
87
- return asCompletionList (ClassUtil .findClassNamesForPackage (m1f .group (2 )).map (s -> s .substring (m1f .group (2 ).length () + 1 )),
88
- m1f .group (0 ) + "import " );
80
+ return asCompletionList (ClassUtil .findClassNamesForPackage (m1f .group (2 )).map (formatter ::singleToImportStatement ), "" );
89
81
90
82
// E.g. "from ij.gui import Roi, Po" to expand to PolygonRoi, PointRoi for Jython
91
83
// or e.g. "importClass(Package.ij" to expand to a fully qualified class name for Javascript
@@ -113,8 +105,16 @@ public final String apply(final String s) {
113
105
}
114
106
115
107
final Matcher m3 = simpleClassName .matcher (text );
116
- if (m3 .find ())
117
- return asCompletionList (ClassUtil .findSimpleClassNamesStartingWith (m3 .group (2 )).stream (), m3 .group (1 ));
108
+ if (m3 .find ()) {
109
+ // Side effect: insert the import at the top of the file if necessary
110
+ //return asCompletionList(ClassUtil.findSimpleClassNamesStartingWith(m3.group(2)).stream(), m3.group(1));
111
+ return ClassUtil .findSimpleClassNamesStartingWith (m3 .group (2 )).stream ()
112
+ .map (className -> new ImportCompletion (JythonAutocompletionProvider .this ,
113
+ m3 .group (1 ) + className .substring (className .lastIndexOf ('.' ) + 1 ),
114
+ className ,
115
+ formatter .singleToImportStatement (className )))
116
+ .collect (Collectors .toList ());
117
+ }
118
118
119
119
final Matcher m4 = staticMethodOrField .matcher (text );
120
120
if (m4 .find ()) {
0 commit comments