2016-06-01 22:20:55 +02:00
|
|
|
package com.iluwatar.abstractdocument;
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
import java.util.Map;
|
|
|
|
import java.util.Objects;
|
|
|
|
import java.util.function.Function;
|
|
|
|
import java.util.stream.Stream;
|
|
|
|
|
|
|
|
public abstract class AbstractDocument implements Document {
|
|
|
|
|
2016-06-02 07:27:35 +02:00
|
|
|
private final Map<String, Object> properties;
|
|
|
|
|
|
|
|
protected AbstractDocument(Map<String, Object> properties) {
|
|
|
|
Objects.requireNonNull(properties, "properties map is required");
|
|
|
|
this.properties = properties;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public Void put(String key, Object value) {
|
|
|
|
properties.put(key, value);
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public Object get(String key) {
|
|
|
|
return properties.get(key);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public <T> Stream<T> children(String key, Function<Map<String, Object>, T> constructor) {
|
|
|
|
return Stream.of(get(key))
|
|
|
|
.filter(el -> el != null)
|
|
|
|
.map(el -> (List<Map<String, Object>>) el)
|
|
|
|
.findAny().get().stream()
|
|
|
|
.map(constructor);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public String toString() {
|
|
|
|
final StringBuilder builder = new StringBuilder();
|
|
|
|
builder.append(getClass().getName()).append("[");
|
|
|
|
properties.entrySet().forEach(e ->
|
|
|
|
builder.append("[").append(e.getKey()).append(" : ").append(e.getValue()).append("]")
|
|
|
|
);
|
|
|
|
builder.append("]");
|
|
|
|
return builder.toString();
|
|
|
|
}
|
2016-06-01 22:20:55 +02:00
|
|
|
|
|
|
|
}
|