/*
 * Copyright 2002-2018 the original author or 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
 *
 *      https://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.springframework.cache.annotation;

import org.springframework.cache.config.CacheManagementConfigUtils;
import org.springframework.cache.interceptor.BeanFactoryCacheOperationSourceAdvisor;
import org.springframework.cache.interceptor.CacheInterceptor;
import org.springframework.cache.interceptor.CacheOperationSource;
import org.springframework.context.ApplicationContextInitializer;
import org.springframework.context.support.GenericApplicationContext;

// Only a couple of @Configuration beans in Spring Framework. This is one that Boot doesn't extend or block.
public class ProxyCachingConfigurationInitializer implements ApplicationContextInitializer<GenericApplicationContext> {

	@Override
	public void initialize(GenericApplicationContext context) {
		context.registerBean(ProxyCachingConfiguration.class, () -> new ProxyCachingConfiguration());
		context.registerBean(CacheInterceptor.class, () -> context.getBean(ProxyCachingConfiguration.class)
				.cacheInterceptor(context.getBean(CacheOperationSource.class)));
		context.registerBean(CacheOperationSource.class,
				() -> context.getBean(ProxyCachingConfiguration.class).cacheOperationSource());
		context.registerBean(CacheManagementConfigUtils.CACHE_ADVISOR_BEAN_NAME,
				BeanFactoryCacheOperationSourceAdvisor.class,
				() -> context.getBean(ProxyCachingConfiguration.class).cacheAdvisor(
						context.getBean(CacheOperationSource.class), context.getBean(CacheInterceptor.class)));
	}

}