|
| 1 | +/* |
| 2 | + * Copyright 2025 Google LLC |
| 3 | + * |
| 4 | + * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | + * you may not use this file except in compliance with the License. |
| 6 | + * You may obtain a copy of the License at |
| 7 | + * |
| 8 | + * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | + * |
| 10 | + * Unless required by applicable law or agreed to in writing, software |
| 11 | + * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | + * See the License for the specific language governing permissions and |
| 14 | + * limitations under the License. |
| 15 | + */ |
| 16 | + |
| 17 | +package com.google.cloud.spanner; |
| 18 | + |
| 19 | +import com.google.api.core.InternalApi; |
| 20 | +import com.google.common.annotations.VisibleForTesting; |
| 21 | +import java.security.SecureRandom; |
| 22 | +import java.util.Objects; |
| 23 | + |
| 24 | +@InternalApi |
| 25 | +public class XGoogSpannerRequestId { |
| 26 | + // 1. Generate the random process Id singleton. |
| 27 | + @VisibleForTesting static String RAND_PROCESS_ID = XGoogSpannerRequestId.generateRandProcessId(); |
| 28 | + |
| 29 | + @VisibleForTesting |
| 30 | + static final long VERSION = 1; // The version of the specification being implemented. |
| 31 | + |
| 32 | + private final long nthClientId; |
| 33 | + private final long nthChannelId; |
| 34 | + private final long nthRequest; |
| 35 | + private long attempt; |
| 36 | + |
| 37 | + XGoogSpannerRequestId(long nthClientId, long nthChannelId, long nthRequest, long attempt) { |
| 38 | + this.nthClientId = nthClientId; |
| 39 | + this.nthChannelId = nthChannelId; |
| 40 | + this.nthRequest = nthRequest; |
| 41 | + this.attempt = attempt; |
| 42 | + } |
| 43 | + |
| 44 | + public static XGoogSpannerRequestId of( |
| 45 | + long nthClientId, long nthChannelId, long nthRequest, long attempt) { |
| 46 | + return new XGoogSpannerRequestId(nthClientId, nthChannelId, nthRequest, attempt); |
| 47 | + } |
| 48 | + |
| 49 | + private static String generateRandProcessId() { |
| 50 | + return String.format("%08x", new SecureRandom().nextInt()); |
| 51 | + } |
| 52 | + |
| 53 | + @Override |
| 54 | + public String toString() { |
| 55 | + return String.format( |
| 56 | + "%d.%s.%d.%d.%d.%d", |
| 57 | + XGoogSpannerRequestId.VERSION, |
| 58 | + XGoogSpannerRequestId.RAND_PROCESS_ID, |
| 59 | + this.nthClientId, |
| 60 | + this.nthChannelId, |
| 61 | + this.nthRequest, |
| 62 | + this.attempt); |
| 63 | + } |
| 64 | + |
| 65 | + @Override |
| 66 | + public boolean equals(Object other) { |
| 67 | + // instanceof for a null object returns false. |
| 68 | + if (!(other instanceof XGoogSpannerRequestId)) { |
| 69 | + return false; |
| 70 | + } |
| 71 | + |
| 72 | + XGoogSpannerRequestId otherReqId = (XGoogSpannerRequestId) (other); |
| 73 | + |
| 74 | + return Objects.equals(this.nthClientId, otherReqId.nthClientId) |
| 75 | + && Objects.equals(this.nthChannelId, otherReqId.nthChannelId) |
| 76 | + && Objects.equals(this.nthRequest, otherReqId.nthRequest) |
| 77 | + && Objects.equals(this.attempt, otherReqId.attempt); |
| 78 | + } |
| 79 | + |
| 80 | + @Override |
| 81 | + public int hashCode() { |
| 82 | + return Objects.hash(this.nthClientId, this.nthChannelId, this.nthRequest, this.attempt); |
| 83 | + } |
| 84 | +} |
0 commit comments