-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#246 Refactor Count/First/Last/FoldCat to OneToOneValueExpressions.
- Loading branch information
Showing
6 changed files
with
101 additions
and
110 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
77 changes: 77 additions & 0 deletions
77
core/src/main/java/io/parsingdata/metal/expression/value/OneToOneValueExpression.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,77 @@ | ||
/* | ||
* Copyright 2013-2016 Netherlands Forensic Institute | ||
* | ||
* 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 | ||
* | ||
* 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 io.parsingdata.metal.expression.value; | ||
|
||
import static io.parsingdata.metal.Util.checkNotNull; | ||
|
||
import java.util.Objects; | ||
import java.util.Optional; | ||
|
||
import io.parsingdata.metal.Util; | ||
import io.parsingdata.metal.data.ImmutableList; | ||
import io.parsingdata.metal.data.ParseState; | ||
import io.parsingdata.metal.encoding.Encoding; | ||
|
||
/** | ||
* Base class for {@link ValueExpression}s with one operand that evaluates | ||
* to a single value. | ||
* <p> | ||
* A OneToOneValueExpression implements a ValueExpression that has one | ||
* <code>operand</code> (a {@link ValueExpression}). The operand is first | ||
* evaluated. If it evaluates to {@link Optional#empty()}, the result of the | ||
* ValueExpression itself will be that as well. | ||
* <p> | ||
* To implement a OneToOneValueExpression, only the | ||
* {@link #eval(ImmutableList, ParseState, Encoding)} must | ||
* be implemented, handling the case of evaluating a list of values. This | ||
* base class takes care of evaluating the operand and handling list | ||
* semantics. | ||
* | ||
* @see BinaryValueExpression | ||
*/ | ||
public abstract class OneToOneValueExpression implements ValueExpression { | ||
|
||
public final ValueExpression operand; | ||
|
||
public OneToOneValueExpression(final ValueExpression operand) { | ||
this.operand = checkNotNull(operand, "operand"); | ||
} | ||
|
||
@Override | ||
public ImmutableList<Optional<Value>> eval(final ParseState parseState, final Encoding encoding) { | ||
return ImmutableList.create(eval(operand.eval(parseState, encoding), parseState, encoding)); | ||
} | ||
|
||
public abstract Optional<Value> eval(final ImmutableList<Optional<Value>> list, final ParseState parseState, final Encoding encoding); | ||
|
||
@Override | ||
public String toString() { | ||
return getClass().getSimpleName() + "(" + operand + ")"; | ||
} | ||
|
||
@Override | ||
public boolean equals(final Object obj) { | ||
return Util.notNullAndSameClass(this, obj) | ||
&& Objects.equals(operand, ((OneToOneValueExpression)obj).operand); | ||
} | ||
|
||
@Override | ||
public int hashCode() { | ||
return Objects.hash(getClass(), operand); | ||
} | ||
|
||
} |
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