-
Notifications
You must be signed in to change notification settings - Fork 917
Inlining values inside debugger #8019
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
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| Manifest-Version: 1.0 | ||
| OpenIDE-Module: org.netbeans.api.lsp/1 | ||
| OpenIDE-Module-Localizing-Bundle: org/netbeans/api/lsp/Bundle.properties | ||
| OpenIDE-Module-Specification-Version: 1.34 | ||
| OpenIDE-Module-Specification-Version: 1.35 | ||
| AutoUpdate-Show-In-Client: false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,58 @@ | ||
| /* | ||
| * Licensed to the Apache Software Foundation (ASF) under one | ||
| * or more contributor license agreements. See the NOTICE file | ||
| * distributed with this work for additional information | ||
| * regarding copyright ownership. The ASF licenses this file | ||
| * to you under the Apache License, Version 2.0 (the | ||
| * "License"); you may not use this file except in compliance | ||
| * with the License. You may obtain a copy of the License at | ||
| * | ||
| * http://www.apache.org/licenses/LICENSE-2.0 | ||
| * | ||
| * Unless required by applicable law or agreed to in writing, | ||
| * software distributed under the License is distributed on an | ||
| * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
| * KIND, either express or implied. See the License for the | ||
| * specific language governing permissions and limitations | ||
| * under the License. | ||
| */ | ||
| package org.netbeans.api.lsp; | ||
|
|
||
| /** | ||
| * An expression whose value may be shown inline while debugging. | ||
| * | ||
| * @since 1.35 | ||
| */ | ||
| public final class InlineValue { | ||
| private final Range range; | ||
| private final String expression; | ||
|
|
||
| private InlineValue(Range range, String expression) { | ||
| this.range = range; | ||
| this.expression = expression; | ||
| } | ||
|
|
||
| /** | ||
| * {@return Range to which the inline value applies} | ||
| */ | ||
| public Range getRange() { | ||
| return range; | ||
| } | ||
|
|
||
| /** | ||
| * {@return The expression of that should be evaluated for the inline value.} | ||
| */ | ||
| public String getExpression() { | ||
| return expression; | ||
| } | ||
|
|
||
| /** | ||
| * {@return a new instance of {@code InlineValue}, based on the provided information.} | ||
| * | ||
| * @param range range to which the inline value should apply | ||
| * @param expression expression that should be evaluted | ||
| */ | ||
| public static InlineValue createInlineVariable(Range range, String expression) { | ||
| return new InlineValue(range, expression); | ||
| } | ||
| } | ||
42 changes: 42 additions & 0 deletions
42
ide/api.lsp/src/org/netbeans/spi/lsp/InlineValuesProvider.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,42 @@ | ||
| /* | ||
| * Licensed to the Apache Software Foundation (ASF) under one | ||
| * or more contributor license agreements. See the NOTICE file | ||
| * distributed with this work for additional information | ||
| * regarding copyright ownership. The ASF licenses this file | ||
| * to you under the Apache License, Version 2.0 (the | ||
| * "License"); you may not use this file except in compliance | ||
| * with the License. You may obtain a copy of the License at | ||
| * | ||
| * http://www.apache.org/licenses/LICENSE-2.0 | ||
| * | ||
| * Unless required by applicable law or agreed to in writing, | ||
| * software distributed under the License is distributed on an | ||
| * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
| * KIND, either express or implied. See the License for the | ||
| * specific language governing permissions and limitations | ||
| * under the License. | ||
| */ | ||
| package org.netbeans.spi.lsp; | ||
|
|
||
| import java.util.List; | ||
| import java.util.concurrent.CompletableFuture; | ||
| import org.netbeans.api.annotations.common.NonNull; | ||
| import org.netbeans.api.lsp.InlineValue; | ||
| import org.openide.filesystems.FileObject; | ||
|
|
||
| /** | ||
| * Compute {@link InlineValue}s for the given file and offset. | ||
| * | ||
| * @since 1.35 | ||
| */ | ||
| public interface InlineValuesProvider { | ||
|
|
||
| /** | ||
| * Compute {@linkplain InlineValue}s for the given file and location. | ||
| * | ||
| * @param file file for which the inline values should be computed | ||
| * @param currentExecutionPosition position for which the inline values should be computed | ||
| * @return the computed inline values | ||
| */ | ||
| public CompletableFuture<List<? extends InlineValue>> inlineValues(@NonNull FileObject file, int currentExecutionPosition); | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
80 changes: 80 additions & 0 deletions
80
ide/editor.lib2/src/org/netbeans/spi/editor/highlighting/support/HighlightsContainers.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,80 @@ | ||
| /* | ||
| * Licensed to the Apache Software Foundation (ASF) under one | ||
| * or more contributor license agreements. See the NOTICE file | ||
| * distributed with this work for additional information | ||
| * regarding copyright ownership. The ASF licenses this file | ||
| * to you under the Apache License, Version 2.0 (the | ||
| * "License"); you may not use this file except in compliance | ||
| * with the License. You may obtain a copy of the License at | ||
| * | ||
| * http://www.apache.org/licenses/LICENSE-2.0 | ||
| * | ||
| * Unless required by applicable law or agreed to in writing, | ||
| * software distributed under the License is distributed on an | ||
| * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
| * KIND, either express or implied. See the License for the | ||
| * specific language governing permissions and limitations | ||
| * under the License. | ||
| */ | ||
| package org.netbeans.spi.editor.highlighting.support; | ||
|
|
||
| import java.util.prefs.PreferenceChangeEvent; | ||
| import java.util.prefs.PreferenceChangeListener; | ||
| import java.util.prefs.Preferences; | ||
| import javax.swing.text.Document; | ||
| import org.netbeans.api.editor.mimelookup.MimeLookup; | ||
| import org.netbeans.lib.editor.util.swing.DocumentUtilities; | ||
| import org.netbeans.spi.editor.highlighting.HighlightsContainer; | ||
| import org.netbeans.spi.editor.highlighting.HighlightsSequence; | ||
| import org.openide.util.WeakListeners; | ||
|
|
||
| public class HighlightsContainers { | ||
| public static HighlightsContainer inlineHintsSettingAwareContainer(Document doc, HighlightsContainer delegate) { | ||
| class InlineHintsSettingsAwareContainer extends AbstractHighlightsContainer implements PreferenceChangeListener { | ||
| private static final String KEY_ENABLE_INLINE_HINTS = "enable.inline.hints"; | ||
|
|
||
| private final Preferences prefs; | ||
| private boolean enabled; | ||
|
|
||
| public InlineHintsSettingsAwareContainer() { | ||
| String mimeType = DocumentUtilities.getMimeType(doc); | ||
| prefs = MimeLookup.getLookup(mimeType).lookup(Preferences.class); | ||
| prefs.addPreferenceChangeListener(WeakListeners.create(PreferenceChangeListener.class, this, prefs)); | ||
| inlineSettingChanged(); | ||
| } | ||
|
|
||
| @Override | ||
| public HighlightsSequence getHighlights(int startOffset, int endOffset) { | ||
| synchronized (this) { | ||
| if (!enabled) { | ||
| return HighlightsSequence.EMPTY; | ||
| } | ||
| } | ||
| return delegate.getHighlights(startOffset, endOffset); | ||
| } | ||
|
|
||
| @Override | ||
| public void preferenceChange(PreferenceChangeEvent evt) { | ||
| if (KEY_ENABLE_INLINE_HINTS.equals(evt.getKey())) { | ||
| inlineSettingChanged(); | ||
| } | ||
| } | ||
|
|
||
| private void inlineSettingChanged() { | ||
| synchronized (this) { | ||
| boolean newValue = prefs.getBoolean(KEY_ENABLE_INLINE_HINTS, false); | ||
|
|
||
| if (enabled == newValue) { | ||
| return ; | ||
| } | ||
|
|
||
| enabled = newValue; | ||
| } | ||
|
|
||
| fireHighlightsChange(0, doc.getLength()); | ||
| } | ||
| } | ||
|
|
||
| return new InlineHintsSettingsAwareContainer(); | ||
| } | ||
| } |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.