-
Notifications
You must be signed in to change notification settings - Fork 24.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add bindings that allow some specialized methods to store permanent state between script executions.
- Loading branch information
Showing
19 changed files
with
712 additions
and
91 deletions.
There are no files selected for viewing
This file contains 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
67 changes: 67 additions & 0 deletions
67
modules/lang-painless/spi/src/main/java/org/elasticsearch/painless/spi/WhitelistBinding.java
This file contains 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,67 @@ | ||
/* | ||
* Licensed to Elasticsearch under one or more contributor | ||
* license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright | ||
* ownership. Elasticsearch 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.elasticsearch.painless.spi; | ||
|
||
import java.util.List; | ||
import java.util.Objects; | ||
|
||
/** | ||
* A binding represents a method call that stores state. Each binding class must have exactly one | ||
* public constructor and one public method excluding those inherited directly from {@link Object}. | ||
* The canonical type name parameters provided must match those of the constructor and method combined. | ||
* The constructor for a binding class will be called when the binding method is called for the first | ||
* time at which point state may be stored for the arguments passed into the constructor. The method | ||
* for a binding class will be called each time the binding method is called and may use the previously | ||
* stored state. | ||
*/ | ||
public class WhitelistBinding { | ||
|
||
/** Information about where this constructor was whitelisted from. */ | ||
public final String origin; | ||
|
||
/** The Java class name this binding represents. */ | ||
public final String targetJavaClassName; | ||
|
||
/** The method name for this binding. */ | ||
public final String methodName; | ||
|
||
/** | ||
* The canonical type name for the return type. | ||
*/ | ||
public final String returnCanonicalTypeName; | ||
|
||
/** | ||
* A {@link List} of {@link String}s that are the Painless type names for the parameters of the | ||
* constructor which can be used to look up the Java constructor through reflection. | ||
*/ | ||
public final List<String> canonicalTypeNameParameters; | ||
|
||
/** Standard constructor. All values must be not {@code null}. */ | ||
public WhitelistBinding(String origin, String targetJavaClassName, | ||
String methodName, String returnCanonicalTypeName, List<String> canonicalTypeNameParameters) { | ||
|
||
this.origin = Objects.requireNonNull(origin); | ||
this.targetJavaClassName = Objects.requireNonNull(targetJavaClassName); | ||
|
||
this.methodName = Objects.requireNonNull(methodName); | ||
this.returnCanonicalTypeName = Objects.requireNonNull(returnCanonicalTypeName); | ||
this.canonicalTypeNameParameters = Objects.requireNonNull(canonicalTypeNameParameters); | ||
} | ||
} |
This file contains 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 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.