~slub.team/goobi-indexserver/3.x

« back to all changes in this revision

Viewing changes to lucene/backwards/src/test-framework/org/apache/lucene/util/LuceneJUnitDividingSelector.java

  • Committer: Sebastian Meyer
  • Date: 2012-08-03 09:12:40 UTC
  • Revision ID: sebastian.meyer@slub-dresden.de-20120803091240-x6861b0vabq1xror
Remove Lucene and Solr source code and add patches instead
Fix Bug #985487: Auto-suggestion for the search interface

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/**
2
 
 *  Licensed to the Apache Software Foundation (ASF) under one or more
3
 
 *  contributor license agreements.  See the NOTICE file distributed with
4
 
 *  this work for additional information regarding copyright ownership.
5
 
 *  The ASF licenses this file to You under the Apache License, Version 2.0
6
 
 *  (the "License"); you may not use this file except in compliance with
7
 
 *  the License.  You may obtain a copy of the License at
8
 
 *
9
 
 *      http://www.apache.org/licenses/LICENSE-2.0
10
 
 *
11
 
 *  Unless required by applicable law or agreed to in writing, software
12
 
 *  distributed under the License is distributed on an "AS IS" BASIS,
13
 
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
 
 *  See the License for the specific language governing permissions and
15
 
 *  limitations under the License.
16
 
 *
17
 
 */
18
 
package org.apache.lucene.util;
19
 
import java.io.File;
20
 
 
21
 
import org.apache.tools.ant.BuildException;
22
 
import org.apache.tools.ant.types.Parameter;
23
 
import org.apache.tools.ant.types.selectors.BaseExtendSelector;
24
 
 
25
 
/** Divides filesets into equal groups */
26
 
public class LuceneJUnitDividingSelector extends BaseExtendSelector {
27
 
  private int counter;
28
 
  /** Number of total parts to split. */
29
 
  private int divisor;
30
 
  /** Current part to accept. */
31
 
  private int part;
32
 
 
33
 
  @Override
34
 
  public void setParameters(Parameter[] pParameters) {
35
 
    super.setParameters(pParameters);
36
 
    for (int j = 0; j < pParameters.length; j++) {
37
 
      Parameter p = pParameters[j];
38
 
      if ("divisor".equalsIgnoreCase(p.getName())) {
39
 
        divisor = Integer.parseInt(p.getValue());
40
 
      }
41
 
      else if ("part".equalsIgnoreCase(p.getName())) {
42
 
        part = Integer.parseInt(p.getValue());
43
 
      }
44
 
      else {
45
 
        throw new BuildException("unknown " + p.getName());
46
 
      }
47
 
    }
48
 
  }
49
 
 
50
 
  @Override
51
 
  public void verifySettings() {
52
 
    super.verifySettings();
53
 
    if (divisor <= 0 || part <= 0) {
54
 
      throw new BuildException("part or divisor not set");
55
 
    }
56
 
    if (part > divisor) {
57
 
      throw new BuildException("part must be <= divisor");
58
 
    }
59
 
  }
60
 
 
61
 
  @Override
62
 
  public boolean isSelected(File dir, String name, File path) {
63
 
    counter = counter % divisor + 1;
64
 
    return counter == part;
65
 
  }
66
 
}