pylucene 3.5.0-3
[pylucene.git] / lucene-java-3.5.0 / lucene / contrib / benchmark / src / java / org / apache / lucene / benchmark / byTask / tasks / ConsumeContentSourceTask.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.ContentSource;
22 import org.apache.lucene.benchmark.byTask.feeds.DocData;
23 import org.apache.lucene.benchmark.byTask.utils.Config;
24
25 /**
26  * Consumes a {@link org.apache.lucene.benchmark.byTask.feeds.ContentSource}.
27  * Supports the following parameters:
28  * <ul>
29  * <li>content.source - the content source to use. (mandatory)
30  * </ul>
31  */
32 public class ConsumeContentSourceTask extends PerfTask {
33
34   private ContentSource source;
35   private DocData dd = new DocData();
36   
37   public ConsumeContentSourceTask(PerfRunData runData) {
38     super(runData);
39     Config config = runData.getConfig();
40     String sourceClass = config.get("content.source", null);
41     if (sourceClass == null) {
42       throw new IllegalArgumentException("content.source must be defined");
43     }
44     try {
45       source = Class.forName(sourceClass).asSubclass(ContentSource.class).newInstance();
46       source.setConfig(config);
47       source.resetInputs();
48     } catch (Exception e) {
49       throw new RuntimeException(e);
50     }
51   }
52
53   @Override
54   protected String getLogMessage(int recsCount) {
55     return "read " + recsCount + " documents from the content source";
56   }
57   
58   @Override
59   public void close() throws Exception {
60     source.close();
61     super.close();
62   }
63
64   @Override
65   public int doLogic() throws Exception {
66     dd = source.getNextDocData(dd);
67     return 1;
68   }
69
70 }