easyice commented on code in PR #12841:
URL: https://github.com/apache/lucene/pull/12841#discussion_r1420418454


##########
lucene/core/src/java/org/apache/lucene/util/GroupVIntUtil.java:
##########
@@ -0,0 +1,104 @@
+/*
+ * 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.
+ */
+package org.apache.lucene.util;
+
+import java.io.IOException;
+import org.apache.lucene.store.DataInput;
+
+/**
+ * This class contains utility methods and constants for group varint
+ *
+ * @lucene.internal
+ */
+public final class GroupVIntUtil {
+  // the maximum length of a single group-varint is 4 integers + 1 byte flag.
+  public static final int MAX_LENGTH_PER_GROUP = 17;
+  private static final int[] MASKS = new int[] {0xFF, 0xFFFF, 0xFFFFFF, 
0xFFFFFFFF};
+
+  /**
+   * Default implementation of read single group, for optimal performance, you 
should use {@link
+   * DataInput#readGroupVInts(long[], int)} instead.
+   *
+   * @param dst the array to read ints into.
+   * @param offset the offset in the array to start storing ints.
+   */
+  public static void readGroupVInt(DataInput in, long[] dst, int offset) 
throws IOException {
+    final int flag = in.readByte() & 0xFF;
+
+    final int n1Minus1 = flag >> 6;
+    final int n2Minus1 = (flag >> 4) & 0x03;
+    final int n3Minus1 = (flag >> 2) & 0x03;
+    final int n4Minus1 = flag & 0x03;
+
+    dst[offset] = readLongInGroup(in, n1Minus1);
+    dst[offset + 1] = readLongInGroup(in, n2Minus1);
+    dst[offset + 2] = readLongInGroup(in, n3Minus1);
+    dst[offset + 3] = readLongInGroup(in, n4Minus1);
+  }
+
+  private static long readLongInGroup(DataInput in, int numBytesMinus1) throws 
IOException {
+    switch (numBytesMinus1) {
+      case 0:
+        return in.readByte() & 0xFFL;
+      case 1:
+        return in.readShort() & 0xFFFFL;
+      case 2:
+        return (in.readShort() & 0xFFFFL) | ((in.readByte() & 0xFFL) << 16);
+      default:
+        return in.readInt() & 0xFFFFFFFFL;
+    }
+  }
+
+  /**
+   * Provides an abstraction for read int values, so that decoding logic can 
be reused in different
+   * DataInput.
+   */
+  public static interface IntReader {
+    int read(long v);
+  }
+
+  /**
+   * Faster implementation of read single group, It read values from the 
buffer that would not cross
+   * boundaries.
+   *
+   * @param flag the flag of group varint.
+   * @param reader the supplier of read int.
+   * @param dst the array to read ints into.
+   * @param offset the offset in the array to start storing ints.
+   * @return the number of bytes read, it is a positive number and less than 
{@link
+   *     #MAX_LENGTH_PER_GROUP}
+   */
+  public static int readGroupVInt(int flag, IntReader reader, long pos, long[] 
dst, int offset)
+      throws IOException {

Review Comment:
   @uschindler should we also throws `NullPointerException`, 
`IllegalStateException` exception that maybe happen in 
`MemorySegmentIndexInput`?



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org
For additional commands, e-mail: issues-h...@lucene.apache.org

Reply via email to