欢迎来到天天文库
浏览记录
ID:47025470
大小:58.59 KB
页数:74页
时间:2019-06-28
《Muduo网络库源码分析之对socket及其相关操作的封装》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、主要涉及到的类和实现文件有:1.Endian.h 提供了字节序转换的函数。2.Socket.h/Socket.cc socketfd的封装,提供了绑定地址、开始listen、接受连接等操作,并可设置套接字选项。3.InetAddress.h/InetAddress.cc 套接字地址的封装,提供了多种方式初始化一个地址,还提供方法从地址中拿到ip和port。4.SocketsOps.h/SocketsOps.cc 封装了socket相关的一些操作,提供给Socket和InetAddress用。这部分就是基本的
2、TCP套接字编程和套接字选项的知识,代码逻辑也很简单,推荐看下UNP卷一的相关章节。下面逐一看下这几个相关的文件。字节序转换部分(Endian.h)#ifndefMUDUO_NET_ENDIAN_H#defineMUDUO_NET_ENDIAN_H#include#includenamespacemuduo{namespacenet{namespacesockets{//theinlineassemblercodemakestypeblur,//sowedisable
3、warningsforawhile.#ifdefined(__clang__)
4、
5、__GNUC_PREREQ(4,6)#pragmaGCCdiagnosticpush#endif#pragmaGCCdiagnosticignored"-Wconversion"#pragmaGCCdiagnosticignored"-Wold-style-cast"/*uint64_t的整形数字由机器字节序转化为网络字节序*/inlineuint64_thostToNetwork64(uint64_thost64){retu
6、rnhtobe64(host64);}/*uint32_t的整形数字由机器字节序转化为网络字节序*/inlineuint32_thostToNetwork32(uint32_thost32){returnhtobe32(host32);}/*uint16_t的整形数字由机器字节序转化为网络字节序*/inlineuint16_thostToNetwork16(uint16_thost16){returnhtobe16(host16);}/*uint64_t的整形数字由网络字节序转化为机器字节序*/inline
7、uint64_tnetworkToHost64(uint64_tnet64){returnbe64toh(net64);}/*uint32_t的整形数字由网络字节序转化为机器字节序*/inlineuint32_tnetworkToHost32(uint32_tnet32){returnbe32toh(net32);}/*uint16_t的整形数字由网络字节序转化为机器字节序*/inlineuint16_tnetworkToHost16(uint16_tnet16){returnbe16toh(net16);
8、}#ifdefined(__clang__)
9、
10、__GNUC_PREREQ(4,6)#pragmaGCCdiagnosticpop#else#pragmaGCCdiagnosticwarning"-Wconversion"#pragmaGCCdiagnosticwarning"-Wold-style-cast"#endif}}}#endif//MUDUO_NET_ENDIAN_H·1·2·3·4·5·6·7·8·9·10·11·12·13·14·15·16·17·18·19·20·21·22·23·24·2
11、5·26·27·28·29·30·31·32·33·34·35·36·37·38·39·40·41·42·43·44·45·46·47·48·49·50·51·52·53·54·55·56·57·58·59·60·61·62·63·64·65·66·67SocketSocket.h#ifndefMUDUO_NET_SOCKET_H#defineMUDUO_NET_SOCKET_H#include//structtcp_infoisin12、>structtcp_info;namespacemuduo{//////TCPnetworking.///namespacenet{classInetAddress;///Itclosesthesockfdwhendesctructs./*sock描述符fd的封装,实现了绑定了地址,开始监听并接受连接*/classSocket:boost::noncopyable{public:explicitSocket(i
12、>structtcp_info;namespacemuduo{//////TCPnetworking.///namespacenet{classInetAddress;///Itclosesthesockfdwhendesctructs./*sock描述符fd的封装,实现了绑定了地址,开始监听并接受连接*/classSocket:boost::noncopyable{public:explicitSocket(i
此文档下载收益归作者所有