add --shared
[pylucene.git] / lucene-java-3.4.0 / lucene / contrib / facet / src / java / org / apache / lucene / facet / search / aggregator / CountingAggregator.java
1 package org.apache.lucene.facet.search.aggregator;
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 /**
21  * A CountingAggregator updates a counter array with the size of the whole
22  * taxonomy, counting the number of times each category appears in the given set
23  * of documents.
24  * 
25  * @lucene.experimental
26  */
27 public class CountingAggregator implements Aggregator {
28
29   protected int[] counterArray;
30
31   public void aggregate(int ordinal) {
32     ++counterArray[ordinal];
33   }
34
35   public void setNextDoc(int docid, float score) {
36     // There's nothing for us to do here since we only increment the count by 1
37     // in this aggregator.
38   }
39
40   public CountingAggregator(int[] counterArray) {
41     this.counterArray = counterArray;
42   }
43
44   @Override
45   public boolean equals(Object obj) {
46     if (obj == null || obj.getClass() != this.getClass()) {
47       return false;
48     }
49     CountingAggregator that = (CountingAggregator) obj;
50     return that.counterArray == this.counterArray;
51   }
52
53   @Override
54   public int hashCode() {
55     int hashCode = counterArray == null ? 0 : counterArray.hashCode();
56
57     return hashCode;
58   }
59 }