12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.IO;
- using CommonLang.IO;
- namespace CommonLang.ByteOrder
- {
- public static class LittleEdian
- {
- //--------------------------------------------------------------------------------------
- #region BYTES
- public static bool GetBool(byte[] data, ref int pos)
- {
- return data[pos++] != 0;
- }
- public static byte GetU8(byte[] data, ref int pos)
- {
- return data[pos++];
- }
- public static sbyte GetS8(byte[] data, ref int pos)
- {
- return (sbyte)data[pos++];
- }
- public static ushort GetU16(byte[] data, ref int pos)
- {
- int ret = data[pos++];
- ret |= (data[pos++] << 8);
- return (ushort)ret;
- }
- public static short GetS16(byte[] data, ref int pos)
- {
- int ret = data[pos++];
- ret |= (data[pos++] << 8);
- return (short)ret;
- }
- public static uint GetU32(byte[] data, ref int pos)
- {
- uint ret = data[pos++];
- ret |= (uint)(data[pos++] << 8);
- ret |= (uint)(data[pos++] << 16);
- ret |= (uint)(data[pos++] << 24);
- return ret;
- }
- public static int GetS32(byte[] data, ref int pos)
- {
- int ret = data[pos++];
- ret |= ((int)data[pos++] << 8);
- ret |= ((int)data[pos++] << 16);
- ret |= ((int)data[pos++] << 24);
- return ret;
- }
- public static ulong GetU64(byte[] data, ref int pos)
- {
- ulong ret = data[pos++];
- ret |= (((ulong)data[pos++]) << 8);
- ret |= (((ulong)data[pos++]) << 16);
- ret |= (((ulong)data[pos++]) << 24);
- ret |= (((ulong)data[pos++]) << 32);
- ret |= (((ulong)data[pos++]) << 40);
- ret |= (((ulong)data[pos++]) << 48);
- ret |= (((ulong)data[pos++]) << 56);
- return ret;
- }
- public static long GetS64(byte[] data, ref int pos)
- {
- long ret = data[pos++];
- ret |= (((long)data[pos++]) << 8);
- ret |= (((long)data[pos++]) << 16);
- ret |= (((long)data[pos++]) << 24);
- ret |= (((long)data[pos++]) << 32);
- ret |= (((long)data[pos++]) << 40);
- ret |= (((long)data[pos++]) << 48);
- ret |= (((long)data[pos++]) << 56);
- return ret;
- }
- public static string GetUTF(byte[] data, ref int pos)
- {
- int len = GetU16(data, ref pos);
- if (len > 0)
- {
- string ret = System.Text.UTF8Encoding.UTF8.GetString(data, pos, len);
- pos += len;
- return ret;
- }
- return null;
- }
- public static byte[] GetBytes(byte[] data, ref int pos)
- {
- int len = GetU16(data, ref pos);
- byte[] ret = new byte[len];
- if (len > 0)
- {
- Array.Copy(data, pos, ret, 0, len);
- pos += len;
- }
- return ret;
- }
- public static void PutBool(byte[] data, ref int pos, bool value)
- {
- data[pos++] = (byte)(value ? 1 : 0);
- }
- public static void PutU8(byte[] data, ref int pos, byte value)
- {
- data[pos++] = value;
- }
- public static void PutS8(byte[] data, ref int pos, sbyte value)
- {
- data[pos++] = (byte)value;
- }
- public static void PutU16(byte[] data, ref int pos, ushort value)
- {
- data[pos++] = (byte)(value);
- data[pos++] = (byte)(value >> 8);
- }
- public static void PutS16(byte[] data, ref int pos, short value)
- {
- data[pos++] = (byte)(value);
- data[pos++] = (byte)(value >> 8);
- }
- public static void PutU32(byte[] data, ref int pos, uint value)
- {
- data[pos++] = (byte)(value);
- data[pos++] = (byte)(value >> 8);
- data[pos++] = (byte)(value >> 16);
- data[pos++] = (byte)(value >> 24);
- }
- public static void PutS32(byte[] data, ref int pos, int value)
- {
- data[pos++] = (byte)(value);
- data[pos++] = (byte)(value >> 8);
- data[pos++] = (byte)(value >> 16);
- data[pos++] = (byte)(value >> 24);
- }
- public static void PutU64(byte[] data, ref int pos, ulong value)
- {
- data[pos++] = (byte)(value);
- data[pos++] = (byte)(value >> 8);
- data[pos++] = (byte)(value >> 16);
- data[pos++] = (byte)(value >> 24);
- data[pos++] = (byte)(value >> 32);
- data[pos++] = (byte)(value >> 40);
- data[pos++] = (byte)(value >> 48);
- data[pos++] = (byte)(value >> 56);
- }
- public static void PutS64(byte[] data, ref int pos, long value)
- {
- data[pos++] = (byte)(value);
- data[pos++] = (byte)(value >> 8);
- data[pos++] = (byte)(value >> 16);
- data[pos++] = (byte)(value >> 24);
- data[pos++] = (byte)(value >> 32);
- data[pos++] = (byte)(value >> 40);
- data[pos++] = (byte)(value >> 48);
- data[pos++] = (byte)(value >> 56);
- }
- public static void PutUTF(byte[] data, ref int pos, string value)
- {
- if (value == null || value.Length == 0)
- {
- PutU16(data, ref pos, 0);
- }
- else
- {
- byte[] buff = System.Text.UTF8Encoding.UTF8.GetBytes(value);
- if (buff.Length > UInt16.MaxValue)
- {
- throw new IOException("PutUTF overflow : " + value + "\nSize=" + buff.Length);
- }
- PutU16(data, ref pos, (ushort)buff.Length);
- Put(data, ref pos, buff, 0, buff.Length);
- }
- }
- public static void PutBytes(byte[] data, ref int pos, byte[] value)
- {
- if (value == null || value.Length == 0)
- {
- PutS32(data, ref pos, 0);
- }
- else
- {
- PutS32(data, ref pos, value.Length);
- Put(data, ref pos, value, 0, value.Length);
- }
- }
- public static void Get(byte[] data, ref int pos, byte[] value, int offset, int length)
- {
- Array.Copy(data, pos, value, offset, length);
- pos += length;
- }
- public static void Put(byte[] data, ref int pos, byte[] value, int offset, int length)
- {
- Array.Copy(value, offset, data, pos, length);
- pos += length;
- }
- #endregion
-
- //--------------------------------------------------------------------------------------
- #region STREAM
- public static bool GetBool(Stream data)
- {
- return IOUtil.TryReadByte(data) != 0;
- }
- public static void PutBool(Stream data, bool value)
- {
- data.WriteByte((byte)(value ? 1 : 0));
- }
- public static byte GetU8(Stream data)
- {
- return (byte)IOUtil.TryReadByte(data);
- }
- public static void PutU8(Stream data, byte value)
- {
- data.WriteByte(value);
- }
- public static sbyte GetS8(Stream data)
- {
- return (sbyte)IOUtil.TryReadByte(data);
- }
- public static void PutS8(Stream data, sbyte value)
- {
- data.WriteByte((byte)value);
- }
- public static ushort GetU16(Stream data)
- {
- int ret = (IOUtil.TryReadByte(data));
- ret |= (IOUtil.TryReadByte(data) << 8);
- return (ushort)ret;
- }
- public static void PutU16(Stream data, ushort value)
- {
- data.WriteByte((byte)(value));
- data.WriteByte((byte)(value >> 8));
- }
- public static short GetS16(Stream data)
- {
- int ret = (IOUtil.TryReadByte(data));
- ret |= (IOUtil.TryReadByte(data) << 8);
- return (short)ret;
- }
- //------------------------------------------------------------------------------------------
- public static void PutS16(Stream data, short value)
- {
- data.WriteByte((byte)(value));
- data.WriteByte((byte)(value >> 8));
- }
- public static uint GetU32(Stream data)
- {
- int ret = IOUtil.TryReadByte(data);
- ret |= (IOUtil.TryReadByte(data) << 8);
- ret |= (IOUtil.TryReadByte(data) << 16);
- ret |= (IOUtil.TryReadByte(data) << 24);
- return (uint)ret;
- }
- public static void PutU32(Stream data, uint value)
- {
- data.WriteByte((byte)(value));
- data.WriteByte((byte)(value >> 8));
- data.WriteByte((byte)(value >> 16));
- data.WriteByte((byte)(value >> 24));
- }
- public static int GetS32(Stream data)
- {
- int ret = IOUtil.TryReadByte(data);
- ret |= (IOUtil.TryReadByte(data) << 8);
- ret |= (IOUtil.TryReadByte(data) << 16);
- ret |= (IOUtil.TryReadByte(data) << 24);
- return ret;
- }
- public static void PutS32(Stream data, int value)
- {
- data.WriteByte((byte)(value));
- data.WriteByte((byte)(value >> 8));
- data.WriteByte((byte)(value >> 16));
- data.WriteByte((byte)(value >> 24));
- }
- public static ulong GetU64(Stream data)
- {
- ulong ret = (ulong)(IOUtil.TryReadByte(data));
- ret |= (((ulong)IOUtil.TryReadByte(data)) << 8);
- ret |= (((ulong)IOUtil.TryReadByte(data)) << 16);
- ret |= (((ulong)IOUtil.TryReadByte(data)) << 24);
- ret |= (((ulong)IOUtil.TryReadByte(data)) << 32);
- ret |= (((ulong)IOUtil.TryReadByte(data)) << 40);
- ret |= (((ulong)IOUtil.TryReadByte(data)) << 48);
- ret |= (((ulong)IOUtil.TryReadByte(data)) << 56);
- return ret;
- }
- public static void PutU64(Stream data, ulong value)
- {
- data.WriteByte((byte)(value));
- data.WriteByte((byte)(value >> 8));
- data.WriteByte((byte)(value >> 16));
- data.WriteByte((byte)(value >> 24));
- data.WriteByte((byte)(value >> 32));
- data.WriteByte((byte)(value >> 40));
- data.WriteByte((byte)(value >> 48));
- data.WriteByte((byte)(value >> 56));
- }
- public static long GetS64(Stream data)
- {
- long ret = IOUtil.TryReadByte(data);
- ret |= (((long)IOUtil.TryReadByte(data)) << 8);
- ret |= (((long)IOUtil.TryReadByte(data)) << 16);
- ret |= (((long)IOUtil.TryReadByte(data)) << 24);
- ret |= (((long)IOUtil.TryReadByte(data)) << 32);
- ret |= (((long)IOUtil.TryReadByte(data)) << 40);
- ret |= (((long)IOUtil.TryReadByte(data)) << 48);
- ret |= (((long)IOUtil.TryReadByte(data)) << 56);
- return ret;
- }
- public static void PutS64(Stream data, long value)
- {
- data.WriteByte((byte)(value));
- data.WriteByte((byte)(value >> 8));
- data.WriteByte((byte)(value >> 16));
- data.WriteByte((byte)(value >> 24));
- data.WriteByte((byte)(value >> 32));
- data.WriteByte((byte)(value >> 40));
- data.WriteByte((byte)(value >> 48));
- data.WriteByte((byte)(value >> 56));
- }
- //--------------------------------------------------------------------------------------
- public static float GetF32(Stream data)
- {
- byte[] buff = IOUtil.ReadExpect(data, 4);
- return System.BitConverter.ToSingle(buff, 0);
- }
- public static void PutF32(Stream data, float value)
- {
- byte[] buff = BitConverter.GetBytes(value);
- data.Write(buff, 0, 4);
- }
- public static double GetF64(Stream data)
- {
- byte[] buff = IOUtil.ReadExpect(data, 4);
- return System.BitConverter.ToDouble(buff, 0);
- }
- public static void PutF64(Stream data, double value)
- {
- byte[] buff = BitConverter.GetBytes(value);
- data.Write(buff, 0, 8);
- }
- //--------------------------------------------------------------------------------------
- public static string GetUTF(Stream data)
- {
- int len = GetU16(data);
- if (len > UInt16.MaxValue)
- {
- throw new IOException("GetUTF overflow : Size=" + len);
- }
- if (len > 0)
- {
- byte[] buff = IOUtil.ReadExpect(data, len);
- return System.Text.UTF8Encoding.UTF8.GetString(buff, 0, len);
- }
- return null;
- }
- public static void PutUTF(Stream data, string str)
- {
- if (str == null || str.Length == 0)
- {
- PutU16(data, 0);
- }
- else
- {
- byte[] buff = System.Text.UTF8Encoding.UTF8.GetBytes(str);
- if (buff.Length > UInt16.MaxValue)
- {
- throw new IOException("PutUTF overflow : " + str + "\nSize=" + buff.Length);
- }
- PutU16(data, (ushort)buff.Length);
- data.Write(buff, 0, buff.Length);
- }
- }
- //--------------------------------------------------------------------------------------
- public static T GetEnum8<T>(Stream data, Type enumType)
- {
- return (T)Enum.ToObject(enumType, IOUtil.TryReadByte(data));
- }
- public static void PutEnum8(Stream data, object enumData)
- {
- byte b = (byte)(enumData);
- data.WriteByte(b);
- }
- //--------------------------------------------------------------------------------------
- //--------------------------------------------------------------------------------------
- public delegate T GetData<T>(Stream data);
- public delegate void PutData<T>(Stream data, T v);
- public static T[] GetArray<T>(Stream data, GetData<T> action) where T : new()
- {
- int len = GetU16(data);
- if (len > UInt16.MaxValue)
- {
- throw new IOException("GetArray overflow : Size=" + len);
- }
- T[] ret = new T[len];
- for (int i = 0; i < len; i++)
- {
- T d = action.Invoke(data);
- ret[i] = d;
- }
- return ret;
- }
- public static void PutArray<T>(Stream data, T[] array, PutData<T> action)
- {
- if (array == null)
- {
- PutU16(data, 0);
- }
- else
- {
- int len = array.Length;
- if (len > UInt16.MaxValue)
- {
- throw new IOException("PutArray overflow : " + array + "\nSize=" + len);
- }
- PutU16(data, (ushort)len);
- for (int i = 0; i < len; i++)
- {
- action.Invoke(data, array[i]);
- }
- }
- }
- public static List<T> GetList<T>(Stream data, GetData<T> action) where T : new()
- {
- int len = GetU16(data);
- if (len > UInt16.MaxValue)
- {
- throw new IOException("GetList overflow : Size=" + len);
- }
- List<T> ret = new List<T>(len);
- for (int i = 0; i < len; i++)
- {
- T d = action.Invoke(data);
- ret.Add(d);
- }
- return ret;
- }
- public static void PutList<T>(Stream data, List<T> list, PutData<T> action)
- {
- if (list == null)
- {
- PutU16(data, 0);
- }
- else
- {
- int len = list.Count;
- if (len > UInt16.MaxValue)
- {
- throw new IOException("PutList overflow : " + list + "\nSize=" + len);
- }
- PutU16(data, (ushort)len);
- for (int i = 0; i < len; i++)
- {
- action.Invoke(data, list[i]);
- }
- }
- }
- #endregion
- //--------------------------------------------------------------------------------------
-
- }
- public static class BigEdian
- {
- //--------------------------------------------------------------------------------------
- #region BYTES
- public static bool GetBool(byte[] data, ref int pos)
- {
- return data[pos++] != 0;
- }
- public static byte GetU8(byte[] data, ref int pos)
- {
- return data[pos++];
- }
- public static sbyte GetS8(byte[] data, ref int pos)
- {
- return (sbyte)data[pos++];
- }
- public static ushort GetU16(byte[] data, ref int pos)
- {
- int ret = 0;
- ret |= (data[pos++] << 8);
- ret |= (data[pos++]);
- return (ushort)ret;
- }
- public static short GetS16(byte[] data, ref int pos)
- {
- int ret = 0;
- ret |= (data[pos++] << 8);
- ret |= (data[pos++]);
- return (short)ret;
- }
- public static uint GetU32(byte[] data, ref int pos)
- {
- uint ret = 0;
- ret |= (uint)(data[pos++] << 24);
- ret |= (uint)(data[pos++] << 16);
- ret |= (uint)(data[pos++] << 8);
- ret |= (uint)(data[pos++]);
- return ret;
- }
- public static int GetS32(byte[] data, ref int pos)
- {
- int ret = 0;
- ret |= ((int)data[pos++] << 24);
- ret |= ((int)data[pos++] << 16);
- ret |= ((int)data[pos++] << 8);
- ret |= ((int)data[pos++]);
- return ret;
- }
- public static ulong GetU64(byte[] data, ref int pos)
- {
- ulong ret = 0;
- ret |= (((ulong)data[pos++]) << 56);
- ret |= (((ulong)data[pos++]) << 48);
- ret |= (((ulong)data[pos++]) << 40);
- ret |= (((ulong)data[pos++]) << 32);
- ret |= (((ulong)data[pos++]) << 24);
- ret |= (((ulong)data[pos++]) << 16);
- ret |= (((ulong)data[pos++]) << 8);
- ret |= (((ulong)data[pos++]));
- return ret;
- }
- public static long GetS64(byte[] data, ref int pos)
- {
- long ret = 0;
- ret |= (((long)data[pos++]) << 56);
- ret |= (((long)data[pos++]) << 48);
- ret |= (((long)data[pos++]) << 40);
- ret |= (((long)data[pos++]) << 32);
- ret |= (((long)data[pos++]) << 24);
- ret |= (((long)data[pos++]) << 16);
- ret |= (((long)data[pos++]) << 8);
- ret |= (((long)data[pos++]));
- return ret;
- }
- public static string GetUTF(byte[] data, ref int pos)
- {
- int len = GetU16(data, ref pos);
- if (len > 0)
- {
- string ret = System.Text.UTF8Encoding.UTF8.GetString(data, pos, len);
- pos += len;
- return ret;
- }
- return null;
- }
- public static byte[] GetBytes(byte[] data, ref int pos)
- {
- int len = GetU16(data, ref pos);
- byte[] ret = new byte[len];
- if (len > 0)
- {
- Array.Copy(data, pos, ret, 0, len);
- pos += len;
- }
- return ret;
- }
- public static void PutBool(byte[] data, ref int pos, bool value)
- {
- data[pos++] = (byte)(value ? 1 : 0);
- }
- public static void PutU8(byte[] data, ref int pos, byte value)
- {
- data[pos++] = value;
- }
- public static void PutS8(byte[] data, ref int pos, sbyte value)
- {
- data[pos++] = (byte)value;
- }
- public static void PutU16(byte[] data, ref int pos, ushort value)
- {
- data[pos++] = (byte)(value >> 8);
- data[pos++] = (byte)(value);
- }
- public static void PutS16(byte[] data, ref int pos, short value)
- {
- data[pos++] = (byte)(value >> 8);
- data[pos++] = (byte)(value);
- }
- public static void PutU32(byte[] data, ref int pos, uint value)
- {
- data[pos++] = (byte)(value >> 24);
- data[pos++] = (byte)(value >> 16);
- data[pos++] = (byte)(value >> 8);
- data[pos++] = (byte)(value);
- }
- public static void PutS32(byte[] data, ref int pos, int value)
- {
- data[pos++] = (byte)(value >> 24);
- data[pos++] = (byte)(value >> 16);
- data[pos++] = (byte)(value >> 8);
- data[pos++] = (byte)(value);
- }
- public static void PutU64(byte[] data, ref int pos, ulong value)
- {
- data[pos++] = (byte)(value >> 56);
- data[pos++] = (byte)(value >> 48);
- data[pos++] = (byte)(value >> 40);
- data[pos++] = (byte)(value >> 32);
- data[pos++] = (byte)(value >> 24);
- data[pos++] = (byte)(value >> 16);
- data[pos++] = (byte)(value >> 8);
- data[pos++] = (byte)(value);
- }
- public static void PutS64(byte[] data, ref int pos, long value)
- {
- data[pos++] = (byte)(value >> 56);
- data[pos++] = (byte)(value >> 48);
- data[pos++] = (byte)(value >> 40);
- data[pos++] = (byte)(value >> 32);
- data[pos++] = (byte)(value >> 24);
- data[pos++] = (byte)(value >> 16);
- data[pos++] = (byte)(value >> 8);
- data[pos++] = (byte)(value);
- }
- public static void PutUTF(byte[] data, ref int pos, string value)
- {
- if (value == null || value.Length == 0)
- {
- PutU16(data, ref pos, 0);
- }
- else
- {
- byte[] buff = System.Text.UTF8Encoding.UTF8.GetBytes(value);
- if (buff.Length > UInt16.MaxValue)
- {
- throw new IOException("PutUTF overflow : " + value + "\nSize=" + buff.Length);
- }
- PutU16(data, ref pos, (ushort)buff.Length);
- Put(data, ref pos, buff, 0, buff.Length);
- }
- }
- public static void PutBytes(byte[] data, ref int pos, byte[] value)
- {
- if (value == null || value.Length == 0)
- {
- PutS32(data, ref pos, 0);
- }
- else
- {
- PutS32(data, ref pos, value.Length);
- Put(data, ref pos, value, 0, value.Length);
- }
- }
- public static void Get(byte[] data, ref int pos, byte[] value, int offset, int length)
- {
- Array.Copy(data, pos, value, offset, length);
- pos += length;
- }
- public static void Put(byte[] data, ref int pos, byte[] value, int offset, int length)
- {
- Array.Copy(value, offset, data, pos, length);
- pos += length;
- }
- #endregion
-
- //--------------------------------------------------------------------------------------
- #region STREAM
- public static bool GetBool(Stream data)
- {
- return IOUtil.TryReadByte(data) != 0;
- }
- public static void PutBool(Stream data, bool value)
- {
- data.WriteByte((byte)(value ? 1 : 0));
- }
- public static byte GetU8(Stream data)
- {
- return (byte)IOUtil.TryReadByte(data);
- }
- public static void PutU8(Stream data, byte value)
- {
- data.WriteByte(value);
- }
- public static sbyte GetS8(Stream data)
- {
- return (sbyte)IOUtil.TryReadByte(data);
- }
- public static void PutS8(Stream data, sbyte value)
- {
- data.WriteByte((byte)value);
- }
- public static ushort GetU16(Stream data)
- {
- int ret = 0;
- ret |= (IOUtil.TryReadByte(data) << 8);
- ret |= (IOUtil.TryReadByte(data));
- return (ushort)ret;
- }
- public static void PutU16(Stream data, ushort value)
- {
- data.WriteByte((byte)(value >> 8));
- data.WriteByte((byte)(value));
- }
- public static short GetS16(Stream data)
- {
- int ret = 0;
- ret |= (IOUtil.TryReadByte(data) << 8);
- ret |= (IOUtil.TryReadByte(data));
- return (short)ret;
- }
- public static void PutS16(Stream data, short value)
- {
- data.WriteByte((byte)(value >> 8));
- data.WriteByte((byte)(value));
- }
- public static uint GetU32(Stream data)
- {
- int ret = 0;
- ret |= (IOUtil.TryReadByte(data) << 24);
- ret |= (IOUtil.TryReadByte(data) << 16);
- ret |= (IOUtil.TryReadByte(data) << 8);
- ret |= (IOUtil.TryReadByte(data));
- return (uint)ret;
- }
- public static void PutU32(Stream data, uint value)
- {
- data.WriteByte((byte)(value >> 24));
- data.WriteByte((byte)(value >> 16));
- data.WriteByte((byte)(value >> 8));
- data.WriteByte((byte)(value));
- }
- public static int GetS32(Stream data)
- {
- int ret = 0;
- ret |= (IOUtil.TryReadByte(data) << 24);
- ret |= (IOUtil.TryReadByte(data) << 16);
- ret |= (IOUtil.TryReadByte(data) << 8);
- ret |= (IOUtil.TryReadByte(data));
- return ret;
- }
- public static void PutS32(Stream data, int value)
- {
- data.WriteByte((byte)(value >> 24));
- data.WriteByte((byte)(value >> 16));
- data.WriteByte((byte)(value >> 8));
- data.WriteByte((byte)(value));
- }
- public static ulong GetU64(Stream data)
- {
- ulong ret = 0;
- ret |= (((ulong)IOUtil.TryReadByte(data)) << 56);
- ret |= (((ulong)IOUtil.TryReadByte(data)) << 48);
- ret |= (((ulong)IOUtil.TryReadByte(data)) << 40);
- ret |= (((ulong)IOUtil.TryReadByte(data)) << 32);
- ret |= (((ulong)IOUtil.TryReadByte(data)) << 24);
- ret |= (((ulong)IOUtil.TryReadByte(data)) << 16);
- ret |= (((ulong)IOUtil.TryReadByte(data)) << 8);
- ret |= (((ulong)IOUtil.TryReadByte(data)) << 0);
- return ret;
- }
- public static void PutU64(Stream data, ulong value)
- {
- data.WriteByte((byte)(value >> 56));
- data.WriteByte((byte)(value >> 48));
- data.WriteByte((byte)(value >> 40));
- data.WriteByte((byte)(value >> 32));
- data.WriteByte((byte)(value >> 24));
- data.WriteByte((byte)(value >> 16));
- data.WriteByte((byte)(value >> 8));
- data.WriteByte((byte)(value));
- }
- public static long GetS64(Stream data)
- {
- long ret = 0;
- ret |= (((long)IOUtil.TryReadByte(data)) << 56);
- ret |= (((long)IOUtil.TryReadByte(data)) << 48);
- ret |= (((long)IOUtil.TryReadByte(data)) << 40);
- ret |= (((long)IOUtil.TryReadByte(data)) << 32);
- ret |= (((long)IOUtil.TryReadByte(data)) << 24);
- ret |= (((long)IOUtil.TryReadByte(data)) << 16);
- ret |= (((long)IOUtil.TryReadByte(data)) << 8);
- ret |= (((long)IOUtil.TryReadByte(data)) << 0);
- return ret;
- }
- public static void PutS64(Stream data, long value)
- {
- data.WriteByte((byte)(value >> 56));
- data.WriteByte((byte)(value >> 48));
- data.WriteByte((byte)(value >> 40));
- data.WriteByte((byte)(value >> 32));
- data.WriteByte((byte)(value >> 24));
- data.WriteByte((byte)(value >> 16));
- data.WriteByte((byte)(value >> 8));
- data.WriteByte((byte)(value));
- }
- //--------------------------------------------------------------------------------------
- public static float GetF32(Stream data)
- {
- byte[] buff = IOUtil.ReadExpect(data, 4);
- return System.BitConverter.ToSingle(buff, 0);
- }
- public static void PutF32(Stream data, float value)
- {
- byte[] buff = BitConverter.GetBytes(value);
- data.Write(buff, 0, 4);
- }
- public static double GetF64(Stream data)
- {
- byte[] buff = IOUtil.ReadExpect(data, 8);
- return System.BitConverter.ToDouble(buff, 0);
- }
- public static void PutF64(Stream data, double value)
- {
- byte[] buff = BitConverter.GetBytes(value);
- data.Write(buff, 0, 8);
- }
- //--------------------------------------------------------------------------------------
- public static string GetUTF(Stream data)
- {
- int len = GetU16(data);
- if (len > 0)
- {
- byte[] buff = IOUtil.ReadExpect(data, len);
- return System.Text.UTF8Encoding.UTF8.GetString(buff, 0, len);
- }
- return null;
- }
- public static void PutUTF(Stream data, string str)
- {
- if (str == null || str.Length == 0)
- {
- PutU16(data, 0);
- }
- else
- {
- byte[] buff = System.Text.UTF8Encoding.UTF8.GetBytes(str);
- if (buff.Length > UInt16.MaxValue)
- {
- throw new IOException("PutUTF overflow : " + str + "\nSize=" + buff.Length);
- }
- PutU16(data, (ushort)buff.Length);
- data.Write(buff, 0, buff.Length);
- }
- }
- //--------------------------------------------------------------------------------------
- public static T GetEnum8<T>(Stream data, Type enumType)
- {
- return (T)Enum.ToObject(enumType, IOUtil.TryReadByte(data));
- }
- public static void PutEnum8(Stream data, object enumData)
- {
- byte b = (byte)(enumData);
- data.WriteByte(b);
- }
- //--------------------------------------------------------------------------------------
- //--------------------------------------------------------------------------------------
- public delegate T GetData<T>(Stream data);
- public delegate void PutData<T>(Stream data, T v);
- public static T[] GetArray<T>(Stream data, GetData<T> action) where T : new()
- {
- int len = GetU16(data);
- T[] ret = new T[len];
- for (int i = 0; i < len; i++)
- {
- T d = action.Invoke(data);
- ret[i] = d;
- }
- return ret;
- }
- public static void PutArray<T>(Stream data, T[] array, PutData<T> action)
- {
- if (array == null)
- {
- PutU16(data, 0);
- }
- else
- {
- int len = array.Length;
- if (len > UInt16.MaxValue)
- {
- throw new IOException("PutArray overflow : " + array + "\nSize=" + len);
- }
- PutU16(data, (ushort)len);
- for (int i = 0; i < len; i++)
- {
- action.Invoke(data, array[i]);
- }
- }
- }
- public static List<T> GetList<T>(Stream data, GetData<T> action) where T : new()
- {
- int len = GetU16(data);
- List<T> ret = new List<T>(len);
- for (int i = 0; i < len; i++)
- {
- T d = action.Invoke(data);
- ret.Add(d);
- }
- return ret;
- }
- public static void PutList<T>(Stream data, List<T> list, PutData<T> action)
- {
- if (list == null)
- {
- PutU16(data, 0);
- }
- else
- {
- int len = list.Count;
- if (len > UInt16.MaxValue)
- {
- throw new IOException("PutList overflow : " + list + "\nSize=" + len);
- }
- PutU16(data, (ushort)len);
- for (int i = 0; i < len; i++)
- {
- action.Invoke(data, list[i]);
- }
- }
- }
- #endregion
- //--------------------------------------------------------------------------------------
- }
- /// <summary>
- /// VLQ Int取值范围21位
- /// </summary>
- public static class VLQEdian
- {
- /// <summary>
- /// save a value to data with Variable Length Queue (0xaa,0xbb,0xcc,0xdd = 0xaabbccdd)
- /// </summary>
- /// <param name="data"></param>
- /// <param name="p"></param>
- /// <param name="value"></param>
- /// <returns></returns>
- public static void PutS32(byte[] data, ref int p, int value)
- {
- if (value < 0x7F)
- {
- data[p++] = (byte)value;
- }
- else if (value < 0x3FFF)
- {
- data[p++] = (byte)(((value >> 0) & 0x7F) | 0x80);
- data[p++] = (byte)(((value >> 7) & 0x7F));
- }
- else if (value < 0x1FFFFF)
- {
- data[p++] = (byte)(((value >> 0) & 0x7F) | 0x80);
- data[p++] = (byte)(((value >> 7) & 0x7F) | 0x80);
- data[p++] = (byte)(((value >> 14) & 0x7F));
- }
- else
- {
- data[p++] = (byte)(((value >> 0) & 0x7F) | 0x80);
- data[p++] = (byte)(((value >> 7) & 0x7F) | 0x80);
- data[p++] = (byte)(((value >> 14) & 0x7F) | 0x80);
- data[p++] = (byte)(((value >> 21) & 0x7F));
- }
- }
- /// <summary>
- /// read a value to data with Variable Length Queue (0xaa,0xbb,0xcc,0xdd = 0xaabbccdd)
- /// </summary>
- /// <param name="data"></param>
- /// <param name="p"></param>
- /// <returns>int[0] how many bytes ;int[1] value</returns>
- public static int GetS32(byte[] data, ref int p)
- {
- int value = 0;
- int b0 = data[p++];
- if (b0 < 0x7F)
- {
- value = b0;
- return value;
- }
- int b1 = data[p++];
- if (b1 < 0x7F)
- {
- value = (b0 & 0x7F) | (b1 << 7);
- }
- int b2 = data[p++];
- if (b2 < 0x7F)
- {
- value = (b0 & 0x7F) | ((b1 & 0x7F) << 7) | (b2 << 14);
- }
- int b3 = data[p++];
- return value;
- }
- }
- }
|