All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.parsingdata.metal.token.Def Maven / Gradle / Ivy

There is a newer version: 10.0.0
Show newest version
/*
 * 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.token;

import static java.math.BigInteger.ZERO;

import static io.parsingdata.metal.Util.checkNotEmpty;
import static io.parsingdata.metal.Util.checkNotNull;
import static io.parsingdata.metal.Util.failure;
import static io.parsingdata.metal.Util.success;

import java.math.BigInteger;
import java.util.Objects;
import java.util.Optional;

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.data.ParseValue;
import io.parsingdata.metal.encoding.Encoding;
import io.parsingdata.metal.expression.value.Value;
import io.parsingdata.metal.expression.value.ValueExpression;

/**
 * A {@link Token} that specifies a value to parse in the input.
 * 

* A Def consists of a size (a {@link ValueExpression}. *

* Parsing will succeed if size evaluates to a single value and if * that many bytes are available in the input. This means that a size of zero * will lead to a successful parse, but will not produce a value. * * @see ValueExpression */ public class Def extends Token { public final ValueExpression size; public Def(final String name, final ValueExpression size, final Encoding encoding) { super(checkNotEmpty(name, "name"), encoding); this.size = checkNotNull(size, "size"); } @Override protected Optional parseImpl(final Environment environment) { final ImmutableList> sizes = size.eval(environment.parseState, environment.encoding); if (sizes.size != 1 || !sizes.head.isPresent()) { return failure(); } return sizes.head .filter(dataSize -> dataSize.asNumeric().compareTo(ZERO) != 0) .map(dataSize -> slice(environment, dataSize.asNumeric())) .orElseGet(() -> success(environment.parseState)); } private Optional slice(final Environment environment, final BigInteger dataSize) { return environment.parseState .slice(dataSize) .map(slice -> environment.parseState.add(new ParseValue(environment.scope, this, slice, environment.encoding)).seek(dataSize.add(environment.parseState.offset))) .orElseGet(Util::failure); } @Override public String toString() { return getClass().getSimpleName() + "(" + makeNameFragment() + size + ")"; } @Override public boolean equals(final Object obj) { return super.equals(obj) && Objects.equals(size, ((Def)obj).size); } @Override public int hashCode() { return Objects.hash(super.hashCode(), size); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy