All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.checkerframework.javacutil.AnnotationMirrorMap Maven / Gradle / Ivy

Go to download

The Checker Framework enhances Java's type system to make it more powerful and useful. This lets software developers detect and prevent errors in their Java programs. The Checker Framework includes compiler plug-ins ("checkers") that find bugs or verify their absence. It also permits you to write your own compiler plug-ins.

There is a newer version: 3.48.2
Show newest version
package org.checkerframework.javacutil;

import java.util.Collection;
import java.util.Map;
import java.util.NavigableMap;
import java.util.Set;
import java.util.TreeMap;
import javax.lang.model.element.AnnotationMirror;
import org.checkerframework.checker.nullness.qual.KeyFor;
import org.checkerframework.checker.nullness.qual.Nullable;
import org.checkerframework.dataflow.qual.Pure;

/**
 * The Map interface defines some of its methods with respect to the equals method. This
 * implementation of Map violates those specifications, but fulfills the same property using {@link
 * AnnotationUtils#areSame}.
 *
 * 

For example, the specification for the containsKey(Object key) method says: "returns true if * and only if this map contains a mapping for a key k such that (key == null ? k == null : * key.equals(k))." The specification for {@link AnnotationMirrorMap#containsKey} is "returns true * if and only if this map contains a mapping for a key k such that (key == null ? k == null : * AnnotationUtils.areSame(key, k))." * *

AnnotationMirror is an interface and not all implementing classes provide a correct equals * method; therefore, existing implementations of Map cannot be used. */ public class AnnotationMirrorMap implements Map<@KeyFor("this") AnnotationMirror, V> { /** The actual map to which all work is delegated. */ private final NavigableMap<@KeyFor("this") AnnotationMirror, V> shadowMap = new TreeMap<>(AnnotationUtils::compareAnnotationMirrors); /** Default constructor. */ public AnnotationMirrorMap() {} /** * Creates an annotation mirror map and adds all the mappings in {@code copy}. * * @param copy a map whose contents should be copied to the newly created map */ @SuppressWarnings("nullness:method.invocation") // initialization in constructor public AnnotationMirrorMap(Map copy) { this(); this.putAll(copy); } @Override public int size() { return shadowMap.size(); } @Override public boolean isEmpty() { return shadowMap.isEmpty(); } @SuppressWarnings("keyfor:contracts.conditional.postcondition") // delegation @Override public boolean containsKey(Object key) { if (key instanceof AnnotationMirror) { return AnnotationUtils.containsSame(shadowMap.keySet(), (AnnotationMirror) key); } else { return false; } } @Override public boolean containsValue(Object value) { return shadowMap.containsValue(value); } @Override @Pure public @Nullable V get(Object key) { if (key instanceof AnnotationMirror) { AnnotationMirror keyAnno = AnnotationUtils.getSame(shadowMap.keySet(), (AnnotationMirror) key); if (keyAnno != null) { return shadowMap.get(keyAnno); } } return null; } @SuppressWarnings({ "keyfor:contracts.postcondition", "keyfor:contracts.postcondition", "keyfor:argument" }) // delegation @Override public @Nullable V put(AnnotationMirror key, V value) { V pre = get(key); remove(key); shadowMap.put(key, value); return pre; } @Override public @Nullable V remove(Object key) { if (key instanceof AnnotationMirror) { AnnotationMirror keyAnno = AnnotationUtils.getSame(shadowMap.keySet(), (AnnotationMirror) key); if (keyAnno != null) { return shadowMap.remove(keyAnno); } } return null; } @Override public void putAll(Map m) { for (Map.Entry entry : m.entrySet()) { put(entry.getKey(), entry.getValue()); } } @Override public void clear() { shadowMap.clear(); } @Override public AnnotationMirrorSet keySet() { return new AnnotationMirrorSet(shadowMap.keySet()); } @Override public Collection values() { return shadowMap.values(); } @SuppressWarnings("keyfor:return") // delegation @Override public Set> entrySet() { return shadowMap.entrySet(); } @Override public String toString() { return shadowMap.toString(); } @Override @Pure public boolean equals(@Nullable Object o) { if (o == this) { return true; } if (!(o instanceof AnnotationMirrorMap)) return false; AnnotationMirrorMap m = (AnnotationMirrorMap) o; if (m.size() != size()) { return false; } try { for (Entry e : entrySet()) { AnnotationMirror key = e.getKey(); V value = e.getValue(); if (value == null) { if (!(m.get(key) == null && m.containsKey(key))) return false; } else { if (!value.equals(m.get(key))) return false; } } } catch (ClassCastException | NullPointerException unused) { return false; } return true; } @Override public int hashCode() { int result = 0; for (Entry entry : entrySet()) result += entry.hashCode(); return result; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy