blob: 4f4571b13b4caa4038415f1eb6f7d42cb1fbc9b0 [file] [log] [blame]
/*
* 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.jiraignited;
import com.google.common.base.Strings;
import com.google.common.cache.Cache;
import com.google.common.cache.CacheBuilder;
import com.google.inject.Provider;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.TimeUnit;
import javax.inject.Inject;
import org.apache.ignite.jiraservice.IJiraIntegration;
import org.apache.ignite.jiraservice.IJiraIntegrationProvider;
import org.apache.ignite.tcbot.common.exeption.ExceptionUtil;
/**
*
*/
public class JiraIgnitedProvider implements IJiraIgnitedProvider {
/** */
@Inject IJiraIntegrationProvider pureProv;
/** */
@Inject Provider<JiraIgnited> factory;
/** */
private final Cache<String, IJiraIgnited> srvs
= CacheBuilder.newBuilder()
.maximumSize(100)
.expireAfterAccess(16, TimeUnit.MINUTES)
.softValues()
.build();
/** */
@Override public IJiraIgnited server(String srvCode) {
try {
return srvs.get(Strings.nullToEmpty(srvCode), () -> {
IJiraIntegration pure = pureProv.server(srvCode);
JiraIgnited ignited = factory.get();
ignited.init(pure);
return ignited;
});
}
catch (ExecutionException e) {
throw ExceptionUtil.propagateException(e);
}
}
}