public static PARAM_InventoryParameterSpec FromXmlNode(XmlNode node) { string val; PARAM_InventoryParameterSpec param = new PARAM_InventoryParameterSpec(); val = XmlUtil.GetNodeValue(node, "InventoryParameterSpecID"); param.InventoryParameterSpecID = Convert.ToUInt16(val); val = XmlUtil.GetNodeValue(node, "ProtocolID"); param.ProtocolID = ( ENUM_AirProtocols)Enum.Parse(typeof( ENUM_AirProtocols), val); try { XmlNodeList xnl = XmlUtil.GetXmlNodes(node, "AntennaConfiguration"); if (xnl != null) { if (xnl.Count != 0) { param.AntennaConfiguration = new PARAM_AntennaConfiguration[xnl.Count]; for (int i = 0; i < xnl.Count; i++) param.AntennaConfiguration[i] = PARAM_AntennaConfiguration.FromXmlNode(xnl[i]); } } } catch { } try { ArrayList xnl = XmlUtil.GetXmlNodeCustomChildren(node); if (xnl != null) { if (xnl.Count != 0) { for (int i = 0; i < xnl.Count; i++) { ICustom_Parameter custom = CustomParamDecodeFactory.DecodeXmlNodeToCustomParameter((XmlNode)xnl[i]); if (custom != null) param.AddCustomParameter(custom); } } } } catch { } return param; }
public new static PARAM_InventoryParameterSpec FromBitArray(ref BitArray bit_array, ref int cursor, int length) { if (cursor >= length) return null; int field_len = 0; object obj_val; int parameter_len = 0; ArrayList param_list = new ArrayList(); PARAM_InventoryParameterSpec param = new PARAM_InventoryParameterSpec(); int param_type = 0; if (bit_array[cursor]) param.tvCoding = true; if (param.tvCoding) { cursor++; param_type = (int)(UInt64)Util.CalculateVal(ref bit_array, ref cursor, 7); if (param_type != param.TypeID) { cursor -= 8; return null; } } else { cursor += 6; param_type = (int)(UInt64)Util.CalculateVal(ref bit_array, ref cursor, 10); if (param_type != param.TypeID) { cursor -= 16; return null; } param.length = (UInt16)(int)Util.DetermineFieldLength(ref bit_array, ref cursor); } if (cursor > length) throw new Exception("Input data is not complete message"); field_len = 16; Util.ConvertBitArrayToObj(ref bit_array, ref cursor, out obj_val, typeof(UInt16), field_len); param.InventoryParameterSpecID = (UInt16)obj_val; if (cursor > length) throw new Exception("Input data is not complete message"); field_len = 8; Util.ConvertBitArrayToObj(ref bit_array, ref cursor, out obj_val, typeof(UInt32), field_len); param.ProtocolID = ( ENUM_AirProtocols)(UInt32)obj_val; param_list = new ArrayList(); PARAM_AntennaConfiguration _param_AntennaConfiguration = PARAM_AntennaConfiguration.FromBitArray(ref bit_array, ref cursor, length); if (_param_AntennaConfiguration != null) { param_list.Add(_param_AntennaConfiguration); while ((_param_AntennaConfiguration = PARAM_AntennaConfiguration.FromBitArray(ref bit_array, ref cursor, length)) != null) param_list.Add(_param_AntennaConfiguration); if (param_list.Count > 0) { param.AntennaConfiguration = new PARAM_AntennaConfiguration[param_list.Count]; for (int i = 0; i < param_list.Count; i++) param.AntennaConfiguration[i] = (PARAM_AntennaConfiguration)param_list[i]; } } ICustom_Parameter custom = CustomParamDecodeFactory.DecodeCustomParameter(ref bit_array, ref cursor, length); if (custom != null) { param.Custom.Add(custom); while ((custom = CustomParamDecodeFactory.DecodeCustomParameter(ref bit_array, ref cursor, length)) != null) param.Custom.Add(custom); } return param; }