pylucene 3.5.0-3
[pylucene.git] / lucene-java-3.5.0 / lucene / contrib / benchmark / src / java / org / apache / lucene / benchmark / byTask / tasks / FlushReaderTask.java
1 package org.apache.lucene.benchmark.byTask.tasks;
2
3 /**
4  * Licensed to the Apache Software Foundation (ASF) under one or more
5  * contributor license agreements.  See the NOTICE file distributed with
6  * this work for additional information regarding copyright ownership.
7  * The ASF licenses this file to You under the Apache License, Version 2.0
8  * (the "License"); you may not use this file except in compliance with
9  * the License.  You may obtain a copy of the License at
10  *
11  *     http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  */
19
20 import java.io.IOException;
21 import java.util.HashMap;
22 import java.util.Map;
23
24 import org.apache.lucene.benchmark.byTask.PerfRunData;
25 import org.apache.lucene.index.IndexReader;
26
27 public class FlushReaderTask extends PerfTask {
28   String userData = null;
29   
30   public FlushReaderTask(PerfRunData runData) {
31     super(runData);
32   }
33   
34   @Override
35   public boolean supportsParams() {
36     return true;
37   }
38   
39   @Override
40   public void setParams(String params) {
41     super.setParams(params);
42     userData = params;
43   }
44   
45   @Override
46   public int doLogic() throws IOException {
47     IndexReader reader = getRunData().getIndexReader();
48     if (userData != null) {
49       Map<String,String> map = new HashMap<String,String>();
50       map.put(OpenReaderTask.USER_DATA, userData);
51       reader.flush(map);
52     } else {
53       reader.flush();
54     }
55     reader.decRef();
56     return 1;
57   }
58 }