/* * Copyright (C) 2014 SeqWare * * This program 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. * * 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package io.seqware.pipeline.plugins.sanity.checks; import io.seqware.pipeline.SqwKeys; import io.seqware.pipeline.plugins.sanity.QueryRunner; import io.seqware.pipeline.plugins.sanity.SanityCheckPluginInterface; import java.io.File; import java.sql.SQLException; import java.util.HashMap; import net.sourceforge.seqware.common.metadata.Metadata; import net.sourceforge.seqware.common.util.configtools.ConfigTools; import org.openide.util.lookup.ServiceProvider; /** * * @author Raunaq Suri */ @ServiceProvider(service = SanityCheckPluginInterface.class) public class BundleDir_Check implements SanityCheckPluginInterface { @Override public boolean isTutorialTest() { return false; } @Override public boolean isMasterTest() { return false; } @Override public boolean isDBTest() { return false; } @Override public boolean check(QueryRunner qRunner, Metadata metadataWS) throws SQLException { HashMap<String, String> settings = (HashMap<String, String>) ConfigTools.getSettings(); if (settings.isEmpty()) { return false; } else if (!settings.containsKey(SqwKeys.SW_BUNDLE_DIR.getSettingKey()) || !settings.containsKey(SqwKeys.SW_BUNDLE_REPO_DIR.getSettingKey())) { return false; } File bundleDir = new File(settings.get(SqwKeys.SW_BUNDLE_DIR.getSettingKey())); File bundleRepoDir = new File(settings.get(SqwKeys.SW_BUNDLE_REPO_DIR.getSettingKey())); if (bundleDir.exists() && bundleRepoDir.exists()) { if (bundleDir.canRead() && bundleDir.canWrite() && bundleRepoDir.canRead() && bundleRepoDir.canWrite()) { } else { return false; } } else { return false; } return true; } @Override public String getDescription() { return "Cannot access the bundle directories"; } @Override public int getPriority() { return 10; } }