Skip to content

Commit 203cc20

Browse files
author
DreamAndDead
committed
revise index
1 parent ae9bf8d commit 203cc20

File tree

10 files changed

+96
-109
lines changed

10 files changed

+96
-109
lines changed

Makefile

+3-5
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,9 @@ lex:
3535
gdb -batch -x lex.gdb --args ./lua-5.1.5/src/luac $(source)
3636
rm luac.out
3737

38-
publish:
39-
emacs -u "$(id -un)" --batch --eval '(load user-init-file)' --load publish.el --funcall org-publish-all
40-
41-
server:
42-
python -m http.server -d docs 8000
38+
serve:
39+
xdg-open http://localhost:1313/lua-5.1-source-guide/
40+
(cd site; hugo server -D; cd ..)
4341

4442
draw:
4543
asy -f pdf -pdfviewer="okular" -batchView -tex xelatex

book/.dir-locals.el

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
((org-mode . ((eval . (org-hugo-auto-export-mode)))))

book/index/index.org

+51-15
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# don't export TODO section
2+
#+options: tasks:nil
3+
14
#+hugo_base_dir: ~/project/lua51/site/
25
#+hugo_section: .
36
#+hugo_front_matter_format: yaml
@@ -8,19 +11,52 @@
811
#+title: lua 5.1 source guide
912
#+date: <2020-12-21 一 09:35>
1013

11-
| subject | desc | progress |
12-
|-----------+--------------+----------|
13-
| overview | 全书总览 | 70% |
14-
| object | 关键数据结构 | 90% |
15-
| memory | 内存分配 | 100% |
16-
| string | 字符串 | 100% |
17-
| table | 表 | 80% |
18-
| lexer | 词法分析 | 100% |
19-
| opcode | 字节码 | 100% |
20-
| parser | 语法分析 | 100% |
21-
| generator | 字节码生成 | 80% |
22-
| vm | 虚拟机 | 80% |
23-
| c api | 外部 api | 70% |
24-
| stdlib | 标准库 | 100% |
25-
| gc | gc 模块 | 70% |
14+
这是一本关于 lua 5.1 源代码的小书。
15+
主要探索 lua 源代码,从中研究 lua 语言的内部实现。
16+
17+
起因是出于好奇和乐趣,同时希望对其它 source reader 有所启发。
18+
19+
20+
lua 本身虽然只有几万行代码,但是将其所有细节都描述清楚还是要花费不少篇幅。
21+
而且我也不自信自己的文字能力能将其含义描述清楚。
22+
23+
所以在本书中,
24+
- 根据 2/8 原则,关注重点部分
25+
- 一图胜千言,尽量使用图解
26+
- 其余相关源代码,作为读者的练习
27+
28+
29+
每一本书都有适合的读者,本书也是如此。
30+
31+
希望读者你
32+
- 使用过 lua 语言,了解 lua
33+
- 了解 Linux 基础使用
34+
- 熟悉 C 语言
35+
36+
因为本书就是建立在相应的前提下书写的。
37+
38+
* TODO progress
39+
40+
修订原则
41+
- 保留重点
42+
- 去除不重要的部分
43+
44+
| subject | desc | progress | revise |
45+
|-----------+--------------+----------+--------|
46+
| index | 首页 | 10% | - 补充 |
47+
|-----------+--------------+----------+--------|
48+
| overview | 全书总览 | 70% | |
49+
|-----------+--------------+----------+--------|
50+
| object | 关键数据结构 | 90% | |
51+
| memory | 内存分配 | 100% | |
52+
| string | 字符串 | 100% | |
53+
| table | 表 | 80% | |
54+
| lexer | 词法分析 | 100% | |
55+
| opcode | 字节码 | 100% | |
56+
| parser | 语法分析 | 100% | |
57+
| generator | 字节码生成 | 80% | |
58+
| vm | 虚拟机 | 80% | |
59+
| c api | 外部 api | 70% | |
60+
| stdlib | 标准库 | 100% | |
61+
| gc | gc 模块 | 70% | |
2662

book/overview/overview.org

-29
Original file line numberDiff line numberDiff line change
@@ -5,32 +5,6 @@
55
#+title: overview
66
#+date: <2020-12-21 一 10:40>
77

8-
* goal
9-
10-
这是一本关于 lua 5.1 源代码的小书。
11-
主要探索 lua 源代码,从中研究 lua 语言的内部实现。
12-
13-
起因是出于好奇和乐趣,同时希望对其它 source reader 有所启发。
14-
15-
16-
lua 本身虽然只有几万行代码,但是将其所有细节都描述清楚还是要花费不少篇幅。
17-
而且我也不自信自己的文字能力能将其含义描述清楚。
18-
19-
所以在本书中,
20-
- 根据 2/8 原则,关注重点部分
21-
- 一图胜千言,尽量使用图解
22-
- 其余相关源代码,作为读者的练习
23-
24-
25-
每一本书都有适合的读者,本书也是如此。
26-
27-
希望读者你
28-
- 使用过 lua 语言,了解 lua
29-
- 了解 Linux 基础使用
30-
- 熟悉 C 语言
31-
32-
因为本书就是建立在相应的前提下书写的。
33-
348
* project
359

3610
** file structure
@@ -156,7 +130,6 @@ diff -ur /home/manjaro/temp/ChunkSpy-0.9.8/5.1/ChunkSpy.lua ../tool/ChunkSpy-0.9
156130
在进行本书编写过程中,借鉴了其中的思想,使用 gdb 提供的 python api,
157131
编写了 =helper.py= 来辅助显示数据结构。
158132

159-
160133
** usage
161134

162135
在分析代码的过程,经常使用一些分析过程,全部整理在 =Makefile= 中。
@@ -214,7 +187,6 @@ diff -ur /home/manjaro/temp/ChunkSpy-0.9.8/5.1/ChunkSpy.lua ../tool/ChunkSpy-0.9
214187

215188
使用 ChunkSpy 分析文件
216189

217-
218190
*** debug
219191

220192
#+begin_example
@@ -237,7 +209,6 @@ diff -ur /home/manjaro/temp/ChunkSpy-0.9.8/5.1/ChunkSpy.lua ../tool/ChunkSpy-0.9
237209

238210
在本地开启 [[http://localhost:8000][http server]],阅读生成的 html 文件
239211

240-
241212
* big picture
242213

243214
** source file

book/todo/todo.org

+4-6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#+SETUPFILE: setup.org
1+
#+SETUPFILE: ../setup.org
22

33
#+TITLE: todo
44
#+DATE: <2021-01-22 五 10:52>
@@ -12,14 +12,9 @@
1212
gdb script helper.py 的功能,未介绍
1313

1414

15-
缺少整体的阅读版面设计
16-
17-
1815
源代码引用,文件名部分依然是 listing n 格式
1916

2017

21-
22-
单独的 publish.el 配置,不依赖 .emacs.d
2318
依赖的其它图片工具
2419

2520

@@ -32,3 +27,6 @@ userdata 未讲解
3227
weaktable newproxy 未讲解
3328

3429

30+
** how ~RE = NFA = DFA~
31+
32+
** how scanner generator works (table driven / if else driven)

site/config.toml

+10
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,16 @@ defaultContentLanguage = 'zh'
1414
unsafe = true
1515
[markup.tableOfContents]
1616
startLevel = 1
17+
[markup.highlight]
18+
codeFences = true
19+
guessSyntax = false
20+
hl_Lines = ""
21+
lineNoStart = 1
22+
lineNos = false
23+
lineNumbersInTable = true
24+
noClasses = true
25+
style = "perldoc"
26+
tabWidth = 4
1727

1828
# Multi-lingual mode config
1929
# There are different options to translate files

site/content/_index.md

+24-16
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,30 @@
22
title: "lua 5.1 source guide"
33
author: ["DreamAndDead"]
44
date: 2020-12-21T09:35:00+08:00
5-
lastmod: 2021-02-23T10:44:45+08:00
5+
lastmod: 2021-05-25T21:50:03+08:00
66
draft: false
77
---
88

9-
| subject | desc | progress |
10-
|-----------|--------|----------|
11-
| overview | 全书总览 | 70% |
12-
| object | 关键数据结构 | 90% |
13-
| memory | 内存分配 | 100% |
14-
| string | 字符串 | 100% |
15-
| table || 80% |
16-
| lexer | 词法分析 | 100% |
17-
| opcode | 字节码 | 100% |
18-
| parser | 语法分析 | 100% |
19-
| generator | 字节码生成 | 80% |
20-
| vm | 虚拟机 | 80% |
21-
| c api | 外部 api | 70% |
22-
| stdlib | 标准库 | 100% |
23-
| gc | gc 模块 | 70% |
9+
这是一本关于 lua 5.1 源代码的小书。
10+
主要探索 lua 源代码,从中研究 lua 语言的内部实现。
11+
12+
起因是出于好奇和乐趣,同时希望对其它 source reader 有所启发。
13+
14+
lua 本身虽然只有几万行代码,但是将其所有细节都描述清楚还是要花费不少篇幅。
15+
而且我也不自信自己的文字能力能将其含义描述清楚。
16+
17+
所以在本书中,
18+
19+
- 根据 2/8 原则,关注重点部分
20+
- 一图胜千言,尽量使用图解
21+
- 其余相关源代码,作为读者的练习
22+
23+
每一本书都有适合的读者,本书也是如此。
24+
25+
希望读者你
26+
27+
- 使用过 lua 语言,了解 lua
28+
- 了解 Linux 基础使用
29+
- 熟悉 C 语言
30+
31+
因为本书就是建立在相应的前提下书写的。

site/content/docs/overview/index.md

+1-36
Original file line numberDiff line numberDiff line change
@@ -2,37 +2,10 @@
22
title: "overview"
33
author: ["DreamAndDead"]
44
date: 2020-12-21T10:40:00+08:00
5-
lastmod: 2021-02-23T10:50:45+08:00
5+
lastmod: 2021-05-25T21:50:41+08:00
66
draft: false
77
---
88

9-
## goal {#goal}
10-
11-
这是一本关于 lua 5.1 源代码的小书。
12-
主要探索 lua 源代码,从中研究 lua 语言的内部实现。
13-
14-
起因是出于好奇和乐趣,同时希望对其它 source reader 有所启发。
15-
16-
lua 本身虽然只有几万行代码,但是将其所有细节都描述清楚还是要花费不少篇幅。
17-
而且我也不自信自己的文字能力能将其含义描述清楚。
18-
19-
所以在本书中,
20-
21-
- 根据 2/8 原则,关注重点部分
22-
- 一图胜千言,尽量使用图解
23-
- 其余相关源代码,作为读者的练习
24-
25-
每一本书都有适合的读者,本书也是如此。
26-
27-
希望读者你
28-
29-
- 使用过 lua 语言,了解 lua
30-
- 了解 Linux 基础使用
31-
- 熟悉 C 语言
32-
33-
因为本书就是建立在相应的前提下书写的。
34-
35-
369
## project {#project}
3710

3811

@@ -373,14 +346,6 @@ lua 源代码 make 之后,生成两个可执行文件
373346
这即是上文中两个程序分别称为编译器 和 解释器 的命名来源,以后的行文中也使用这种约定。
374347

375348

376-
### <span class="org-todo todo TODO">TODO</span> a little tour {#a-little-tour}
377-
378-
chain all subject
379-
380-
- big picture of internal
381-
- talk about lua state and global state, state scope
382-
383-
384349
## practice {#practice}
385350

386351
- 按照 [source file](#source-file) 章节中提到的文件顺序,粗略浏览所有代码

0 commit comments

Comments
 (0)