com.splout.db.hazelcast.TablespaceVersionStore Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of splout-server Show documentation
Show all versions of splout-server Show documentation
Splout SQL is a read only, horizontally scalable and
partitioned SQL database that plays well with Hadoop.
package com.splout.db.hazelcast;
/*
* #%L
* Splout SQL Server
* %%
* Copyright (C) 2012 Datasalt Systems S.L.
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero 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 Affero General Public License
* along with this program. If not, see .
* #L%
*/
import java.io.File;
import java.io.IOException;
import java.nio.charset.Charset;
import java.util.Collection;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
import java.util.Set;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.codehaus.jackson.type.TypeReference;
import com.google.common.io.Files;
import com.hazelcast.core.MapLoader;
import com.hazelcast.core.MapStore;
import com.splout.db.common.JSONSerDe;
import com.splout.db.common.JSONSerDe.JSONSerDeException;
/**
* A Hazelcast MapLoader and MapStore that saves each map key/value in a file named "key" that contains "value" as a string (JSON).
* Saves data for CoordinationStructures.VERSIONS_BEING_SERVED
*/
public class TablespaceVersionStore implements MapLoader>, MapStore> {
private final static Log log = LogFactory.getLog(TablespaceVersionStore.class);
private File folder;
private final static Charset UTF8 = Charset.forName("UTF-8");
public TablespaceVersionStore(String baseFolder) {
File folder = new File(baseFolder);
if(!folder.exists()) {
folder.mkdirs();
}
this.folder = folder;
}
@Override
public void delete(String key) {
File file = getKeyFile(key);
if(file.exists()) {
file.delete();
}
}
@Override
public void deleteAll(Collection keys) {
for(String key: keys) {
delete(key);
}
}
@Override
public void store(String key, Map value) {
log.info("Store: " + key + " value: " + value);
try {
/**
* Save value as UTF8 String in a File
*/
Files.write(JSONSerDe.ser(value).getBytes(UTF8), getKeyFile(key));
} catch(IOException e) {
throw new RuntimeException(e);
} catch(JSONSerDeException e) {
throw new RuntimeException(e);
}
}
@Override
public void storeAll(Map> keyValues) {
for(Map.Entry> keyValue: keyValues.entrySet()) {
store(keyValue.getKey(), keyValue.getValue());
}
}
@Override
public Map load(String key) {
// log.info("Load: " + key);
try {
/**
* Load value from a String in a File
*/
Map map = readValues(getKeyFile(key));
// log.info("Load to return: " + map);
return map;
} catch(IOException e) {
throw new RuntimeException(e);
} catch(JSONSerDeException e) {
throw new RuntimeException(e);
}
}
@Override
public Map> loadAll(Collection keys) {
// log.info("Load all: " + keys);
Map> toReturn = new HashMap>();
for(String key: keys) {
Map result = load(key);
toReturn.put(key, result);
}
// log.info("Load all to return: " + toReturn);
return toReturn;
}
@Override
public Set loadAllKeys() {
// log.info("Load all keys:");
File[] files = folder.listFiles();
if(files == null) {
return null;
}
Set keys = new HashSet();
for(File file: files) {
keys.add(file.getName());
}
// log.info("Load all keys to return: " + keys);
return keys;
}
// --------------------------------- //
protected File getKeyFile(String key) {
return new File(folder, key);
}
public final static TypeReference