1 ;; -----------------------------------------------------------------------
3 ;; Copyright 1994-2008 H. Peter Anvin - All Rights Reserved
5 ;; This program is free software; you can redistribute it and/or modify
6 ;; it under the terms of the GNU General Public License as published by
7 ;; the Free Software Foundation, Inc., 53 Temple Place Ste 330,
8 ;; Boston MA 02111-1307, USA; either version 2 of the License, or
9 ;; (at your option) any later version; incorporated herein by reference.
11 ;; -----------------------------------------------------------------------
16 ;; Simple file handling library (open, getc, ungetc)
18 ;; WARNING: This interface uses the real_mode_seg/comboot_seg.
21 MAX_GETC_LG2 equ 4 ; Max number of file nesting
22 MAX_GETC equ (1 << MAX_GETC_LG2)
23 bytes_per_getc_lg2 equ 16-MAX_GETC_LG2
24 bytes_per_getc equ (1 << bytes_per_getc_lg2)
25 secs_per_getc equ bytes_per_getc/SECTOR_SIZE
26 MAX_UNGET equ 9 ; Max bytes that can be pushed back
29 gc_file resw 1 ; File pointer
30 gc_bufbytes resw 1 ; Bytes left in buffer
31 gc_bufdata resw 1 ; Pointer to data in buffer
32 gc_unget_cnt resb 1 ; Character pushed back count
33 gc_unget_buf resb MAX_UNGET ; Character pushed back buffer
35 getc_file_lg2 equ 4 ; Size of getc_file as a power of 2
38 %if (getc_file_size != (1 << getc_file_lg2))
39 %error "getc_file_size != (1 << getc_file_lg2)"
44 ; open,getc: Load a file a character at a time for parsing in a manner
45 ; similar to the C library getc routine.
46 ; Up to MAX_GETC files can be open at the same time,
47 ; they are accessed in a stack-like fashion.
49 ; All routines assume CS == DS.
51 ; open: Input: mangled filename in DS:DI
52 ; Output: ZF set on file not found or zero length
54 ; openfd: Input: file handle in SI, file size in EAX
55 ; Output: ZF set on getc stack overflow
57 ; getc: Output: CF set on end of file
58 ; Character loaded in AL
60 ; close: Output: CF set if nothing open
71 jb .stack_full ; Excessive nesting
74 mov [bx+gc_file],si ; File pointer
76 mov [bx+gc_bufbytes],ax ; Buffer empty
77 mov [bx+gc_unget_cnt],al ; ungetc buffer empty
96 movzx bx,byte [di+gc_unget_cnt]
100 mov si,real_mode_seg ; Borrow the real_mode_seg
104 sub word [di+gc_bufbytes],1
105 jc .get_data ; Was it zero already?
106 mov si,[di+gc_bufdata]
109 mov [di+gc_bufdata],si
120 mov al,[di+bx+gc_unget_buf]
121 mov [di+gc_unget_cnt],bl
126 ; Compute start of buffer
129 shl bx,bytes_per_getc_lg2-getc_file_lg2
131 mov [di+gc_bufdata],bx
134 mov [di+gc_bufbytes],si ; In case SI == 0
136 mov cx,bytes_per_getc >> SECTOR_SHIFT
138 mov [di+gc_bufbytes],cx
147 ; [di+gc_bufbytes] is zero already, thus we will continue
148 ; to get EOF on any further attempts to read the file.
150 xor al,al ; Return a predictable zero
160 add bx,getc_file_size
167 ; ungetc: Push a character (in AL) back into the getc buffer
168 ; Note: if more than MAX_UNGET bytes are pushed back, all
169 ; hell will break loose.
175 movzx bx,[di+gc_unget_cnt]
176 mov [bx+di+gc_unget_buf],al
178 mov [di+gc_unget_cnt],bl
184 ; skipspace: Skip leading whitespace using "getc". If we hit end-of-line
185 ; or end-of-file, return with carry set; ZF = true of EOF
186 ; ZF = false for EOLN; otherwise CF = ZF = 0.
188 ; Otherwise AL = first character after whitespace
200 .eof: cmp al,al ; Set ZF
203 .eoln: add al,0FFh ; Set CF, clear ZF
207 ; getint: Load an integer from the getc file.
208 ; Return CF if error; otherwise return integer in EBX
212 .getnum: cmp di,NumBufEnd ; Last byte in NumBuf
221 call ungetc ; Unget non-numeric
222 .loaded: mov byte [di],0
224 ; Fall through to parseint
227 ; parseint: Convert an integer to a number in EBX
228 ; Get characters from string in DS:SI
230 ; DS:SI points to first character after number
232 ; Syntaxes accepted: [-]dec, [-]0+oct, [-]0x+hex, val+[KMG]
238 xor eax,eax ; Current digit (keep eax == al)
239 mov ebx,eax ; Accumulator
241 xor bp,bp ; Used for negative flag
245 xor bp,1 ; Set unary minus flag
253 mov cl,10 ; Base = decimal
258 jb .km ; Value is zero
264 mov cl,8 ; Base = octal
267 mov al,'0' ; No numeric value accrued yet
268 mov cl,16 ; Base = hex
271 jc .km ; Not a (hex) digit
273 jae .km ; Invalid for base
274 imul ebx,ecx ; Multiply accumulated by base
275 add ebx,eax ; Add current digit
279 dec si ; Back up to last non-numeric
291 neg ebx ; Value was negative
299 .isg: shl ebx,10 ; * 2^30
300 .ism: shl ebx,10 ; * 2^20
301 .isk: shl ebx,10 ; * 2^10
306 NumBuf resb 15 ; Buffer to load number
307 NumBufEnd resb 1 ; Last byte in NumBuf
309 GetCStack resb getc_file_size*MAX_GETC
313 CurrentGetC dw GetCStack.end ; GetCStack empty
316 ; unhexchar: Convert a hexadecimal digit in AL to the equivalent number;
317 ; return CF=1 if not a hex digit
322 jb .ret ; If failure, CF == 1 already
327 .notdigit: or al,20h ; upper case -> lower case
329 jb .ret ; If failure, CF == 1 already
332 sub al,'a'-10 ; CF <- 0
339 ; getline: Get a command line, converting control characters to spaces
340 ; and collapsing streches to one; a space is appended to the
341 ; end of the string, unless the line is empty.
342 ; The line is terminated by ^J, ^Z or EOF and is written
343 ; to ES:DI. On return, DI points to first char after string.
344 ; CF is set if we hit EOF.
348 mov dl,1 ; Empty line -> empty string.
368 jnz .fillloop ; Ignore multiple spaces
369 mov al,' ' ; Ctrl -> space
372 .eoln: clc ; End of line is not end of file
375 .ret: pushf ; We want the last char to be space!