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

de.learnlib.oracles.SULOracle Maven / Gradle / Ivy

There is a newer version: 0.12.0
Show newest version
/* Copyright (C) 2013-2014 TU Dortmund
 * This file is part of LearnLib, http://www.learnlib.de/.
 *
 * LearnLib is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License version 3.0 as published by the Free Software Foundation.
 *
 * LearnLib 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 LearnLib; if not, see
 * .
 */
package de.learnlib.oracles;

import javax.annotation.Nonnull;
import javax.annotation.ParametersAreNonnullByDefault;

import de.learnlib.api.MembershipOracle.MealyMembershipOracle;
import de.learnlib.api.SUL;
import de.learnlib.api.SULException;

import net.automatalib.words.Word;
import net.automatalib.words.WordBuilder;

/**
 * A wrapper around a system under learning (SUL).
 * 
 * @author falkhowar
 */
@ParametersAreNonnullByDefault
public class SULOracle extends AbstractSingleQueryOracle> implements MealyMembershipOracle {

	private final SUL sul;

	public SULOracle(SUL sul) {
		this.sul = sul;
	}

	@Override
	@Nonnull
	public Word answerQuery(Word prefix, Word suffix) throws SULException {
		sul.pre();
		try {
			// Prefix: Execute symbols, don't record output
			for(I sym : prefix) {
				sul.step(sym);
			}
			
			// Suffix: Execute symbols, outputs constitute output word
			WordBuilder wb = new WordBuilder<>(suffix.length());
			for(I sym : suffix) {
				wb.add(sul.step(sym));
			}
			
			return wb.toWord();
		}
		finally {
			sul.post();
		}
	}

}