blob: 61581458f98ab8c0b463f11485fe81d4cac16ffc [file] [log] [blame]
Eugene Susla8ab86a62017-02-23 18:24:39 -08001/*
2 * Copyright (C) 2017 The Android Open Source Project
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
18package com.android.internal.util;
19
20import android.annotation.Nullable;
Eugene Susla4a34f9c2017-05-16 14:16:38 -070021import android.text.TextUtils;
Eugene Susla8ab86a62017-02-23 18:24:39 -080022
Hugo Benichi495a17b2017-01-12 15:31:05 +090023import java.nio.ByteBuffer;
Eugene Susla8ab86a62017-02-23 18:24:39 -080024import java.util.Arrays;
Narayan Kamath607223f2018-02-19 14:09:02 +000025import java.util.Objects;
Eugene Susla8ab86a62017-02-23 18:24:39 -080026import java.util.UUID;
Eugene Susla4a34f9c2017-05-16 14:16:38 -070027import java.util.function.IntFunction;
Eugene Susla8ab86a62017-02-23 18:24:39 -080028
Hugo Benichi495a17b2017-01-12 15:31:05 +090029/**
30 * A utility class for handling unsigned integers and unsigned arithmetics, as well as syntactic
Eugene Suslaabdefba2018-11-09 18:06:43 -080031 * sugar methods for {@link ByteBuffer}. Useful for networking and packet manipulations.
Hugo Benichi495a17b2017-01-12 15:31:05 +090032 * {@hide}
33 */
34public final class BitUtils {
Eugene Susla8ab86a62017-02-23 18:24:39 -080035 private BitUtils() {}
36
37 public static boolean maskedEquals(long a, long b, long mask) {
38 return (a & mask) == (b & mask);
39 }
40
41 public static boolean maskedEquals(byte a, byte b, byte mask) {
42 return (a & mask) == (b & mask);
43 }
44
45 public static boolean maskedEquals(byte[] a, byte[] b, @Nullable byte[] mask) {
46 if (a == null || b == null) return a == b;
47 Preconditions.checkArgument(a.length == b.length, "Inputs must be of same size");
48 if (mask == null) return Arrays.equals(a, b);
49 Preconditions.checkArgument(a.length == mask.length, "Mask must be of same size as inputs");
50 for (int i = 0; i < mask.length; i++) {
51 if (!maskedEquals(a[i], b[i], mask[i])) return false;
52 }
53 return true;
54 }
55
56 public static boolean maskedEquals(UUID a, UUID b, @Nullable UUID mask) {
57 if (mask == null) {
Narayan Kamath607223f2018-02-19 14:09:02 +000058 return Objects.equals(a, b);
Eugene Susla8ab86a62017-02-23 18:24:39 -080059 }
60 return maskedEquals(a.getLeastSignificantBits(), b.getLeastSignificantBits(),
61 mask.getLeastSignificantBits())
62 && maskedEquals(a.getMostSignificantBits(), b.getMostSignificantBits(),
63 mask.getMostSignificantBits());
64 }
Hugo Benichi9910dbc2017-03-22 18:29:58 +090065
66 public static int[] unpackBits(long val) {
67 int size = Long.bitCount(val);
68 int[] result = new int[size];
69 int index = 0;
70 int bitPos = 0;
71 while (val > 0) {
72 if ((val & 1) == 1) result[index++] = bitPos;
73 val = val >> 1;
74 bitPos++;
75 }
76 return result;
77 }
78
79 public static long packBits(int[] bits) {
80 long packed = 0;
81 for (int b : bits) {
82 packed |= (1 << b);
83 }
84 return packed;
85 }
Hugo Benichi495a17b2017-01-12 15:31:05 +090086
87 public static int uint8(byte b) {
88 return b & 0xff;
89 }
90
91 public static int uint16(short s) {
92 return s & 0xffff;
93 }
94
Chalard Jeane5659bd2017-10-04 14:51:42 +090095 public static int uint16(byte hi, byte lo) {
96 return ((hi & 0xff) << 8) | (lo & 0xff);
97 }
98
Hugo Benichi495a17b2017-01-12 15:31:05 +090099 public static long uint32(int i) {
100 return i & 0xffffffffL;
101 }
102
103 public static int bytesToBEInt(byte[] bytes) {
104 return (uint8(bytes[0]) << 24)
105 + (uint8(bytes[1]) << 16)
106 + (uint8(bytes[2]) << 8)
107 + (uint8(bytes[3]));
108 }
109
110 public static int bytesToLEInt(byte[] bytes) {
111 return Integer.reverseBytes(bytesToBEInt(bytes));
112 }
113
114 public static int getUint8(ByteBuffer buffer, int position) {
115 return uint8(buffer.get(position));
116 }
117
118 public static int getUint16(ByteBuffer buffer, int position) {
119 return uint16(buffer.getShort(position));
120 }
121
122 public static long getUint32(ByteBuffer buffer, int position) {
123 return uint32(buffer.getInt(position));
124 }
125
126 public static void put(ByteBuffer buffer, int position, byte[] bytes) {
127 final int original = buffer.position();
128 buffer.position(position);
129 buffer.put(bytes);
130 buffer.position(original);
131 }
Eugene Susla0eb2b6e2017-05-15 14:06:32 -0700132
133 public static boolean isBitSet(long flags, int bitIndex) {
134 return (flags & bitAt(bitIndex)) != 0;
135 }
136
137 public static long bitAt(int bitIndex) {
138 return 1L << bitIndex;
139 }
Eugene Susla4a34f9c2017-05-16 14:16:38 -0700140
141 public static String flagsToString(int flags, IntFunction<String> getFlagName) {
142 StringBuilder builder = new StringBuilder();
143 int count = 0;
144 while (flags != 0) {
145 final int flag = 1 << Integer.numberOfTrailingZeros(flags);
146 flags &= ~flag;
147 if (count > 0) builder.append(", ");
148 builder.append(getFlagName.apply(flag));
149 count++;
150 }
151 TextUtils.wrap(builder, "[", "]");
152 return builder.toString();
153 }
Eugene Suslaabdefba2018-11-09 18:06:43 -0800154
155 /**
156 * Converts long to byte array
157 */
158 public static byte[] toBytes(long l) {
159 return ByteBuffer.allocate(8).putLong(l).array();
160 }
Eugene Susla8ab86a62017-02-23 18:24:39 -0800161}