-
Notifications
You must be signed in to change notification settings - Fork 660
Expand file tree
/
Copy pathNumericDocValuesWriter.cs
More file actions
141 lines (124 loc) · 4.99 KB
/
Copy pathNumericDocValuesWriter.cs
File metadata and controls
141 lines (124 loc) · 4.99 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
using Lucene.Net.Diagnostics;
using Lucene.Net.Util.Packed;
using System;
using System.Collections.Generic;
namespace Lucene.Net.Index
{
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this 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.
*/
using AppendingDeltaPackedInt64Buffer = Lucene.Net.Util.Packed.AppendingDeltaPackedInt64Buffer;
using Counter = Lucene.Net.Util.Counter;
using DocValuesConsumer = Lucene.Net.Codecs.DocValuesConsumer;
using FixedBitSet = Lucene.Net.Util.FixedBitSet;
using PackedInt32s = Lucene.Net.Util.Packed.PackedInt32s;
using RamUsageEstimator = Lucene.Net.Util.RamUsageEstimator;
/// <summary>
/// Buffers up pending long per doc, then flushes when
/// segment flushes.
/// </summary>
internal class NumericDocValuesWriter : DocValuesWriter
{
private const long MISSING = 0L;
private readonly AppendingDeltaPackedInt64Buffer pending; // LUCENENET: marked readonly
private readonly Counter iwBytesUsed;
private long bytesUsed;
private FixedBitSet docsWithField;
private readonly FieldInfo fieldInfo;
public NumericDocValuesWriter(FieldInfo fieldInfo, Counter iwBytesUsed, bool trackDocsWithField)
{
pending = new AppendingDeltaPackedInt64Buffer(PackedInt32s.COMPACT);
docsWithField = trackDocsWithField ? new FixedBitSet(64) : null;
bytesUsed = pending.RamBytesUsed() + DocsWithFieldBytesUsed();
this.fieldInfo = fieldInfo;
this.iwBytesUsed = iwBytesUsed;
iwBytesUsed.AddAndGet(bytesUsed);
}
public virtual void AddValue(int docID, long value)
{
if (docID < pending.Count)
{
throw new ArgumentException("DocValuesField \"" + fieldInfo.Name + "\" appears more than once in this document (only one value is allowed per field)");
}
// Fill in any holes:
for (int i = (int)pending.Count; i < docID; ++i)
{
pending.Add(MISSING);
}
pending.Add(value);
if (docsWithField != null)
{
docsWithField = FixedBitSet.EnsureCapacity(docsWithField, docID);
docsWithField.Set(docID);
}
UpdateBytesUsed();
}
private long DocsWithFieldBytesUsed()
{
// size of the long[] + some overhead
return docsWithField is null ? 0 : RamUsageEstimator.SizeOf(docsWithField.Bits) + 64;
}
private void UpdateBytesUsed()
{
long newBytesUsed = pending.RamBytesUsed() + DocsWithFieldBytesUsed();
iwBytesUsed.AddAndGet(newBytesUsed - bytesUsed);
bytesUsed = newBytesUsed;
}
public override void Finish(int maxDoc)
{
}
public override void Flush(SegmentWriteState state, DocValuesConsumer dvConsumer)
{
int maxDoc = state.SegmentInfo.DocCount;
dvConsumer.AddNumericField(fieldInfo, GetNumericIterator(maxDoc));
}
private IEnumerable<long?> GetNumericIterator(int maxDoc)
{
// LUCENENET specific: using yield return instead of custom iterator type. Much less code.
using var enumerator = pending.GetEnumerator();
int size = (int)pending.Count;
int upto = 0;
while (upto < maxDoc)
{
long? value;
if (upto < size)
{
bool moved = enumerator.MoveNext();
if (Debugging.AssertsEnabled) Debugging.Assert(moved);
var v = enumerator.Current;
if (docsWithField is null || docsWithField.Get(upto))
{
value = v;
}
else
{
value = null;
}
}
else
{
value = docsWithField != null ? (long?)null : MISSING;
}
upto++;
// TODO: make reusable Number
yield return value;
}
}
public override void Abort()
{
}
}
}