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

benchmark.ProgramPresistenceManager Maven / Gradle / Ivy

The newest version!
/**
 *
 */
package benchmark;

/*
 * #%L
 * nohr-benchmark
 * %%
 * Copyright (C) 2014 - 2015 NOVA Laboratory of Computer Science and Informatics (NOVA LINCS)
 * %%
 * This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
 * #L%
 */

import static pt.unl.fct.di.novalincs.nohr.model.Model.negLiteral;
import static pt.unl.fct.di.novalincs.nohr.model.Model.var;

import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
import java.util.ArrayList;
import java.util.LinkedList;
import java.util.List;

import pt.unl.fct.di.novalincs.nohr.deductivedb.XSBFormatVisitor;
import pt.unl.fct.di.novalincs.nohr.model.Atom;
import pt.unl.fct.di.novalincs.nohr.model.FormatVisitor;
import pt.unl.fct.di.novalincs.nohr.model.Literal;
import pt.unl.fct.di.novalincs.nohr.model.Model;
import pt.unl.fct.di.novalincs.nohr.model.Program;
import pt.unl.fct.di.novalincs.nohr.model.Rule;
import pt.unl.fct.di.novalincs.nohr.model.Term;
import pt.unl.fct.di.novalincs.nohr.model.vocabulary.Vocabulary;

import com.igormaznitsa.prologparser.PrologCharDataSource;
import com.igormaznitsa.prologparser.PrologParser;
import com.igormaznitsa.prologparser.exceptions.PrologParserException;
import com.igormaznitsa.prologparser.terms.AbstractPrologTerm;
import com.igormaznitsa.prologparser.terms.PrologAtom;
import com.igormaznitsa.prologparser.terms.PrologFloatNumber;
import com.igormaznitsa.prologparser.terms.PrologIntegerNumber;
import com.igormaznitsa.prologparser.terms.PrologStructure;
import com.igormaznitsa.prologparser.terms.PrologTermType;

/**
 * Reads and writes {@link Program programs} with the Prolog syntax. Uses
 * {@link java-prolog-parser} to parse the programs.
 *
 * @author Nuno Costa
 */
public class ProgramPresistenceManager {

	/**
	 * Writes a given program to a given file.
	 *
	 * @param program
	 *            the program the write.
	 * @param file
	 *            the file to where the program will be written.
	 */
	public static void write(Program program, File file) throws IOException {
		final FormatVisitor format = new XSBFormatVisitor();
		final BufferedWriter writer = new BufferedWriter(new FileWriter(file));
		for (final Rule rule : program) {
			writer.write(rule.accept(format));
			writer.newLine();
		}
		writer.close();
	}

	/**
	 * The prolog parser used to read programs.
	 */
	private final PrologParser parser;

	/** The vocabulary used to recognize the predicates and constants of the readed program. */
	private Vocabulary v;

	/**
	 * Constructs a new {@link ProgramPresistenceManager} with a given {@link Vocabulary vocabulary}.
	 *
	 * @param vocabulary
	 *            the vocabulary used to recognize the predicates and constants of the readed program.
	 */
	public ProgramPresistenceManager(Vocabulary vocabulary) {
		v = vocabulary;
		parser = new PrologParser(null);
	}

	private Atom atom(final AbstractPrologTerm term) {
		if (term.getType() == PrologTermType.STRUCT) {
			final PrologStructure struct = (PrologStructure) term;
			final String pred = unquote(struct.getFunctor().getText());
			final List args = new ArrayList(struct.getArity());
			for (int i = 0; i < struct.getArity(); i++) {
				final AbstractPrologTerm prologArg = struct.getElement(i);
				switch (prologArg.getType()) {
				case ATOM:
					if (prologArg instanceof PrologIntegerNumber)
						args.add(v.cons(((PrologIntegerNumber) prologArg).getValue()));
					else if (prologArg instanceof PrologFloatNumber)
						args.add(v.cons(((PrologFloatNumber) prologArg).getValue()));
					else
						args.add(v.cons(unquote(prologArg.getText())));
					break;
				case VAR:
					args.add(var(prologArg.getText()));
					break;
				default:
					break;
				}
			}
			return Model.atom(v, pred, args);
		} else if (term.getType() == PrologTermType.ATOM) {
			final PrologAtom atom = (PrologAtom) term;
			return Model.atom(v, unquote(atom.getText()));
		} else
			throw new IllegalArgumentException("isn't an atom");
	}

	public Vocabulary getVoculary() {
		return v;
	}

	private Literal literal(AbstractPrologTerm term) {
		if (term.getType() == PrologTermType.STRUCT) {
			final String pred = ((PrologStructure) term).getFunctor().getText();
			if (pred.equals("tnot"))
				return negLiteral(atom(((PrologStructure) term).getElement(0)));
		}
		return atom(term);
	}

	private void literalsList(PrologStructure struct, List literals)
			throws IOException, PrologParserException {
		final String functor = struct.getFunctor().getText();
		if (!functor.equals(","))
			literals.add(literal(struct));
		else {
			literals.add(literal(struct.getElement(0)));
			literalsList((PrologStructure) struct.getElement(1), literals);
		}
	}

	/**
	 * Loads the rules of a given file to a given program.
	 *
	 * @param file
	 *            the file from where to read the rules.
	 * @param program
	 *            the program where the rules will be loaded.
	 * @throws IOException
	 * @throws PrologParserException
	 *             if the file has some syntax error.
	 */
	public void load(File file, Program program) throws IOException, PrologParserException {
		final PrologCharDataSource src = new PrologCharDataSource(new BufferedReader(new FileReader(file)));
		Rule currentRule = nextRule(src);
		while (currentRule != null) {
			program.add(currentRule);
			currentRule = nextRule(src);
		}
	}

	private Rule nextRule(PrologCharDataSource src) throws IOException, PrologParserException {
		final AbstractPrologTerm term = parser.nextSentence(src);
		if (term == null)
			return null;
		return rule(term);
	}

	/**
	 * Reads a {@link Program program} from a given file.
	 *
	 * @param file
	 *            the file from where to read the program.
	 * @return the read program.
	 * @throws IOException
	 * @throws PrologParserException
	 *             if the file have syntax errors.
	 */
	public Program read(File file) throws IOException, PrologParserException {
		final Program program = Model.program();
		load(file, program);
		return program;
	}

	private Rule rule(AbstractPrologTerm term) throws IOException, PrologParserException {
		if (term.getType() == PrologTermType.STRUCT) {
			final PrologStructure structure = (PrologStructure) term;
			if (!structure.getFunctor().getText().equals(":-"))
				return Model.rule((Atom) literal(structure));
			final Atom head = (Atom) literal(structure.getElement(0));
			final List body = new LinkedList();
			final AbstractPrologTerm bodyTerm = structure.getElement(1);
			if (bodyTerm != null)
				literalsList((PrologStructure) bodyTerm, body);
			return Model.rule(head, body);
		} else if (term.getType() == PrologTermType.ATOM)
			return Model.rule(atom(term));
		else
			throw new IllegalArgumentException("isn't a rule");
	}

	public void setVocabulary(Vocabulary vocabulary) {
		v = vocabulary;
	}

	private String unquote(String symbol) {
		if (symbol.startsWith("'") && symbol.endsWith("'"))
			return symbol.substring(1, symbol.length() - 1);
		else
			return symbol;
	}

};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy