stream.data.MapKeys Maven / Gradle / Ivy
/*
* streams library
*
* Copyright (C) 2011-2012 by Christian Bockermann, Hendrik Blom
*
* streams is a library, API and runtime environment for processing high
* volume data streams. It is composed of three submodules "stream-api",
* "stream-core" and "stream-runtime".
*
* The streams library (and its submodules) 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.
*
* The stream.ai library (and its submodules) 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 Affero 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 http://www.gnu.org/licenses/.
*/
package stream.data;
import java.io.File;
import java.io.FileInputStream;
import java.io.Serializable;
import java.util.LinkedHashMap;
import java.util.Map;
import java.util.Properties;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import stream.Processor;
import stream.annotations.Description;
import stream.annotations.Parameter;
/**
* @author chris
*
*/
@Description(text = "", group = "Data Stream.Processing.Transformations.Attributes")
public class MapKeys implements Processor {
static Logger log = LoggerFactory.getLogger(MapKeys.class);
String oldKey;
String newKey;
String map;
Map mapping = new LinkedHashMap();
public MapKeys(String oldKey, String newKey) {
this.oldKey = oldKey;
this.newKey = newKey;
}
public MapKeys() {
this.oldKey = "";
this.newKey = "";
}
/**
* @return the oldKey
*/
public String getFrom() {
return oldKey;
}
/**
* @param oldKey
* the oldKey to set
*/
public void setFrom(String oldKey) {
this.oldKey = oldKey;
}
/**
* @return the newKey
*/
public String getTo() {
return newKey;
}
/**
* @param newKey
* the newKey to set
*/
public void setTo(String newKey) {
this.newKey = newKey;
}
/**
* @return the map
*/
public String getMap() {
return map;
}
/**
* @param map
* the map to set
*/
@Parameter(name = "map", required = false)
public void setMap(String map) {
try {
if (map == null || map.trim().isEmpty())
return;
File file = new File(map);
Properties p = new Properties();
p.load(new FileInputStream(file));
for (Object key : p.keySet()) {
mapping.put(key.toString(), p.getProperty(key.toString()));
}
this.map = map;
} catch (Exception e) {
e.printStackTrace();
}
}
/**
* @see stream.Processor#process(stream.data.Data)
*/
@Override
public Data process(Data input) {
if (oldKey != null && newKey != null && input.containsKey(oldKey)) {
if (input.containsKey(newKey))
log.warn("Overwriting existing key '{}'!", newKey);
Serializable o = input.remove(oldKey);
input.put(newKey, o);
}
for (String key : mapping.keySet()) {
if (input.containsKey(key)) {
Serializable value = input.remove(key);
input.put(mapping.get(key), value);
}
}
return input;
}
/**
* @return the mapping
*/
public Map getMapping() {
return mapping;
}
/**
* @param mapping
* the mapping to set
*/
@Parameter(required = true, description = "A list of key mappings.")
public void setMapping(Map mapping) {
this.mapping = mapping;
}
}