add --shared
[pylucene.git] / lucene-java-3.4.0 / lucene / contrib / benchmark / src / java / org / apache / lucene / benchmark / byTask / tasks / AddDocTask.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 org.apache.lucene.benchmark.byTask.PerfRunData;
21 import org.apache.lucene.benchmark.byTask.feeds.DocMaker;
22 import org.apache.lucene.document.Document;
23
24 /**
25  * Add a document, optionally with of a certain size.
26  * <br>Other side effects: none.
27  * <br>Takes optional param: document size. 
28  */
29 public class AddDocTask extends PerfTask {
30
31   public AddDocTask(PerfRunData runData) {
32     super(runData);
33   }
34
35   private int docSize = 0;
36   
37   // volatile data passed between setup(), doLogic(), tearDown().
38   private Document doc = null;
39   
40   @Override
41   public void setup() throws Exception {
42     super.setup();
43     DocMaker docMaker = getRunData().getDocMaker();
44     if (docSize > 0) {
45       doc = docMaker.makeDocument(docSize);
46     } else {
47       doc = docMaker.makeDocument();
48     }
49   }
50
51   @Override
52   public void tearDown() throws Exception {
53     doc = null;
54     super.tearDown();
55   }
56
57   @Override
58   protected String getLogMessage(int recsCount) {
59     return "added " + recsCount + " docs";
60   }
61   
62   @Override
63   public int doLogic() throws Exception {
64     getRunData().getIndexWriter().addDocument(doc);
65     return 1;
66   }
67
68   /**
69    * Set the params (docSize only)
70    * @param params docSize, or 0 for no limit.
71    */
72   @Override
73   public void setParams(String params) {
74     super.setParams(params);
75     docSize = (int) Float.parseFloat(params); 
76   }
77
78   /* (non-Javadoc)
79    * @see org.apache.lucene.benchmark.byTask.tasks.PerfTask#supportsParams()
80    */
81   @Override
82   public boolean supportsParams() {
83     return true;
84   }
85   
86 }