thomasmueller commented on code in PR #1599: URL: https://github.com/apache/jackrabbit-oak/pull/1599#discussion_r1694717427
########## oak-commons/src/test/java/org/apache/jackrabbit/oak/commons/LongUtilsTest.java: ########## @@ -0,0 +1,41 @@ +/* + * 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.jackrabbit.oak.commons; + +import org.junit.Test; + +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertNull; + +public class LongUtilsTest { + + @Test + public void tryParse() { + assertEquals(-1, LongUtils.tryParse("-1").longValue()); Review Comment: I would add tests cases for ranges "MIN_VALUE .. MIN_VALUE + 100" and "MAX_VALUE - 100 .. MAX_VALUE". But specially, I would add a lot more tests cases for out-of-range numbers. ########## oak-commons/src/main/java/org/apache/jackrabbit/oak/commons/LongUtils.java: ########## @@ -51,4 +52,83 @@ public static long safeAdd(long a, long b) { public static long calculateExpirationTime(long expiration) { return LongUtils.safeAdd(expiration, new Date().getTime()); } + + /* + * Taken from https://github.com/google/guava/blob/0c33dd12b193402cdf6962d43d69743521aa2f76/guava/src/com/google/common/primitives/Longs.java#L334 + */ + private static final class AsciiDigits { + private AsciiDigits() { + } + + private static final byte[] asciiDigits; + + static { + byte[] result = new byte[128]; + Arrays.fill(result, (byte) -1); + for (int i = 0; i < 10; i++) { + result['0' + i] = (byte) i; + } + for (int i = 0; i < 26; i++) { + result['A' + i] = (byte) (10 + i); + result['a' + i] = (byte) (10 + i); + } + asciiDigits = result; + } + + static int digit(char c) { + return (c < 128) ? asciiDigits[c] : -1; + } + } + + /** + * Parses the specified string as a signed decimal long value. Unlike {@link Long#parseLong(String)}, this method + * returns {@code null} instead of throwing an exception if parsing fails. This can be significantly more efficient + * when the string to be parsed is often invalid, as raising an exception is an expensive operation. + *<p> + * This is a simplified version of + * <a href="https://github.com/google/guava/blob/0c33dd12b193402cdf6962d43d69743521aa2f76/guava/src/com/google/common/primitives/Longs.java#L400">Longs.tryParse()</a> + * in Guava. This version is hardcoded to only support radix 10. + * <p> + * + * @see org.apache.jackrabbit.guava.common.primitives.Longs#tryParse(String) + */ + public static Long tryParse(String string) { + if (string == null) { + return null; + } + int radix = 10; + boolean negative = string.charAt(0) == '-'; + int index = negative ? 1 : 0; + if (index == string.length()) { + return null; + } + int digit = AsciiDigits.digit(string.charAt(index++)); + if (digit < 0 || digit >= radix) { + return null; + } + long accum = -digit; + + long cap = Long.MIN_VALUE / radix; + + while (index < string.length()) { + digit = AsciiDigits.digit(string.charAt(index++)); + if (digit < 0 || digit >= radix || accum < cap) { + return null; + } + accum *= radix; + if (accum < Long.MIN_VALUE + digit) { Review Comment: This line is hard to understand. I think it is correct, but I wouldn't commit it unless if we have sufficient test cases. -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
