io.parsingdata.metal.token.Seq Maven / Gradle / Ivy
Show all versions of metal-core Show documentation
/*
* Copyright 2013-2024 Netherlands Forensic Institute
* Copyright 2021-2024 Infix Technologies B.V.
*
* 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.token;
import static io.parsingdata.metal.Trampoline.complete;
import static io.parsingdata.metal.Trampoline.intermediate;
import static io.parsingdata.metal.Util.checkContainsNoNulls;
import static io.parsingdata.metal.Util.checkNotNull;
import static io.parsingdata.metal.Util.success;
import static io.parsingdata.metal.data.ImmutableList.create;
import java.util.Objects;
import java.util.Optional;
import io.parsingdata.metal.Trampoline;
import io.parsingdata.metal.Util;
import io.parsingdata.metal.data.Environment;
import io.parsingdata.metal.data.ImmutableList;
import io.parsingdata.metal.data.ParseState;
import io.parsingdata.metal.encoding.Encoding;
/**
* A {@link Token} that specifies a dependency between a list of tokens.
*
* A Seq consists of a list of tokens
. If one of the tokens
* doesn't succeed, the Seq fails. If all of the tokens succeed, the Seq will
* succeed. Order is from left to right.
*/
public class Seq extends CycleToken {
public final ImmutableList tokens;
public Seq(final String name, final Encoding encoding, final Token token1, final Token token2, final Token... additionalTokens) {
super(name, encoding);
this.tokens = create(checkContainsNoNulls(additionalTokens, "additionalTokens"))
.add(checkNotNull(token2, "token2"))
.add(checkNotNull(token1, "token1"));
}
@Override
protected Optional parseImpl(final Environment environment) {
return iterate(environment.addBranch(this), tokens).computeResult();
}
private Trampoline> iterate(final Environment environment, final ImmutableList list) {
if (list.isEmpty()) {
return complete(() -> success(environment.parseState.closeBranch(this)));
}
return list.head
.parse(environment)
.map(nextParseState -> intermediate(() -> iterate(environment.withParseState(nextParseState), list.tail)))
.orElseGet(() -> complete(Util::failure));
}
@Override
public boolean isScopeDelimiter() {
return true;
}
@Override
public String toString() {
return getClass().getSimpleName() + "(" + makeNameFragment() + tokens + ")";
}
@Override
public boolean equals(final Object obj) {
return super.equals(obj)
&& Objects.equals(tokens, ((Seq)obj).tokens);
}
@Override
public int immutableHashCode() {
return Objects.hash(super.immutableHashCode(), tokens);
}
}