9. 从零用Rust编写正反向代理, HTTP2改造篇之HPACK示例, 了解http2头信息如何处理

wmproxy

wmproxy是由Rust编写,已实现http/https代理,socks5代理, 反向代理,静态文件服务器,内网穿透,配置热更新等, 后续将实现websocket代理等,同时会将实现过程分享出来, 感兴趣的可以一起造个轮子法

项目 ++wmproxy++

gite: https://gitee.com/tickbh/wmproxy

github: https://github.com/tickbh/wmproxy

关于HPACK相关数据的示例

长度编码的示例,用5位的前缀示例

  • 将10进行编码,10小于2^5-1,故
  0   1   2   3   4   5   6   7
+---+---+---+---+---+---+---+---+
| X | X | X | 0 | 1 | 0 | 1 | 0 |   10 stored on 5 bits
+---+---+---+---+---+---+---+---+
  • 将1337进行编码
  1. 1337大于2^5-1,故前5位填充
  0   1   2   3   4   5   6   7
+---+---+---+---+---+---+---+---+
| X | X | X | 1 | 1 | 1 | 1 | 1 |  31
+---+---+---+---+---+---+---+---+
  1. 1337 - 31 = 1306,大于128,故需要二次填充,用1306 mod 128 = 21,首位填充1,故8位填充为,当前偏移值为7
  0   1   2   3   4   5   6   7
+---+---+---+---+---+---+---+---+
| 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 |  26
+---+---+---+---+---+---+---+---+
  1. 对1301-21=1280,1280 / 128 = 10, 10 < 128,故已经完成,首位填0
  0   1   2   3   4   5   6   7
+---+---+---+---+---+---+---+---+
| 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 |  10
+---+---+---+---+---+---+---+---+

最终的填充值:

  0   1   2   3   4   5   6   7
+---+---+---+---+---+---+---+---+
| X | X | X | 1 | 1 | 1 | 1 | 1 |  Prefix = 31, I = 1306
| 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 |  1306>=128, encode(154), I=1306/128
| 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 |  10<128, encode(10), done
+---+---+---+---+---+---+---+---+

头部编码示例

在静态列表中索引

以下待索引的值

:method: GET

十六进制表示值82,二进制表示10000010,表示取静态表2的值,查表为(:method, GET)

不在列表中,但请求索引,未使用HUFFMAN

以下示例

custom-key: custom-header

十六进制表示

400a 6375 7374 6f6d 2d6b 6579 0d63 7573 | @.custom-key.cus
746f 6d2d 6865 6164 6572                | tom-header

解码过程

40                                      | == 01开头请求索引 ==
0a                                      |   name (长度 10)
6375 7374 6f6d 2d6b 6579                | custom-key
0d                                      |   value (长度 13)
6375 7374 6f6d 2d68 6561 6465 72        | custom-header| -> custom-key:|   custom-header

动态表 (解码之后):

[ 1] (占用 55) custom-key: custom-header
占用长度: 10+13+32=55

名字在列表中,但不索引,未使用HUFFMAN

以下示例

:path: /sample/path

十六进制表示

040c 2f73 616d 706c 652f 7061 7468      | ../sample/path

解码过程

04                                      | == 0000开头,请求不索引 ==|   name从索引取 (idx = 4)|   值为:path
0c                                      |   value (长度12)
2f73 616d 706c 652f 7061 7468           | /sample/path| -> :path: /sample/path
永不索引,未使用HUFFMAN

以下示例

password: secret

十六进制表示

1008 7061 7373 776f 7264 0673 6563 7265 | ..password.secre
74                                      | t

解码过程

10                                      | == 0001开头不索引 ==
08                                      |   name (长度8)
7061 7373 776f 7264                     | password
06                                      |   value (长度6)
7365 6372 6574                          | secret| -> password: secret

完整的请求示例,不使用HUFFMAN

以下几个示例将连接请求,后续的会用到前面的动态列表

第一次请求. 示例如下

:method: GET
:scheme: http
:path: /
:authority: www.example.com

十六进制表示

8286 8441 0f77 7777 2e65 7861 6d70 6c65 | ...A.www.example
2e63 6f6d                               | .com

解码过程


82                                      | == Indexed - 静态表 ==|   idx = 2| -> :method: GET
86                                      | == Indexed - 静态表 ==|   idx = 6| -> :scheme: http
84                                      | == Indexed - 静态表 ==|   idx = 4| -> :path: /
41                                      | == 01开头请求索引 indexed ==|   Indexed name (idx = 1)|     :authority
0f                                      |   Literal value (长度15)
7777 772e 6578 616d 706c 652e 636f 6d   | www.example.com| -> :authority: |   www.example.com

动态列表 (解码后):

[ 1->62] (s = 57) :authority: www.example.com
列表长度: 57

第二次请求. 示例如下,新加了cache-control字段,其它和第一次一样

:method: GET
:scheme: http
:path: /
:authority: www.example.com
cache-control: no-cache

十六进制表示

8286 84be 5808 6e6f 2d63 6163 6865      | ....X.no-cache

解码过程

82                                      | == Indexed - 静态表 ==|   idx = 2| -> :method: GET
86                                      | == Indexed - 静态表 ==|   idx = 6| -> :scheme: http
84                                      | == Indexed - 静态表 ==|   idx = 4| -> :path: /
be                                      | == Indexed - 动态表,索引值62及以上的为动态表 ==|   idx = 62| -> :authority:|   www.example.com
58                                      | == Literal indexed ==|   Indexed name (idx = 24)|     cache-control
08                                      |   Literal value (8)
6e6f 2d63 6163 6865                     | no-cache| -> cache-control: no-cache

动态列表 (解码后):

[ 1->62] (s = 53) cache-control: no-cache
[ 2->63] (s = 57) :authority: www.example.com
总长度: 110

第三次请求. 示例如下

:method: GET
:scheme: https
:path: /index.html
:authority: www.example.com
custom-key: custom-value

十六进制表示

8287 85bf 400a 6375 7374 6f6d 2d6b 6579 | ....@.custom-key
0c63 7573 746f 6d2d 7661 6c75 65        | .custom-value

解码过程

82                                      | == Indexed - 静态表 ==|   idx = 2| -> :method: GET
87                                      | == Indexed - 静态表 ==|   idx = 7| -> :scheme: https
85                                      | == Indexed - 静态表 ==|   idx = 5| -> :path: /index.html
bf                                      | == Indexed - 动态表 ==|   idx = 63| -> :authority:|   www.example.com
40                                      | == Literal indexed ==
0a                                      |   Literal name (长度10)
6375 7374 6f6d 2d6b 6579                | custom-key
0c                                      |   Literal value (长度12)
6375 7374 6f6d 2d76 616c 7565           | custom-value| -> custom-key:|   custom-value

动态列表 (解码后):

[ 1->62] (s = 54) custom-key: custom-value
[ 2->63] (s = 53) cache-control: no-cache
[ 3->64] (s = 57) :authority: www.example.com
总长度: 164

完整的请求示例(和上述例子一模一样,但是使用HUFFMAN)

以下几个示例将连接请求,后续的会用到前面的动态列表

第一次请求. 示例如下

:method: GET
:scheme: http
:path: /
:authority: www.example.com

十六进制表示

8286 8441 8cf1 e3c2 e5f2 3a6b a0ab 90f4 | ...A......:k....
ff                                      | .

比之前少了3字节

解码过程

82                                      | == Indexed - 静态表 ==|   idx = 2| -> :method: GET
86                                      | == Indexed - 静态表 ==|   idx = 6| -> :scheme: http
84                                      | == Indexed - 静态表 ==|   idx = 4| -> :path: /
41                                      | == Literal indexed ==|   Indexed name (idx = 1)|     :authority
8c                                      |   Literal value (长度12)|     Huffman encoded:
f1e3 c2e5 f23a 6ba0 ab90 f4ff           | .....:k.....|     Decoded:| www.example.com| -> :authority:|   www.example.com

动态列表 (解码后):

[  1->62] (s =  57) :authority: www.example.com列表长度:  57

第二次请求. 示例如下,新加了cache-control字段,其它和第一次一样

:method: GET
:scheme: http
:path: /
:authority: www.example.com
cache-control: no-cache

十六进制表示

8286 84be 5886 a8eb 1064 9cbf           | ....X....d..

比之前少了2字节

解码过程

82                                      | == Indexed - 静态表 ==|   idx = 2| -> :method: GET
86                                      | == Indexed - 静态表 ==|   idx = 6| -> :scheme: http
84                                      | == Indexed - 静态表 ==|   idx = 4| -> :path: /
be                                      | == Indexed - 动态表 ==|   idx = 62| -> :authority:|   www.example.com
58                                      | == Literal indexed ==|   Indexed name (idx = 24)|     cache-control
86                                      |   Literal value (长度6)|     Huffman encoded:
a8eb 1064 9cbf                          | ...d..|     Decoded:| no-cache| -> cache-control: no-cache

动态列表 (解码后):

[  1->62] (s =  53) cache-control: no-cache
[  2->63] (s =  57) :authority: www.example.com列表长度: 110

第三次请求. 示例如下

:method: GET
:scheme: https
:path: /index.html
:authority: www.example.com
custom-key: custom-value

十六进制表示

8287 85bf 4088 25a8 49e9 5ba9 7d7f 8925 | ....@.%.I.[.}..%
a849 e95b b8e8 b4bf                     | .I.[....

比之前少了5字节

解码过程

82                                      | == Indexed - 静态表 ==|   idx = 2| -> :method: GET
87                                      | == Indexed - 静态表 ==|   idx = 7| -> :scheme: https
85                                      | == Indexed - 静态表 ==|   idx = 5| -> :path: /index.html
bf                                      | == Indexed - 动态表 ==|   idx = 63| -> :authority:|   www.example.com
40                                      | == Literal indexed ==
88                                      |   Literal name (长度8)|     Huffman encoded:
25a8 49e9 5ba9 7d7f                     | %.I.[.}.|     Decoded:| custom-key
89                                      |   Literal value (长度9)|     Huffman encoded:
25a8 49e9 5bb8 e8b4 bf                  | %.I.[....|     Decoded:| custom-value| -> custom-key:|   custom-value

动态列表 (解码后):

[  1->62] (s =  54) custom-key: custom-value
[  2->63] (s =  53) cache-control: no-cache
[  3->64] (s =  57) :authority: www.example.com总长度: 164

HUFFMAN编码在于首次如果数据较大的时候优势会更加明显,如果数据较小,或者在后续的时候与普通编码命中索引时基本一致。

完整的返回示例(HUFFMAN)

HUFFMAN与普通的差别在于字符串编解码时的差别,这里只介绍一种,并且设置SETTINGS_HEADER_TABLE_SIZE为256

以下几个示例将连接请求,后续的会用到前面的动态列表

第一次返回. 示例如下

:status: 302
cache-control: private
date: Mon, 21 Oct 2013 20:13:21 GMT
location: https://www.example.com

十六进制表示

4882 6402 5885 aec3 771a 4b61 96d0 7abe | H.d.X...w.Ka..z.
9410 54d4 44a8 2005 9504 0b81 66e0 82a6 | ..T.D. .....f...
2d1b ff6e 919d 29ad 1718 63c7 8f0b 97c8 | -..n..)...c.....
e9ae 82ae 43d3                          | ....C.

解码过程


48                                      | == Literal indexed ==|   Indexed name (idx = 8)|     :status
82                                      |   Literal value (长度2)|     Huffman encoded:
6402                                    | d.|     Decoded:| 302| -> :status: 302
58                                      | == Literal indexed ==|   Indexed name (idx = 24)|     cache-control
85                                      |   Literal value (长度5)|     Huffman encoded:
aec3 771a 4b                            | ..w.K|     Decoded:| private| -> cache-control: private
61                                      | == Literal indexed ==|   Indexed name (idx = 33)|     date
96                                      |   Literal value (长度22)|     Huffman encoded:
d07a be94 1054 d444 a820 0595 040b 8166 | .z...T.D. .....f
e082 a62d 1bff                          | ...-..|     Decoded:| Mon, 21 Oct 2013 20:13:21| GMT| -> date: Mon, 21 Oct 2013|   20:13:21 GMT
6e                                      | == Literal indexed ==|   Indexed name (idx = 46)|     location
91                                      |   Literal value (长度17)|     Huffman encoded:
9d29 ad17 1863 c78f 0b97 c8e9 ae82 ae43 | .)...c.........C
d3                                      | .|     Decoded:| https://www.example.com| -> location:|   https://www.example.com

动态列表 (解码后):

[  1->62] (s =  63) location: https://www.example.com
[  2->63] (s =  65) date: Mon, 21 Oct 2013 20:13:21 GMT
[  3->64] (s =  52) cache-control: private
[  4->65] (s =  42) :status: 302Table size: 222

第二次请求. 示例如下,只是状态码发生了变更

:status: 307
cache-control: private
date: Mon, 21 Oct 2013 20:13:21 GMT
location: https://www.example.com

十六进制表示

4883 640e ffc1 c0bf                     | H.d.....

解码过程


48                                      | == Literal indexed ==|   Indexed name (idx = 8)|     :status
83                                      |   Literal value (长度3)|     Huffman encoded:
640e ff                                 | d..|     Decoded:| 307| - evict: :status: 302| -> :status: 307
c1                                      | == Indexed - Add ==|   idx = 65| -> cache-control: private
c0                                      | == Indexed - Add ==|   idx = 64| -> date: Mon, 21 Oct 2013|   20:13:21 GMT
bf                                      | == Indexed - Add ==|   idx = 63| -> location:|   https://www.example.com

动态列表 (解码后):

[  1->62] (s =  42) :status: 307
[  2->63] (s =  63) location: https://www.example.com
[  3->64] (s =  65) date: Mon, 21 Oct 2013 20:13:21 GMT
[  4->65] (s =  52) cache-control: privateTable size: 222

由于(:status, 302)的长度为42,且42+222=264>256,所以舍弃最大值

第三次请求. 示例如下

:status: 200
cache-control: private
date: Mon, 21 Oct 2013 20:13:22 GMT
location: https://www.example.com
content-encoding: gzip
set-cookie: foo=ASDJKHQKBZXOQWEOPIUAXQWEOIU; max-age=3600; version=1

十六进制表示

88c1 6196 d07a be94 1054 d444 a820 0595 | ..a..z...T.D. ..
040b 8166 e084 a62d 1bff c05a 839b d9ab | ...f...-...Z....
77ad 94e7 821d d7f2 e6c7 b335 dfdf cd5b | w..........5...[
3960 d5af 2708 7f36 72c1 ab27 0fb5 291f | 9`..'..6r..'..).
9587 3160 65c0 03ed 4ee5 b106 3d50 07   | ..1`e...N...=P.

比之前少了5字节

解码过程


88                                      | == Indexed - 静态表 ==|   idx = 8| -> :status: 200
c1                                      | == Indexed - 动态表 ==|   idx = 65| -> cache-control: private
61                                      | == Literal indexed ==|   Indexed name (idx = 33)|     date
96                                      |   Literal value (长度22)|     Huffman encoded:
d07a be94 1054 d444 a820 0595 040b 8166 | .z...T.D. .....f
e084 a62d 1bff                          | ...-..|     Decoded:| Mon, 21 Oct 2013 20:13:22| GMT| - evict: cache-control:|   private| -> date: Mon, 21 Oct 2013 |   20:13:22 GMT
c0                                      | == Indexed - Add ==|   idx = 64| -> location:|   https://www.example.com
5a                                      | == Literal indexed ==|   Indexed name (idx = 26)|     content-encoding
83                                      |   Literal value (长度3)|     Huffman encoded:
9bd9 ab                                 | ...|     Decoded:| gzip| - evict: date: Mon, 21 Oct|    2013 20:13:21 GMT| -> content-encoding: gzip
77                                      | == Literal indexed ==|   Indexed name (idx = 55)|     set-cookie
ad                                      |   Literal value (长度45)|     Huffman encoded:
94e7 821d d7f2 e6c7 b335 dfdf cd5b 3960 | .........5...[9`
d5af 2708 7f36 72c1 ab27 0fb5 291f 9587 | ..'..6r..'..)...
3160 65c0 03ed 4ee5 b106 3d50 07        | 1`e...N...=P.|     Decoded:| foo=ASDJKHQKBZXOQWEOPIUAXQ| WEOIU; max-age=3600; versi| on=1| - evict: location:|   https://www.example.com| - evict: :status: 307| -> set-cookie: foo=ASDJKHQ|   KBZXOQWEOPIUAXQWEOIU; ma|   x-age=3600; version=1

动态列表 (解码后):

[  1->62] (s =  98) set-cookie: foo=ASDJKHQKBZXOQWEOPIUAXQWEOIU;max-age=3600; version=1
[  2->63] (s =  52) content-encoding: gzip
[  3->64] (s =  65) date: Mon, 21 Oct 2013 20:13:22 GMT
总长度: 215

动态列表保留着一个最大的缓存大小值,每一个键值对的计算为name的字节数+value的字节数+32为确定的大小值。超出大小部分则丢弃不缓存,默认大小为4096。

总结

HPACK管理着HTTP2的头部的协议部分,有着高压缩比和重复请求的高复用性,双方编码解码需要各自维持一份动态表,动态根据处理数据来动态拓展,保证双方维持的表一模一样。从而保证ID索引不会乱。Huffman编码把头里面需要用到字符串的数据进行进一步的压缩,相对来说整个过程复杂度比HTTP1高很多,但相对的对使用者完全透明,在不影响其使用的情况下提高传输效率,并减少带宽的使用量。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/207382.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

vue3,元素可拖拽,自定义指令,鼠标以及手指事件的写法不一样

使用很简单&#xff0c;直接 <div v-drag><div class"header"></div><div class"content"></div> </div>// 自定义指令 —— 拖动div const vDrag {// 在绑定元素的父组件// 及他自己的所有子节点都挂载完成后调用m…

docker容器_自定义上传jenkins镜像(Dockerfile实现)

1.创建jenkins目录&#xff0c;并上传相应的包 mkdir /jenkins/ 2.创建一个Dockerfile文件 FROM daocloud.io/library/centos:7#把当前目录下的jenkins.war包传到内部容器的/ 下 ADD ./jenkins.war /#把当前目录下的jdk传到内部容器的/opt/,并解压 ADD ./jdk-11.0.19_linu…

程序解释与编译

▶1.程序的解释执行方式 程序语言强写的计策机指令序列称为“源程序”,计算机并不能直接执行用高级语言编写的源程序&#xff0c;源程序必须通过“翻译程序”翻译成机器指令的形式&#xff0c;计算机才能项别和执行。源程序的翻译有两种方式&#xff1a;解释执行和编译执行。不…

网络编程基础api

1. IP 协议 1.1 IP 分片 &#xff08;1&#xff09;IP 分片和重组主要依靠 IP 头部三个字段&#xff1a;数据报标识、标志和片偏移 以太网帧的 MTU 是 1500 字节&#xff1b; 一个每个分片都有自己的 IP 头部&#xff0c;它们都具有相同的标识值&#xff0c;有不同的片偏移…

css 十字分割线(含四等分布局)

核心技术 伪类选择器含义li:nth-child(2)第2个 lili:nth-child(n)所有的lili:nth-child(2n)所有的第偶数个 lili:nth-child(2n1)所有的第奇数个 lili:nth-child(-n5)前5个 lili:nth-last-child(-n5)最后5个 lili:nth-child(7n)选中7的倍数 border-right: 3px solid white;borde…

EasyExcel-最简单的读写excel工具类

前言&#xff1a; easyExcel 的官网文档给的示例非常全&#xff0c;可以参考https://easyexcel.opensource.alibaba.com/docs/current/quickstart/read 在此我贴出自己的工具类&#xff0c;可以直接用 导包 <dependency><groupId>com.alibaba</groupId><…

机器学习第15天:GBDT模型

☁️主页 Nowl &#x1f525;专栏《机器学习实战》 《机器学习》 &#x1f4d1;君子坐而论道&#xff0c;少年起而行之 ​​ 文章目录 GBDT模型介绍 Boosting 残差 GBDT的缺点 python代码实现 代码 模型参数解释 结语 GBDT模型介绍 GBDT&#xff08;Gradient Boos…

vivado $clog2函数

对于.v文件在vivado中是不支持&#xff0c;但是可以修改为.sv或更改文件属性使用sytemverilog来支持。 /*** Math function: $clog2 as specified in Verilog-2005** clog2 0 for value 0* ceil(log2(value)) for value > 1** This implementatio…

php+mysql期末作业小项目

目录 1、登录界面 2、注册界面 3、主界面 4、学生表界面 5 、查询学生界面​编辑 6、修改学生信息界面​编辑 7、删除学生信息界面 8、添加学生信息界面 9、后台数据库​编辑 一个简单的php➕mysql项目学生信息管理系统&#xff0c;用于广大学子完成期末作业的参考&…

测试架构工程师需要具备哪些能力 ?

前言 相比于我们常见的研发架构师&#xff0c;测试架构师是近几年才出现的一个岗位&#xff0c;当然岗位title其实没有特殊的含义&#xff0c;在我看来测试架构师其实更像对某一类人的抽象称呼和对其复合能力的期待及认可。 在聊这篇文章的主题之前&#xff0c;先来看这样一个…

算法训练营Day4(链表)

语言 采用的Java语言&#xff0c;一些分析也是用于Java&#xff0c;请注意。 24. 两两交换链表中的节点 24. 两两交换链表中的节点 - 力扣&#xff08;LeetCode&#xff09; 解题 这道题就是考验链表的基础操作&#xff0c;但是有个语言方面的知识需要去掌握&#xff0c;就是|…

TCP通信

第二十一章 网络通信 本章节主要讲解的是TCP和UDP两种通信方式它们都有着自己的优点和缺点 这两种通讯方式不通的地方就是TCP是一对一通信 UDP是一对多的通信方式 接下来会一一讲解 TCP通信 TCP通信方式呢 主要的通讯方式是一对一的通讯方式&#xff0c;也有着优点和缺点…

如何在Android平板上远程连接Ubuntu服务器使用code-server代码开发

目录 1.ubuntu本地安装code-server 2. 安装cpolar内网穿透 3. 创建隧道映射本地端口 4. 安卓平板测试访问 5.固定域名公网地址 6.结语 1.ubuntu本地安装code-server 准备一台虚拟机,Ubuntu或者centos都可以&#xff0c;这里以VMwhere ubuntu系统为例 下载code server服务…

el-table 表格多选(后端接口搜索分页)实现已选中的记忆功能。实现表格数据和已选数据(前端分页)动态同步更新。

实现效果&#xff1a;&#xff08;可拉代码下来看&#xff1a;vue-demo: vueDemo&#xff09; 左侧表格为点击查询调用接口查询出来的数据&#xff0c;右侧表格为左侧表格所有选择的数据&#xff0c;由前端实现分页。 两个el-table勾选数据联动更新 实现逻辑&#xff1a; el-…

低代码开发到底是补品还是垃圾食品?

2023&#xff0c;低代码彻底火了&#xff0c;甚至火到没有点相关经验&#xff0c;都不好意思出去面试的程度。 从业者对低代码的发展充满了想象&#xff0c;都认为未来低代码的商业价值不可估量。 据Gartner的最新报告显示&#xff0c;2023年全球低代码开发技术市场规模预计将…

内部文件上传以及渲染-接口API

文件上传 地址http://172.16.0.118:8090/api/pm/base/affix/upload请求类型POSTContent-Type:text/plain;charsetutf-8参数 prjData {"prjId":"", "jobId":"3031b2c8-c809-4110-8e88-22c80a9c1ec0721aca89-96a1-4346-9b6e-022331d221d1Nec…

【EMNLP 2023】面向Stable Diffusion的自动Prompt工程算法BeautifulPrompt

近日&#xff0c;阿里云人工智能平台PAI与华南理工大学朱金辉教授团队合作在自然语言处理顶级会议EMNLP2023上发表了BeautifulPrompt的深度生成模型&#xff0c;可以从简单的图片描述中生成高质量的提示词&#xff0c;从而使文生图模型能够生成更美观的图像。BeautifulPrompt通…

【MATLAB】MODWT分解+FFT+HHT组合算法

有意向获取代码&#xff0c;请转文末观看代码获取方式~也可转原文链接获取~ 1 基本定义 MODWT分解FFTHHT组合算法是一种综合性的信号处理方法&#xff0c;它结合了经验小波变换&#xff08;Empirical Wavelet Transform&#xff0c;EWT&#xff09;、快速傅里叶变换&#xff…

25.Oracle的回收站

oracle基础系统学习目录 01.CentOS7静默安装oracle11g 02.Oracle的启动过程 03.从简单的sql开始 04.Oracle的体系架构 05.Oracle数据库对象 06.Oracle数据备份与恢复 07.用户和权限管理 08.Oracle的表 09.Oracle表的分区 10.Oracle的同义词与序列 11.Oracle的视图 12.Oracle的…

爱智EdgerOS之深入解析如何应用爱智的视频流模块完成拉流

一、ONVIF 规范和常见视频流传输协议 ① ONVIF 规范 随着视频监控产业链的成熟&#xff0c;市面上陆陆续续出现了各式各样的网络摄像设备&#xff0c;这些设备都需要通讯协议才能进行数据传输。早期厂商都采用私有协议&#xff0c;但是现在厂商分工明确&#xff0c;有的负责生…