org.opencb.cellbase.lib.indexer.IndexManager Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2015-2020 OpenCB
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.opencb.cellbase.lib.indexer;
import com.fasterxml.jackson.databind.DeserializationFeature;
import com.fasterxml.jackson.databind.MapperFeature;
import com.fasterxml.jackson.databind.ObjectMapper;
import org.apache.commons.lang3.StringUtils;
import org.opencb.cellbase.core.config.CellBaseConfiguration;
import org.opencb.cellbase.lib.db.MongoDBManager;
import org.opencb.cellbase.lib.impl.core.CellBaseDBAdaptor;
import org.opencb.commons.datastore.core.ObjectMap;
import org.opencb.commons.datastore.mongodb.MongoDBIndexUtils;
import org.opencb.commons.datastore.mongodb.MongoDataStore;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.io.BufferedReader;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.util.*;
public class IndexManager {
private CellBaseConfiguration configuration;
private Logger logger;
private String databaseName;
private Path indexFile;
private MongoDBIndexUtils mongoDBIndexUtils;
private MongoDBManager mongoDBManager;
private Map>> indexes;
public IndexManager(String databaseName, Path indexFile, CellBaseConfiguration configuration) {
this.databaseName = databaseName;
this.indexFile = indexFile;
this.configuration = configuration;
init();
}
private void init() {
logger = LoggerFactory.getLogger(this.getClass());
mongoDBManager = new MongoDBManager(configuration);
// Path indexFile = Paths.get("./cellbase-lib/src/main/resources/mongodb-indexes.json");
MongoDataStore mongoDBDatastore = mongoDBManager.createMongoDBDatastore(databaseName);
mongoDBIndexUtils = new MongoDBIndexUtils(mongoDBDatastore, indexFile);
indexes = null;
}
/**
* Create indexes for specified collection. Use by the load to create indexes. Will throw an exception if
* given database does not already exist.
*
* @param collectionName create indexes for this collection, can be "all" or a list of collection names
* @param dropIndexesFirst if TRUE, deletes the index before creating a new one. FALSE, no index is created if it
* already exists.
* @throws IOException if configuration file can't be read
*/
@Deprecated
public void createMongoDBIndexes(String collectionName, boolean dropIndexesFirst) throws IOException {
// InputStream indexResourceStream = getClass().getResourceAsStream("mongodb-indexes.json");
if (StringUtils.isEmpty(collectionName) || "all".equalsIgnoreCase(collectionName)) {
mongoDBIndexUtils.createAllIndexes(dropIndexesFirst);
// mongoDBIndexUtils.createAllIndexes(mongoDataStore, indexResourceStream, dropIndexesFirst);
logger.info("Loaded all indexes");
} else {
String[] collections = collectionName.split(",");
for (String collection : collections) {
mongoDBIndexUtils.createIndexes(collection, dropIndexesFirst);
// mongoDBIndexUtils.createIndexes(mongoDataStore, indexResourceStream, collection, dropIndexesFirst);
logger.info("Loaded index for {} ", collection);
}
}
}
public void createMongoDBIndexes(List collections, boolean dropIndexesFirst) throws IOException {
checkIndexes();
for (String collection : collections) {
String key = collection.split(CellBaseDBAdaptor.DATA_RELEASE_SEPARATOR)[0];
if (indexes.containsKey(key)) {
mongoDBIndexUtils.createIndexes(collection, indexes.get(key), dropIndexesFirst);
logger.info("Loaded index for {} ", collection);
} else {
logger.error("Could not create index for collection {}: no defined index was found", collection);
}
}
}
/**
* Validate indexes for specified collection. Will throw an exception if given database does not already exist.
*
* @param collectionName create indexes for this collection, can be "all" or a list of collection names
* @throws IOException if configuration file can't be read
*/
public void validateMongoDBIndexes(String collectionName) throws IOException {
checkIndexes();
if (StringUtils.isEmpty(collectionName) || "all".equalsIgnoreCase(collectionName)) {
// mongoDBIndexUtils.validateAllIndexes();
logger.info("Validated all indexes");
} else {
String[] collections = collectionName.split(",");
for (String collection : collections) {
// mongoDBIndexUtils.validateIndexes(collection);
logger.info("Validated index for {} ", collection);
}
}
}
private void checkIndexes() throws IOException {
if (indexes == null) {
indexes = getIndexesFromFile();
}
}
private Map>> getIndexesFromFile() throws IOException {
ObjectMapper objectMapper = generateDefaultObjectMapper();
Map>> indexes = new HashMap<>();
try (BufferedReader bufferedReader = Files.newBufferedReader(indexFile)) {
bufferedReader.lines()
.filter(line -> !line.trim().isEmpty())
.forEach(line -> {
try {
HashMap hashMap = objectMapper.readValue(line, HashMap.class);
String collection = (String) hashMap.get("collection");
if (!indexes.containsKey(collection)) {
indexes.put(collection, new ArrayList<>());
}
Map myIndexes = new HashMap<>();
myIndexes.put("fields", new ObjectMap((Map) hashMap.get("fields")));
myIndexes.put("options", new ObjectMap((Map) hashMap.getOrDefault("options", Collections.emptyMap())));
indexes.get(collection).add(myIndexes);
} catch (IOException e) {
logger.error(e.getMessage(), e);
}
});
}
return indexes;
}
private ObjectMapper generateDefaultObjectMapper() {
ObjectMapper objectMapper = new ObjectMapper();
objectMapper.configure(MapperFeature.REQUIRE_SETTERS_FOR_GETTERS, true);
objectMapper.configure(DeserializationFeature.FAIL_ON_IGNORED_PROPERTIES, false);
objectMapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false);
objectMapper.configure(DeserializationFeature.FAIL_ON_NULL_FOR_PRIMITIVES, false);
objectMapper.configure(DeserializationFeature.ACCEPT_SINGLE_VALUE_AS_ARRAY, true);
return objectMapper;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy