~ubuntu-branches/ubuntu/trusty/pylucene/trusty

« back to all changes in this revision

Viewing changes to lucene-java-2.3.1/contrib/benchmark/src/java/org/apache/lucene/benchmark/byTask/tasks/RepSumByNameTask.java

  • Committer: Package Import Robot
  • Author(s): Dmitry Nezhevenko
  • Date: 2012-04-23 16:43:55 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20120423164355-grqtepnwtecdjfk2
Tags: 3.5.0-1
* New maintainer (closes: 670179)
* New upstream release
* Switch to dpkg-source 3.0 (quilt) format
* Switch to machine-readable debian/copyright
* Bump debian/compat to 8, drop debian/pycompat
* Switch from cdbs to dh
* Add watch file
* Build for all supported versions of python2 (closes: 581198, 632240)
* Rename binary package to python-lucene (closes: 581197)
* Add -dbg package

Show diffs side-by-side

added added

removed removed

Lines of Context:
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.util.Iterator;
21
 
import java.util.LinkedHashMap;
22
 
import java.util.List;
23
 
 
24
 
import org.apache.lucene.benchmark.byTask.PerfRunData;
25
 
import org.apache.lucene.benchmark.byTask.stats.Report;
26
 
import org.apache.lucene.benchmark.byTask.stats.TaskStats;
27
 
 
28
 
/**
29
 
 * Report all statistics aggregated by name.
30
 
 * <br>Other side effects: None.
31
 
 */
32
 
public class RepSumByNameTask extends ReportTask {
33
 
 
34
 
  public RepSumByNameTask(PerfRunData runData) {
35
 
    super(runData);
36
 
  }
37
 
 
38
 
  public int doLogic() throws Exception {
39
 
    Report rp = reportSumByName(getRunData().getPoints().taskStats());
40
 
 
41
 
    System.out.println();
42
 
    System.out.println("------------> Report Sum By (any) Name ("+
43
 
        rp.getSize()+" about "+rp.getReported()+" out of "+rp.getOutOf()+")");
44
 
    System.out.println(rp.getText());
45
 
    System.out.println();
46
 
 
47
 
    return 0;
48
 
  }
49
 
 
50
 
  /**
51
 
   * Report statistics as a string, aggregate for tasks named the same.
52
 
   * @return the report
53
 
   */
54
 
  protected Report reportSumByName(List taskStats) {
55
 
    // aggregate by task name
56
 
    int reported = 0;
57
 
    LinkedHashMap p2 = new LinkedHashMap();
58
 
    for (Iterator it = taskStats.iterator(); it.hasNext();) {
59
 
      TaskStats stat1 = (TaskStats) it.next();
60
 
      if (stat1.getElapsed()>=0) { // consider only tasks that ended
61
 
        reported++;
62
 
        String name = stat1.getTask().getName();
63
 
        TaskStats stat2 = (TaskStats) p2.get(name);
64
 
        if (stat2 == null) {
65
 
          try {
66
 
            stat2 = (TaskStats) stat1.clone();
67
 
          } catch (CloneNotSupportedException e) {
68
 
            throw new RuntimeException(e);
69
 
          }
70
 
          p2.put(name,stat2);
71
 
        } else {
72
 
          stat2.add(stat1);
73
 
        }
74
 
      }
75
 
    }
76
 
    // now generate report from secondary list p2    
77
 
    return genPartialReport(reported, p2, taskStats.size());
78
 
  }
79
 
 
80
 
 
81
 
}