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

ai.grakn.migration.export.KBWriter Maven / Gradle / Ivy

There is a newer version: 1.4.3
Show newest version
/*
 * Grakn - A Distributed Semantic Database
 * Copyright (C) 2016  Grakn Labs Limited
 *
 * Grakn is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * Grakn 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with Grakn. If not, see .
 */
package ai.grakn.migration.export;

import ai.grakn.GraknTx;
import ai.grakn.concept.Concept;
import ai.grakn.concept.Role;
import ai.grakn.concept.Rule;
import ai.grakn.concept.SchemaConcept;
import ai.grakn.concept.Type;
import ai.grakn.graql.VarPattern;
import ai.grakn.util.Schema;

import java.util.function.Function;
import java.util.stream.Stream;

import static java.util.stream.Collectors.joining;

/**
 * Export contents of a Grakn Knowledge Base as a Graql insert query.
 * @author alexandraorth
 */
public class KBWriter {

    private static final String EOL = ";\n";

    private final GraknTx tx;

    public KBWriter(GraknTx tx){
        this.tx = tx;
    }

    /**
     * Export the schema of a Grakn graph as Graql string
     * @return Graql insert query with schema of given graph
     */
    public String dumpSchema(){
        return join(types().map(SchemaConceptMapper::map));
    }

    /**
     *  Export the data of a Grakn graph as a Graql string
     * @return Graql insert query with data in given graph
     */
    public String dumpData(){
        return join(types()
                .filter(Concept::isType)
                .map(Concept::asType)
                .flatMap(Type::instances)
                .map(Concept::asThing)
                .map(InstanceMapper::map));
    }

    /**
     * Turn a stream of Graql patterns into a Graql insert query.
     * @param stream stream of Graql patterns
     * @return Graql patterns as a string
     */
    private String join(Stream stream){
        return stream
                .filter(varPattern -> varPattern.admin().getProperties().findAny().isPresent())
                .map(Object::toString)
                .collect(joining(EOL, "", EOL));
    }

    /**
     * Get all the types in a graph.
     * @return a stream of all types with non-reserved IDs
     */
    private Stream types(){
        Stream types = tx.admin().getMetaConcept().subs();
        Stream roles = tx.admin().getMetaRole().subs();
        Stream rules = tx.admin().getMetaRule().subs();

        return Stream.of(types, roles, rules)
                .flatMap(Function.identity())
                .filter(t -> !Schema.MetaSchema.isMetaLabel(t.getLabel()));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy