ByteUtil.java
10 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
/*
* Copyright (c) 2013, OpenCloudDB/MyCAT and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software;Designed and Developed mainly by many Chinese
* opensource volunteers. you can redistribute it and/or modify it under the
* terms of the GNU General Public License version 2 only, as published by the
* Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Any questions about this component can be directed to it's project Web address
* https://code.google.com/p/opencloudb/.
*
*/
package io.mycat.util;
import java.nio.charset.Charset;
import java.util.Date;
public class ByteUtil {
/**
* compare to number or dicamal ascii byte array, for number :123456 ,store
* to array [1,2,3,4,5,6]
*
* @param b1
* @param b2
* @return -1 means b1 < b2, or 0 means b1=b2 else return 1
*/
public static int compareNumberByte(byte[] b1, byte[] b2) {
if(b1 == null || b1.length == 0) {
return -1;
}
else if(b2 == null || b2.length == 0) {
return 1;
}
boolean isNegetive = b1[0] == 45 || b2[0] == 45;
if (isNegetive == false && b1.length != b2.length) {
return b1.length - b2.length;
}
int len = b1.length > b2.length ? b2.length : b1.length;
int result = 0;
int index = -1;
for (int i = 0; i < len; i++) {
int b1val = b1[i];
int b2val = b2[i];
if (b1val > b2val) {
result = 1;
index = i;
break;
} else if (b1val < b2val) {
index = i;
result = -1;
break;
}
}
if (index == 0) {
// first byte compare
return result;
} else {
if( b1.length != b2.length ) {
int lenDelta = b1.length - b2.length;
return isNegetive ? 0 - lenDelta : lenDelta;
} else {
return isNegetive ? 0 - result : result;
}
}
}
public static byte[] compareNumberArray2(byte[] b1, byte[] b2, int order) {
if (b1.length <= 0 && b2.length > 0) {
return b2;
}
if (b1.length > 0 && b2.length <= 0) {
return b1;
}
int len = b1.length > b2.length ? b1.length : b2.length;
for (int i = 0; i < len; i++) {
if (b1[i] != b2[i]) {
if (order == 1) {
return ((b1[i] & 0xff) - (b2[i] & 0xff)) > 0 ? b1 : b2;
} else {
return ((b1[i] & 0xff) - (b2[i] & 0xff)) > 0 ? b2 : b1;
}
}
}
return b1;
}
public static byte[] getBytes(short data) {
byte[] bytes = new byte[2];
bytes[0] = (byte) (data & 0xff);
bytes[1] = (byte) ((data & 0xff00) >> 8);
return bytes;
}
public static byte[] getBytes(char data) {
byte[] bytes = new byte[2];
bytes[0] = (byte) (data);
bytes[1] = (byte) (data >> 8);
return bytes;
}
public static byte[] getBytes(int data) {
byte[] bytes = new byte[4];
bytes[0] = (byte) (data & 0xff);
bytes[1] = (byte) ((data & 0xff00) >> 8);
bytes[2] = (byte) ((data & 0xff0000) >> 16);
bytes[3] = (byte) ((data & 0xff000000) >> 24);
return bytes;
}
public static byte[] getBytes(long data) {
byte[] bytes = new byte[8];
bytes[0] = (byte) (data & 0xff);
bytes[1] = (byte) ((data >> 8) & 0xff);
bytes[2] = (byte) ((data >> 16) & 0xff);
bytes[3] = (byte) ((data >> 24) & 0xff);
bytes[4] = (byte) ((data >> 32) & 0xff);
bytes[5] = (byte) ((data >> 40) & 0xff);
bytes[6] = (byte) ((data >> 48) & 0xff);
bytes[7] = (byte) ((data >> 56) & 0xff);
return bytes;
}
public static byte[] getBytes(float data) {
int intBits = Float.floatToIntBits(data);
return getBytes(intBits);
}
public static byte[] getBytes(double data) {
long intBits = Double.doubleToLongBits(data);
return getBytes(intBits);
}
public static byte[] getBytes(String data, String charsetName) {
Charset charset = Charset.forName(charsetName);
return data.getBytes(charset);
}
public static byte[] getBytes(String data) {
return getBytes(data, "GBK");
}
public static short getShort(byte[] bytes) {
return Short.parseShort(new String(bytes));
// return (short) ((0xff & bytes[0]) | (0xff00 & (bytes[1] << 8)));
}
public static char getChar(byte[] bytes) {
return (char) ((0xff & bytes[0]) | (0xff00 & (bytes[1] << 8)));
}
public static int getInt(byte[] bytes) {
return Integer.parseInt(new String(bytes));
// return (0xff & bytes[0]) | (0xff00 & (bytes[1] << 8)) | (0xff0000 &
// (bytes[2] << 16)) | (0xff000000 & (bytes[3] << 24));
}
public static long getLong(byte[] bytes) {
return Long.parseLong(new String(bytes));
// return(0xffL & (long)bytes[0]) | (0xff00L & ((long)bytes[1] << 8)) |
// (0xff0000L & ((long)bytes[2] << 16)) | (0xff000000L & ((long)bytes[3]
// << 24))
// | (0xff00000000L & ((long)bytes[4] << 32)) | (0xff0000000000L &
// ((long)bytes[5] << 40)) | (0xff000000000000L & ((long)bytes[6] <<
// 48)) | (0xff00000000000000L & ((long)bytes[7] << 56));
}
public static double getDouble(byte[] bytes) {
return Double.parseDouble(new String(bytes));
}
public static float getFloat(byte[] bytes) {
return Float.parseFloat(new String(bytes));
}
public static String getString(byte[] bytes, String charsetName) {
return new String(bytes, Charset.forName(charsetName));
}
public static String getString(byte[] bytes) {
return getString(bytes, "UTF-8");
}
public static String getDate(byte[] bytes) {
return new String(bytes);
}
public static String getTime(byte[] bytes) {
return new String(bytes);
}
public static String getTimestmap(byte[] bytes) {
return new String(bytes);
}
public static byte[] getBytes(Date date, boolean isTime) {
if(isTime) {
return getBytesFromTime(date);
} else {
return getBytesFromDate(date);
}
}
private static byte[] getBytesFromTime(Date date) {
int day = 0;
int hour = DateUtil.getHour(date);
int minute = DateUtil.getMinute(date);
int second = DateUtil.getSecond(date);
int microSecond = DateUtil.getMicroSecond(date);
byte[] bytes = null;
byte[] tmp = null;
if(day == 0 && hour == 0 && minute == 0
&& second == 0 && microSecond == 0) {
bytes = new byte[1];
bytes[0] = (byte) 0;
} else if(microSecond == 0) {
bytes = new byte[1 + 8];
bytes[0] = (byte) 8;
bytes[1] = (byte) 0; // is_negative (1) -- (1 if minus, 0 for plus)
tmp = getBytes(day);
bytes[2] = tmp[0];
bytes[3] = tmp[1];
bytes[4] = tmp[2];
bytes[5] = tmp[3];
bytes[6] = (byte) hour;
bytes[7] = (byte) minute;
bytes[8] = (byte) second;
} else {
bytes = new byte[1 + 12];
bytes[0] = (byte) 12;
bytes[1] = (byte) 0; // is_negative (1) -- (1 if minus, 0 for plus)
tmp = getBytes(day);
bytes[2] = tmp[0];
bytes[3] = tmp[1];
bytes[4] = tmp[2];
bytes[5] = tmp[3];
bytes[6] = (byte) hour;
bytes[7] = (byte) minute;
bytes[8] = (byte) second;
tmp = getBytes(microSecond);
bytes[9] = tmp[0];
bytes[10] = tmp[1];
bytes[11] = tmp[2];
bytes[12] = tmp[3];
}
return bytes;
}
private static byte[] getBytesFromDate(Date date) {
int year = DateUtil.getYear(date);
int month = DateUtil.getMonth(date);
int day = DateUtil.getDay(date);
int hour = DateUtil.getHour(date);
int minute = DateUtil.getMinute(date);
int second = DateUtil.getSecond(date);
int microSecond = DateUtil.getMicroSecond(date);
byte[] bytes = null;
byte[] tmp = null;
if(year == 0 && month == 0 && day == 0
&& hour == 0 && minute == 0 && second == 0
&& microSecond == 0) {
bytes = new byte[1];
bytes[0] = (byte) 0;
} else if(hour == 0 && minute == 0 && second == 0
&& microSecond == 0) {
bytes = new byte[1 + 4];
bytes[0] = (byte) 4;
tmp = getBytes((short) year);
bytes[1] = tmp[0];
bytes[2] = tmp[1];
bytes[3] = (byte) month;
bytes[4] = (byte) day;
} else if(microSecond == 0) {
bytes = new byte[1 + 7];
bytes[0] = (byte) 7;
tmp = getBytes((short) year);
bytes[1] = tmp[0];
bytes[2] = tmp[1];
bytes[3] = (byte) month;
bytes[4] = (byte) day;
bytes[5] = (byte) hour;
bytes[6] = (byte) minute;
bytes[7] = (byte) second;
} else {
bytes = new byte[1 + 11];
bytes[0] = (byte) 11;
tmp = getBytes((short) year);
bytes[1] = tmp[0];
bytes[2] = tmp[1];
bytes[3] = (byte) month;
bytes[4] = (byte) day;
bytes[5] = (byte) hour;
bytes[6] = (byte) minute;
bytes[7] = (byte) second;
tmp = getBytes(microSecond);
bytes[8] = tmp[0];
bytes[9] = tmp[1];
bytes[10] = tmp[2];
bytes[11] = tmp[3];
}
return bytes;
}
// 支持 byte dump
//---------------------------------------------------------------------
public static String dump(byte[] data, int offset, int length) {
StringBuilder sb = new StringBuilder();
sb.append(" byte dump log ");
sb.append(System.lineSeparator());
sb.append(" offset ").append( offset );
sb.append(" length ").append( length );
sb.append(System.lineSeparator());
int lines = (length - 1) / 16 + 1;
for (int i = 0, pos = 0; i < lines; i++, pos += 16) {
sb.append(String.format("0x%04X ", i * 16));
for (int j = 0, pos1 = pos; j < 16; j++, pos1++) {
sb.append(pos1 < length ? String.format("%02X ", data[offset + pos1]) : " ");
}
sb.append(" ");
for (int j = 0, pos1 = pos; j < 16; j++, pos1++) {
sb.append(pos1 < length ? print(data[offset + pos1]) : '.');
}
sb.append(System.lineSeparator());
}
sb.append(length).append(" bytes").append(System.lineSeparator());
return sb.toString();
}
public static char print(byte b) {
return (b < 32 || b > 127) ? '.' : (char) b;
}
}