1 /* 2 * Copyright (C) 2012 Google Inc. 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 package com.google.caliper.config; 18 19 import dagger.Module; 20 import dagger.Provides; 21 22 import java.util.logging.LogManager; 23 import javax.inject.Singleton; 24 25 /** 26 * Bindings for Caliper configuration. 27 */ 28 @Module 29 public final class ConfigModule { 30 31 /** 32 * The {@code doNotRemove} parameter is required here to ensure that the logging configuration 33 * is loaded and used to update the logger settings before the configuration is loaded. 34 */ 35 @Provides @Singleton provideCaliperConfig( CaliperConfigLoader configLoader, @SuppressWarnings("unused") LoggingConfigLoader doNotRemove)36 static CaliperConfig provideCaliperConfig( 37 CaliperConfigLoader configLoader, 38 @SuppressWarnings("unused") LoggingConfigLoader doNotRemove) 39 throws InvalidConfigurationException { 40 41 return configLoader.loadOrCreate(); 42 } 43 provideLogManager()44 @Provides static LogManager provideLogManager() { 45 return LogManager.getLogManager(); 46 } 47 } 48