Line data Source code
1 : // Copyright (C) 2017 The Android Open Source Project 2 : // 3 : // Licensed under the Apache License, Version 2.0 (the "License"); 4 : // you may not use this file except in compliance with the License. 5 : // You may obtain a copy of the License at 6 : // 7 : // http://www.apache.org/licenses/LICENSE-2.0 8 : // 9 : // Unless required by applicable law or agreed to in writing, software 10 : // distributed under the License is distributed on an "AS IS" BASIS, 11 : // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 : // See the License for the specific language governing permissions and 13 : // limitations under the License. 14 : 15 : package com.google.gerrit.pgm.init.index.lucene; 16 : 17 : import com.google.gerrit.lucene.LuceneAccountIndex; 18 : import com.google.gerrit.lucene.LuceneGroupIndex; 19 : import com.google.gerrit.pgm.init.index.IndexModuleOnInit; 20 : import com.google.gerrit.server.index.account.AccountIndex; 21 : import com.google.gerrit.server.index.group.GroupIndex; 22 : import com.google.gerrit.server.index.options.AutoFlush; 23 : import com.google.inject.AbstractModule; 24 : import com.google.inject.assistedinject.FactoryModuleBuilder; 25 : 26 1 : public class LuceneIndexModuleOnInit extends AbstractModule { 27 : @Override 28 : protected void configure() { 29 1 : install( 30 : new FactoryModuleBuilder() 31 1 : .implement(AccountIndex.class, LuceneAccountIndex.class) 32 1 : .build(AccountIndex.Factory.class)); 33 : 34 1 : install( 35 : new FactoryModuleBuilder() 36 1 : .implement(GroupIndex.class, LuceneGroupIndex.class) 37 1 : .build(GroupIndex.Factory.class)); 38 : 39 1 : install(new IndexModuleOnInit()); 40 : 41 1 : bind(AutoFlush.class).toInstance(AutoFlush.DISABLED); 42 1 : } 43 : }