| /* |
| * 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.druid.server; |
| |
| import com.google.common.base.Supplier; |
| import com.google.inject.Inject; |
| import org.apache.druid.guice.LazySingleton; |
| import org.apache.druid.java.util.emitter.service.ServiceEmitter; |
| import org.apache.druid.query.DefaultQueryConfig; |
| import org.apache.druid.query.GenericQueryMetricsFactory; |
| import org.apache.druid.query.QuerySegmentWalker; |
| import org.apache.druid.query.QueryToolChestWarehouse; |
| import org.apache.druid.server.log.RequestLogger; |
| import org.apache.druid.server.security.AuthConfig; |
| import org.apache.druid.server.security.AuthorizerMapper; |
| |
| @LazySingleton |
| public class QueryLifecycleFactory |
| { |
| private final QueryToolChestWarehouse warehouse; |
| private final QuerySegmentWalker texasRanger; |
| private final GenericQueryMetricsFactory queryMetricsFactory; |
| private final ServiceEmitter emitter; |
| private final RequestLogger requestLogger; |
| private final AuthorizerMapper authorizerMapper; |
| private final DefaultQueryConfig defaultQueryConfig; |
| |
| @Inject |
| public QueryLifecycleFactory( |
| final QueryToolChestWarehouse warehouse, |
| final QuerySegmentWalker texasRanger, |
| final GenericQueryMetricsFactory queryMetricsFactory, |
| final ServiceEmitter emitter, |
| final RequestLogger requestLogger, |
| final AuthConfig authConfig, |
| final AuthorizerMapper authorizerMapper, |
| final Supplier<DefaultQueryConfig> queryConfigSupplier |
| ) |
| { |
| this.warehouse = warehouse; |
| this.texasRanger = texasRanger; |
| this.queryMetricsFactory = queryMetricsFactory; |
| this.emitter = emitter; |
| this.requestLogger = requestLogger; |
| this.authorizerMapper = authorizerMapper; |
| this.defaultQueryConfig = queryConfigSupplier.get(); |
| } |
| |
| public QueryLifecycle factorize() |
| { |
| return new QueryLifecycle( |
| warehouse, |
| texasRanger, |
| queryMetricsFactory, |
| emitter, |
| requestLogger, |
| authorizerMapper, |
| defaultQueryConfig, |
| System.currentTimeMillis(), |
| System.nanoTime() |
| ); |
| } |
| } |