blob: 43b4329d0643ca0023907caf92780919b8fa7aca [file]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF 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.apache.ignite.githubservice;
import java.time.Duration;
import com.google.common.base.Preconditions;
import com.google.common.base.Strings;
import com.google.common.cache.Cache;
import com.google.common.cache.CacheBuilder;
import java.util.concurrent.ExecutionException;
import java.util.function.Supplier;
import org.apache.ignite.tcbot.common.exeption.ExceptionUtil;
class GitHubCachingProvider implements IGitHubConnectionProvider {
private final Supplier<IGitHubConnection> factory;
private final Cache<String, IGitHubConnection> srvs
= CacheBuilder.newBuilder()
.maximumSize(100)
.expireAfterAccess(Duration.ofMinutes(16))
.softValues()
.build();
GitHubCachingProvider(Supplier<IGitHubConnection> factory) {
this.factory = factory;
}
/** {@inheritDoc} */
@Override public IGitHubConnection server(String srvCode) {
try {
return srvs.get(Strings.nullToEmpty(srvCode), () -> {
IGitHubConnection conn = factory.get();
conn.init(srvCode);
Preconditions.checkState(conn.config().code().equals(srvCode));
return conn;
});
}
catch (ExecutionException e) {
throw ExceptionUtil.propagateException(e);
}
}
}