北斗數據包格式封裝和解析

来源:https://www.cnblogs.com/zhongzw/archive/2019/03/11/10513611.html
-Advertisement-
Play Games

1.北斗協議的具體格式如下圖 2.數據包類型 根據北斗協議類型定義如下枚舉類型 3.基礎類封裝 BDBaseFrame,使用 IByteBuffer 類來封裝數據包,IByteBuffer 內置提供了很多位元組操作方法(read,write) 4.具體數據包類型封裝 PositionFrame 5.d ...


1.北斗協議的具體格式如下圖

image.png

image.png

2.數據包類型 根據北斗協議類型定義如下枚舉類型

 /// <summary>
    /// 數據包類型
    /// </summary>
    public enum BDFrameType : ushort
    {
        /// <summary>
        /// 預設
        /// </summary>
        Default = 0x00,
 
        /// <summary>
        /// 終端通用應答
        /// </summary>
        TerCommonResponse = 0x0001,
 
        /// <summary>
        /// 平臺通用應答
        /// </summary>
        PlatCommonResponse = 0x8001,
 
        /// <summary>
        /// 終端心跳
        /// </summary>
        TerHeartbeat = 0x0002,
         
         
             /// <summary>
             /// 位置信息彙報
            /// </summary>
              Position = 0x0200
         
        //省略其他的數據包類型
 
    }

3.基礎類封裝 BDBaseFrame,使用 IByteBuffer 類來封裝數據包,IByteBuffer 內置提供了很多位元組操作方法(read,write) 

byteBuffer.ReadUnsignedShort()
byteBuffer.WriteUnsignedShort()
//等等
public abstract class BDBaseFrame
    {
        /// <summary>
        /// 消息ID
        /// </summary>
        public BDFrameType FrameType { get; set; }
 
        /// <summary>
        /// 是否分包
        /// </summary>
        public bool IsSubpackage { get; set; }
 
        /// <summary>
        /// 加密方式
        /// </summary>
        public BDFrameEncryptType FrameEncryptType { get; set; }
 
        /// <summary>
        /// 消息體長度
        /// </summary>
        public UInt16 FrameContentLen { get; private set; }
 
        /// <summary>
        /// 終端手機號  唯一
        /// </summary>
        public string TerminalPhone { get; set; } = string.Empty;
 
 
        /// <summary>
        /// 消息流水號
        /// </summary>
        public ushort FrameSerialNum { get; set; }
 
        /// <summary>
        /// 消息總包數
        /// </summary>
        public ushort FramePackageCount { get; set; }
 
        /// <summary>
        /// 包序號  從 1開始
        /// </summary>
        public ushort FramePackageIndex { get; set; }
 
 
        private int m_frameBodyOffset = 13;
 
        /// <summary>
        /// 消息體 數據偏於量
        /// </summary>
        protected int FrameBodyOffset
        {
            get { return m_frameBodyOffset; }
        }
 
        private static ushort m_SendFrameSerialNum = 0;
 
        /// <summary>
        /// 獲取發送的流水號
        /// </summary>
        public static ushort SendFrameSerialNum
        {
            get
            {
                if (m_SendFrameSerialNum == ushort.MaxValue)
                    m_SendFrameSerialNum = 0;
 
                m_SendFrameSerialNum++;
 
                return m_SendFrameSerialNum;
            }
        }
 
        /// <summary>
        /// 數據包內容 位元組
        /// </summary>
        //public IByteBuffer ContentBuffer { get; set; }
 
        #region 解析數據包
        /// <summary>
        /// 解析頭部
        /// </summary>
        private void DecoderHead(IByteBuffer byteBuffer)
        {
            //消息體屬性
            byteBuffer.SetReaderIndex(1);
            FrameType = (BDFrameType)byteBuffer.ReadUnsignedShort();
            ushort frameProerty = byteBuffer.ReadUnsignedShort();
            IsSubpackage = FrameHelper.ReadBoolean16(frameProerty, 13);
            FrameContentLen = (UInt16)(frameProerty & 0x1FFF);//消息體長度
            if (IsSubpackage)
                m_frameBodyOffset = 17;
            //終端手機號
            StringBuilder stringBuilder = new StringBuilder();
            for (int i = 0; i < 6; i++)
            {
                stringBuilder.Append(byteBuffer.ReadByte().ToString("X2"));
            }
            TerminalPhone = stringBuilder.ToString().TrimStart(new char[] { '0' });
            //消息流水號
            FrameSerialNum = byteBuffer.ReadUnsignedShort();
            //消息包封裝項
            if (IsSubpackage)
            {
                FramePackageCount = byteBuffer.ReadUnsignedShort();
                FramePackageIndex = byteBuffer.ReadUnsignedShort();
            }
        }
 
        /// <summary>
        /// 解析內容
        /// </summary>
        public virtual void DecoderFrame(IByteBuffer byteBuffer)
        {
            //解析頭部
            DecoderHead(byteBuffer);
        }
 
        #endregion
 
        #region 封裝數據包
 
        public virtual IByteBuffer EncoderContent()
        {
            return null;
        }
 
        #endregion
 
        public override string ToString()
        {
            return $"{TerminalPhone} {FrameTypeHelper.GetFrameType(FrameType)}  {DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")}";
        }
    }

4.具體數據包類型封裝 PositionFrame

 /// <summary>
    /// 位置信息彙報
    /// </summary>
    public class PositionFrame : BDBaseFrame
    {
        public PositionFrame()
        {
            FrameType = BDFrameType.Position;
        }
 
        /// <summary>
        /// 報警標誌
        /// </summary>
        public UInt32 AlarmFlag { get; set; }
 
        /// <summary>
        /// 狀態
        /// </summary>
        public UInt32 StatusFlag { get; set; }
 
        /// <summary>
        /// 緯度 DWORD 以度為單位的緯度值乘以 10 的 6 次方,精確到百萬分之一度
        /// </summary>
        public double Lat { get; set; }
 
        /// <summary>
        /// 經度 DWORD 以度為單位的經度值乘以 10 的 6 次方,精確到百萬分之一度
        /// </summary>
        public double Lng { get; set; }
 
        /// <summary>
        /// 高程 WORD 海拔高度,單位為米(m)
        /// </summary>
        public UInt16 Height { get; set; }
 
        /// <summary>
        /// 速度 WORD 1/10km/h
        /// </summary>
        public float Speed { get; set; }
 
        /// <summary>
        /// 方向 WORD 0-359,正北為 0,順時針
        /// </summary>
        public UInt16 Direction { get; set; }
 
        /// <summary>
        /// 時間 BCD[6] YY-MM-DD-hh-mm-ss(GMT+8 時間,本標準中之後涉及的時間均採用此時區)
        /// </summary>
        public DateTime GpsDateTime { get; set; }
 
        public override void DecoderFrame(IByteBuffer byteBuffer)
        {
            base.DecoderFrame(byteBuffer);
 
            AlarmFlag = byteBuffer.ReadUnsignedInt();
            StatusFlag = byteBuffer.ReadUnsignedInt();
            Lat = byteBuffer.ReadUnsignedInt() / 1000000.0;
            Lng = byteBuffer.ReadUnsignedInt() / 1000000.0;
            Height = byteBuffer.ReadUnsignedShort();
            Speed = byteBuffer.ReadUnsignedShort() / 10.0f;
            Direction = byteBuffer.ReadUnsignedShort();
            //時間 BCD[6]
            byte[] bcdTime = new byte[6];
            byteBuffer.ReadBytes(bcdTime);
            string bcdTimeString = FrameHelper.Bcd2String(bcdTime);
            DateTime gpsTime;
            if (DateTime.TryParseExact(bcdTimeString, "yyMMddHHmmss", new CultureInfo("zh-CN", true), DateTimeStyles.None, out gpsTime))
                GpsDateTime = gpsTime;
            else
                GpsDateTime = new DateTime(2001, 1, 1, 0, 0, 0);
        }
 
 
        public override IByteBuffer EncoderContent()
        {
            IByteBuffer contentBuffer = Unpooled.Buffer(100, 1024);
            contentBuffer.WriteInt((int)AlarmFlag);
            contentBuffer.WriteInt((int)StatusFlag);
            contentBuffer.WriteInt((int)(Lat * 1000000));
            contentBuffer.WriteInt((int)(Lng * 1000000));
            contentBuffer.WriteUnsignedShort(Height);
            contentBuffer.WriteUnsignedShort((UInt16)(Speed * 10));
            contentBuffer.WriteUnsignedShort(Direction);
            //時間 BCD[6]
            byte[] timeBcdBuffer = FrameHelper.WriteBCDString(GpsDateTime.ToString("yyMMddHHmmss"));
            contentBuffer.WriteBytes(timeBcdBuffer);
            return contentBuffer;
        }
 
        public override string ToString()
        {
            return string.Format("通訊號:{0},時間:{1},經緯度{2}|{3},高度:{4},方向:{5}", TerminalPhone, GpsDateTime.ToString("yyyy-MM-dd HH:mm:ss"), Lng, Lat, Height, Direction);
        }
    }

5.dotnetty EncoderHandler 封裝,上面封裝的只是消息體的數據,沒有包括標識位,消息頭,驗證碼,標識位,在發送數據通道中,需要把數據加上標識位,消息頭,驗證碼,標識位。包括數據包轉義

 /// <summary>
    /// 北斗數據包 封裝
    /// </summary>
    public class BeiDouContentEncoderHandler : MessageToByteEncoder<BDBaseFrame>
    {
        protected override void Encode(IChannelHandlerContext context, BDBaseFrame message, IByteBuffer output)
        {
            EncodeFrame(message, output);
        }
 
        private void EncodeFrame(BDBaseFrame message, IByteBuffer output)
        {
            //IByteBuffer frameBuffer = output;
            output.MarkReaderIndex();
            //內容
            IByteBuffer contentBuffer = message.EncoderContent();
            if (contentBuffer == null)
                contentBuffer = Unpooled.Empty;
            //byte[] content = new byte[contentBuffer.ReadableBytes];
            //contentBuffer.ReadBytes(content, 0, content.Length);
            //寫頭標誌
            output.WriteByte(BDFrameConst.FRAME_FLAG);
            //消息 ID
            output.WriteUnsignedShort((ushort)message.FrameType);
            //消息體屬性  加密沒做
            // ushort contentLen = (ushort)content.Length;
            ushort contentLen = (ushort)contentBuffer.ReadableBytes;
            if (message.IsSubpackage)
            {
                contentLen = (ushort)(contentLen | 0x2000);
                output.WriteUnsignedShort(contentLen);
            }
            else
            {
                output.WriteUnsignedShort(contentLen);
            }
            //終端手機號
            string tPhone = message.TerminalPhone.ToStringFramePropertyLength(12, '0');
            byte[] tPhoneBuffer = CZEFrameHelper.WriteBCDString(tPhone);
            output.WriteBytes(tPhoneBuffer);
            //消息流水號
            output.WriteUnsignedShort(message.FrameSerialNum);
            //消息包封裝項
            if (message.IsSubpackage)
            {
                output.WriteUnsignedShort(message.FramePackageCount);
                output.WriteUnsignedShort(message.FramePackageIndex);
            }
            //消息體
            output.WriteBytes(contentBuffer);
            contentBuffer.Release();
            //計算校驗碼
            byte[] checkCodeBuffer = new byte[output.ReadableBytes];
            output.ReadBytes(checkCodeBuffer, 0, checkCodeBuffer.Length);
            byte value = checkCodeBuffer[1];
            for (int i = 2; i < checkCodeBuffer.Length; i++)
                value ^= checkCodeBuffer[i];
            output.WriteByte(value);
            //寫尾標誌
            output.WriteByte(BDFrameConst.FRAME_FLAG);
            //轉義
            output.ResetReaderIndex();
            checkCodeBuffer = new byte[output.ReadableBytes];
            output.ReadBytes(checkCodeBuffer, 0, checkCodeBuffer.Length);
            byte[] frame = FrameEscaping.BDEscapingBufferSend(checkCodeBuffer);
 
            //數據寫入 frameBuffer
            output.Clear();
            output.WriteBytes(frame);
        }
 
    }

6.使用 BeiDouContentEncoderHandler,在通道中加入BeiDouContentEncoderHandler,通道裡面的順序很重要,BeiDouContentEncoderHandler必須要在你發送的Handler前加到通道中去如下圖

 

主要的代碼就這些,水平有限,請大家多多指教

原文地址 http://www.dncblogs.cn/Blog/LookBlog/71


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 參考 "Packaging Python Projects" , 源碼在 "nobodxbodon/test package for pypi" : setup.py中 與編寫Visual Studio Code插件初嘗試類似, name只能用英文. 生成發佈包 上傳到測試pypi平臺 測試安裝包. ...
  • 看了一個Beyond的紀錄片, 提到這個. 覺得心有不甘, 於是搜集了24首歌詞, 用Python做了簡單分詞和詞頻統計. 源碼(包括歌詞)在: "program in chinese/study" 統計了總出現次數( )和詞出現在歌曲的數目( ). 前者算進了所有重覆歌詞, 後者是算某個詞出現在了 ...
  • [TOC] 1. maven的作用 實現依賴管理、構建管理、模塊拆分管理的自動化 參考書籍《Maven in Action》 參考內容:基於中華石杉老師的授課內容整理 2. 依賴管理 2.1 坐標機制 groupId:以公司或者組織的官網的功能變數名稱倒序來開頭 + 項目名。如:com.baidu.oa a ...
  • 因為需要將之前mac下用QuickTime錄屏生成的文件(mov格式)轉換成gif文件, 便於傳到某些博客平臺, 於是找到了 "這個轉換工具" , 已將原代碼的命名中文化並簡化. Ruby和視頻轉換都是新手, 請多指教. 之前 "JavaScript實現ZLOGO: 前進方向和速度" 有兩個mov文 ...
  • 集合(set) 集合是一個無序的不重覆元素序列,使用大括弧({})、set()函數創建集合, 註意:創建一個空集合必須用set()而不是{},因為{}是用來創建一個空字典。 集合是無序的、不重覆的、沒有索引的 輸出結果: 添加集合元素 添加單個元素: 輸出結果: 添加多個元素、列表元素、字典元素 輸 ...
  • 歸併排序和快速排序是面試常考的兩大排序,兩者平均時間複雜度均可以達到O(nlogn)。接下來將記錄一下這兩種排序的動圖原理顯示以及代碼的記憶方式。 歸併排序 一、動圖展示 動圖原文鏈接:https://blog.csdn.net/qq_36442947/article/details/8161287 ...
  • 滿課一天,做25的時候還瘋狂WA,進度可以說是很慢了 哭泣 L1-025 正整數A+B 題的目標很簡單,就是求兩個正整數A和B的和,其中A和B都在區間[1,1000]。稍微有點麻煩的是,輸入並不保證是兩個正整數。 輸入格式: 輸入在一行給出A和B,其間以空格分開。問題是A和B不一定是滿足要求的正整數 ...
  • Z字形編排問題詳解(C++): 問題描述:給定一個矩陣matrix,輸出矩陣matrix進行Z字形編排後的內容。 原矩陣: 輸出形式: 演算法分析與詳細解答: 要解決這樣一個問題,可能一開始無從下手,但是我們只要認真觀察Z字形矩陣的走向過程,就不難發現其中的規律。對於原始矩陣matrix中的任意元素  ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...