/*
* Copyright (C) 2024 The Dagger Authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package dagger.internal;
import java.util.Collection;
import java.util.Map;
import java.util.Set;
/**
* A class keyed map that delegates to a string keyed map under the hood.
*
*
A {@code LazyClassKeyMap} is created for @LazyClassKey contributed map binding.
*/
public final class LazyClassKeyMap implements Map, V> {
private final Map delegate;
public static Map, V> of(Map delegate) {
return new LazyClassKeyMap<>(delegate);
}
private LazyClassKeyMap(Map delegate) {
this.delegate = delegate;
}
@Override
public V get(Object key) {
if (!(key instanceof Class)) {
throw new IllegalArgumentException("Key must be a class");
}
return delegate.get(((Class>) key).getName());
}
@Override
public Set> keySet() {
// This method will load all class keys, therefore no need to use @LazyClassKey annotated
// bindings.
throw new UnsupportedOperationException(
"Maps created with @LazyClassKey do not support usage of keySet(). Consider @ClassKey"
+ " instead.");
}
@Override
public Collection values() {
return delegate.values();
}
@Override
public boolean isEmpty() {
return delegate.isEmpty();
}
@Override
public boolean containsKey(Object key) {
if (!(key instanceof Class)) {
throw new IllegalArgumentException("Key must be a class");
}
return delegate.containsKey(((Class>) key).getName());
}
@Override
public boolean containsValue(Object value) {
return delegate.containsValue(value);
}
@Override
public int size() {
return delegate.size();
}
@Override
public Set, V>> entrySet() {
// This method will load all class keys, therefore no need to use @LazyClassKey annotated
// bindings.
throw new UnsupportedOperationException(
"Maps created with @LazyClassKey do not support usage of entrySet(). Consider @ClassKey"
+ " instead.");
}
// The dagger map binding should be a immutable map.
@Override
public V remove(Object key) {
throw new UnsupportedOperationException("Dagger map bindings are immutable");
}
@Override
public void clear() {
throw new UnsupportedOperationException("Dagger map bindings are immutable");
}
@Override
public V put(Class> key, V value) {
throw new UnsupportedOperationException("Dagger map bindings are immutable");
}
@Override
public void putAll(Map extends Class>, ? extends V> map) {
throw new UnsupportedOperationException("Dagger map bindings are immutable");
}
/** A factory for {@code LazyClassKeyMap}. */
public static class Factory implements Provider