mirror of
https://github.com/Leonmmcoset/cleonos.git
synced 2026-04-27 13:44:01 +00:00
桌面环境
This commit is contained in:
@@ -26,9 +26,10 @@
|
||||
- `stage27.md`
|
||||
- `stage28.md`
|
||||
- `stage29.md`
|
||||
- `stage30.md`
|
||||
|
||||
- `syscall.md` (syscall ABI reference)
|
||||
|
||||
## Notes
|
||||
- Stage docs use a fixed template: goal, implementation, acceptance criteria, build targets, QEMU command, and debugging notes.
|
||||
- Stages 16~19 are currently not documented in this folder; add them later using the same template to keep history continuous.
|
||||
- Stages 16~19 are currently not documented in this folder; add them later using the same template to keep history continuous.
|
||||
|
||||
52
docs/stage30.md
Normal file
52
docs/stage30.md
Normal file
@@ -0,0 +1,52 @@
|
||||
# Stage 30 - User-Space Window Manager (UWM) + Mouse Syscall
|
||||
|
||||
## Goal
|
||||
- Add a minimal user-space desktop environment entrypoint.
|
||||
- Provide a simple window manager demo (`uwm`) with focus, dragging, and rendering in framebuffer.
|
||||
- Expose mouse snapshot data to user-space through a dedicated syscall.
|
||||
|
||||
## Implementation
|
||||
- New syscall:
|
||||
- Added `MOUSE_STATE` (`id=107`) in kernel/user syscall headers.
|
||||
- Kernel side (`clks/kernel/runtime/syscall.c`) now exports mouse snapshot:
|
||||
- fields: `x`, `y`, `buttons`, `packet_count`, `ready`.
|
||||
- User wrapper added: `cleonos_sys_mouse_state()`.
|
||||
- New user app:
|
||||
- Added `cleonos/c/apps/uwm_main.c`.
|
||||
- Features:
|
||||
- Desktop background rendering.
|
||||
- Multiple windows with z-order.
|
||||
- Active window focus + border highlight.
|
||||
- Drag by title bar (left mouse).
|
||||
- Keyboard fallback controls (`Tab`, `W/A/S/D`, `Q/Esc`).
|
||||
- Build integration:
|
||||
- Added `uwm` into shell command app set in `cleonos/CMakeLists.txt`.
|
||||
- Updated shell help text and standalone `help` app output.
|
||||
- QEMU run/debug update:
|
||||
- Added optional absolute pointer device by default:
|
||||
- `-usb -device usb-tablet`
|
||||
- New CMake option:
|
||||
- `CLEONOS_QEMU_ENABLE_USB_TABLET=ON` (default).
|
||||
|
||||
## Acceptance Criteria
|
||||
- `uwm` can be started from user shell.
|
||||
- Framebuffer window demo draws multiple windows and supports dragging.
|
||||
- Mouse state is retrievable from user-space via syscall `107`.
|
||||
- `make run`/`make debug` use USB tablet by default for smoother pointer interaction.
|
||||
|
||||
## Build Targets
|
||||
- `make userapps`
|
||||
- `make iso`
|
||||
- `make run`
|
||||
|
||||
## QEMU Command
|
||||
- `make run`
|
||||
|
||||
## Debug Notes
|
||||
- If `uwm` reports framebuffer unavailable:
|
||||
- verify `FB_INFO` syscall is enabled and framebuffer bpp is `32`.
|
||||
- If pointer behavior is relative/jumpy:
|
||||
- keep `CLEONOS_QEMU_ENABLE_USB_TABLET=ON`.
|
||||
- for manual QEMU invocation, include `-usb -device usb-tablet`.
|
||||
- If mouse syscall returns `ready=0`:
|
||||
- check boot log for PS/2 mouse init status under `[INFO][MOUSE]`.
|
||||
@@ -83,7 +83,7 @@ u64 cleonos_syscall(u64 id, u64 arg0, u64 arg1, u64 arg2);
|
||||
- `/proc/<pid>`:指定 PID 快照文本
|
||||
- `/proc` 为只读;写入类 syscall 不支持。
|
||||
|
||||
## 4. Syscall 列表(0~106)
|
||||
## 4. Syscall 列表(0~107)
|
||||
|
||||
### 0 `CLEONOS_SYSCALL_LOG_WRITE`
|
||||
|
||||
@@ -808,6 +808,16 @@ u64 cleonos_syscall(u64 id, u64 arg0, u64 arg1, u64 arg2);
|
||||
- `arg0`: `u64 poll_budget`
|
||||
- 返回:关闭成功返回 `1`,失败返回 `0`。
|
||||
- 说明:最小关闭流程支持 FIN/ACK 轮询等待,超时会强制回收连接状态。
|
||||
|
||||
### 107 `CLEONOS_SYSCALL_MOUSE_STATE`
|
||||
|
||||
- 参数:
|
||||
- `arg0`: `struct { u64 x; u64 y; u64 buttons; u64 packet_count; u64 ready; } *out_state`
|
||||
- 返回:成功返回 `1`,失败返回 `0`。
|
||||
- 说明:
|
||||
- 读取当前鼠标状态快照,坐标为 framebuffer 像素坐标系(左上角为原点)。
|
||||
- `buttons` 位掩码:`bit0=left`、`bit1=right`、`bit2=middle`。
|
||||
- `ready=1` 表示鼠标设备已上线;`ready=0` 时坐标/按键可能为默认值。
|
||||
|
||||
## 5. 用户态封装函数
|
||||
|
||||
@@ -844,6 +854,7 @@ u64 cleonos_syscall(u64 id, u64 arg0, u64 arg1, u64 arg2);
|
||||
- `cleonos_sys_net_available()` / `cleonos_sys_net_ipv4_addr()` / `cleonos_sys_net_netmask()` / `cleonos_sys_net_gateway()` / `cleonos_sys_net_dns_server()` / `cleonos_sys_net_ping()`
|
||||
- `cleonos_sys_net_udp_send()` / `cleonos_sys_net_udp_recv()`
|
||||
- `cleonos_sys_net_tcp_connect()` / `cleonos_sys_net_tcp_send()` / `cleonos_sys_net_tcp_recv()` / `cleonos_sys_net_tcp_close()`
|
||||
- `cleonos_sys_mouse_state()`
|
||||
|
||||
## 6. 开发注意事项
|
||||
|
||||
@@ -854,7 +865,7 @@ u64 cleonos_syscall(u64 id, u64 arg0, u64 arg1, u64 arg2);
|
||||
|
||||
## 7. Wine 兼容说明
|
||||
|
||||
- `wine/cleonos_wine_lib/runner.py` 当前已覆盖到 `0..106`(含 `DL_*`、`FB_*`、`KERNEL_VERSION`、`DISK_*`、`NET_*`)。
|
||||
- `wine/cleonos_wine_lib/runner.py` 当前已覆盖到 `0..107`(含 `DL_*`、`FB_*`、`KERNEL_VERSION`、`DISK_*`、`NET_*`、`MOUSE_STATE`)。
|
||||
- `DL_*`(`77..79`)在 Wine 中为“可运行兼容”实现:
|
||||
- `DL_OPEN`:加载 guest ELF 到当前 Unicorn 地址空间,返回稳定 `handle`,并做引用计数。
|
||||
- `DL_SYM`:解析 ELF `SYMTAB/DYNSYM` 并返回 guest 可调用地址。
|
||||
@@ -872,6 +883,7 @@ u64 cleonos_syscall(u64 id, u64 arg0, u64 arg1, u64 arg2);
|
||||
- `DISK_MOUNT`/`DISK_MOUNT_PATH` 支持挂载点管理,并与 `FS_MKDIR/WRITE/APPEND/REMOVE` 的路径规则联动。
|
||||
- `DISK_READ_SECTOR`/`DISK_WRITE_SECTOR`(`93..94`)在 Wine 中已实现为 512B 原始扇区读写(host 文件后端)。
|
||||
- 网络 syscall(`95..106`)在 Wine 当前为兼容占位实现(统一返回 `0`);即 Wine 运行模式下不会提供真实网络收发。
|
||||
- `MOUSE_STATE`(`107`)在 Wine 中为基础兼容实现:可返回指针数据结构;未启用窗口鼠标事件时 `ready` 可能为 `0`。
|
||||
- Wine 在运行时崩溃场景下会生成与内核一致格式的“信号编码退出状态”,可通过 `WAITPID` 读取。
|
||||
- Wine 当前音频 syscall 为占位实现:`AUDIO_AVAILABLE=0`,`AUDIO_PLAY_TONE=0`,`AUDIO_STOP=1`。
|
||||
- Wine 版本号策略固定为 `85.0.0-wine`(历史兼容号;不会随 syscall 扩展继续增长)。
|
||||
|
||||
Reference in New Issue
Block a user