Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Autocompletion of imports, class names, and static fields and methods after a classname #47

Merged
merged 16 commits into from
Nov 29, 2020

Conversation

acardona
Copy link
Collaborator

@acardona acardona commented Nov 19, 2020

In any language, even in no language (for now), type and press control+space:

  • "from ij ": expands possible packages and subpackages.
  • "from ij.gui ": inserts "import " and expands possible classes (notice the white space after "gui")
  • "ImageP": expands to e.g. ImagePlus
  • "ImagePlus.": expands static fields and methods, case independent.
  • "ImagePlus.C": expands matching static fields and methods such as COLOR_RGB.
  • "importClass(Package.": expands to all available package + class name.
  • "importClass(Package.

This code builds on ClassUtil (the helper class aiming at fixing the "Open help for Class..." which is preliminary implemented as "Source or javadoc for class or package...", see #46 ).

This pull request is merely a point of discussion and exploration.

NOTE that it will take a few seconds before the autocompletion with control+space starts working: your system will be busy collecting class names from all jar files in Fiji.

There are some known issues:

  1. For some reason, when there are commas in an import, like:

"from ij import IJ, ImagePl"

... fails to recognize that this is the importStatement pattern, even though when tested separately in jython it works. May have to do with different number of backslashes for escaping characters.

  1. The "import ij" doesn't expand to e.g. "import ij.gui.PointRoi", rather, the list of classes is beyond the "ij" package and the replacement text removes the "ij" altogether.

This can happen when using a networked account across different computers
or with different monitors.
and collect info and URLs from their pom.xml
fixes or replaces the "Open Help" menu item, by using ClassUtils and
showing a UI that lists all matching classes with buttons to open their
source code in github or gitlab and the javadoc when available
(will guess the URL, load it, and not show a link to it when 404).

Can match partial text (the list of possible classes may be longer)
and can also match package names or partial package names. Any substring
of a fully qualified class name will be matched, which is fabulous.

(Compare with current implementatio nof "Open Help..." which requires
a fully qualified class name to work, which is not useful as often
one does not know it or not have it handy in a script.)
of package suffixes comes from java 8.
for a name that matches a subURL of javadoc.scijava.org
…ckage

and fields and methods of imported classes.
@imagesc-bot
Copy link

This pull request has been mentioned on Image.sc Forum. There might be relevant details there:

https://forum.image.sc/t/auto-code-completion-for-python-and-groovy-in-imagej-fiji/20515/15

@acardona
Copy link
Collaborator Author

Hi @ctrueden,
I understand that, given the scijava umbrella, you'd prefer the autocompletion to be implemented independently for each language via their org.scijava.script.ScriptLanguage, which seems to have method handles for that.
Was there any autocompletion already implemented for any language?
If so, can these already be triggered from the Script Editor EditorPane, which is an RSyntaxTextArea?

@imagesc-bot
Copy link

This pull request has been mentioned on Image.sc Forum. There might be relevant details there:

https://forum.image.sc/t/help-wanted-to-understand-the-service-discovery-model-in-scijava/45919/4

@imagejan
Copy link
Member

imagejan commented Nov 28, 2020

@acardona wrote:

Was there any autocompletion already implemented for any language?

Yes, @haesleinhuepf implemented auto-completion for the IJ1 Macro language, which ships by default with imagej-lecagy, and also for Groovy (and others?), these latter ones only ship via the CLIJ update sites however (right?).

EDIT:
see also #41 (which is very minimal and functionally limited).

@acardona acardona force-pushed the autocompletion branch 2 times, most recently from 4e1a665 to cc6e1d6 Compare November 29, 2020 03:03
@acardona
Copy link
Collaborator Author

acardona commented Nov 29, 2020

This branch is now ready to merge, implementing java class autocompletion, static method autocompletion, and automatic import insertion for jython scripts.

In addition, includes previous fixes for constraining dimensions of the Script Editor window to within the screen (to e.g. avoid seg faults in virtual desktops), and also a new menu item to open source or javadoc for a selected class or package.

Ideally, this branch would be merged and released immediately for use in the I2K conference starting tomorrow. My own tutorial is on December 1st, 2020 at UTC 21:00, and we'll make heavy use of jython scripting using java classes.

@imagesc-bot
Copy link

This pull request has been mentioned on Image.sc Forum. There might be relevant details there:

https://forum.image.sc/t/auto-code-completion-for-python-and-groovy-in-imagej-fiji/20515/20

@acardona acardona merged commit 5a73939 into scijava:master Nov 29, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants