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

org.protege.editor.owl.model.library.OntologyCatalogManager Maven / Gradle / Ivy

Go to download

OWL ontology editing infrastructure used by the Protege desktop application.

There is a newer version: 5.6.4-beta3
Show newest version
package org.protege.editor.owl.model.library;

import org.protege.editor.core.util.ProtegeDirectories;
import org.protege.xmlcatalog.CatalogUtilities;
import org.protege.xmlcatalog.XMLCatalog;
import org.protege.xmlcatalog.entry.Entry;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import java.io.File;
import java.io.IOException;
import java.net.URI;
import java.nio.file.Path;
import java.util.*;


/**
 * Author: Tim Redmond, Stanford University.
 */
public class OntologyCatalogManager {

    public static final String CATALOG_NAME = "catalog-v001.xml";

    public static final String CATALOG_BACKUP_PREFIX = "catalog-backup-";

    public static final String TIMESTAMP = "Timestamp";

    private static Logger logger = LoggerFactory.getLogger(OntologyCatalogManager.class);

    private Map localCatalogs = new HashMap<>();

    private XMLCatalog activeCatalog;

    private File activeCatalogFolder;

    private List entryManagers;

    public OntologyCatalogManager() {
        entryManagers = new ArrayList<>();
        CatalogEntryManagerLoader pluginLoader = new CatalogEntryManagerLoader();
        for(CatalogEntryManagerPlugin plugin : pluginLoader.getPlugins()) {
            try {
                entryManagers.add(plugin.newInstance());
            } catch(Throwable t) {
                logger.warn("An error occurred whilst instantiating a CatalogEntryManager plugin: {}", t);
            }
        }
    }

    public OntologyCatalogManager(List entryManagers) {
        this.entryManagers = new ArrayList<>(entryManagers);
    }

    /**
     * this works for catalogs that are generated from a parse or created
     * by the OntologyCatalogManager.
     */
    @Nullable
    public static File getCatalogFile(XMLCatalog catalog) {
        if(catalog == null || catalog.getXmlBaseContext() == null) {
            return null;
        }
        File f = new File(catalog.getXmlBaseContext().getXmlBase());
        if(f.exists() && f.isDirectory()) {
            f = getCatalogFile(f);
        }
        return f.exists() ? f : null;
    }

    /**
     * A utility method.
     * Gets a File representing the path of the catalog file in the specified folder.
     * This simply retrieves the path and does not imply the existence of the catalog file.
     *
     * @param folder The folder
     */
    @Nonnull
    public static File getCatalogFile(@Nonnull File folder) {
        return new File(folder, CATALOG_NAME);
    }

    @Nonnull
    public static File getGlobalCatalogFile() {
        return getCatalogFile(ProtegeDirectories.getDataDirectory());
    }

    @Nonnull
    public List getCatalogEntryManagers() {
        return Collections.unmodifiableList(entryManagers);
    }


    public Optional getRedirectForUri(@Nonnull URI originalURI) {
        for(XMLCatalog catalog : getAllCatalogs()) {
            URI redirect = CatalogUtilities.getRedirect(originalURI, catalog);
            if(redirect != null) {
                return Optional.of(redirect);
            }
        }
        return Optional.empty();
    }

    /**
     * @deprecated Use {@link #getRedirectForUri(URI)} instead
     */
    @Deprecated
    @Nullable
    public URI getRedirect(URI original) {
        return getRedirectForUri(original).orElse(null);
    }

    @Nonnull
    public List getAllCatalogs() {
        List catalogs = new ArrayList<>();
        catalogs.addAll(getLocalCatalogs());
        return catalogs;
    }

    public Collection getLocalCatalogs() {
        return localCatalogs.values();
    }

    @Nonnull
    public Optional getCurrentCatalog() {
        return Optional.ofNullable(activeCatalog);
    }

    /**
     * @deprecated Use {@link #getCurrentCatalog()} instead
     */
    @Deprecated
    @Nullable
    public XMLCatalog getActiveCatalog() {
        return activeCatalog;
    }

    @Nonnull
    public Optional getCurrentCatalogDirectory() {
        return Optional.ofNullable(activeCatalogFolder).map(File::toPath);
    }

    /**
     * @deprecated Use {@link #getCurrentCatalogDirectory()} instead.
     */
    @Deprecated
    @Nullable
    public File getActiveCatalogFolder() {
        return activeCatalogFolder;
    }

    public XMLCatalog addFolder(File dir) {
        XMLCatalog lib = localCatalogs.get(dir);
        // Add the parent file which will be the folder
        if(lib == null) {
            // Add automapped library
            logger.info("Adding folder to ontology catalog: {}", dir);
            lib = ensureCatalogExists(dir);
            localCatalogs.put(dir, lib);
        }
        activeCatalog = lib;
        activeCatalogFolder = dir;
        return lib;
    }

    public XMLCatalog ensureCatalogExists(File folder) {
        XMLCatalog catalog = null;
        File catalogFile = getCatalogFile(folder);
        boolean alreadyExists = catalogFile.exists();
        boolean modified = false;
        if(alreadyExists) {
            try {
                catalog = CatalogUtilities.parseDocument(catalogFile.toURI().toURL());
            } catch(Throwable e) {
                logger.warn("An error occurred whilst parsing the catalog document at {}.  Error: {}", catalogFile.getAbsolutePath(), e);
                backup(folder, catalogFile);
            }
        }
        if(catalog == null) {
            catalog = new XMLCatalog(folder.toURI());
            modified = true;
        }
        if(alreadyExists) {
            try {
                modified = modified | update(catalog);
            } catch(Throwable t) {
                logger.warn("An error occurred whilst updating the catalog document at {}.  Error: {}", catalogFile.getAbsolutePath(), t);
            }
        }
        else {
            for(CatalogEntryManager entryManager : entryManagers) {
                try {
                    modified = modified | entryManager.initializeCatalog(folder, catalog);
                } catch(Throwable t) {
                    logger.warn("An error occurred whilst initializing the catalog at {}.  Error: {}", catalogFile.getAbsolutePath(), t);
                }
            }
        }
        if(modified) {
            try {
                CatalogUtilities.save(catalog, catalogFile);
            } catch(IOException e) {
                logger.warn("An error occurred whilst saving the catalog at {}.  Error: {}", catalogFile.getAbsolutePath(), e);
            }
        }
        return catalog;
    }

    private static void backup(File folder,
                               File catalogFile) {
        File backup;
        int i = 0;
        while(true) {
            if(!((backup = new File(folder, CATALOG_BACKUP_PREFIX + (i++) + ".xml")).exists())) {
                break;
            }
        }
        catalogFile.renameTo(backup);
    }

    public boolean update(XMLCatalog catalog) throws IOException {
        boolean modified = false;
        for(Entry entry : catalog.getEntries()) {
            for(CatalogEntryManager updater : entryManagers) {
                if(updater.isSuitable(entry)) {
                    modified = modified | updater.update(entry);
                }
            }
        }
        return modified;
    }

    public void reloadFolder(File dir) throws IOException {
        localCatalogs.remove(dir);
        localCatalogs.put(dir, CatalogUtilities.parseDocument(getCatalogFile(dir).toURI().toURL()));
        activeCatalog = localCatalogs.get(activeCatalogFolder);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy