socket-connection.md 12.7 KB
Newer Older
Z
zengyawen 已提交
1 2
# Socket连接

Z
zhanghaifeng 已提交
3 4 5 6 7 8 9 10 11 12
## 简介

Socket连接主要是通过Socket进行数据传输,支持TCP/UDP/TLS协议。

## 基本概念

- Socket:套接字,就是对网络中不同主机上的应用进程之间进行双向通信的端点的抽象。
- TCP:传输控制协议(Transmission Control Protocol)。是一种面向连接的、可靠的、基于字节流的传输层通信协议。
- UDP:用户数据报协议协议(User Datagram Protocol)。是一个简单的面向消息的传输层,不需要连接。
- TLS:安全传输层协议(Transport Layer Security)。用于在两个通信应用程序之间提供保密性和数据完整性。
Z
zengyawen 已提交
13 14 15

## 场景介绍

Z
zhanghaifeng 已提交
16
应用通过Socket进行数据传输,支持TCP/UDP/TLS协议。主要场景有:
Z
zengyawen 已提交
17

Z
zhanghaifeng 已提交
18
- 应用通过TCP/UDP Socket进行数据传输
X
xujie 已提交
19
- 应用通过TCP Socket Server进行数据传输
Z
zhanghaifeng 已提交
20
- 应用通过TLS Socket进行加密数据传输
Z
zengyawen 已提交
21 22 23

## 接口说明

Z
zhanghaifeng 已提交
24
完整的JS API说明以及实例代码请参考:[Socket连接](../reference/apis/js-apis-socket.md)
Z
zhanghaifeng 已提交
25

Z
zengyawen 已提交
26 27 28 29 30 31
Socket连接主要由socket模块提供。具体接口说明如下表。

| 接口名 | 功能描述 |
| -------- | -------- |
| constructUDPSocketInstance() | 创建一个UDPSocket对象。 |
| constructTCPSocketInstance() | 创建一个TCPSocket对象。 |
X
xujie 已提交
32 33
| constructTCPSocketServerInstance() | 创建一个TCPSocketServer对象。 |
| listen() | 绑定IP地址和端口,监听并接受与此套接字建立的TCPSocket连接。(仅TCP支持) |
Z
zengyawen 已提交
34 35 36 37 38 39
| bind() | 绑定IP地址和端口。 |
| send() | 发送数据。 |
| close() | 关闭连接。 |
| getState() | 获取Socket状态。 |
| connect() | 连接到指定的IP地址和端口(仅TCP支持) |
| getRemoteAddress() | 获取对端Socket地址(仅TCP支持,需要先调用connect方法) |
X
xujie 已提交
40
| setExtraOptions() | 设置Socket连接的其他属性。 |
Z
zengyawen 已提交
41 42 43 44 45 46 47 48 49 50 51
| on(type: 'message') | 订阅Socket连接的接收消息事件。 |
| off(type: 'message') | 取消订阅Socket连接的接收消息事件。 |
| on(type: 'close') | 订阅Socket连接的关闭事件。 |
| off(type: 'close') | 取消订阅Socket连接的关闭事件。 |
| on(type: 'error') | 订阅Socket连接的Error事件。 |
| off(type: 'error') | 取消订阅Socket连接的Error事件。 |
| on(type: 'listening') | 订阅UDPSocket连接的数据包消息事件(仅UDP支持)。 |
| off(type: 'listening') | 取消订阅UDPSocket连接的数据包消息事件(仅UDP支持)。 |
| on(type: 'connect') | 订阅TCPSocket的连接事件(仅TCP支持)。 |
| off(type: 'connect') | 取消订阅TCPSocket的连接事件(仅TCP支持)。 |

Z
zhanghaifeng 已提交
52
TLS Socket连接主要由tls_socket模块提供。具体接口说明如下表。
Z
zengyawen 已提交
53

Z
zhanghaifeng 已提交
54 55
| 接口名 | 功能描述 |
| -------- | -------- |
Y
Yangys 已提交
56
| constructTLSSocketInstance() | 创建一个TLSSocket对象。 |
Z
zhanghaifeng 已提交
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
| bind() | 绑定IP地址和端口号。 |
| close(type: 'error') | 关闭连接。 |
| connect() | 连接到指定的IP地址和端口。 |
| getCertificate() | 返回表示本地证书的对象。 |
| getCipherSuite() | 返回包含协商的密码套件信息的列表。 |
| getProtocol() | 返回包含当前连接协商的SSL/TLS协议版本的字符串。 |
| getRemoteAddress() | 获取TLSSocket连接的对端地址。 |
| getRemoteCertificate() | 返回表示对等证书的对象。 |
| getSignatureAlgorithms() | 在服务器和客户端之间共享的签名算法列表,按优先级降序排列。 |
| getState() | 获取TLSSocket连接的状态。 |
| off(type: 'close') | 取消订阅TLSSocket连接的关闭事件。 |
| off(type: 'error') | 取消订阅TLSSocket连接的Error事件。 |
| off(type: 'message') | 取消订阅TLSSocket连接的接收消息事件。 |
| on(type: 'close') | 订阅TLSSocket连接的关闭事件。 |
| on(type: 'error') | 订阅TLSSocket连接的Error事件。 |
| on(type: 'message') | 订阅TLSSocket连接的接收消息事件。 |
| send() | 发送数据。 |
| setExtraOptions() | 设置TLSSocket连接的其他属性。 |

## 应用TCP/UDP协议进行通信

Z
zengyawen 已提交
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
UDP与TCP流程大体类似,下面以TCP为例:

1. import需要的socket模块。

2. 创建一个TCPSocket连接,返回一个TCPSocket对象。

3. (可选)订阅TCPSocket相关的订阅事件。

4. 绑定IP地址和端口,端口可以指定或由系统随机分配。

5. 连接到指定的IP地址和端口。

6. 发送数据。

7. Socket连接使用完毕后,主动关闭。
Z
zhanghaifeng 已提交
93

Y
Yangys 已提交
94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
```js
import socket from '@ohos.net.socket'

// 创建一个TCPSocket连接,返回一个TCPSocket对象。
let tcp = socket.constructTCPSocketInstance();

// 订阅TCPSocket相关的订阅事件
tcp.on('message', value => {
  console.log("on message")
  let buffer = value.message
  let dataView = new DataView(buffer)
  let str = ""
  for (let i = 0; i < dataView.byteLength; ++i) {
    str += String.fromCharCode(dataView.getUint8(i))
  }
  console.log("on connect received:" + str)
});
tcp.on('connect', () => {
  console.log("on connect")
});
tcp.on('close', () => {
  console.log("on close")
});

// 绑定本地IP地址和端口。
let bindAddress = {
  address: '192.168.xx.xx',
  port: 1234, // 绑定端口,如1234
  family: 1
};
tcp.bind(bindAddress, err => {
  if (err) {
    console.log('bind fail');
    return;
  }
  console.log('bind success');

  // 连接到指定的IP地址和端口。
  let connectAddress = {
    address: '192.168.xx.xx',
    port: 5678, // 连接端口,如5678
    family: 1
  };
  tcp.connect({
    address: connectAddress, timeout: 6000
  }, err => {
    if (err) {
      console.log('connect fail');
      return;
    }
    console.log('connect success');

    // 发送数据
    tcp.send({
      data: 'Hello, server!'
    }, err => {
      if (err) {
        console.log('send fail');
        return;
      }
      console.log('send success');
    })
  });
});

// 连接使用完毕后,主动关闭。取消相关事件的订阅。
setTimeout(() => {
  tcp.close((err) => {
    console.log('close socket.')
  });
  tcp.off('message');
  tcp.off('connect');
  tcp.off('close');
}, 30 * 1000);
```
Z
zengyawen 已提交
169

X
xujie 已提交
170 171 172 173 174 175 176 177
## 应用通过TCP Socket Server进行数据传输

### 开发步骤

服务端TCP Socket流程:

1. import需要的socket模块。
2. 创建一个TCPSocketServer连接,返回一个TCPSocketServer对象。
X
xujie 已提交
178 179 180 181 182 183
3. 绑定本地IP地址和端口,监听并接受与此套接字建立的客户端TCPSocket连接。
4. 订阅TCPSocketServer的connect事件,用于监听客户端的连接状态。
5. 客户端与服务端建立连接后,返回一个TCPSocketConnection对象,用于与客户端通信。
6. 订阅TCPSocketConnection相关的事件,通过TCPSocketConnection向客户端发送数据。
7. 主动关闭与客户端的连接。
8. 取消TCPSocketConnection和TCPSocketServer相关事件的订阅。
X
xujie 已提交
184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206

```js
import socket from '@ohos.net.socket'

// 创建一个TCPSocketServer连接,返回一个TCPSocketServer对象。
let tcpServer = socket.constructTCPSocketServerInstance();

// 绑定本地IP地址和端口,进行监听
tcpServer.listen({ address: "192.168.xx.xxx", port: xxxx, family: 1 }, err => {
  if (err) {
    console.log("listen fail");
    return;
  }
  console.log("listen success");
})

// 订阅TCPSocketServer的connect事件
tcpServer.on('connect', function(client) {
  // 订阅TCPSocketConnection相关的事件
  client.on('close', () => {
    console.log("on close success");
  });
  client.on('message', function(value) {
X
xujie 已提交
207 208 209 210 211 212 213
    let buffer = value.message;
    let dataView = new DataView(buffer);
    let str = "";
    for (let i = 0; i < dataView.byteLength; ++i) {
      str += String.fromCharCode(dataView.getUint8(i));
    }
    console.log("received message--:" + str);
X
xujie 已提交
214 215 216 217 218 219
    console.log("received address--:" + value.remoteInfo.address);
    console.log("received family--:" + value.remoteInfo.family);
    console.log("received port--:" + value.remoteInfo.port);
    console.log("received size--:" + value.remoteInfo.size);
  });

X
xujie 已提交
220
  // 向客户端发送数据
X
xujie 已提交
221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247
  client.send({data: 'Hello, client!'}, err => {
  if (err) {
    console.log('send fail');
    return;
  }
  console.log('send success');
  });

  // 关闭与客户端的连接
  client.close(err => {
    if (err) {
      console.log('close fail');
      return;
    }
    console.log('close success');
  });

  // 取消TCPSocketConnection相关的事件订阅
  setTimeout(() => {
    client.off('message');
    client.off('close');
  }, 10 * 1000);
});

// 取消TCPSocketServer相关的事件订阅
setTimeout(() => {
  tcpServer.off('connect');
X
xujie 已提交
248
}, 30 * 1000);
X
xujie 已提交
249 250
```

Z
zhanghaifeng 已提交
251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271
## 应用通过TLS Socket进行加密数据传输

### 开发步骤

客户端TLS Socket流程:

1. import需要的socket模块。

2. 绑定服务器IP和端口号。

3. 双向认证上传客户端CA证书及数字证书;单向认证上传客户端CA证书。

4. 创建一个TLSSocket连接,返回一个TLSSocket对象。

5. (可选)订阅TLSSocket相关的订阅事件。

6. 发送数据。

7. TLSSocket连接使用完毕后,主动关闭。

```js
Y
Yangys 已提交
272
import socket from '@ohos.net.socket'
Z
zhanghaifeng 已提交
273

Y
Yangys 已提交
274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295
// 创建一个(双向认证)TLS Socket连接,返回一个TLS Socket对象。
let tlsTwoWay = socket.constructTLSSocketInstance();

// 订阅TLS Socket相关的订阅事件
tlsTwoWay.on('message', value => {
  console.log("on message")
  let buffer = value.message
  let dataView = new DataView(buffer)
  let str = ""
  for (let i = 0; i < dataView.byteLength; ++i) {
    str += String.fromCharCode(dataView.getUint8(i))
  }
  console.log("on connect received:" + str)
});
tlsTwoWay.on('connect', () => {
  console.log("on connect")
});
tlsTwoWay.on('close', () => {
  console.log("on close")
});

// 绑定本地IP地址和端口。
Y
Yangys 已提交
296
tlsTwoWay.bind({ address: '192.168.xxx.xxx', port: xxxx, family: 1 }, err => {
Y
Yangys 已提交
297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367
  if (err) {
    console.log('bind fail');
    return;
  }
  console.log('bind success');
});

// 设置通信过程中使用参数
let options = {
  ALPNProtocols: ["spdy/1", "http/1.1"],

  // 连接到指定的IP地址和端口。
  address: {
    address: "192.168.xx.xxx",
    port: xxxx, // 端口
    family: 1,
  },

  // 设置用于通信过程中完成校验的参数。
  secureOptions: {
    key: "xxxx",                            // 密钥
    cert: "xxxx",                           // 数字证书
    ca: ["xxxx"],                           // CA证书
    passwd: "xxxx",                         // 生成密钥时的密码
    protocols: [socket.Protocol.TLSv12],    // 通信协议
    useRemoteCipherPrefer: true,            // 是否优先使用对端密码套件
    signatureAlgorithms: "rsa_pss_rsae_sha256:ECDSA+SHA256",    // 签名算法
    cipherSuite: "AES256-SHA256",           // 密码套件
  },
};

// 建立连接
tlsTwoWay.connect(options, (err, data) => {
  console.error(err);
  console.log(data);
});

// 连接使用完毕后,主动关闭。取消相关事件的订阅。
tlsTwoWay.close((err) => {
  if (err) {
    console.log("close callback error = " + err);
  } else {
    console.log("close success");
  }
  tlsTwoWay.off('message');
  tlsTwoWay.off('connect');
  tlsTwoWay.off('close');
});

// 创建一个(单向认证)TLS Socket连接,返回一个TLS Socket对象。
let tlsOneWay = socket.constructTLSSocketInstance(); // One way authentication

// 订阅TLS Socket相关的订阅事件
tlsTwoWay.on('message', value => {
  console.log("on message")
  let buffer = value.message
  let dataView = new DataView(buffer)
  let str = ""
  for (let i = 0; i < dataView.byteLength; ++i) {
    str += String.fromCharCode(dataView.getUint8(i))
  }
  console.log("on connect received:" + str)
});
tlsTwoWay.on('connect', () => {
  console.log("on connect")
});
tlsTwoWay.on('close', () => {
  console.log("on close")
});

// 绑定本地IP地址和端口。
Y
Yangys 已提交
368
tlsOneWay.bind({ address: '192.168.xxx.xxx', port: xxxx, family: 1 }, err => {
Y
Yangys 已提交
369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405
  if (err) {
    console.log('bind fail');
    return;
  }
  console.log('bind success');
});

// 设置通信过程中使用参数
let oneWayOptions = {
  address: {
    address: "192.168.xxx.xxx",
    port: xxxx,
    family: 1,
  },
  secureOptions: {
    ca: ["xxxx", "xxxx"],            // CA证书
    cipherSuite: "AES256-SHA256",   // 密码套件
  },
};

// 建立连接
tlsOneWay.connect(oneWayOptions, (err, data) => {
  console.error(err);
  console.log(data);
});

// 连接使用完毕后,主动关闭。取消相关事件的订阅。
tlsTwoWay.close((err) => {
  if (err) {
    console.log("close callback error = " + err);
  } else {
    console.log("close success");
  }
  tlsTwoWay.off('message');
  tlsTwoWay.off('connect');
  tlsTwoWay.off('close');
});
Z
zhanghaifeng 已提交
406 407
```

Z
zengyawen 已提交
408
## 相关实例
Z
zhanghaifeng 已提交
409

Z
zengyawen 已提交
410
针对Socket连接开发,有以下相关实例可供参考:
Y
Yangys 已提交
411

412
- [网络管理-Socket连接(ArkTS)(API9)](https://gitee.com/openharmony/applications_app_samples/tree/master/code/BasicFeature/Connectivity/Socket)