clang-format tools cheat sheet, this tool aim at
- keep code style consistent
- auto check and format code
clang-format tools cheat sheet, this tool aim at
i will read classic book from this month.
soft skill
[] The Pragmatic Programmer: From Journeyman to Master
the C programming language
[] the C programming language
[]
https://cmake.org/cmake/help/latest/module/FetchContent.html
https://cmake.org/cmake/help/git-stage/module/GoogleTest.html
xUnit architecture
International Software Testing Qualifications Board
ctest 是 命令
1 | $ cmake -S . -B build |
Google 以前用来代表 test case 的术语
TEST() 代表 test case, Exercise a particular program path with specific input values and verify the results
Google 以前吧关联的测试用例叫 test case, 现在逐步采用 suite API refactor,deprecate 老的 API,A test suite contains one or many tests.
测试崩溃或 expect 错误会失败
ASSERT_* 会产生致命性错误,中止当前的函数往下走,EXPECT_* 则不会产生致命性错误,还会继续走,一般使用 expect 来发现更多错误,没有意义往下走使用 assert
assert 会直接返回,所以不执行 clean-up 代码,会导致泄漏,如果发生 heap check error 的时候,要考虑是否是 assert 导致的
Since a failed ASSERT_* returns from the current function immediately, possibly skipping clean-up code that comes after it, it may cause a space leak. Depending on the nature of the leak, it may or may not be worth fixing - so keep this in mind if you get a heap checker error in addition to assertion errors.
自定义 log ostream,会被自动转为 UTF-8 编码
ASSERT_EQ(x.size(), y.size()) << “Vectors x and y are of unequal length”;
TEST(TestSuiteName, TestName) {
… test body …
}
有问题就会失败
测试全名是 suite + test,两个名字不应该加下划线,全名是 identifier,相同的第一个名字应该相同
Markdown 是一种轻量级的文本标记写法(markup language),广泛用于 GitHub,博客等各种 Web 网站。Markdown guide 网站源码:GitHub,网站教程已经写的很好,本文借鉴于此,做个笔记
处理 markdown 文件的应用程序使用一种称为 Markdown 处理器,也叫解析器或者实现的东西将该格式文件转换为 HTML, 再通过 Web 浏览器进行显示
easy to learn, use, light-weight
place emphasis on content, not mark format
can be transfer into html or other format, easy for distribution
微软的 word 等软件太生草了,写的时候纠结于格式,打开还要下载特定的软件,不适合到处纷发这种特性,Markdown 注重的是写作的内容而不是格式问题
Markdown 可以内嵌 HTML 语法,许多网站内嵌 Markdown 处理器,适合现在 Web 浏览器显示
GitHub 为 Jekyll 提供免费的网页 host 服务
GitHub Pages uses Jekyll as the backend for its free website creation service
如果您想使用内容管理系统(CMS)来为网站提供动力,请查看Ghost。这是一个免费的开源博客平台,具有出色的Markdown编辑器。如果您是WordPress用户,您将很高兴知道WordPress.com上托管的网站有Markdown支持。自托管的WordPress网站可以使用Jetpack插件。
标题
1 | # 标题 |
粗体
1 | **bold** |
斜体
1 | *italic* |
块引用
1 | > blockquote |
有序列表
1 | 1. ordered list |
无序列表
1 | - unordered list |
code
1 | `code` |
水平线 horizontal rule
1 | --- |
链接
1 | [title](link address "悬停提示") |
图片
1 |  |
块级元素之间分行,尽量不要缩进 tag,会干扰格式,且不能在块级元素使用 Markdown 语法,不会工作
\进行转义
GitHub Flavored Markdown (GFM)
表格 table
1 | | class | name | test | |
代码块 fenced code block
1 | ```json |
脚注 footnote
1 | 可以添加标识符,但实际上仍然是按顺序标号 |
标题 ID heading ID
1 | ### My Great Heading {#custom-id} |
定义列表 definition list
1 | term |
删除线 strikethrough
1 | ~~The world is flat.~~ |
任务列表 task list
1 | - [x] |
表情 emoji
1 | That is so funny! :joy: |
高亮 highlight
1 | I need to highlight these ==very important words==. |
下标 subscript
1 | H~2~0 |
上标 superscript
1 | X^2^ |
diable automatic URL linking
1 | `http://www.example.com` |
1 | # 下划线 underline |
release: latest
sds: simple dynamic string. 类型 sds 的声明为
1 | typedef char*sds; |
为 sds 申请动态内存的时候,申请了一块连续内存,该内存头部包含了 sds 的头部信息,并且维护该头部信息,源码里称为 sds_hdr_var, sds的 header variable
最新版本的 redis 一共实现了五种相似的 sds 结构体,分别为 sdshdr5(不建议使用), sdshdr8, sdshdr16, sdshdr32, sdshdr64,以 sdshdr5 和 sdshdr8 为例
1 | struct __attribute__ ((__packed__)) sdshdr5 { |
1 |
宏变量,方便进行位操作
1 |
宏变量,低三位,移位可以获取 type
1 |
第一个宏函数,声明一个指针 sh,指向 sdshdr##T 类型,sds 变量 s 的指针,该指针指向头部信息
第二个宏函数,同第一个,但不显示声明指针,只是获取地址
通过位操作位偏移操作,可以非常方便的获取 sds 变量的头部信息
1 | unsigned char flags = s[-1]; |
保存了 string 信息,二进制安全,同时使用了大量位操作,加快运算。
sds 中保存的实际上是 C 风格字符串,可以使用 C 标准库接口
1 | sds.o: sds.c sds.h sdsalloc.h zmalloc.h \ |
依赖为 redis 实现的 zmalloc,zmalloc 是 redis 为 jemalloc 封装的自己内部模块的申请动态内存模块,jemalloc 为优秀的用于高并发用于替代 malloc 的开源库
sdsalloc.h 为 sds 模块与 zmalloc 模块的定义接口文件