[gforth] / gforth / history.fs  

gforth: gforth/history.fs


1 : pazsan 1.4 \ History file support 16oct94py
2 :    
3 : anton 1.8 \ Copyright (C) 1995 Free Software Foundation, Inc.
4 :    
5 :     \ This file is part of Gforth.
6 :    
7 :     \ Gforth is free software; you can redistribute it and/or
8 :     \ modify it under the terms of the GNU General Public License
9 :     \ as published by the Free Software Foundation; either version 2
10 :     \ of the License, or (at your option) any later version.
11 :    
12 :     \ This program is distributed in the hope that it will be useful,
13 :     \ but WITHOUT ANY WARRANTY; without even the implied warranty of
14 :     \ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 :     \ GNU General Public License for more details.
16 :    
17 :     \ You should have received a copy of the GNU General Public License
18 :     \ along with this program; if not, write to the Free Software
19 :     \ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 :    
21 : pazsan 1.4 0 Value history
22 :    
23 :     2Variable forward^
24 :     2Variable backward^
25 :     2Variable end^
26 :    
27 : pazsan 1.7 : force-open ( addr len -- handle )
28 :     2dup r/w open-file 0<
29 :     IF drop r/w create-file throw ELSE nip nip THEN ;
30 :    
31 : pazsan 1.4 : get-history ( addr len -- wid )
32 : pazsan 1.7 force-open to history
33 : pazsan 1.4 history file-size throw
34 :     2dup forward^ 2! 2dup backward^ 2! end^ 2! ;
35 :    
36 : anton 1.6 s" ~/.gforth-history" get-history
37 : pazsan 1.4
38 : anton 1.6 : history-cold
39 :     Defers 'cold
40 :     s" ~/.gforth-history" get-history ;
41 : pazsan 1.4
42 :     ' history-cold IS 'cold
43 :    
44 :     \ moving in history file 16oct94py
45 :    
46 :     : clear-line ( max span addr pos1 -- max addr )
47 :     backspaces over spaces swap backspaces ;
48 :    
49 :     : clear-tib ( max span addr pos -- max 0 addr 0 false )
50 :     clear-line 0 tuck dup ;
51 :    
52 : pazsan 1.7 : hist-pos ( -- ud ) history file-position throw ;
53 :     : hist-setpos ( ud -- ) history reposition-file throw ;
54 : pazsan 1.4
55 : pazsan 1.7 : get-line ( addr len -- len' flag )
56 :     swap history read-line throw ;
57 :    
58 : pazsan 1.4 : next-line ( max span addr pos1 -- max span addr pos2 false )
59 :     clear-line
60 : pazsan 1.7 forward^ 2@ 2dup hist-setpos backward^ 2!
61 :     2dup get-line drop
62 :     hist-pos forward^ 2!
63 :     tuck 2dup type 0 ;
64 : pazsan 1.4
65 :     : prev-line ( max span addr pos1 -- max span addr pos2 false )
66 : pazsan 1.7 clear-line backward^ 2@ forward^ 2!
67 :     over 2 + negate s>d backward^ 2@ d+ 0. dmax 2dup hist-setpos
68 :     BEGIN
69 :     backward^ 2! 2dup get-line WHILE
70 :     hist-pos 2dup forward^ 2@ d< WHILE
71 :     rot drop
72 :     REPEAT 2drop THEN
73 :     tuck 2dup type 0 ;
74 : pazsan 1.4
75 : anton 1.10 : ctrl ( compilation: "<char>" -- ) ( run-time: -- ctrl-code )
76 :     char [char] @ - postpone Literal ; immediate
77 :     interpretation: ( "<char>" -- ctrl-code )
78 :     char [char] @ - ;
79 : pazsan 1.4
80 :     Create lfpad #lf c,
81 :    
82 :     : (enter) ( max span addr pos1 -- max span addr pos2 true )
83 : pazsan 1.7 >r end^ 2@ hist-setpos
84 :     2dup swap history write-line throw
85 :     hist-pos 2dup backward^ 2! end^ 2!
86 : pazsan 1.4 r> (ret) ;
87 :    
88 :     \ some other key commands 16oct94py
89 :    
90 :     : first-pos ( max span addr pos1 -- max span addr 0 0 )
91 :     backspaces 0 0 ;
92 :     : end-pos ( max span addr pos1 -- max span addr span 0 )
93 :     type-rest 2drop over 0 ;
94 :    
95 :     : extract-word ( addr len -- addr' len' ) dup >r
96 :     BEGIN 1- dup 0>= WHILE 2dup + c@ bl = UNTIL THEN 1+
97 :     tuck + r> rot - ;
98 :    
99 :     Create prefix-found 0 , 0 ,
100 :    
101 :     : word-lex ( nfa1 nfa2 -- -1/0/1 )
102 : anton 1.9 dup 0=
103 :     IF
104 :     2drop 1 EXIT
105 :     THEN
106 :     name>string 2>r name>string
107 :     dup r@ =
108 :     IF
109 :     rdrop r> capscomp 0<= EXIT
110 :     THEN
111 :     r> <
112 :     nip rdrop ;
113 : pazsan 1.4
114 : anton 1.9 : search-voc ( addr len nfa1 nfa2 -- addr len nfa3 )
115 :     >r
116 :     BEGIN
117 :     dup
118 :     WHILE
119 :     >r dup r@ name>string nip <=
120 :     IF
121 :     2dup r@ name>string drop capscomp 0=
122 :     IF
123 :     r> dup r@ word-lex
124 :     IF
125 :     dup prefix-found @ word-lex
126 :     0>=
127 :     IF
128 :     rdrop dup >r
129 :     THEN
130 :     THEN
131 :     >r
132 : pazsan 1.7 THEN
133 : anton 1.9 THEN
134 :     r> @
135 :     REPEAT
136 :     drop r> ;
137 : pazsan 1.7
138 :     : prefix-string ( addr len nfa -- addr' len' )
139 :     dup prefix-found ! ?dup
140 : anton 1.9 IF
141 :     name>string rot /string rot drop
142 : pazsan 1.7 dup 1+ prefix-found cell+ !
143 :     ELSE
144 :     2drop s" " prefix-found cell+ off
145 :     THEN ;
146 :    
147 :     : search-prefix ( addr1 len1 -- addr2 len2 )
148 :     0 vp dup @ 1- cells over +
149 :     DO I 2@ <>
150 :     IF I cell+ @ @ swap search-voc THEN
151 :     [ -1 cells ] Literal +LOOP
152 :     prefix-string ;
153 :    
154 :     : kill-expand ( max span addr pos1 -- max span addr pos2 )
155 :     prefix-found cell+ @ 0 ?DO (del) LOOP ;
156 :    
157 :     : tib-full? ( max span addr pos addr' len' -- max span addr pos addr1 u flag )
158 :     5 pick over 4 pick + prefix-found @ 0<> - < ;
159 : pazsan 1.4
160 :     : tab-expand ( max span addr pos1 -- max span addr pos2 0 )
161 : pazsan 1.7 kill-expand 2dup extract-word search-prefix
162 :     tib-full?
163 :     IF 7 emit 2drop 0 0 prefix-found 2!
164 :     ELSE bounds ?DO I c@ (ins) LOOP THEN
165 :     prefix-found @ IF bl (ins) THEN 0 ;
166 : pazsan 1.4
167 :     : kill-prefix ( key -- key )
168 :     dup #tab <> IF 0 0 prefix-found 2! THEN ;
169 :    
170 :     ' kill-prefix IS everychar
171 :    
172 :     ' next-line ctrl N cells ctrlkeys + !
173 :     ' prev-line ctrl P cells ctrlkeys + !
174 :     ' clear-tib ctrl K cells ctrlkeys + !
175 :     ' first-pos ctrl A cells ctrlkeys + !
176 :     ' end-pos ctrl E cells ctrlkeys + !
177 :     ' (enter) #lf cells ctrlkeys + !
178 :     ' (enter) #cr cells ctrlkeys + !
179 :     ' tab-expand #tab cells ctrlkeys + !

CVS Admin

Powered by ViewCVS 1.0-dev
(Powered by ViewCVS)

ViewCVS and CVS Help