collapseos/apps/ed/main.asm

79 lines
2.3 KiB
NASM
Raw Normal View History

2019-07-13 23:57:37 +10:00
; ed - line editor
;
; A text editor modeled after UNIX's ed, but simpler. The goal is to stay tight
; on resources and to avoid having to implement screen management code (that is,
; develop the machinery to have ncurses-like apps in Collapse OS).
;
; ed has a mechanism to avoid having to move a lot of memory around at each
; edit. Each line is an element in an doubly-linked list and each element point
; to an offset in the "scratchpad". The scratchpad starts with the file
; contents and every time we change or add a line, that line goes to the end of
; the scratch pad and linked lists are reorganized whenever lines are changed.
; Contents itself is always appended to the scratchpad.
;
; That's on a resourceful UNIX system.
;
; That doubly linked list on the z80 would use 7 bytes per line (prev, next,
; offset, len), which is a bit much. Moreover, there's that whole "scratchpad
; being loaded in memory" thing that's a bit iffy. We sacrifice speed for
; memory usage.
;
; So here's what we do. First, we have two scratchpads. The first one is the
2019-07-14 01:29:06 +10:00
; file being read itself. The second one is memory, for modifications we
2019-07-13 23:57:37 +10:00
; make to the file. When reading the file, we note the offset at which it ends.
; All offsets under this limit refer to the first scratchpad. Other offsets
; refer to the second.
;
2019-07-14 01:29:06 +10:00
; Then, our line list is just an array of 16-bit offsets. This means that we
2019-07-13 23:57:37 +10:00
; don't have an easy access to line length and we have to move a lot of memory
; around whenever we add or delete lines. Hopefully, "LDIR" will be our friend
; here...
;
2019-07-14 01:29:06 +10:00
; *** Usage ***
;
; ed takes no argument. It reads from the currently selected blkdev and writes
; to it. It repeatedly presents a prompt, waits for a command, execute the
; command. 'q' to quit.
;
2019-07-13 23:57:37 +10:00
; *** Requirements ***
2019-07-14 01:29:06 +10:00
; BLOCKDEV_SIZE
; blkGetC
; blkSeek
2019-07-13 23:57:37 +10:00
; printstr
; printcrlf
; stdioReadC
; stdioGetLine
edMain:
2019-07-14 01:29:06 +10:00
; Dummy test. Read first line of file
ld hl, 0
call ioGetLine
call printstr
call printcrlf
; Continue to loop
2019-07-13 23:57:37 +10:00
edLoop:
ld hl, .prompt
call printstr
.inner:
call stdioReadC
jr nz, .inner ; not done? loop
; We're done. Process line.
call printcrlf
call stdioGetLine
2019-07-14 01:29:06 +10:00
call .processLine
2019-07-13 23:57:37 +10:00
ret z
jr edLoop
.prompt:
.db ":", 0
; Sets Z if we need to quit
2019-07-14 01:29:06 +10:00
.processLine:
2019-07-13 23:57:37 +10:00
call printstr
ld a, (hl)
cp 'q'
ret z
call printcrlf
jp unsetZ