论坛管理员
|
GSM短信发送PDU编码解码C++控制台实现
GSM短信发送PDU编码解码C++控制台实现
//SendMsg.cpp - #include "StdAfx.h" </SPAN>
- #include "SendMsg.h" </SPAN>
- HANDLE hComm;//串口设备句柄 </SPAN>
- // 正常顺序的字符串转换为两两颠倒的字符串,若长度为奇数,补'F'凑成偶数 </SPAN>
- // 如:"8613722216254" --> "683127226152F4" </SPAN>
- // pSrc: 源字符串指针 </SPAN>
- // pDst: 目标字符串指针 </SPAN>
- // nSrcLength: 源字符串长度 </SPAN>
- // 返回: 目标字符串长度 </SPAN>
- int SendMsg::gsmInvertNumbers(const char* pSrc,char* pDst,int nSrcLength) </SPAN>
- {
- int nDstLength; // 目标字符串长度 </SPAN>
- char ch; // 用于保存一个字符 </SPAN>
- // 复制串长度 </SPAN>
- nDstLength = nSrcLength;
- // 两两颠倒 </SPAN>
- for(int i=0; i<nSrcLength;i+=2) </SPAN>
- {
- ch = *pSrc++; // 保存先出现的字符 </SPAN>
- *pDst++ = *pSrc++; // 复制后出现的字符 </SPAN>
- *pDst++ = ch; // 复制先出现的字符 </SPAN>
- }
- // 源串长度是奇数吗? </SPAN>
- if(nSrcLength & 1) </SPAN>
- {
- *(pDst-2) = 'F'; // 补'F' </SPAN>
- nDstLength++; // 目标串长度加1 </SPAN>
- }
- // 输出字符串加个结束符 </SPAN>
- *pDst = '/0'; </SPAN>
- // 返回目标字符串长度 </SPAN>
- return nDstLength; </SPAN>
- }
- // 两两颠倒的字符串转换为正常顺序的字符串 </SPAN>
- // 如:"683127226152F4" --> "8613722216254" </SPAN>
- // pSrc: 源字符串指针 </SPAN>
- // pDst: 目标字符串指针 </SPAN>
- // nSrcLength: 源字符串长度 </SPAN>
- // 返回: 目标字符串长度 </SPAN>
- int SendMsg::gsmSerializeNumbers(const char* pSrc, char* pDst, int nSrcLength) </SPAN>
- {
- int nDstLength; // 目标字符串长度 </SPAN>
- char ch; // 用于保存一个字符 </SPAN>
- // 复制串长度 </SPAN>
- nDstLength = nSrcLength;
- // 两两颠倒 </SPAN>
- for(int i=0; i<nSrcLength;i+=2) </SPAN>
- {
- ch = *pSrc++; // 保存先出现的字符 </SPAN>
- *pDst++ = *pSrc++; // 复制后出现的字符 </SPAN>
- *pDst++ = ch; // 复制先出现的字符 </SPAN>
- }
- // 最后的字符是'F'吗? </SPAN>
- if(*(pDst-1) == 'F') </SPAN>
- {
- pDst--;
- nDstLength--; // 目标字符串长度减1 </SPAN>
- }
- // 输出字符串加个结束符 </SPAN>
- *pDst = '/0'; </SPAN>
- // 返回目标字符串长度 </SPAN>
- return nDstLength; </SPAN>
- }
- // 7-bit编码 </SPAN>
- // pSrc: 源字符串指针 </SPAN>
- // pDst: 目标编码串指针 </SPAN>
- // nSrcLength: 源字符串长度 </SPAN>
- // 返回: 目标编码串长度 </SPAN>
- int SendMsg::gsmEncode7bit(const char* pSrc, unsigned char* pDst, int nSrcLength) </SPAN>
- {
- int nSrc; // 源字符串的计数值 </SPAN>
- int nDst; // 目标编码串的计数值 </SPAN>
- int nChar; // 当前正在处理的组内字符字节的序号,范围是0-7 </SPAN>
- unsigned char nLeft; // 上一字节残余的数据 </SPAN>
- // 计数值初始化 </SPAN>
- nSrc = 0;
- nDst = 0;
- // 将源串每8个字节分为一组,压缩成7个字节 </SPAN>
- // 循环该处理过程,直至源串被处理完 </SPAN>
- // 如果分组不到8字节,也能正确处理 </SPAN>
- while(nSrc<nSrcLength) </SPAN>
- {
- // 取源字符串的计数值的最低3位 </SPAN>
- nChar = nSrc & 7;
- // 处理源串的每个字节 </SPAN>
- if(nChar == 0) </SPAN>
- {
- // 组内第一个字节,只是保存起来,待处理下一个字节时使用 </SPAN>
- nLeft = *pSrc;
- }
- else </SPAN>
- {
- // 组内其它字节,将其右边部分与残余数据相加,得到一个目标编码字节 </SPAN>
- *pDst = (*pSrc << (8-nChar)) | nLeft;
- // 将该字节剩下的左边部分,作为残余数据保存起来 </SPAN>
- nLeft = *pSrc >> nChar;
- // 修改目标串的指针和计数值 pDst++; </SPAN>
- nDst++;
- }
- // 修改源串的指针和计数值 </SPAN>
- pSrc++; nSrc++;
- }
- // 返回目标串长度 </SPAN>
- return nDst; </SPAN>
- }
- // 7-bit解码 </SPAN>
- // pSrc: 源编码串指针 </SPAN>
- // pDst: 目标字符串指针 </SPAN>
- // nSrcLength: 源编码串长度 </SPAN>
- // 返回: 目标字符串长度 </SPAN>
- int SendMsg::gsmDecode7bit(const unsigned char* pSrc, char* pDst, int nSrcLength) </SPAN>
- {
- int nSrc; // 源字符串的计数值 </SPAN>
- int nDst; // 目标解码串的计数值 </SPAN>
- int nByte; // 当前正在处理的组内字节的序号,范围是0-6 </SPAN>
- unsigned char nLeft; // 上一字节残余的数据 </SPAN>
- // 计数值初始化 </SPAN>
- nSrc = 0;
- nDst = 0;
- // 组内字节序号和残余数据初始化 </SPAN>
- nByte = 0;
- nLeft = 0;
- // 将源数据每7个字节分为一组,解压缩成8个字节 </SPAN>
- // 循环该处理过程,直至源数据被处理完 </SPAN>
- // 如果分组不到7字节,也能正确处理 </SPAN>
- while(nSrc<nSrcLength) </SPAN>
- {
- // 将源字节右边部分与残余数据相加,去掉最高位,得到一个目标解码字节 </SPAN>
- *pDst = ((*pSrc << nByte) | nLeft) & 0x7f;
- // 将该字节剩下的左边部分,作为残余数据保存起来 </SPAN>
- nLeft = *pSrc >> (7-nByte);
- // 修改目标串的指针和计数值 </SPAN>
- pDst++;
- nDst++;
- // 修改字节计数值 </SPAN>
- nByte++;
- // 到了一组的最后一个字节 </SPAN>
- if(nByte == 7) </SPAN>
- {
- // 额外得到一个目标解码字节 </SPAN>
- *pDst = nLeft;
- // 修改目标串的指针和计数值 </SPAN>
- pDst++;
- nDst++;
- // 组内字节序号和残余数据初始化 </SPAN>
- nByte = 0;
- nLeft = 0;
- }
- // 修改源串的指针和计数值 </SPAN>
- pSrc++;
- nSrc++;
- }
- *pDst = 0;
- // 返回目标串长度 </SPAN>
- return nDst; </SPAN>
- }
- // 8bit编码 </SPAN>
- // 输入: pSrc - 源字符串指针 </SPAN>
- // nSrcLength - 源字符串长度 </SPAN>
- // 输出: pDst - 目标编码串指针 </SPAN>
- // 返回: 目标编码串长度 </SPAN>
- int SendMsg::gsmEncode8bit(const char* pSrc,unsigned char* pDst,int nSrcLength) </SPAN>
- {
- // 简单复制 </SPAN>
- memcpy(pDst, pSrc, nSrcLength);
- return nSrcLength; </SPAN>
- }
- // 8bit解码 </SPAN>
- // 输入: pSrc - 源编码串指针 </SPAN>
- // nSrcLength - 源编码串长度 </SPAN>
- // 输出: pDst - 目标字符串指针 </SPAN>
- // 返回: 目标字符串长度 </SPAN>
- int SendMsg::gsmDecode8bit(const unsigned char* pSrc, char* pDst, int nSrcLength) </SPAN>
- {
- // 简单复制 </SPAN>
- memcpy(pDst, pSrc, nSrcLength);
- // 输出字符串加个结束符 </SPAN>
- *pDst = '/0 '; </SPAN>
- return nSrcLength; </SPAN>
- }
- // UCS2编码 </SPAN>
- // 输入: pSrc - 源字符串指针 </SPAN>
- // nSrcLength - 源字符串长度 </SPAN>
- // 输出: pDst - 目标编码串指针 </SPAN>
- // 返回: 目标编码串长度 </SPAN>
- int SendMsg::gsmEncodeUcs2(const char* pSrc, unsigned char* pDst, int nSrcLength) </SPAN>
- {
- int nDstLength; // UNICODE宽字符数目 </SPAN>
- WCHAR wchar[128]; // UNICODE串缓冲区 </SPAN>
- // 字符串-->UNICODE串 </SPAN>
- nDstLength = MultiByteToWideChar(CP_ACP, 0, pSrc, nSrcLength, wchar, 128);
- // 高低字节对调,输出 </SPAN>
- for(int i=0; i<nDstLength; i++) </SPAN>
- {
- *pDst++ = wchar[i] >> 8; // 先输出高位字节 </SPAN>
- *pDst++ = wchar[i] & 0xff; // 后输出低位字节 </SPAN>
- }
- // 返回目标编码串长度 </SPAN>
- return nDstLength * 2; </SPAN>
- }
- // UCS2解码 </SPAN>
- // 输入: pSrc - 源编码串指针 </SPAN>
- // nSrcLength - 源编码串长度 </SPAN>
- // 输出: pDst - 目标字符串指针 </SPAN>
- // 返回: 目标字符串长度 </SPAN>
- // </SPAN>
- int SendMsg::gsmDecodeUcs2(const unsigned char* pSrc, char* pDst, int nSrcLength) </SPAN>
- {
- int nDstLength; // UNICODE宽字符数目 </SPAN>
- WCHAR wchar[128]; // UNICODE串缓冲区 </SPAN>
- // 高低字节对调,拼成UNICODE </SPAN>
- for(int i=0; i<nSrcLength/2; i++) </SPAN>
- {
- wchar[i] = *pSrc++ << 8; // 先高位字节 </SPAN>
- wchar[i] |= *pSrc++; // 后低位字节 </SPAN>
- }
- // UNICODE串-->字符串 </SPAN>
- nDstLength = WideCharToMultiByte(CP_ACP, 0, wchar, nSrcLength/2, pDst, 160, NULL, NULL);
- // 输出字符串加个结束符 </SPAN>
- pDst[nDstLength] = '/0'; </SPAN>
- // 返回目标字符串长度 </SPAN>
- return nDstLength; </SPAN>
- }
- // 可打印字符串转换为字节数据 </SPAN>
- // 如:"C8329BFD0E01" --> {0xC8, 0x32, 0x9B, 0xFD, 0x0E, 0x01} </SPAN>
- // pSrc: 源字符串指针 </SPAN>
- // pDst: 目标数据指针 </SPAN>
- // nSrcLength: 源字符串长度 </SPAN>
- // 返回: 目标数据长度 </SPAN>
- int SendMsg::gsmString2Bytes(const char* pSrc, unsigned char* pDst, int nSrcLength) </SPAN>
- {
- for(int i=0; i<nSrcLength; i+=2) </SPAN>
- {
- // 输出高4位 </SPAN>
- if(*pSrc>='0' && *pSrc<='9') </SPAN>
- {
- *pDst = (*pSrc - '0') << 4; </SPAN>
- }
- else </SPAN>
- {
- *pDst = (*pSrc - 'A' + 10) << 4; </SPAN>
- }
- pSrc++;
- // 输出低4位 </SPAN>
- if(*pSrc>='0' && *pSrc<='9') </SPAN>
- {
- *pDst |= *pSrc - '0'; </SPAN>
- }
- else </SPAN>
- {
- *pDst |= *pSrc - 'A' + 10; </SPAN>
- }
- pSrc++;
- pDst++;
- }
- // 返回目标数据长度 </SPAN>
- return nSrcLength / 2; </SPAN>
- }
- // 字节数据转换为可打印字符串 </SPAN>
- // 如:{0xC8, 0x32, 0x9B, 0xFD, 0x0E, 0x01} --> "C8329BFD0E01" </SPAN>
- // pSrc: 源数据指针 </SPAN>
- // pDst: 目标字符串指针 </SPAN>
- // nSrcLength: 源数据长度 </SPAN>
- // 返回: 目标字符串长度 </SPAN>
- int SendMsg::gsmBytes2String(const unsigned char* pSrc, char* pDst, int nSrcLength) </SPAN>
- {
- const char tab[]="0123456789ABCDEF"; // 0x0-0xf的字符查找表 </SPAN>
- for(int i=0; i<nSrcLength; i++) </SPAN>
- {
- // 输出低4位 </SPAN>
- *pDst++ = tab[*pSrc >> 4];
- // 输出高4位 </SPAN>
- *pDst++ = tab[*pSrc & 0x0f];
- pSrc++;
- }
- // 输出字符串加个结束符 </SPAN>
- *pDst = '/0'; </SPAN>
- // 返回目标字符串长度 </SPAN>
- return nSrcLength * 2; </SPAN>
- }
- // PDU编码,用于编制、发送短消息 </SPAN>
- // pSrc: 源PDU参数指针 </SPAN>
- // pDst: 目标PDU串指针 </SPAN>
- // 返回: 目标PDU串长度 </SPAN>
- int SendMsg::gsmEncodePdu(const SM_PARAM* pSrc, char* pDst) </SPAN>
- {
- int nLength; // 内部用的串长度 </SPAN>
- int nDstLength; // 目标PDU串长度 </SPAN>
- unsigned char buf[256]; // 内部用的缓冲区 </SPAN>
- // SMSC地址信息段 </SPAN>
- nLength = strlen(pSrc->SCA); // SMSC地址字符串的长度 </SPAN>
- buf[0] = (char)((nLength & 1) == 0 ? nLength : nLength + 1) / 2 + 1; // SMSC地址信息长度 </SPAN>
- buf[1] = 0x91; // 固定: 用国际格式号码 </SPAN>
- nDstLength = gsmBytes2String(buf, pDst, 2); // 转换2个字节到目标PDU串 </SPAN>
- nDstLength +=gsmInvertNumbers(pSrc->SCA, &pDst[nDstLength], nLength); // 转换SMSC到目标PDU串 </SPAN>
- // TPDU段基本参数、目标地址等 </SPAN>
- nLength = strlen(pSrc->TPA); // TP-DA地址字符串的长度 </SPAN>
- buf[0] = 0x11; // 是发送短信(TP-MTI=01),TP-VP用相对格式(TP-VPF=10) </SPAN>
- buf[1] = 0; // TP-MR=0 </SPAN>
- buf[2] = (char)nLength; // 目标地址数字个数(TP-DA地址字符串真实长度) </SPAN>
- buf[3] = 0x91; // 固定: 用国际格式号码 </SPAN>
- nDstLength +=gsmBytes2String(buf, &pDst[nDstLength], 4); // 转换4个字节到目标PDU串 </SPAN>
- nDstLength +=gsmInvertNumbers(pSrc->TPA, &pDst[nDstLength], nLength); // 转换TP-DA到目标PDU串 </SPAN>
- // TPDU段协议标识、编码方式、用户信息等 </SPAN>
- nLength = strlen(pSrc->TP_UD); // 用户信息字符串的长度 </SPAN>
- buf[0] = pSrc->TP_PID; // 协议标识(TP-PID) </SPAN>
- buf[1] = pSrc->TP_DCS; // 用户信息编码方式(TP-DCS) </SPAN>
- buf[2] = 0; // 有效期(TP-VP)为5分钟 </SPAN>
- if(pSrc->TP_DCS == GSM_7BIT) </SPAN>
- {
- // 7-bit编码方式 </SPAN>
- buf[3] = nLength; // 编码前长度 </SPAN>
- nLength =gsmEncode7bit(pSrc->TP_UD, &buf[4], nLength+1) + 4; // 转换TP-DA到目标PDU串 </SPAN>
- }
- else if(pSrc->TP_DCS == GSM_UCS2) </SPAN>
- {
- // UCS2编码方式 </SPAN>
- buf[3] =gsmEncodeUcs2(pSrc->TP_UD, &buf[4], nLength); // 转换TP-DA到目标PDU串 </SPAN>
- nLength = buf[3] + 4; // nLength等于该段数据长度 </SPAN>
- }
- else </SPAN>
- {
- // 8-bit编码方式 </SPAN>
- buf[3] =gsmEncode8bit(pSrc->TP_UD, &buf[4], nLength); // 转换TP-DA到目标PDU串 </SPAN>
- nLength = buf[3] + 4; // nLength等于该段数据长度 </SPAN>
- }
- nDstLength +=gsmBytes2String(buf, &pDst[nDstLength], nLength); // 转换该段数据到目标PDU串 </SPAN>
- // 返回目标字符串长度 </SPAN>
- return nDstLength; </SPAN>
- }
- // PDU解码,用于接收、阅读短消息 </SPAN>
- // pSrc: 源PDU串指针 </SPAN>
- // pDst: 目标PDU参数指针 </SPAN>
- // 返回: 用户信息串长度 </SPAN>
- int SendMsg::gsmDecodePdu(const char* pSrc, SM_PARAM* pDst) </SPAN>
- {
- int nDstLength; // 目标PDU串长度 </SPAN>
- unsigned char tmp; // 内部用的临时字节变量 </SPAN>
- unsigned char buf[256]; // 内部用的缓冲区 </SPAN>
- //printf("Msg=%s/n",pSrc); </SPAN>
- // SMSC地址信息段 </SPAN>
- gsmString2Bytes(pSrc, &tmp, 2); // 取长度 </SPAN>
- tmp = (tmp - 1) * 2; // SMSC号码串长度 </SPAN>
- pSrc += 4; // 指针后移 </SPAN>
- gsmSerializeNumbers(pSrc, pDst->SCA, tmp); // 转换SMSC号码到目标PDU串 </SPAN>
- pSrc += tmp; // 指针后移 </SPAN>
- //printf("SMSC=%s/n",pDst->SCA); </SPAN>
- // TPDU段基本参数、回复地址等 </SPAN>
- gsmString2Bytes(pSrc, &tmp, 2); // 取基本参数 </SPAN>
- pSrc += 2; // 指针后移 </SPAN>
- // if(tmp & 0x80) </SPAN>
- //{ </SPAN>
- // 包含回复地址,取回复地址信息 </SPAN>
- gsmString2Bytes(pSrc, &tmp, 2); // 取长度 </SPAN>
- if(tmp & 1) tmp += 1; // 调整奇偶性 </SPAN>
- pSrc += 4; // 指针后移 </SPAN>
- gsmSerializeNumbers(pSrc, pDst->TPA, tmp); // 取TP-RA号码 </SPAN>
- pSrc += tmp; // 指针后移 </SPAN>
- //printf("TP-RA=%s/n",pDst->TPA); </SPAN>
- //} </SPAN>
- // TPDU段协议标识、编码方式、用户信息等 </SPAN>
- gsmString2Bytes(pSrc, (unsigned char*)&pDst->TP_PID, 2); // 取协议标识(TP-PID) </SPAN>
- //printf("TP-PID=%c/n",pDst->TP_PID); </SPAN>
- pSrc += 2; // 指针后移 </SPAN>
- gsmString2Bytes(pSrc, (unsigned char*)&pDst->TP_DCS, 2); // 取编码方式(TP-DCS) </SPAN>
- //printf("TP-DCS=%c/n",pDst->TP_DCS); </SPAN>
- pSrc += 2; // 指针后移 </SPAN>
- gsmSerializeNumbers(pSrc, pDst->TP_SCTS, 14); // 服务时间戳字符串(TP_SCTS) </SPAN>
- //printf("TP-SCTS=%s/n",pDst->TP_SCTS); </SPAN>
- pSrc += 14; // 指针后移 </SPAN>
- gsmString2Bytes(pSrc, &tmp, 2); // 用户信息长度(TP-UDL) </SPAN>
- pSrc += 2; // 指针后移 </SPAN>
- if(pDst->TP_DCS == GSM_7BIT) </SPAN>
- {
- // 7-bit解码 </SPAN>
- nDstLength = gsmString2Bytes(pSrc, buf, tmp & 7 ? (int)tmp * 7 / 4 + 2 : (int)tmp * 7 / 4); // 格式转换 </SPAN>
- gsmDecode7bit(buf, pDst->TP_UD, nDstLength); // 转换到TP-DU </SPAN>
- nDstLength = tmp;
- }
- else if(pDst->TP_DCS == GSM_UCS2) </SPAN>
- {
- // UCS2解码 </SPAN>
- nDstLength = gsmString2Bytes(pSrc, buf, tmp * 2); // 格式转换 </SPAN>
- nDstLength = gsmDecodeUcs2(buf, pDst->TP_UD, nDstLength); // 转换到TP-DU </SPAN>
- }
- else </SPAN>
- {
- // 8-bit解码 </SPAN>
- nDstLength = gsmString2Bytes(pSrc, buf, tmp * 2); // 格式转换 </SPAN>
- nDstLength = gsmDecode8bit(buf, pDst->TP_UD, nDstLength); // 转换到TP-DU </SPAN>
- }
- //printf("MessgeContent=%s/n",pDst->TP_UD); </SPAN>
- // 返回目标字符串长度 </SPAN>
- return nDstLength; </SPAN>
- }
- // 发送短消息 </SPAN>
- // pSrc: 源PDU参数指针 </SPAN>
- BOOL SendMsg::gsmSendMessage(const SM_PARAM* pSrc) </SPAN>
- {
- int nPduLength; // PDU串长度 </SPAN>
- unsigned char nSmscLength; // SMSC串长度 </SPAN>
- int nLength; // 串口收到的数据长度 </SPAN>
- char cmd[16]; // 命令串 </SPAN>
- char pdu[512]; // PDU串 </SPAN>
- char ans[128]; // 应答串 </SPAN>
- nPduLength = gsmEncodePdu(pSrc, pdu); // 根据PDU参数,编码PDU串 </SPAN>
- strcat(pdu, "/x01a"); // 以Ctrl-Z结束 </SPAN>
- gsmString2Bytes(pdu, &nSmscLength, 2); // 取PDU串中的SMSC信息长度 </SPAN>
- nSmscLength++; // 加上长度字节本身 </SPAN>
- // 命令中的长度,不包括SMSC信息长度,以数据字节计 </SPAN>
- sprintf(cmd, "AT+CMGS=%d/r", nPduLength / 2 - nSmscLength); // 生成命令 </SPAN>
- WriteComm(cmd, strlen(cmd)); // 先输出命令串 </SPAN>
- nLength = ReadComm(ans, 128); // 读应答数据 </SPAN>
- // 根据能否找到"/r/n> "决定成功与否 </SPAN>
- if(nLength == 4 && strncmp(ans, "/r/n> ", 4) == 0) </SPAN>
- {
- WriteComm(pdu, strlen(pdu)); // 得到肯定回答,继续输出PDU串 </SPAN>
- nLength =ReadComm(ans, 128); // 读应答数据 </SPAN>
- // 根据能否找到"+CMS ERROR"决定成功与否 </SPAN>
- if(nLength > 0 && strncmp(ans, "+CMS ERROR", 10) != 0) </SPAN>
- {
- return TRUE; </SPAN>
- }
- }
- return FALSE; </SPAN>
- }
- // 删除短消息 </SPAN>
- // index: 短消息序号,从1开始 </SPAN>
- BOOL SendMsg::gsmDeleteMessage(const int index) </SPAN>
- {
- int nLength; // 串口收到的数据长度 </SPAN>
- char cmd[16]; // 命令串 </SPAN>
- char ans[128]; // 应答串 </SPAN>
- sprintf(cmd, "AT+CMGD=%d/r", index); // 生成命令 </SPAN>
- // 输出命令串 </SPAN>
- WriteComm(cmd, strlen(cmd));
- // 读应答数据 </SPAN>
- nLength = ReadComm(ans, 128);
- // 根据能否找到"+CMS ERROR"决定成功与否 </SPAN>
- if(nLength > 0 && strncmp(ans, "+CMS ERROR", 10) != 0) </SPAN>
- {
- return TRUE; </SPAN>
- }
- return FALSE; </SPAN>
- }
- // 打开串口 </SPAN>
- // pPort: 串口名称或设备路径,可用"COM1" </SPAN>
- // nBaudRate: 波特率 </SPAN>
- // nParity: 奇偶校验 </SPAN>
- // nByteSize: 数据字节宽度 </SPAN>
- // nStopBits: 停止位 </SPAN>
- BOOL SendMsg::OpenComm(const char* pPort, int nBaudRate, int nParity, int nByteSize, int nStopBits) </SPAN>
- {
- DCB dcb; // 串口控制块 </SPAN>
- COMMTIMEOUTS timeouts = { // 串口超时控制参数 </SPAN>
- 100, // 读字符间隔超时时间: 100 ms </SPAN>
- 1, // 读操作时每字符的时间: 1 ms (n个字符总共为n ms) </SPAN>
- 500, // 基本的(额外的)读超时时间: 500 ms </SPAN>
- 1, // 写操作时每字符的时间: 1 ms (n个字符总共为n ms) </SPAN>
- 100}; // 基本的(额外的)写超时时间: 100 ms </SPAN>
- hComm = CreateFile(pPort, // 串口名称或设备路径 </SPAN>
- GENERIC_READ | GENERIC_WRITE, // 读写方式 </SPAN>
- 0, // 共享方式:独占 </SPAN>
- NULL, // 默认的安全描述符 </SPAN>
- OPEN_EXISTING, // 创建方式 </SPAN>
- 0, // 不需设置文件属性 </SPAN>
- NULL); // 不需参照模板文件 </SPAN>
- if(hComm == INVALID_HANDLE_VALUE) </SPAN>
- return FALSE; // 打开串口失败 </SPAN>
- GetCommState(hComm, &dcb); // 取DCB </SPAN>
- dcb.BaudRate = nBaudRate;
- dcb.ByteSize = nByteSize;
- dcb.Parity = nParity;
- dcb.StopBits = nStopBits;
- ////////////////// </SPAN>
- //PurgeComm(hComm, PURGE_TXABORT | PURGE_RXABORT | PURGE_TXCLEAR | PURGE_RXCLEAR); </SPAN>
- //SetCommMask(hComm,EV_ERR|EV_RXCHAR); </SPAN>
- ///////////////// </SPAN>
- SetCommState(hComm, &dcb); // 设置DCB </SPAN>
- SetupComm(hComm, 4096, 1024); // 设置输入输出缓冲区大小 </SPAN>
- SetCommTimeouts(hComm, &timeouts); // 设置超时 </SPAN>
- //printf("OpenComm/n"); </SPAN>
- return TRUE; </SPAN>
- }
- // 关闭串口 </SPAN>
- BOOL SendMsg::CloseComm() </SPAN>
- {
- return CloseHandle(hComm); </SPAN>
- }
- // 写串口 </SPAN>
- // pData: 待写的数据缓冲区指针 </SPAN>
- // nLength: 待写的数据长度 </SPAN>
- void SendMsg::WriteComm(void* pData, int nLength) </SPAN>
- {
- DWORD dwNumWrite; // 串口发出的数据长度 </SPAN>
- WriteFile(hComm, pData, (DWORD)nLength, &dwNumWrite, NULL); </SPAN>
- }
- // 读串口 </SPAN>
- // pData: 待读的数据缓冲区指针 </SPAN>
- // nLength: 待读的最大数据长度 </SPAN>
- // 返回: 实际读入的数据长度 </SPAN>
- int SendMsg::ReadComm(void* pData, int nLength) </SPAN>
- {
- DWORD dwNumRead; // 串口收到的数据长度 </SPAN>
- ReadFile(hComm, pData, (DWORD)nLength, &dwNumRead, NULL); </SPAN>
- return (int)dwNumRead; </SPAN>
- }
- // 读取短消息,仅发送命令,不读取应答 </SPAN>
- // 用+CMGL代替+CMGR,可一次性读出全部短消息 </SPAN>
- void SendMsg::gsmReadMessageList() </SPAN>
- {
- WriteComm("AT+CMGL/r",8); </SPAN>
- }
- // 初始化GSM状态 </SPAN>
- BOOL SendMsg::gsmInit() </SPAN>
- {
- char ans[128]; // 应答串 </SPAN>
- // 测试GSM-MODEM的存在性 </SPAN>
- WriteComm("AT/r", 3); </SPAN>
- Sleep(100);
- ReadComm(ans, 128);
- if (strstr(ans, "OK") == NULL) //给两次机会 </SPAN>
- {
- Sleep(100);
- WriteComm("AT/r", 3); </SPAN>
- ReadComm(ans, 128);
- if(strstr(ans, "OK") == NULL) </SPAN>
- return FALSE; </SPAN>
- }
- // ECHO OFF </SPAN>
- WriteComm("ATE0/r", 5); </SPAN>
- ReadComm(ans, 128);
- // PDU模式 </SPAN>
- WriteComm("AT+CMGF=0/r", 10); </SPAN>
- ReadComm(ans, 128);
- ////////////////////////////////////// </SPAN>
- WriteComm("AT+CSMS=1/r", 10); </SPAN>
- ReadComm(ans, 128);
- WriteComm("AT+CNMI=2,1/r", 12); </SPAN>
- ReadComm(ans, 128);
- /////////////////////////////////////// </SPAN>
- // printf("InitCOMM/n"); </SPAN>
- return TRUE; </SPAN>
- }
- // 读取GSM MODEM的应答,可能是一部分 </SPAN>
- // 输出: pBuff - 接收应答缓冲区 </SPAN>
- // 返回: GSM MODEM的应答状态, GSM_WAIT/GSM_OK/GSM_ERR </SPAN>
- // 备注: 可能需要多次调用才能完成读取一次应答,首次调用时应将pBuff初始化 </SPAN>
- int SendMsg::gsmGetResponse(SM_BUFF* pBuff) </SPAN>
- {
- int nLength; // 串口收到的数据长度 </SPAN>
- int nState; </SPAN>
- // 从串口读数据,追加到缓冲区尾部 </SPAN>
- nLength = ReadComm(&pBuff->data[pBuff->len], 128);
- pBuff->len += nLength;
- //确定GSM MODEM的应答状态 </SPAN>
- nState = GSM_WAIT;
- if ((nLength > 0) && (pBuff->len >= 4)) </SPAN>
- {
- //if (strncmp(&pBuff->data[pBuff->len - 4], "OK/r/n", 4) == 0) </SPAN>
- if(strstr(pBuff->data, "OK/r/n")!=NULL) </SPAN>
- nState = GSM_OK;
- else if (strstr(pBuff->data, "+CMS ERROR") != NULL) </SPAN>
- nState = GSM_ERR;
- }
- return nState; </SPAN>
- }
- // 从列表中解析出全部短消息 </SPAN>
- // 输入: pBuff - 短消息列表缓冲区 </SPAN>
- // 输出: pMsg - 短消息缓冲区 </SPAN>
- // 返回: 短消息条数 </SPAN>
- int SendMsg::gsmParseMessageList(SM_PARAM* pMsg, SM_BUFF* pBuff) </SPAN>
- {
- int nMsg; // 短消息计数值 </SPAN>
- char* ptr; // 内部用的数据指针 </SPAN>
- nMsg = 0;
- ptr = pBuff->data;
- // 循环读取每一条短消息, 以"+CMGL:"开头 </SPAN>
- while((ptr = strstr(ptr, "+CMGL:")) != NULL) </SPAN>
- {
- ptr += 6; // 跳过"+CMGL:", 定位到序号// </SPAN>
- sscanf(ptr, "%d", &pMsg->index); // 读取序号 </SPAN>
- // TRACE(" index=%d/n",pMsg->index); </SPAN>
- //printf("index=%d/n",pMsg->index); </SPAN>
- ptr = strstr(ptr, "/r/n"); // 找下一行 </SPAN>
- if (ptr != NULL) </SPAN>
- {
- ptr += 2; // 跳过"/r/n", 定位到PDU </SPAN>
- gsmDecodePdu(ptr, pMsg); // PDU串解码 </SPAN>
- pMsg++; // 准备读下一条短消息 </SPAN>
- nMsg++; // 短消息计数加1 </SPAN>
- }
- }
- return nMsg; </SPAN>
- }
__________________
让世界倾听我们的笛声
|