package io.undertow.util;
import java.util.Collections;
import java.util.IdentityHashMap;
import java.util.List;
import java.util.Map;
import io.undertow.UndertowMessages;
public abstract class AbstractAttachable implements Attachable {
private Map<AttachmentKey<?>, Object> attachments;
@Override
public <T> T getAttachment(final AttachmentKey<T> key) {
if (key == null || attachments == null) {
return null;
}
return (T) attachments.get(key);
}
@Override
public <T> List<T> getAttachmentList(AttachmentKey<? extends List<T>> key) {
if (key == null || attachments == null) {
return Collections.emptyList();
}
List<T> list = (List<T>) attachments.get(key);
if (list == null) {
return Collections.emptyList();
}
return list;
}
@Override
public <T> T putAttachment(final AttachmentKey<T> key, final T value) {
if (key == null) {
throw UndertowMessages.MESSAGES.argumentCannotBeNull("key");
}
if(attachments == null) {
attachments = createAttachmentMap();
}
return (T) attachments.put(key, value);
}
protected Map<AttachmentKey<?>, Object> createAttachmentMap() {
return new IdentityHashMap<>(5);
}
@Override
public <T> T removeAttachment(final AttachmentKey<T> key) {
if (key == null || attachments == null) {
return null;
}
return (T) attachments.remove(key);
}
@Override
public <T> void addToAttachmentList(final AttachmentKey<AttachmentList<T>> key, final T value) {
if (key != null) {
if(attachments == null) {
attachments = createAttachmentMap();
}
final Map<AttachmentKey<?>, Object> attachments = this.attachments;
final AttachmentList<T> list = (AttachmentList<T>) attachments.get(key);
if (list == null) {
final AttachmentList<T> newList = new AttachmentList<>(((ListAttachmentKey<T>) key).getValueClass());
attachments.put(key, newList);
newList.add(value);
} else {
list.add(value);
}
}
}
}