Example #1
0
        public static PARAM_RFSurveyReportData FromXmlNode(XmlNode node)
        {
            string val;
            PARAM_RFSurveyReportData param = new PARAM_RFSurveyReportData();


            try
            {

                XmlNodeList xnl = XmlUtil.GetXmlNodes(node, "ROSpecID");
                if (null != xnl)
                {
                    if (xnl.Count != 0)
                        param.ROSpecID = PARAM_ROSpecID.FromXmlNode(xnl[0]);
                }

            }
            catch { }

            try
            {

                XmlNodeList xnl = XmlUtil.GetXmlNodes(node, "SpecIndex");
                if (null != xnl)
                {
                    if (xnl.Count != 0)
                        param.SpecIndex = PARAM_SpecIndex.FromXmlNode(xnl[0]);
                }

            }
            catch { }

            try
            {

                XmlNodeList xnl = XmlUtil.GetXmlNodes(node, "FrequencyRSSILevelEntry");
                if (xnl != null)
                {
                    if (xnl.Count != 0)
                    {
                        param.FrequencyRSSILevelEntry = new PARAM_FrequencyRSSILevelEntry[xnl.Count];
                        for (int i = 0; i < xnl.Count; i++)
                            param.FrequencyRSSILevelEntry[i] = PARAM_FrequencyRSSILevelEntry.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;
        }
Example #2
0
        public new static PARAM_RFSurveyReportData 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_RFSurveyReportData param = new PARAM_RFSurveyReportData();

            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);
            }


            param.ROSpecID = PARAM_ROSpecID.FromBitArray(ref bit_array, ref cursor, length);

            param.SpecIndex = PARAM_SpecIndex.FromBitArray(ref bit_array, ref cursor, length);

            param_list = new ArrayList();
            PARAM_FrequencyRSSILevelEntry _param_FrequencyRSSILevelEntry = PARAM_FrequencyRSSILevelEntry.FromBitArray(ref bit_array, ref cursor, length);
            if (_param_FrequencyRSSILevelEntry != null)
            {
                param_list.Add(_param_FrequencyRSSILevelEntry);
                while ((_param_FrequencyRSSILevelEntry = PARAM_FrequencyRSSILevelEntry.FromBitArray(ref bit_array, ref cursor, length)) != null) param_list.Add(_param_FrequencyRSSILevelEntry);
                if (param_list.Count > 0)
                {
                    param.FrequencyRSSILevelEntry = new PARAM_FrequencyRSSILevelEntry[param_list.Count];
                    for (int i = 0; i < param_list.Count; i++)
                        param.FrequencyRSSILevelEntry[i] = (PARAM_FrequencyRSSILevelEntry)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;
        }