Esempio n. 1
0
        public static PARAM_FirstSeenTimestampUptime FromXmlNode(
            XmlNode node)
        {
            ArrayList           arrayList        = new ArrayList();
            XmlNamespaceManager namespaceManager = new XmlNamespaceManager(node.OwnerDocument.NameTable);

            namespaceManager.AddNamespace("", "http://www.llrp.org/ltk/schema/core/encoding/xml/1.0");
            namespaceManager.AddNamespace("llrp", "http://www.llrp.org/ltk/schema/core/encoding/xml/1.0");
            PARAM_FirstSeenTimestampUptime seenTimestampUptime = new PARAM_FirstSeenTimestampUptime();
            string nodeValue = XmlUtil.GetNodeValue(node, "Microseconds");

            seenTimestampUptime.Microseconds = (ulong)Util.ParseValueTypeFromString(nodeValue, "u64", "");
            return(seenTimestampUptime);
        }
Esempio n. 2
0
        public static PARAM_FirstSeenTimestampUptime FromBitArray(
            ref BitArray bit_array,
            ref int cursor,
            int length)
        {
            if (cursor >= length)
            {
                return((PARAM_FirstSeenTimestampUptime)null);
            }
            int       num1      = cursor;
            int       num2      = length;
            ArrayList arrayList = new ArrayList();
            PARAM_FirstSeenTimestampUptime seenTimestampUptime = new PARAM_FirstSeenTimestampUptime();

            seenTimestampUptime.tvCoding = bit_array[cursor];
            int val;

            if (seenTimestampUptime.tvCoding)
            {
                ++cursor;
                val = (int)(ulong)Util.CalculateVal(ref bit_array, ref cursor, 7);
            }
            else
            {
                cursor += 6;
                val     = (int)(ulong)Util.CalculateVal(ref bit_array, ref cursor, 10);
                seenTimestampUptime.length = (ushort)Util.DetermineFieldLength(ref bit_array, ref cursor);
                num2 = num1 + (int)seenTimestampUptime.length * 8;
            }
            if (val != (int)seenTimestampUptime.TypeID)
            {
                cursor = num1;
                return((PARAM_FirstSeenTimestampUptime)null);
            }
            if (cursor > length || cursor > num2)
            {
                throw new Exception("Input data is not a complete LLRP message");
            }
            int    field_len = 64;
            object obj;

            Util.ConvertBitArrayToObj(ref bit_array, ref cursor, out obj, typeof(ulong), field_len);
            seenTimestampUptime.Microseconds = (ulong)obj;
            return(seenTimestampUptime);
        }