ByteOrder.cs 35 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.IO;
  5. using CommonLang.IO;
  6. namespace CommonLang.ByteOrder
  7. {
  8. public static class LittleEdian
  9. {
  10. //--------------------------------------------------------------------------------------
  11. #region BYTES
  12. public static bool GetBool(byte[] data, ref int pos)
  13. {
  14. return data[pos++] != 0;
  15. }
  16. public static byte GetU8(byte[] data, ref int pos)
  17. {
  18. return data[pos++];
  19. }
  20. public static sbyte GetS8(byte[] data, ref int pos)
  21. {
  22. return (sbyte)data[pos++];
  23. }
  24. public static ushort GetU16(byte[] data, ref int pos)
  25. {
  26. int ret = data[pos++];
  27. ret |= (data[pos++] << 8);
  28. return (ushort)ret;
  29. }
  30. public static short GetS16(byte[] data, ref int pos)
  31. {
  32. int ret = data[pos++];
  33. ret |= (data[pos++] << 8);
  34. return (short)ret;
  35. }
  36. public static uint GetU32(byte[] data, ref int pos)
  37. {
  38. uint ret = data[pos++];
  39. ret |= (uint)(data[pos++] << 8);
  40. ret |= (uint)(data[pos++] << 16);
  41. ret |= (uint)(data[pos++] << 24);
  42. return ret;
  43. }
  44. public static int GetS32(byte[] data, ref int pos)
  45. {
  46. int ret = data[pos++];
  47. ret |= ((int)data[pos++] << 8);
  48. ret |= ((int)data[pos++] << 16);
  49. ret |= ((int)data[pos++] << 24);
  50. return ret;
  51. }
  52. public static ulong GetU64(byte[] data, ref int pos)
  53. {
  54. ulong ret = data[pos++];
  55. ret |= (((ulong)data[pos++]) << 8);
  56. ret |= (((ulong)data[pos++]) << 16);
  57. ret |= (((ulong)data[pos++]) << 24);
  58. ret |= (((ulong)data[pos++]) << 32);
  59. ret |= (((ulong)data[pos++]) << 40);
  60. ret |= (((ulong)data[pos++]) << 48);
  61. ret |= (((ulong)data[pos++]) << 56);
  62. return ret;
  63. }
  64. public static long GetS64(byte[] data, ref int pos)
  65. {
  66. long ret = data[pos++];
  67. ret |= (((long)data[pos++]) << 8);
  68. ret |= (((long)data[pos++]) << 16);
  69. ret |= (((long)data[pos++]) << 24);
  70. ret |= (((long)data[pos++]) << 32);
  71. ret |= (((long)data[pos++]) << 40);
  72. ret |= (((long)data[pos++]) << 48);
  73. ret |= (((long)data[pos++]) << 56);
  74. return ret;
  75. }
  76. public static string GetUTF(byte[] data, ref int pos)
  77. {
  78. int len = GetU16(data, ref pos);
  79. if (len > 0)
  80. {
  81. string ret = System.Text.UTF8Encoding.UTF8.GetString(data, pos, len);
  82. pos += len;
  83. return ret;
  84. }
  85. return null;
  86. }
  87. public static byte[] GetBytes(byte[] data, ref int pos)
  88. {
  89. int len = GetU16(data, ref pos);
  90. byte[] ret = new byte[len];
  91. if (len > 0)
  92. {
  93. Array.Copy(data, pos, ret, 0, len);
  94. pos += len;
  95. }
  96. return ret;
  97. }
  98. public static void PutBool(byte[] data, ref int pos, bool value)
  99. {
  100. data[pos++] = (byte)(value ? 1 : 0);
  101. }
  102. public static void PutU8(byte[] data, ref int pos, byte value)
  103. {
  104. data[pos++] = value;
  105. }
  106. public static void PutS8(byte[] data, ref int pos, sbyte value)
  107. {
  108. data[pos++] = (byte)value;
  109. }
  110. public static void PutU16(byte[] data, ref int pos, ushort value)
  111. {
  112. data[pos++] = (byte)(value);
  113. data[pos++] = (byte)(value >> 8);
  114. }
  115. public static void PutS16(byte[] data, ref int pos, short value)
  116. {
  117. data[pos++] = (byte)(value);
  118. data[pos++] = (byte)(value >> 8);
  119. }
  120. public static void PutU32(byte[] data, ref int pos, uint value)
  121. {
  122. data[pos++] = (byte)(value);
  123. data[pos++] = (byte)(value >> 8);
  124. data[pos++] = (byte)(value >> 16);
  125. data[pos++] = (byte)(value >> 24);
  126. }
  127. public static void PutS32(byte[] data, ref int pos, int value)
  128. {
  129. data[pos++] = (byte)(value);
  130. data[pos++] = (byte)(value >> 8);
  131. data[pos++] = (byte)(value >> 16);
  132. data[pos++] = (byte)(value >> 24);
  133. }
  134. public static void PutU64(byte[] data, ref int pos, ulong value)
  135. {
  136. data[pos++] = (byte)(value);
  137. data[pos++] = (byte)(value >> 8);
  138. data[pos++] = (byte)(value >> 16);
  139. data[pos++] = (byte)(value >> 24);
  140. data[pos++] = (byte)(value >> 32);
  141. data[pos++] = (byte)(value >> 40);
  142. data[pos++] = (byte)(value >> 48);
  143. data[pos++] = (byte)(value >> 56);
  144. }
  145. public static void PutS64(byte[] data, ref int pos, long value)
  146. {
  147. data[pos++] = (byte)(value);
  148. data[pos++] = (byte)(value >> 8);
  149. data[pos++] = (byte)(value >> 16);
  150. data[pos++] = (byte)(value >> 24);
  151. data[pos++] = (byte)(value >> 32);
  152. data[pos++] = (byte)(value >> 40);
  153. data[pos++] = (byte)(value >> 48);
  154. data[pos++] = (byte)(value >> 56);
  155. }
  156. public static void PutUTF(byte[] data, ref int pos, string value)
  157. {
  158. if (value == null || value.Length == 0)
  159. {
  160. PutU16(data, ref pos, 0);
  161. }
  162. else
  163. {
  164. byte[] buff = System.Text.UTF8Encoding.UTF8.GetBytes(value);
  165. if (buff.Length > UInt16.MaxValue)
  166. {
  167. throw new IOException("PutUTF overflow : " + value + "\nSize=" + buff.Length);
  168. }
  169. PutU16(data, ref pos, (ushort)buff.Length);
  170. Put(data, ref pos, buff, 0, buff.Length);
  171. }
  172. }
  173. public static void PutBytes(byte[] data, ref int pos, byte[] value)
  174. {
  175. if (value == null || value.Length == 0)
  176. {
  177. PutS32(data, ref pos, 0);
  178. }
  179. else
  180. {
  181. PutS32(data, ref pos, value.Length);
  182. Put(data, ref pos, value, 0, value.Length);
  183. }
  184. }
  185. public static void Get(byte[] data, ref int pos, byte[] value, int offset, int length)
  186. {
  187. Array.Copy(data, pos, value, offset, length);
  188. pos += length;
  189. }
  190. public static void Put(byte[] data, ref int pos, byte[] value, int offset, int length)
  191. {
  192. Array.Copy(value, offset, data, pos, length);
  193. pos += length;
  194. }
  195. #endregion
  196. //--------------------------------------------------------------------------------------
  197. #region STREAM
  198. public static bool GetBool(Stream data)
  199. {
  200. return IOUtil.TryReadByte(data) != 0;
  201. }
  202. public static void PutBool(Stream data, bool value)
  203. {
  204. data.WriteByte((byte)(value ? 1 : 0));
  205. }
  206. public static byte GetU8(Stream data)
  207. {
  208. return (byte)IOUtil.TryReadByte(data);
  209. }
  210. public static void PutU8(Stream data, byte value)
  211. {
  212. data.WriteByte(value);
  213. }
  214. public static sbyte GetS8(Stream data)
  215. {
  216. return (sbyte)IOUtil.TryReadByte(data);
  217. }
  218. public static void PutS8(Stream data, sbyte value)
  219. {
  220. data.WriteByte((byte)value);
  221. }
  222. public static ushort GetU16(Stream data)
  223. {
  224. int ret = (IOUtil.TryReadByte(data));
  225. ret |= (IOUtil.TryReadByte(data) << 8);
  226. return (ushort)ret;
  227. }
  228. public static void PutU16(Stream data, ushort value)
  229. {
  230. data.WriteByte((byte)(value));
  231. data.WriteByte((byte)(value >> 8));
  232. }
  233. public static short GetS16(Stream data)
  234. {
  235. int ret = (IOUtil.TryReadByte(data));
  236. ret |= (IOUtil.TryReadByte(data) << 8);
  237. return (short)ret;
  238. }
  239. //------------------------------------------------------------------------------------------
  240. public static void PutS16(Stream data, short value)
  241. {
  242. data.WriteByte((byte)(value));
  243. data.WriteByte((byte)(value >> 8));
  244. }
  245. public static uint GetU32(Stream data)
  246. {
  247. int ret = IOUtil.TryReadByte(data);
  248. ret |= (IOUtil.TryReadByte(data) << 8);
  249. ret |= (IOUtil.TryReadByte(data) << 16);
  250. ret |= (IOUtil.TryReadByte(data) << 24);
  251. return (uint)ret;
  252. }
  253. public static void PutU32(Stream data, uint value)
  254. {
  255. data.WriteByte((byte)(value));
  256. data.WriteByte((byte)(value >> 8));
  257. data.WriteByte((byte)(value >> 16));
  258. data.WriteByte((byte)(value >> 24));
  259. }
  260. public static int GetS32(Stream data)
  261. {
  262. int ret = IOUtil.TryReadByte(data);
  263. ret |= (IOUtil.TryReadByte(data) << 8);
  264. ret |= (IOUtil.TryReadByte(data) << 16);
  265. ret |= (IOUtil.TryReadByte(data) << 24);
  266. return ret;
  267. }
  268. public static void PutS32(Stream data, int value)
  269. {
  270. data.WriteByte((byte)(value));
  271. data.WriteByte((byte)(value >> 8));
  272. data.WriteByte((byte)(value >> 16));
  273. data.WriteByte((byte)(value >> 24));
  274. }
  275. public static ulong GetU64(Stream data)
  276. {
  277. ulong ret = (ulong)(IOUtil.TryReadByte(data));
  278. ret |= (((ulong)IOUtil.TryReadByte(data)) << 8);
  279. ret |= (((ulong)IOUtil.TryReadByte(data)) << 16);
  280. ret |= (((ulong)IOUtil.TryReadByte(data)) << 24);
  281. ret |= (((ulong)IOUtil.TryReadByte(data)) << 32);
  282. ret |= (((ulong)IOUtil.TryReadByte(data)) << 40);
  283. ret |= (((ulong)IOUtil.TryReadByte(data)) << 48);
  284. ret |= (((ulong)IOUtil.TryReadByte(data)) << 56);
  285. return ret;
  286. }
  287. public static void PutU64(Stream data, ulong value)
  288. {
  289. data.WriteByte((byte)(value));
  290. data.WriteByte((byte)(value >> 8));
  291. data.WriteByte((byte)(value >> 16));
  292. data.WriteByte((byte)(value >> 24));
  293. data.WriteByte((byte)(value >> 32));
  294. data.WriteByte((byte)(value >> 40));
  295. data.WriteByte((byte)(value >> 48));
  296. data.WriteByte((byte)(value >> 56));
  297. }
  298. public static long GetS64(Stream data)
  299. {
  300. long ret = IOUtil.TryReadByte(data);
  301. ret |= (((long)IOUtil.TryReadByte(data)) << 8);
  302. ret |= (((long)IOUtil.TryReadByte(data)) << 16);
  303. ret |= (((long)IOUtil.TryReadByte(data)) << 24);
  304. ret |= (((long)IOUtil.TryReadByte(data)) << 32);
  305. ret |= (((long)IOUtil.TryReadByte(data)) << 40);
  306. ret |= (((long)IOUtil.TryReadByte(data)) << 48);
  307. ret |= (((long)IOUtil.TryReadByte(data)) << 56);
  308. return ret;
  309. }
  310. public static void PutS64(Stream data, long value)
  311. {
  312. data.WriteByte((byte)(value));
  313. data.WriteByte((byte)(value >> 8));
  314. data.WriteByte((byte)(value >> 16));
  315. data.WriteByte((byte)(value >> 24));
  316. data.WriteByte((byte)(value >> 32));
  317. data.WriteByte((byte)(value >> 40));
  318. data.WriteByte((byte)(value >> 48));
  319. data.WriteByte((byte)(value >> 56));
  320. }
  321. //--------------------------------------------------------------------------------------
  322. public static float GetF32(Stream data)
  323. {
  324. byte[] buff = IOUtil.ReadExpect(data, 4);
  325. return System.BitConverter.ToSingle(buff, 0);
  326. }
  327. public static void PutF32(Stream data, float value)
  328. {
  329. byte[] buff = BitConverter.GetBytes(value);
  330. data.Write(buff, 0, 4);
  331. }
  332. public static double GetF64(Stream data)
  333. {
  334. byte[] buff = IOUtil.ReadExpect(data, 4);
  335. return System.BitConverter.ToDouble(buff, 0);
  336. }
  337. public static void PutF64(Stream data, double value)
  338. {
  339. byte[] buff = BitConverter.GetBytes(value);
  340. data.Write(buff, 0, 8);
  341. }
  342. //--------------------------------------------------------------------------------------
  343. public static string GetUTF(Stream data)
  344. {
  345. int len = GetU16(data);
  346. if (len > UInt16.MaxValue)
  347. {
  348. throw new IOException("GetUTF overflow : Size=" + len);
  349. }
  350. if (len > 0)
  351. {
  352. byte[] buff = IOUtil.ReadExpect(data, len);
  353. return System.Text.UTF8Encoding.UTF8.GetString(buff, 0, len);
  354. }
  355. return null;
  356. }
  357. public static void PutUTF(Stream data, string str)
  358. {
  359. if (str == null || str.Length == 0)
  360. {
  361. PutU16(data, 0);
  362. }
  363. else
  364. {
  365. byte[] buff = System.Text.UTF8Encoding.UTF8.GetBytes(str);
  366. if (buff.Length > UInt16.MaxValue)
  367. {
  368. throw new IOException("PutUTF overflow : " + str + "\nSize=" + buff.Length);
  369. }
  370. PutU16(data, (ushort)buff.Length);
  371. data.Write(buff, 0, buff.Length);
  372. }
  373. }
  374. //--------------------------------------------------------------------------------------
  375. public static T GetEnum8<T>(Stream data, Type enumType)
  376. {
  377. return (T)Enum.ToObject(enumType, IOUtil.TryReadByte(data));
  378. }
  379. public static void PutEnum8(Stream data, object enumData)
  380. {
  381. byte b = (byte)(enumData);
  382. data.WriteByte(b);
  383. }
  384. //--------------------------------------------------------------------------------------
  385. //--------------------------------------------------------------------------------------
  386. public delegate T GetData<T>(Stream data);
  387. public delegate void PutData<T>(Stream data, T v);
  388. public static T[] GetArray<T>(Stream data, GetData<T> action) where T : new()
  389. {
  390. int len = GetU16(data);
  391. if (len > UInt16.MaxValue)
  392. {
  393. throw new IOException("GetArray overflow : Size=" + len);
  394. }
  395. T[] ret = new T[len];
  396. for (int i = 0; i < len; i++)
  397. {
  398. T d = action.Invoke(data);
  399. ret[i] = d;
  400. }
  401. return ret;
  402. }
  403. public static void PutArray<T>(Stream data, T[] array, PutData<T> action)
  404. {
  405. if (array == null)
  406. {
  407. PutU16(data, 0);
  408. }
  409. else
  410. {
  411. int len = array.Length;
  412. if (len > UInt16.MaxValue)
  413. {
  414. throw new IOException("PutArray overflow : " + array + "\nSize=" + len);
  415. }
  416. PutU16(data, (ushort)len);
  417. for (int i = 0; i < len; i++)
  418. {
  419. action.Invoke(data, array[i]);
  420. }
  421. }
  422. }
  423. public static List<T> GetList<T>(Stream data, GetData<T> action) where T : new()
  424. {
  425. int len = GetU16(data);
  426. if (len > UInt16.MaxValue)
  427. {
  428. throw new IOException("GetList overflow : Size=" + len);
  429. }
  430. List<T> ret = new List<T>(len);
  431. for (int i = 0; i < len; i++)
  432. {
  433. T d = action.Invoke(data);
  434. ret.Add(d);
  435. }
  436. return ret;
  437. }
  438. public static void PutList<T>(Stream data, List<T> list, PutData<T> action)
  439. {
  440. if (list == null)
  441. {
  442. PutU16(data, 0);
  443. }
  444. else
  445. {
  446. int len = list.Count;
  447. if (len > UInt16.MaxValue)
  448. {
  449. throw new IOException("PutList overflow : " + list + "\nSize=" + len);
  450. }
  451. PutU16(data, (ushort)len);
  452. for (int i = 0; i < len; i++)
  453. {
  454. action.Invoke(data, list[i]);
  455. }
  456. }
  457. }
  458. #endregion
  459. //--------------------------------------------------------------------------------------
  460. }
  461. public static class BigEdian
  462. {
  463. //--------------------------------------------------------------------------------------
  464. #region BYTES
  465. public static bool GetBool(byte[] data, ref int pos)
  466. {
  467. return data[pos++] != 0;
  468. }
  469. public static byte GetU8(byte[] data, ref int pos)
  470. {
  471. return data[pos++];
  472. }
  473. public static sbyte GetS8(byte[] data, ref int pos)
  474. {
  475. return (sbyte)data[pos++];
  476. }
  477. public static ushort GetU16(byte[] data, ref int pos)
  478. {
  479. int ret = 0;
  480. ret |= (data[pos++] << 8);
  481. ret |= (data[pos++]);
  482. return (ushort)ret;
  483. }
  484. public static short GetS16(byte[] data, ref int pos)
  485. {
  486. int ret = 0;
  487. ret |= (data[pos++] << 8);
  488. ret |= (data[pos++]);
  489. return (short)ret;
  490. }
  491. public static uint GetU32(byte[] data, ref int pos)
  492. {
  493. uint ret = 0;
  494. ret |= (uint)(data[pos++] << 24);
  495. ret |= (uint)(data[pos++] << 16);
  496. ret |= (uint)(data[pos++] << 8);
  497. ret |= (uint)(data[pos++]);
  498. return ret;
  499. }
  500. public static int GetS32(byte[] data, ref int pos)
  501. {
  502. int ret = 0;
  503. ret |= ((int)data[pos++] << 24);
  504. ret |= ((int)data[pos++] << 16);
  505. ret |= ((int)data[pos++] << 8);
  506. ret |= ((int)data[pos++]);
  507. return ret;
  508. }
  509. public static ulong GetU64(byte[] data, ref int pos)
  510. {
  511. ulong ret = 0;
  512. ret |= (((ulong)data[pos++]) << 56);
  513. ret |= (((ulong)data[pos++]) << 48);
  514. ret |= (((ulong)data[pos++]) << 40);
  515. ret |= (((ulong)data[pos++]) << 32);
  516. ret |= (((ulong)data[pos++]) << 24);
  517. ret |= (((ulong)data[pos++]) << 16);
  518. ret |= (((ulong)data[pos++]) << 8);
  519. ret |= (((ulong)data[pos++]));
  520. return ret;
  521. }
  522. public static long GetS64(byte[] data, ref int pos)
  523. {
  524. long ret = 0;
  525. ret |= (((long)data[pos++]) << 56);
  526. ret |= (((long)data[pos++]) << 48);
  527. ret |= (((long)data[pos++]) << 40);
  528. ret |= (((long)data[pos++]) << 32);
  529. ret |= (((long)data[pos++]) << 24);
  530. ret |= (((long)data[pos++]) << 16);
  531. ret |= (((long)data[pos++]) << 8);
  532. ret |= (((long)data[pos++]));
  533. return ret;
  534. }
  535. public static string GetUTF(byte[] data, ref int pos)
  536. {
  537. int len = GetU16(data, ref pos);
  538. if (len > 0)
  539. {
  540. string ret = System.Text.UTF8Encoding.UTF8.GetString(data, pos, len);
  541. pos += len;
  542. return ret;
  543. }
  544. return null;
  545. }
  546. public static byte[] GetBytes(byte[] data, ref int pos)
  547. {
  548. int len = GetU16(data, ref pos);
  549. byte[] ret = new byte[len];
  550. if (len > 0)
  551. {
  552. Array.Copy(data, pos, ret, 0, len);
  553. pos += len;
  554. }
  555. return ret;
  556. }
  557. public static void PutBool(byte[] data, ref int pos, bool value)
  558. {
  559. data[pos++] = (byte)(value ? 1 : 0);
  560. }
  561. public static void PutU8(byte[] data, ref int pos, byte value)
  562. {
  563. data[pos++] = value;
  564. }
  565. public static void PutS8(byte[] data, ref int pos, sbyte value)
  566. {
  567. data[pos++] = (byte)value;
  568. }
  569. public static void PutU16(byte[] data, ref int pos, ushort value)
  570. {
  571. data[pos++] = (byte)(value >> 8);
  572. data[pos++] = (byte)(value);
  573. }
  574. public static void PutS16(byte[] data, ref int pos, short value)
  575. {
  576. data[pos++] = (byte)(value >> 8);
  577. data[pos++] = (byte)(value);
  578. }
  579. public static void PutU32(byte[] data, ref int pos, uint value)
  580. {
  581. data[pos++] = (byte)(value >> 24);
  582. data[pos++] = (byte)(value >> 16);
  583. data[pos++] = (byte)(value >> 8);
  584. data[pos++] = (byte)(value);
  585. }
  586. public static void PutS32(byte[] data, ref int pos, int value)
  587. {
  588. data[pos++] = (byte)(value >> 24);
  589. data[pos++] = (byte)(value >> 16);
  590. data[pos++] = (byte)(value >> 8);
  591. data[pos++] = (byte)(value);
  592. }
  593. public static void PutU64(byte[] data, ref int pos, ulong value)
  594. {
  595. data[pos++] = (byte)(value >> 56);
  596. data[pos++] = (byte)(value >> 48);
  597. data[pos++] = (byte)(value >> 40);
  598. data[pos++] = (byte)(value >> 32);
  599. data[pos++] = (byte)(value >> 24);
  600. data[pos++] = (byte)(value >> 16);
  601. data[pos++] = (byte)(value >> 8);
  602. data[pos++] = (byte)(value);
  603. }
  604. public static void PutS64(byte[] data, ref int pos, long value)
  605. {
  606. data[pos++] = (byte)(value >> 56);
  607. data[pos++] = (byte)(value >> 48);
  608. data[pos++] = (byte)(value >> 40);
  609. data[pos++] = (byte)(value >> 32);
  610. data[pos++] = (byte)(value >> 24);
  611. data[pos++] = (byte)(value >> 16);
  612. data[pos++] = (byte)(value >> 8);
  613. data[pos++] = (byte)(value);
  614. }
  615. public static void PutUTF(byte[] data, ref int pos, string value)
  616. {
  617. if (value == null || value.Length == 0)
  618. {
  619. PutU16(data, ref pos, 0);
  620. }
  621. else
  622. {
  623. byte[] buff = System.Text.UTF8Encoding.UTF8.GetBytes(value);
  624. if (buff.Length > UInt16.MaxValue)
  625. {
  626. throw new IOException("PutUTF overflow : " + value + "\nSize=" + buff.Length);
  627. }
  628. PutU16(data, ref pos, (ushort)buff.Length);
  629. Put(data, ref pos, buff, 0, buff.Length);
  630. }
  631. }
  632. public static void PutBytes(byte[] data, ref int pos, byte[] value)
  633. {
  634. if (value == null || value.Length == 0)
  635. {
  636. PutS32(data, ref pos, 0);
  637. }
  638. else
  639. {
  640. PutS32(data, ref pos, value.Length);
  641. Put(data, ref pos, value, 0, value.Length);
  642. }
  643. }
  644. public static void Get(byte[] data, ref int pos, byte[] value, int offset, int length)
  645. {
  646. Array.Copy(data, pos, value, offset, length);
  647. pos += length;
  648. }
  649. public static void Put(byte[] data, ref int pos, byte[] value, int offset, int length)
  650. {
  651. Array.Copy(value, offset, data, pos, length);
  652. pos += length;
  653. }
  654. #endregion
  655. //--------------------------------------------------------------------------------------
  656. #region STREAM
  657. public static bool GetBool(Stream data)
  658. {
  659. return IOUtil.TryReadByte(data) != 0;
  660. }
  661. public static void PutBool(Stream data, bool value)
  662. {
  663. data.WriteByte((byte)(value ? 1 : 0));
  664. }
  665. public static byte GetU8(Stream data)
  666. {
  667. return (byte)IOUtil.TryReadByte(data);
  668. }
  669. public static void PutU8(Stream data, byte value)
  670. {
  671. data.WriteByte(value);
  672. }
  673. public static sbyte GetS8(Stream data)
  674. {
  675. return (sbyte)IOUtil.TryReadByte(data);
  676. }
  677. public static void PutS8(Stream data, sbyte value)
  678. {
  679. data.WriteByte((byte)value);
  680. }
  681. public static ushort GetU16(Stream data)
  682. {
  683. int ret = 0;
  684. ret |= (IOUtil.TryReadByte(data) << 8);
  685. ret |= (IOUtil.TryReadByte(data));
  686. return (ushort)ret;
  687. }
  688. public static void PutU16(Stream data, ushort value)
  689. {
  690. data.WriteByte((byte)(value >> 8));
  691. data.WriteByte((byte)(value));
  692. }
  693. public static short GetS16(Stream data)
  694. {
  695. int ret = 0;
  696. ret |= (IOUtil.TryReadByte(data) << 8);
  697. ret |= (IOUtil.TryReadByte(data));
  698. return (short)ret;
  699. }
  700. public static void PutS16(Stream data, short value)
  701. {
  702. data.WriteByte((byte)(value >> 8));
  703. data.WriteByte((byte)(value));
  704. }
  705. public static uint GetU32(Stream data)
  706. {
  707. int ret = 0;
  708. ret |= (IOUtil.TryReadByte(data) << 24);
  709. ret |= (IOUtil.TryReadByte(data) << 16);
  710. ret |= (IOUtil.TryReadByte(data) << 8);
  711. ret |= (IOUtil.TryReadByte(data));
  712. return (uint)ret;
  713. }
  714. public static void PutU32(Stream data, uint value)
  715. {
  716. data.WriteByte((byte)(value >> 24));
  717. data.WriteByte((byte)(value >> 16));
  718. data.WriteByte((byte)(value >> 8));
  719. data.WriteByte((byte)(value));
  720. }
  721. public static int GetS32(Stream data)
  722. {
  723. int ret = 0;
  724. ret |= (IOUtil.TryReadByte(data) << 24);
  725. ret |= (IOUtil.TryReadByte(data) << 16);
  726. ret |= (IOUtil.TryReadByte(data) << 8);
  727. ret |= (IOUtil.TryReadByte(data));
  728. return ret;
  729. }
  730. public static void PutS32(Stream data, int value)
  731. {
  732. data.WriteByte((byte)(value >> 24));
  733. data.WriteByte((byte)(value >> 16));
  734. data.WriteByte((byte)(value >> 8));
  735. data.WriteByte((byte)(value));
  736. }
  737. public static ulong GetU64(Stream data)
  738. {
  739. ulong ret = 0;
  740. ret |= (((ulong)IOUtil.TryReadByte(data)) << 56);
  741. ret |= (((ulong)IOUtil.TryReadByte(data)) << 48);
  742. ret |= (((ulong)IOUtil.TryReadByte(data)) << 40);
  743. ret |= (((ulong)IOUtil.TryReadByte(data)) << 32);
  744. ret |= (((ulong)IOUtil.TryReadByte(data)) << 24);
  745. ret |= (((ulong)IOUtil.TryReadByte(data)) << 16);
  746. ret |= (((ulong)IOUtil.TryReadByte(data)) << 8);
  747. ret |= (((ulong)IOUtil.TryReadByte(data)) << 0);
  748. return ret;
  749. }
  750. public static void PutU64(Stream data, ulong value)
  751. {
  752. data.WriteByte((byte)(value >> 56));
  753. data.WriteByte((byte)(value >> 48));
  754. data.WriteByte((byte)(value >> 40));
  755. data.WriteByte((byte)(value >> 32));
  756. data.WriteByte((byte)(value >> 24));
  757. data.WriteByte((byte)(value >> 16));
  758. data.WriteByte((byte)(value >> 8));
  759. data.WriteByte((byte)(value));
  760. }
  761. public static long GetS64(Stream data)
  762. {
  763. long ret = 0;
  764. ret |= (((long)IOUtil.TryReadByte(data)) << 56);
  765. ret |= (((long)IOUtil.TryReadByte(data)) << 48);
  766. ret |= (((long)IOUtil.TryReadByte(data)) << 40);
  767. ret |= (((long)IOUtil.TryReadByte(data)) << 32);
  768. ret |= (((long)IOUtil.TryReadByte(data)) << 24);
  769. ret |= (((long)IOUtil.TryReadByte(data)) << 16);
  770. ret |= (((long)IOUtil.TryReadByte(data)) << 8);
  771. ret |= (((long)IOUtil.TryReadByte(data)) << 0);
  772. return ret;
  773. }
  774. public static void PutS64(Stream data, long value)
  775. {
  776. data.WriteByte((byte)(value >> 56));
  777. data.WriteByte((byte)(value >> 48));
  778. data.WriteByte((byte)(value >> 40));
  779. data.WriteByte((byte)(value >> 32));
  780. data.WriteByte((byte)(value >> 24));
  781. data.WriteByte((byte)(value >> 16));
  782. data.WriteByte((byte)(value >> 8));
  783. data.WriteByte((byte)(value));
  784. }
  785. //--------------------------------------------------------------------------------------
  786. public static float GetF32(Stream data)
  787. {
  788. byte[] buff = IOUtil.ReadExpect(data, 4);
  789. return System.BitConverter.ToSingle(buff, 0);
  790. }
  791. public static void PutF32(Stream data, float value)
  792. {
  793. byte[] buff = BitConverter.GetBytes(value);
  794. data.Write(buff, 0, 4);
  795. }
  796. public static double GetF64(Stream data)
  797. {
  798. byte[] buff = IOUtil.ReadExpect(data, 8);
  799. return System.BitConverter.ToDouble(buff, 0);
  800. }
  801. public static void PutF64(Stream data, double value)
  802. {
  803. byte[] buff = BitConverter.GetBytes(value);
  804. data.Write(buff, 0, 8);
  805. }
  806. //--------------------------------------------------------------------------------------
  807. public static string GetUTF(Stream data)
  808. {
  809. int len = GetU16(data);
  810. if (len > 0)
  811. {
  812. byte[] buff = IOUtil.ReadExpect(data, len);
  813. return System.Text.UTF8Encoding.UTF8.GetString(buff, 0, len);
  814. }
  815. return null;
  816. }
  817. public static void PutUTF(Stream data, string str)
  818. {
  819. if (str == null || str.Length == 0)
  820. {
  821. PutU16(data, 0);
  822. }
  823. else
  824. {
  825. byte[] buff = System.Text.UTF8Encoding.UTF8.GetBytes(str);
  826. if (buff.Length > UInt16.MaxValue)
  827. {
  828. throw new IOException("PutUTF overflow : " + str + "\nSize=" + buff.Length);
  829. }
  830. PutU16(data, (ushort)buff.Length);
  831. data.Write(buff, 0, buff.Length);
  832. }
  833. }
  834. //--------------------------------------------------------------------------------------
  835. public static T GetEnum8<T>(Stream data, Type enumType)
  836. {
  837. return (T)Enum.ToObject(enumType, IOUtil.TryReadByte(data));
  838. }
  839. public static void PutEnum8(Stream data, object enumData)
  840. {
  841. byte b = (byte)(enumData);
  842. data.WriteByte(b);
  843. }
  844. //--------------------------------------------------------------------------------------
  845. //--------------------------------------------------------------------------------------
  846. public delegate T GetData<T>(Stream data);
  847. public delegate void PutData<T>(Stream data, T v);
  848. public static T[] GetArray<T>(Stream data, GetData<T> action) where T : new()
  849. {
  850. int len = GetU16(data);
  851. T[] ret = new T[len];
  852. for (int i = 0; i < len; i++)
  853. {
  854. T d = action.Invoke(data);
  855. ret[i] = d;
  856. }
  857. return ret;
  858. }
  859. public static void PutArray<T>(Stream data, T[] array, PutData<T> action)
  860. {
  861. if (array == null)
  862. {
  863. PutU16(data, 0);
  864. }
  865. else
  866. {
  867. int len = array.Length;
  868. if (len > UInt16.MaxValue)
  869. {
  870. throw new IOException("PutArray overflow : " + array + "\nSize=" + len);
  871. }
  872. PutU16(data, (ushort)len);
  873. for (int i = 0; i < len; i++)
  874. {
  875. action.Invoke(data, array[i]);
  876. }
  877. }
  878. }
  879. public static List<T> GetList<T>(Stream data, GetData<T> action) where T : new()
  880. {
  881. int len = GetU16(data);
  882. List<T> ret = new List<T>(len);
  883. for (int i = 0; i < len; i++)
  884. {
  885. T d = action.Invoke(data);
  886. ret.Add(d);
  887. }
  888. return ret;
  889. }
  890. public static void PutList<T>(Stream data, List<T> list, PutData<T> action)
  891. {
  892. if (list == null)
  893. {
  894. PutU16(data, 0);
  895. }
  896. else
  897. {
  898. int len = list.Count;
  899. if (len > UInt16.MaxValue)
  900. {
  901. throw new IOException("PutList overflow : " + list + "\nSize=" + len);
  902. }
  903. PutU16(data, (ushort)len);
  904. for (int i = 0; i < len; i++)
  905. {
  906. action.Invoke(data, list[i]);
  907. }
  908. }
  909. }
  910. #endregion
  911. //--------------------------------------------------------------------------------------
  912. }
  913. /// <summary>
  914. /// VLQ Int取值范围21位
  915. /// </summary>
  916. public static class VLQEdian
  917. {
  918. /// <summary>
  919. /// save a value to data with Variable Length Queue (0xaa,0xbb,0xcc,0xdd = 0xaabbccdd)
  920. /// </summary>
  921. /// <param name="data"></param>
  922. /// <param name="p"></param>
  923. /// <param name="value"></param>
  924. /// <returns></returns>
  925. public static void PutS32(byte[] data, ref int p, int value)
  926. {
  927. if (value < 0x7F)
  928. {
  929. data[p++] = (byte)value;
  930. }
  931. else if (value < 0x3FFF)
  932. {
  933. data[p++] = (byte)(((value >> 0) & 0x7F) | 0x80);
  934. data[p++] = (byte)(((value >> 7) & 0x7F));
  935. }
  936. else if (value < 0x1FFFFF)
  937. {
  938. data[p++] = (byte)(((value >> 0) & 0x7F) | 0x80);
  939. data[p++] = (byte)(((value >> 7) & 0x7F) | 0x80);
  940. data[p++] = (byte)(((value >> 14) & 0x7F));
  941. }
  942. else
  943. {
  944. data[p++] = (byte)(((value >> 0) & 0x7F) | 0x80);
  945. data[p++] = (byte)(((value >> 7) & 0x7F) | 0x80);
  946. data[p++] = (byte)(((value >> 14) & 0x7F) | 0x80);
  947. data[p++] = (byte)(((value >> 21) & 0x7F));
  948. }
  949. }
  950. /// <summary>
  951. /// read a value to data with Variable Length Queue (0xaa,0xbb,0xcc,0xdd = 0xaabbccdd)
  952. /// </summary>
  953. /// <param name="data"></param>
  954. /// <param name="p"></param>
  955. /// <returns>int[0] how many bytes ;int[1] value</returns>
  956. public static int GetS32(byte[] data, ref int p)
  957. {
  958. int value = 0;
  959. int b0 = data[p++];
  960. if (b0 < 0x7F)
  961. {
  962. value = b0;
  963. return value;
  964. }
  965. int b1 = data[p++];
  966. if (b1 < 0x7F)
  967. {
  968. value = (b0 & 0x7F) | (b1 << 7);
  969. }
  970. int b2 = data[p++];
  971. if (b2 < 0x7F)
  972. {
  973. value = (b0 & 0x7F) | ((b1 & 0x7F) << 7) | (b2 << 14);
  974. }
  975. int b3 = data[p++];
  976. return value;
  977. }
  978. }
  979. }