98 lines
3.1 KiB
Java
Raw Normal View History

2010-02-08 15:30:06 +02:00
/*
2011-12-06 02:42:25 +02:00
* Licensed to ElasticSearch and Shay Banon under one
2010-02-08 15:30:06 +02:00
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
2011-12-06 02:42:25 +02:00
* regarding copyright ownership. ElasticSearch licenses this
2010-02-08 15:30:06 +02:00
* file to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.elasticsearch.search.dfs;
2011-12-06 02:42:25 +02:00
import gnu.trove.impl.Constants;
import gnu.trove.iterator.TObjectIntIterator;
import gnu.trove.map.TMap;
2011-12-06 02:42:25 +02:00
import gnu.trove.map.hash.TObjectIntHashMap;
2010-02-08 15:30:06 +02:00
import org.apache.lucene.index.Term;
import org.apache.lucene.search.TermStatistics;
import org.elasticsearch.common.io.stream.StreamInput;
import org.elasticsearch.common.io.stream.StreamOutput;
import org.elasticsearch.common.io.stream.Streamable;
import org.elasticsearch.common.trove.ExtTHashMap;
import org.elasticsearch.common.trove.ExtTObjectIntHasMap;
2010-02-08 15:30:06 +02:00
import java.io.IOException;
import java.util.Map;
2010-02-08 15:30:06 +02:00
/**
2011-12-06 02:42:25 +02:00
*
2010-02-08 15:30:06 +02:00
*/
public class AggregatedDfs implements Streamable {
private TMap<Term, TermStatistics> dfMap;
2010-02-08 15:30:06 +02:00
private long maxDoc;
2010-02-08 15:30:06 +02:00
private AggregatedDfs() {
}
public AggregatedDfs(TMap<Term, TermStatistics> dfMap, long maxDoc) {
this.dfMap = dfMap;
this.maxDoc = maxDoc;
2010-02-08 15:30:06 +02:00
}
public TMap<Term, TermStatistics> dfMap() {
2010-02-08 15:30:06 +02:00
return dfMap;
}
public long maxDoc() {
return maxDoc;
2010-02-08 15:30:06 +02:00
}
public static AggregatedDfs readAggregatedDfs(StreamInput in) throws IOException {
2010-02-08 15:30:06 +02:00
AggregatedDfs result = new AggregatedDfs();
result.readFrom(in);
return result;
}
2011-12-06 02:42:25 +02:00
@Override
public void readFrom(StreamInput in) throws IOException {
int size = in.readVInt();
dfMap = new ExtTHashMap<Term, TermStatistics>(size, Constants.DEFAULT_LOAD_FACTOR);
2010-02-08 15:30:06 +02:00
for (int i = 0; i < size; i++) {
Term term = new Term(in.readString(), in.readBytesRef());
TermStatistics stats = new TermStatistics(in.readBytesRef(), in.readVLong(), in.readVLong());
dfMap.put(term, stats);
2010-02-08 15:30:06 +02:00
}
maxDoc = in.readVLong();
2010-02-08 15:30:06 +02:00
}
2011-12-06 02:42:25 +02:00
@Override
public void writeTo(final StreamOutput out) throws IOException {
out.writeVInt(dfMap.size());
2010-02-08 15:30:06 +02:00
for (Map.Entry<Term, TermStatistics> termTermStatisticsEntry : dfMap.entrySet()) {
Term term = termTermStatisticsEntry.getKey();
out.writeString(term.field());
out.writeBytesRef(term.bytes());
TermStatistics stats = termTermStatisticsEntry.getValue();
out.writeBytesRef(stats.term());
out.writeVLong(stats.docFreq());
out.writeVLong(stats.totalTermFreq());
2010-02-08 15:30:06 +02:00
}
2010-07-11 15:41:12 +03:00
out.writeVLong(maxDoc);
2010-02-08 15:30:06 +02:00
}
}