-
Notifications
You must be signed in to change notification settings - Fork 625
HDDS-11532. Sort multipart uploads on ListMultipartUploads response #7929
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,61 @@ | ||
| /* | ||
| * 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.hadoop.ozone.util; | ||
|
|
||
| import java.nio.ByteBuffer; | ||
| import java.security.SecureRandom; | ||
| import java.util.UUID; | ||
|
|
||
| /** | ||
| * Utility class for generating UUIDv7. | ||
| * https://antonz.org/uuidv7/ | ||
| */ | ||
| public final class UUIDv7 { | ||
| private static final SecureRandom RANDOM = new SecureRandom(); | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should this class be added as static inner class of Even if you prefer to keep it as top-level class, please move it to
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Addressed, and I want to keep it as top-level class. Another question is, would it be better to replace
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
I think so. |
||
|
|
||
| // Private constructor to prevent instantiation | ||
| private UUIDv7() { | ||
| } | ||
|
|
||
| public static UUID randomUUID() { | ||
| byte[] value = randomBytes(); | ||
| ByteBuffer buf = ByteBuffer.wrap(value); | ||
| long high = buf.getLong(); | ||
| long low = buf.getLong(); | ||
| return new UUID(high, low); | ||
| } | ||
|
|
||
| public static byte[] randomBytes() { | ||
| // random bytes | ||
| byte[] value = new byte[16]; | ||
| RANDOM.nextBytes(value); | ||
|
|
||
| // current timestamp in ms | ||
| ByteBuffer timestamp = ByteBuffer.allocate(Long.BYTES); | ||
| timestamp.putLong(System.currentTimeMillis()); | ||
|
|
||
| // timestamp | ||
| System.arraycopy(timestamp.array(), 2, value, 0, 6); | ||
|
|
||
| // version and variant | ||
| value[6] = (byte) ((value[6] & 0x0F) | 0x70); | ||
| value[8] = (byte) ((value[8] & 0x3F) | 0x80); | ||
|
|
||
| return value; | ||
| } | ||
| } | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Licensed under "The Unlicense", which is like Public Domain, so it's OK.
https://github.com/nalgeon/uuidv7/blob/main/LICENSE