org.vertexium.Metadata Maven / Gradle / Ivy
package org.vertexium;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.Collection;
import java.util.HashMap;
import java.util.Map;
import java.util.concurrent.locks.ReadWriteLock;
import java.util.concurrent.locks.ReentrantReadWriteLock;
public class Metadata {
public static final String KEY_SEPARATOR = "\u001f";
private final Map entries;
private final FetchHints fetchHints;
private transient ReadWriteLock entriesLock = new ReentrantReadWriteLock();
public Metadata() {
this(FetchHints.ALL);
}
public Metadata(FetchHints fetchHints) {
this.entries = new HashMap<>();
this.fetchHints = fetchHints;
}
public Metadata(Metadata copyFromMetadata) {
this(copyFromMetadata, FetchHints.ALL);
}
public Metadata(Metadata copyFromMetadata, FetchHints fetchHints) {
this(fetchHints);
if (copyFromMetadata != null) {
entries.putAll(copyFromMetadata.entries);
}
}
public Metadata add(String key, Object value, Visibility visibility) {
getEntriesLock().writeLock().lock();
try {
entries.put(toMapKey(key, visibility), new Entry(key, value, visibility));
return this;
} finally {
getEntriesLock().writeLock().unlock();
}
}
public void remove(String key, Visibility visibility) {
getEntriesLock().writeLock().lock();
try {
entries.remove(toMapKey(key, visibility));
} finally {
getEntriesLock().writeLock().unlock();
}
}
public void clear() {
getEntriesLock().writeLock().lock();
try {
entries.clear();
} finally {
getEntriesLock().writeLock().unlock();
}
}
public void remove(String key) {
getEntriesLock().writeLock().lock();
try {
for (Map.Entry e : new ArrayList<>(entries.entrySet())) {
if (e.getValue().getKey().equals(key)) {
entries.remove(e.getKey());
}
}
} finally {
getEntriesLock().writeLock().unlock();
}
}
public Collection entrySet() {
getEntriesLock().readLock().lock();
try {
return new ArrayList<>(entries.values());
} finally {
getEntriesLock().readLock().unlock();
}
}
public Entry getEntry(String key, Visibility visibility) {
getFetchHints().assertMetadataIncluded(key);
getEntriesLock().readLock().lock();
try {
return entries.get(toMapKey(key, visibility));
} finally {
getEntriesLock().readLock().unlock();
}
}
public Entry getEntry(String key) {
getFetchHints().assertMetadataIncluded(key);
getEntriesLock().readLock().lock();
try {
Entry entry = null;
for (Map.Entry e : entries.entrySet()) {
if (e.getValue().getKey().equals(key)) {
if (entry != null) {
throw new VertexiumException("Multiple matching entries for key: " + key);
}
entry = e.getValue();
}
}
return entry;
} finally {
getEntriesLock().readLock().unlock();
}
}
public Collection getEntries(String key) {
getFetchHints().assertMetadataIncluded(key);
getEntriesLock().readLock().lock();
try {
Collection results = new ArrayList<>();
for (Map.Entry e : entries.entrySet()) {
if (e.getValue().getKey().equals(key)) {
Entry entry = e.getValue();
results.add(entry);
}
}
return results;
} finally {
getEntriesLock().readLock().unlock();
}
}
public Object getValue(String key, Visibility visibility) {
Entry entry = getEntry(key, visibility);
if (entry == null) {
return null;
}
return entry.getValue();
}
public Object getValue(String key) {
Entry entry = getEntry(key);
if (entry == null) {
return null;
}
return entry.getValue();
}
public Collection
© 2015 - 2025 Weber Informatics LLC | Privacy Policy