写点什么

TCP socket 和 web socket 的区别

作者:Jerry Wang
  • 2022 年 1 月 13 日
  • 本文字数:1468 字

    阅读完需:约 5 分钟

TCP socket和web socket的区别

小编先习惯性的看了下某中文百科网站对 Web Socket 的介绍,觉得很囧。如果大家按照这个答案去参加 BAT 等互联网公司的前端开发面试,估计会被鄙视。



还是让我们阅读一些英文材料吧。


让我们直接看 stackoverflow 上的原文,然后翻译:



原文地址:


https://stackoverflow.com/questions/16945345/differences-between-tcp-sockets-and-web-sockets-one-more-time


这个讨论有超过 8 万的阅读量。



首先我们来阅读这段有 166 个赞的回答:



When you send bytes from a buffer with a normal TCP socket, the send function returns the number of bytes of the buffer that were sent.当我们向一个通常的 TCP 套接字发送一段来自内存 buffer 中的字节数据时,send 系统调用返回的是实际发送的字节数。If it is a non-blocking socket or a non-blocking send then the number of bytes sent may be less than the size of the buffer.


如果发送数据的目的方套接字是一个非阻塞套接字或者是对写操作非阻塞的套接字,那么 send 返回的已发送字节数可能小于 buffer 中待发送字节数。


If it is a blocking socket or blocking send, then the number returned will match the size of the buffer but the call may block.如果是阻塞套接字,两者会相等,因为顾名思义,如果 send 系统调用没有把所有待发送数据全部发送,则 API 调用不会返回。


With WebSockets, the data that is passed to the send method is always either sent as a whole "message" or not at all. Also, browser WebSocket implementations do not block on the send call.


而 Web socket 和 TCP socket 的区别,从发送的数据来看,不再是一系列字节,而是按照一个完整的"消息体"发送出去的,这个"消息体"无法进一步再分割,要么全部发送成功,要么压根就不发送,不存在像 TCP 套接字非阻塞操作那样出现部分发送的情况。换言之,Web Socket 里对套接字的操作是非阻塞操作。



这个区别在维基百科上也有清晰阐述:Websocket differs from TCP in that it enables a stream of messages instead of a stream of bytes


再来看接收方的区别。原文:But there are more important differences on the receiving side of things. When the receiver does a recv (or read) on a TCP socket, there is no guarantee that the number of bytes returned correspond to a single send (or write) on the sender side. It might be the same, it may be less (or zero) and it might even be more (in which case bytes from multiple send/writes are received). With WebSockets, the receipt of a message is event driven (you generally register a message handler routine), and the data in the event is always the entire message that the other side sent.


同理,在 TCP 套接字的场景下,接收方从 TCP 套接字读取的字节数,并不一定等于发送方调用 send 所发送的字节数。而 WebSocket 呢?WebSocket 的接收方从套接字读取数据,根本不是像 TCP 套接字那样直接用 recv/read 来读取, 而是采取事件驱动机制。即应用程序注册一个事件处理函数,当 web socket 的发送方发送的数据在接收方应用从内核缓冲区拷贝到应用程序层已经处于可用状态时 ,应用程序注册的事件处理函数以回调(callback)的方式被调用。


看个例子:


我通过 WebSocket 发送一个消息“汪子熙”:



在调试器里看到的这个字符串作为回调函数的输入参数注入到函数体内:



Chrome 开发者工具里观察到的 WebSocket 消息体:



下次面试被面试官问到 TCP 和 WebSocket 套接字的区别,相信大家应该能够知道如何回答了。

发布于: 刚刚阅读数: 2
用户头像

Jerry Wang

关注

个人微信公众号:汪子熙 2017.12.03 加入

SAP成都研究院开发专家,SAP社区导师,SAP中国技术大使。

评论

发布
暂无评论
TCP socket和web socket的区别