io.druid.server.lookup.cache.polling.OnHeapPollingCache Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of druid-lookups-cached-single Show documentation
Show all versions of druid-lookups-cached-single Show documentation
Extension to rename Druid dimension values using lookups
/*
* Licensed to Metamarkets Group Inc. (Metamarkets) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. Metamarkets licenses this file
* to you 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 io.druid.server.lookup.cache.polling;
import com.google.common.base.Function;
import com.google.common.base.Predicate;
import com.google.common.collect.ImmutableMap;
import com.google.common.collect.ImmutableSet;
import com.google.common.collect.Lists;
import com.google.common.collect.Maps;
import java.util.Collections;
import java.util.List;
import java.util.Map;
import java.util.Set;
public class OnHeapPollingCache implements PollingCache
{
private final ImmutableMap immutableMap;
private final ImmutableMap> immutableReverseMap;
public OnHeapPollingCache(Iterable> entries)
{
if (entries == null) {
immutableMap = ImmutableMap.of();
immutableReverseMap = ImmutableMap.of();
} else {
ImmutableSet.Builder setOfValuesBuilder = ImmutableSet.builder();
ImmutableMap.Builder mapBuilder = ImmutableMap.builder();
for (Map.Entry entry: entries
) {
setOfValuesBuilder.add(entry.getValue());
mapBuilder.put(entry.getKey(), entry.getValue());
}
final Set setOfValues = setOfValuesBuilder.build();
immutableMap = mapBuilder.build();
immutableReverseMap = ImmutableMap.copyOf(Maps.asMap(
setOfValues, new Function>()
{
@Override
public List apply(final V input)
{
return Lists.newArrayList(Maps.filterKeys(immutableMap, new Predicate()
{
@Override
public boolean apply(K key)
{
V retVal = immutableMap.get(key);
if (retVal == null) {
return false;
}
return retVal.equals(input);
}
}).keySet());
}
}));
}
}
@Override
public V get(K key)
{
return immutableMap.get(key);
}
@Override
public List getKeys(final V value)
{
final List listOfKeys = immutableReverseMap.get(value);
if (listOfKeys == null) {
return Collections.emptyList();
}
return listOfKeys;
}
@Override
public void close()
{
//noop
}
public static class OnHeapPollingCacheProvider implements PollingCacheFactory
{
@Override
public PollingCache makeOf(Iterable> entries)
{
return new OnHeapPollingCache(entries);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy