JustinIO.cs
上传用户:ls4004
上传日期:2007-02-06
资源大小:438k
文件大小:10k
源码类别:

手机短信编程

开发平台:

C#

  1. using System;
  2. using System.Runtime.InteropServices;
  3. namespace JustinIO {
  4. class CommPort {
  5. public string PortNum; 
  6. public int BaudRate;
  7. public byte ByteSize;
  8. public byte Parity; // 0-4=no,odd,even,mark,space 
  9. public byte StopBits; // 0,1,2 = 1, 1.5, 2 
  10. public int ReadTimeout;
  11. //comm port win32 file handle
  12. private int hComm = -1;
  13. public bool Opened = false;
  14.  
  15. //win32 api constants
  16.   private const uint GENERIC_READ = 0x80000000;
  17.   private const uint GENERIC_WRITE = 0x40000000;
  18.   private const int OPEN_EXISTING = 3;
  19.   private const int INVALID_HANDLE_VALUE = -1;
  20. [StructLayout(LayoutKind.Sequential)]
  21. public struct DCB {
  22. //taken from c struct in platform sdk 
  23. public int DCBlength;           // sizeof(DCB) 
  24. public int BaudRate;            // 指定当前波特率 current baud rate
  25. // these are the c struct bit fields, bit twiddle flag to set
  26. public int fBinary;          // 指定是否允许二进制模式,在windows95中必须主TRUE binary mode, no EOF check 
  27. public int fParity;          // 指定是否允许奇偶校验 enable parity checking 
  28. public int fOutxCtsFlow;      // 指定CTS是否用于检测发送控制,当为TRUE是CTS为OFF,发送将被挂起。 CTS output flow control 
  29. public int fOutxDsrFlow;      // 指定CTS是否用于检测发送控制 DSR output flow control 
  30. public int fDtrControl;       // DTR_CONTROL_DISABLE值将DTR置为OFF, DTR_CONTROL_ENABLE值将DTR置为ON, DTR_CONTROL_HANDSHAKE允许DTR"握手" DTR flow control type 
  31. public int fDsrSensitivity;   // 当该值为TRUE时DSR为OFF时接收的字节被忽略 DSR sensitivity 
  32. public int fTXContinueOnXoff; // 指定当接收缓冲区已满,并且驱动程序已经发送出XoffChar字符时发送是否停止。TRUE时,在接收缓冲区接收到缓冲区已满的字节XoffLim且驱动程序已经发送出XoffChar字符中止接收字节之后,发送继续进行。 FALSE时,在接收缓冲区接收到代表缓冲区已空的字节XonChar且驱动程序已经发送出恢复发送的XonChar之后,发送继续进行。XOFF continues Tx 
  33. public int fOutX;          // TRUE时,接收到XoffChar之后便停止发送接收到XonChar之后将重新开始 XON/XOFF out flow control 
  34. public int fInX;           // TRUE时,接收缓冲区接收到代表缓冲区满的XoffLim之后,XoffChar发送出去接收缓冲区接收到代表缓冲区空的XonLim之后,XonChar发送出去 XON/XOFF in flow control 
  35. public int fErrorChar;     // 该值为TRUE且fParity为TRUE时,用ErrorChar 成员指定的字符代替奇偶校验错误的接收字符 enable error replacement 
  36. public int fNull;          // eTRUE时,接收时去掉空(0值)字节 enable null stripping 
  37. public int fRtsControl;     // RTS flow control 
  38. /*RTS_CONTROL_DISABLE时,RTS置为OFF
  39.   RTS_CONTROL_ENABLE时, RTS置为ON
  40.    RTS_CONTROL_HANDSHAKE时,
  41.    当接收缓冲区小于半满时RTS为ON
  42.     当接收缓冲区超过四分之三满时RTS为OFF
  43.    RTS_CONTROL_TOGGLE时,
  44.    当接收缓冲区仍有剩余字节时RTS为ON ,否则缺省为OFF*/
  45. public int fAbortOnError;   // TRUE时,有错误发生时中止读和写操作 abort on error 
  46. public int fDummy2;        // 未使用 reserved 
  47. public uint flags;
  48. public ushort wReserved;          // 未使用,必须为0 not currently used 
  49. public ushort XonLim;             // 指定在XON字符发送这前接收缓冲区中可允许的最小字节数 transmit XON threshold 
  50. public ushort XoffLim;            // 指定在XOFF字符发送这前接收缓冲区中可允许的最小字节数 transmit XOFF threshold 
  51. public byte ByteSize;           // 指定端口当前使用的数据位 number of bits/byte, 4-8 
  52. public byte Parity;             // 指定端口当前使用的奇偶校验方法,可能为:EVENPARITY,MARKPARITY,NOPARITY,ODDPARITY  0-4=no,odd,even,mark,space 
  53. public byte StopBits;           // 指定端口当前使用的停止位数,可能为:ONESTOPBIT,ONE5STOPBITS,TWOSTOPBITS  0,1,2 = 1, 1.5, 2 
  54. public char XonChar;            // 指定用于发送和接收字符XON的值 Tx and Rx XON character 
  55. public char XoffChar;           // 指定用于发送和接收字符XOFF值 Tx and Rx XOFF character 
  56. public char ErrorChar;          // 本字符用来代替接收到的奇偶校验发生错误时的值 error replacement character 
  57. public char EofChar;            // 当没有使用二进制模式时,本字符可用来指示数据的结束 end of input character 
  58. public char EvtChar;            // 当接收到此字符时,会产生一个事件 received event character 
  59. public ushort wReserved1;         // 未使用 reserved; do not use 
  60. }
  61. [StructLayout(LayoutKind.Sequential)]
  62. private struct COMMTIMEOUTS {  
  63.   public int ReadIntervalTimeout; 
  64.   public int ReadTotalTimeoutMultiplier; 
  65.   public int ReadTotalTimeoutConstant; 
  66.   public int WriteTotalTimeoutMultiplier; 
  67.   public int WriteTotalTimeoutConstant; 
  68. [StructLayout(LayoutKind.Sequential)]
  69. private struct OVERLAPPED { 
  70.     public int  Internal; 
  71.     public int  InternalHigh; 
  72.     public int  Offset; 
  73.     public int  OffsetHigh; 
  74.     public int hEvent; 
  75. }  
  76. [DllImport("kernel32.dll")]
  77. private static extern int CreateFile(
  78.   string lpFileName,                         // 要打开的串口名称
  79.   uint dwDesiredAccess,                      // 指定串口的访问方式,一般设置为可读可写方式
  80.   int dwShareMode,                          // 指定串口的共享模式,串口不能共享,所以设置为0
  81.   int lpSecurityAttributes, // 设置串口的安全属性,WIN9X下不支持,应设为NULL
  82.   int dwCreationDisposition,                // 对于串口通信,创建方式只能为OPEN_EXISTING
  83.   int dwFlagsAndAttributes,                 // 指定串口属性与标志,设置为FILE_FLAG_OVERLAPPED(重叠I/O操作),指定串口以异步方式通信
  84.   int hTemplateFile                        // 对于串口通信必须设置为NULL
  85. );
  86. [DllImport("kernel32.dll")]
  87. private static extern bool GetCommState(
  88.   int hFile,  //通信设备句柄
  89.   ref DCB lpDCB    // 设备控制块DCB
  90. );
  91. [DllImport("kernel32.dll")]
  92. private static extern bool BuildCommDCB(
  93.   string lpDef,  // 设备控制字符串
  94.   ref DCB lpDCB     // 设备控制块
  95. );
  96. [DllImport("kernel32.dll")]
  97. private static extern bool SetCommState(
  98.   int hFile,  // 通信设备句柄
  99.   ref DCB lpDCB    // 设备控制块
  100. );
  101. [DllImport("kernel32.dll")]
  102. private static extern bool GetCommTimeouts(
  103.   int hFile,                  // 通信设备句柄 handle to comm device
  104.   ref COMMTIMEOUTS lpCommTimeouts  // 超时时间 time-out values
  105. );
  106. [DllImport("kernel32.dll")]
  107. private static extern bool SetCommTimeouts(
  108.   int hFile,                  // 通信设备句柄 handle to comm device
  109.   ref COMMTIMEOUTS lpCommTimeouts  // 超时时间 time-out values
  110. );
  111. [DllImport("kernel32.dll")]
  112. private static extern bool ReadFile(
  113.   int hFile,                // 通信设备句柄 handle to file
  114.   byte[] lpBuffer,             // 数据缓冲区 data buffer
  115.   int nNumberOfBytesToRead,  // 多少字节等待读取 number of bytes to read
  116.   ref int lpNumberOfBytesRead, // 读取多少字节 number of bytes read
  117.   ref OVERLAPPED lpOverlapped    // 溢出缓冲区 overlapped buffer
  118. );
  119. [DllImport("kernel32.dll")]
  120. private static extern bool WriteFile(
  121.   int hFile,                    // 通信设备句柄 handle to file
  122.   byte[] lpBuffer,                // 数据缓冲区 data buffer
  123.   int nNumberOfBytesToWrite,     // 多少字节等待写入 number of bytes to write
  124.   ref int lpNumberOfBytesWritten,  // 已经写入多少字节 number of bytes written
  125.   ref OVERLAPPED lpOverlapped        // 溢出缓冲区 overlapped buffer
  126. );
  127. [DllImport("kernel32.dll")]
  128. private static extern bool CloseHandle(
  129.   int hObject   // handle to object
  130. );
  131. [DllImport("kernel32.dll")]
  132. private static extern uint GetLastError();
  133. public void Open()
  134. {
  135.             DCB dcbCommPort = new DCB();
  136.             COMMTIMEOUTS ctoCommPort = new COMMTIMEOUTS();
  137.    
  138.  // 打开串口 OPEN THE COMM PORT.
  139.             hComm = CreateFile(PortNum ,GENERIC_READ | GENERIC_WRITE,0, 0,OPEN_EXISTING,0,0);
  140.  // 如果串口没有打开,就打开 IF THE PORT CANNOT BE OPENED, BAIL OUT.
  141. if(hComm == INVALID_HANDLE_VALUE) 
  142. {
  143.    throw(new ApplicationException("非法操作,不能打开串口!"));
  144. }
  145. // 设置通信超时时间 SET THE COMM TIMEOUTS.
  146. GetCommTimeouts(hComm,ref ctoCommPort);
  147. ctoCommPort.ReadTotalTimeoutConstant = ReadTimeout;
  148. ctoCommPort.ReadTotalTimeoutMultiplier = 0;
  149. ctoCommPort.WriteTotalTimeoutMultiplier = 0;
  150. ctoCommPort.WriteTotalTimeoutConstant = 0;  
  151. SetCommTimeouts(hComm,ref ctoCommPort);
  152. // 设置串口 SET BAUD RATE, PARITY, WORD SIZE, AND STOP BITS.
  153. GetCommState(hComm, ref dcbCommPort);
  154. dcbCommPort.BaudRate=BaudRate;
  155. dcbCommPort.flags=0;
  156. //dcb.fBinary=1;
  157. dcbCommPort.flags|=1;
  158. if (Parity>0)
  159. {
  160.     //dcb.fParity=1
  161.       dcbCommPort.flags|=2;
  162. }
  163. dcbCommPort.Parity=Parity;
  164. dcbCommPort.ByteSize=ByteSize;
  165. dcbCommPort.StopBits=StopBits;
  166. if (!SetCommState(hComm, ref dcbCommPort))
  167. {
  168.  //uint ErrorNum=GetLastError();
  169.      throw(new ApplicationException("非法操作,不能打开串口!"));
  170. }
  171.   //unremark to see if setting took correctly
  172.   //DCB dcbCommPort2 = new DCB();
  173.   //GetCommState(hComm, ref dcbCommPort2);
  174. Opened = true;
  175. }
  176. public void Close() {
  177. if (hComm!=INVALID_HANDLE_VALUE) {
  178. CloseHandle(hComm);
  179. }
  180. }
  181. public byte[] Read(int NumBytes) {
  182. byte[] BufBytes;
  183. byte[] OutBytes;
  184. BufBytes = new byte[NumBytes];
  185. if (hComm!=INVALID_HANDLE_VALUE) {
  186. OVERLAPPED ovlCommPort = new OVERLAPPED();
  187. int BytesRead=0;
  188. ReadFile(hComm,BufBytes,NumBytes,ref BytesRead,ref ovlCommPort);
  189. OutBytes = new byte[BytesRead];
  190. Array.Copy(BufBytes,OutBytes,BytesRead);
  191. else {
  192. throw(new ApplicationException("串口未打开!"));
  193. }
  194. return OutBytes;
  195. }
  196. public void Write(byte[] WriteBytes) {
  197. if (hComm!=INVALID_HANDLE_VALUE) {
  198. OVERLAPPED ovlCommPort = new OVERLAPPED();
  199. int BytesWritten = 0;
  200. WriteFile(hComm,WriteBytes,WriteBytes.Length,ref BytesWritten,ref ovlCommPort);
  201. }
  202. else {
  203. throw(new ApplicationException("串口未打开!"));
  204. }
  205. }
  206. }
  207. class HexCon {
  208. // 把十六进制字符串转换成字节型和把字节型转换成十六进制字符串 converter hex string to byte and byte to hex string
  209. public static string ByteToString(byte[] InBytes) {
  210. string StringOut="";
  211. foreach (byte InByte in InBytes) {
  212. StringOut=StringOut + String.Format("{0:X2} ",InByte);
  213. }
  214. return StringOut; 
  215. }
  216. public static byte[] StringToByte(string InString) {
  217. string[] ByteStrings;
  218. ByteStrings = InString.Split(" ".ToCharArray());
  219. byte[] ByteOut;
  220. ByteOut = new byte[ByteStrings.Length-1];
  221. for (int i = 0;i==ByteStrings.Length-1;i++) {
  222. ByteOut[i] = Convert.ToByte(("0x" + ByteStrings[i]));
  223. return ByteOut;
  224. }
  225. }
  226. }