-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support generic range type in DMN engine (#6123)
- Loading branch information
Showing
24 changed files
with
242 additions
and
39 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
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
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
48 changes: 48 additions & 0 deletions
48
kie-dmn/kie-dmn-feel/src/main/java/org/kie/dmn/feel/lang/ast/RangeTypeNode.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,48 @@ | ||
/** | ||
* 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.kie.dmn.feel.lang.ast; | ||
|
||
import org.antlr.v4.runtime.ParserRuleContext; | ||
import org.kie.dmn.feel.lang.EvaluationContext; | ||
import org.kie.dmn.feel.lang.Type; | ||
import org.kie.dmn.feel.lang.types.GenRangeType; | ||
|
||
public class RangeTypeNode extends TypeNode { | ||
|
||
private final TypeNode genericTypeNode; | ||
|
||
public RangeTypeNode(ParserRuleContext ctx, TypeNode gen) { | ||
super(ctx); | ||
this.genericTypeNode = gen; | ||
} | ||
|
||
public RangeTypeNode(TypeNode genericTypeNode, String text) { | ||
this.genericTypeNode = genericTypeNode; | ||
this.setText(text); | ||
} | ||
|
||
@Override | ||
public Type evaluate(EvaluationContext ctx) { | ||
Type gen = genericTypeNode.evaluate(ctx); | ||
return new GenRangeType(gen); | ||
} | ||
|
||
@Override | ||
public <T> T accept(Visitor<T> v) { | ||
return v.visit(this); | ||
} | ||
|
||
public TypeNode getGenericTypeNode() { | ||
return genericTypeNode; | ||
} | ||
|
||
} |
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
64 changes: 64 additions & 0 deletions
64
kie-dmn/kie-dmn-feel/src/main/java/org/kie/dmn/feel/lang/types/GenRangeType.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,64 @@ | ||
/** | ||
* 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.kie.dmn.feel.lang.types; | ||
|
||
import org.kie.dmn.feel.lang.SimpleType; | ||
import org.kie.dmn.feel.lang.Type; | ||
import org.kie.dmn.feel.runtime.impl.RangeImpl; | ||
|
||
public class GenRangeType implements SimpleType { | ||
|
||
/** | ||
* Represents the "generic" type of the current list | ||
*/ | ||
private final Type gen; | ||
|
||
|
||
public GenRangeType(Type gen) { | ||
this.gen = gen; | ||
} | ||
|
||
@Override | ||
public boolean isInstanceOf(Object o) { | ||
if (o instanceof RangeImpl rangeImpl) { | ||
return gen.isInstanceOf(rangeImpl.getLowEndPoint()) && gen.isInstanceOf(rangeImpl.getHighEndPoint()); | ||
} else { | ||
return false; | ||
} | ||
} | ||
|
||
@Override | ||
public boolean isAssignableValue(Object value) { | ||
if ( value == null ) { | ||
return true; // a null-value can be assigned to any type. | ||
} | ||
if (!(value instanceof RangeImpl)) { | ||
return gen.isAssignableValue(value); | ||
} | ||
return isInstanceOf(value); | ||
} | ||
|
||
@Override | ||
public String getName() { | ||
return "[anonymous]"; | ||
} | ||
|
||
public Type getGen() { | ||
return gen; | ||
} | ||
|
||
@Override | ||
public boolean conformsTo(Type t) { | ||
return (t instanceof GenRangeType && this.gen.conformsTo(((GenRangeType) t).gen)) || t == BuiltInType.RANGE; | ||
} | ||
|
||
} |
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
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
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.