org.elasticsearch.ingest.useragent.UserAgentCache Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ingest-user-agent Show documentation
Show all versions of ingest-user-agent Show documentation
Elasticsearch module: ingest-user-agent
/*
* Licensed to Elasticsearch under one or more contributor
* license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright
* ownership. Elasticsearch 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 org.elasticsearch.ingest.useragent;
import org.elasticsearch.common.cache.Cache;
import org.elasticsearch.common.cache.CacheBuilder;
import org.elasticsearch.ingest.useragent.UserAgentParser.Details;
import java.util.Objects;
class UserAgentCache {
private final Cache cache;
UserAgentCache(long cacheSize) {
cache = CacheBuilder.builder().setMaximumWeight(cacheSize).build();
}
public Details get(String parserName, String userAgent) {
return cache.get(new CompositeCacheKey(parserName, userAgent));
}
public void put(String parserName, String userAgent, Details details) {
cache.put(new CompositeCacheKey(parserName, userAgent), details);
}
private static final class CompositeCacheKey {
private final String parserName;
private final String userAgent;
CompositeCacheKey(String parserName, String userAgent) {
this.parserName = parserName;
this.userAgent = userAgent;
}
@Override
public boolean equals(Object obj) {
if(obj != null && obj instanceof CompositeCacheKey) {
CompositeCacheKey s = (CompositeCacheKey)obj;
return parserName.equals(s.parserName) && userAgent.equals(s.userAgent);
}
return false;
}
@Override
public int hashCode() {
return Objects.hash(parserName, userAgent);
}
}
}