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

« back to all changes in this revision

Viewing changes to solr/core/src/java/org/apache/solr/search/grouping/distributed/command/SearchGroupsFieldCommand.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
 
package org.apache.solr.search.grouping.distributed.command;
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.search.Collector;
21
 
import org.apache.lucene.search.Sort;
22
 
import org.apache.lucene.search.grouping.SearchGroup;
23
 
import org.apache.lucene.search.grouping.TermFirstPassGroupingCollector;
24
 
import org.apache.solr.schema.SchemaField;
25
 
import org.apache.solr.search.grouping.Command;
26
 
 
27
 
import java.io.IOException;
28
 
import java.util.Arrays;
29
 
import java.util.Collection;
30
 
import java.util.List;
31
 
 
32
 
/**
33
 
 *
34
 
 */
35
 
public class SearchGroupsFieldCommand implements Command<Collection<SearchGroup<String>>> {
36
 
 
37
 
  public static class Builder {
38
 
 
39
 
    private SchemaField field;
40
 
    private Sort groupSort;
41
 
    private Integer topNGroups;
42
 
 
43
 
    public Builder setField(SchemaField field) {
44
 
      this.field = field;
45
 
      return this;
46
 
    }
47
 
 
48
 
    public Builder setGroupSort(Sort groupSort) {
49
 
      this.groupSort = groupSort;
50
 
      return this;
51
 
    }
52
 
 
53
 
    public Builder setTopNGroups(int topNGroups) {
54
 
      this.topNGroups = topNGroups;
55
 
      return this;
56
 
    }
57
 
 
58
 
    public SearchGroupsFieldCommand build() {
59
 
      if (field == null || groupSort == null || topNGroups == null) {
60
 
        throw new IllegalStateException("All fields must be set");
61
 
      }
62
 
 
63
 
      return new SearchGroupsFieldCommand(field, groupSort, topNGroups);
64
 
    }
65
 
 
66
 
  }
67
 
 
68
 
  private final SchemaField field;
69
 
  private final Sort groupSort;
70
 
  private final int topNGroups;
71
 
 
72
 
  private TermFirstPassGroupingCollector collector;
73
 
 
74
 
  private SearchGroupsFieldCommand(SchemaField field, Sort groupSort, int topNGroups) {
75
 
    this.field = field;
76
 
    this.groupSort = groupSort;
77
 
    this.topNGroups = topNGroups;
78
 
  }
79
 
 
80
 
  public List<Collector> create() throws IOException {
81
 
    collector = new TermFirstPassGroupingCollector(field.getName(), groupSort, topNGroups);
82
 
    return Arrays.asList((Collector) collector);
83
 
  }
84
 
 
85
 
  public Collection<SearchGroup<String>> result() {
86
 
    return collector.getTopGroups(0, true);
87
 
  }
88
 
 
89
 
  public Sort getSortWithinGroup() {
90
 
    return null;
91
 
  }
92
 
 
93
 
  public Sort getGroupSort() {
94
 
    return groupSort;
95
 
  }
96
 
 
97
 
  public String getKey() {
98
 
    return field.getName();
99
 
  }
100
 
}