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

org.trypticon.hex.interpreters.meta.AutoLengthInterpreter Maven / Gradle / Ivy

The newest version!
/*
 * Hex - a hex viewer and annotator
 * Copyright (C) 2009-2014,2016-2017  Trejkaz, Hex Project
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program.  If not, see .
 */

package org.trypticon.hex.interpreters.meta;

import org.trypticon.hex.binary.Binary;
import org.trypticon.hex.interpreters.FixedLengthInterpreter;
import org.trypticon.hex.interpreters.Interpreter;
import org.trypticon.hex.interpreters.Value;

import javax.annotation.Nonnull;
import java.util.Arrays;
import java.util.Collection;
import java.util.HashMap;
import java.util.Map;

/**
 * 

An interpreter containing multiple interpreters where each has a different length.

* *

The appropriate interpreter will automatically be selected based on the length of * the value being interpreted.

*/ class AutoLengthInterpreter implements Interpreter { private final Map> interpretersByLength; public AutoLengthInterpreter(FixedLengthInterpreter... interpreters) { this(Arrays.asList(interpreters)); } public AutoLengthInterpreter(Collection> interpreters) { this.interpretersByLength = new HashMap<>(interpreters.size()); for (FixedLengthInterpreter interpreter : interpreters) { this.interpretersByLength.put(interpreter.getValueLength(), interpreter); } } @Override public Class getType() { return Value.class; // can't be any more specific unless there happened to be a common superclass to them. } @Nonnull @Override public Value interpret(@Nonnull Binary binary, long position, long length) { Interpreter interpreter = interpretersByLength.get(length); if (interpreter != null) { return interpreter.interpret(binary, position, length); } else { throw new IllegalArgumentException("Only supports values of lengths " + interpretersByLength.keySet() + " but got " + length); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy