PAL 阅读笔记
PAL = Platform Abstract Layer, 是.Net平台对于具体操作系统层次的依赖, 主要包括
- 启动和结束
- 文件系统
- 内存管理
- 同步 I/O
- 异步 I/O
- Threading
- Networking
- 异常处理
- 调试支持
- CRT (C Runtime Library)
1. PAL-specific Entry Points
所谓的PAL-specific Entry Points,指的是对于PAL层所自己定义的接口,例如启动,结束. 包含以下几个方法:
方法名称 | 解释 |
PAL_Initialize |
|
PAL_Terminate |
|
PAL_GetUserConfigurationDirectoryW | 返回对应用户的设置数据 |
|
在DLLMain中注册 lib形式的dll 文件 (lpLibFileName) |
PAL_GetPALDirectoryW | 得到PAL的dll运行所在目录,例如 c:\Rotor\v1.x86chk.rotor\rotor_pal.dll 返回的应该是 c:\Rotor\v1.x86chk.rotor |
PAL_Random | 产生随机数. 1. lpBuffer: 用于得到随机产生的byte 2. bStrong: 用于标识是否额外强度的随机数, 例如用于Key |
PAL_get_stdout / PAL_get_stdin / PAL_get_stderr | 对应系统的stdout, stdin, stderr方法 |
PAL_errno | 返回一个对应线程错误号的指针 |
PAL_LocalHandleToRemote / PAL_RemoteHandleToLocal |
|
2. 文件系统
以UNIX系统的PAL层为例, 大概对文件系统分为五种类型的操作
- 对文件的操作
- 对目录的操作
- 对于磁盘信息的读取
PALIMPORT BOOL PALAPI GetDiskFreeSpaceW( LPCWSTR lpDirectoryName, LPDWORD lpSectorsPerCluster, LPDWORD lpBytesPerSector, LPDWORD lpNumberOfFreeClusters, /* Caller will ignore output value */ LPDWORD lpTotalNumberOfClusters) /* Caller will ignore output value */
- 查找文件
3. 内存管理
Local: 本地内存管理Heap: 基于堆的内存管理共享内存: 所谓共享内存,是指不同进程使用同一份拷贝,例如 B程序 使用了 A.dll, 而C也是,这样B和C则有共享内存. 共享内存又包含写时拷贝,同步等部分
4. 同步/异步 IO
Debug
Threading
代码名称 | 作用 |
Process.h | 进程的操作 |
Thread.h | 线程的操作 |
Localstorage.c | string的一些基本操作,contact, copy 等等 |
Seamphore.c | 信号量 |
mutex.c | 互斥体 |
event.h / event.c | 事件 |
critsect.c | CRITICAL_SECTION |
wait.c |
Networking
Soket 通信机制
异步通信: Async.c
Exception
SEH – Structure Exceptuin Handler
CRT (C Runtime)
代码名称 | 作用 |
file.c | 对文件的操作, C语言中那些对文件的基本操作 |
finite.h | 对浮点数的支持, 无穷大,无穷小等等 |
lstr | string的一些基本操作,contact, copy 等等 |
mbstring.c | multi-bytes string |
misc.c | 和运行环境之间进行交互,例如 char *MiscGetenv(const char *name) |
path.c | 对路径的操作 |
printf.c | 对应操作系统的输出 |
silent_printf.c | 对应Trace输出 TODO:: Verify this |
string.c | 对应string的常用操作,comare, _swab, PAL_strtoul, PAL_atol ... |
thread.c | PAL_exit |
wchar.c | 包含对char和string的一些操作 |
后记:
涉及到PAL层次的东西自然涉及到很多操作系统的知识,由于知识的专注性及个人精力的局限性,于是具体详细的解释暂不提供,如有兴趣和能力之同志,欢迎指教。谢谢