-
Notifications
You must be signed in to change notification settings - Fork 38.5k
Introduce IndexAccessor
SPI to customize the SpEL Indexer
#26478
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
Closed
jackmiking
wants to merge
2
commits into
spring-projects:main
from
jackmiking:SpEL-index-accessor-jackmiking
Closed
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
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
97 changes: 97 additions & 0 deletions
97
spring-expression/src/main/java/org/springframework/expression/IndexAccessor.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,97 @@ | ||
/* | ||
* Copyright 2002-2019 the original author or authors. | ||
* | ||
* Licensed 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 | ||
* | ||
* https://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.springframework.expression; | ||
|
||
import org.springframework.expression.spel.ast.ValueRef; | ||
import org.springframework.lang.Nullable; | ||
|
||
/** | ||
* A index accessor is able to read from (and possibly write to) an array's elements. | ||
sbrannen marked this conversation as resolved.
Show resolved
Hide resolved
|
||
* | ||
* <p>This interface places no restrictions, and so implementors are free to access elements | ||
* directly as fields or through getters or in any other way they see as appropriate. | ||
* | ||
* <p>A resolver can optionally specify an array of target classes for which it should be | ||
* called. However, if it returns {@code null} from {@link #getSpecificTargetClasses()}, | ||
* it will be called for all property references and given a chance to determine if it | ||
* can read or write them. | ||
* | ||
* <p>Property resolvers are considered to be ordered, and each will be called in turn. | ||
* The only rule that affects the call order is that any resolver naming the target | ||
* class directly in {@link #getSpecificTargetClasses()} will be called first, before | ||
* the general resolvers. | ||
* | ||
* @author jackmiking lee | ||
* @since 3.0 | ||
*/ | ||
public interface IndexAccessor { | ||
/** | ||
* Return an array of classes for which this resolver should be called. | ||
* <p>Returning {@code null} indicates this is a general resolver that | ||
* can be called in an attempt to resolve a property on any type. | ||
* @return an array of classes that this resolver is suitable for | ||
* (or {@code null} if a general resolver) | ||
*/ | ||
@Nullable | ||
Class<?>[] getSpecificTargetClasses(); | ||
|
||
/** | ||
* Called to determine if a resolver instance is able to access a specified property | ||
* on a specified target object. | ||
* @param context the evaluation context in which the access is being attempted | ||
* @param target the target object upon which the property is being accessed | ||
* @param index the index of the array being accessed | ||
* @return true if this resolver is able to read the property | ||
* @throws AccessException if there is any problem determining whether the property can be read | ||
*/ | ||
boolean canRead(EvaluationContext context, @Nullable Object target, Object index) throws AccessException; | ||
|
||
/** | ||
* Called to read a property from a specified target object. | ||
* Should only succeed if {@link #canRead} also returns {@code true}. | ||
* @param context the evaluation context in which the access is being attempted | ||
* @param target the target object upon which the property is being accessed | ||
* @param index the index of the array being accessed | ||
* @return a TypedValue object wrapping the property value read and a type descriptor for it | ||
* @throws AccessException if there is any problem accessing the property value | ||
*/ | ||
ValueRef read(EvaluationContext context, @Nullable Object target,Object index) throws AccessException; | ||
sbrannen marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
/** | ||
* Called to determine if a resolver instance is able to write to a specified | ||
* property on a specified target object. | ||
* @param context the evaluation context in which the access is being attempted | ||
* @param target the target object upon which the property is being accessed | ||
* @param index the index of the array being accessed | ||
* @return true if this resolver is able to write to the property | ||
* @throws AccessException if there is any problem determining whether the | ||
* property can be written to | ||
*/ | ||
boolean canWrite(EvaluationContext context, @Nullable Object target, Object index) throws AccessException; | ||
sbrannen marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
/** | ||
* Called to write to a property on a specified target object. | ||
* Should only succeed if {@link #canWrite} also returns {@code true}. | ||
* @param context the evaluation context in which the access is being attempted | ||
* @param target the target object upon which the property is being accessed | ||
* @param index the index of the array being accessed | ||
* @param newValue the new value for the property | ||
* @throws AccessException if there is any problem writing to the property value | ||
*/ | ||
void write(EvaluationContext context, @Nullable Object target, Object index, @Nullable Object newValue) | ||
throws AccessException; | ||
} |
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
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.