Merge pull request #35 from ellerh/implement-require
authorPhil Burk <philburk@mobileer.com>
Thu, 12 Jan 2017 17:37:44 +0000 (09:37 -0800)
committerGitHub <noreply@github.com>
Thu, 12 Jan 2017 17:37:44 +0000 (09:37 -0800)
Implement REQUIRE (Forth 2012)

fth/file.fth
fth/t_file.fth

index 8fe0810..a54220c 100644 (file)
@@ -127,4 +127,18 @@ create (LINE-TERMINATOR) \n c,
     ENDCASE
 ; immediate
 
     ENDCASE
 ; immediate
 
+\ We basically try to open the file in read-only mode.  That seems to
+\ be the best that we can do with ANSI C.  If we ever want to do
+\ something more sophisticated, like calling access(2), we must create
+\ a proper primitive.  (OTOH, portable programs can't assume much
+\ about FILE-STATUS and non-portable programs could create a custom
+\ function for access(2).)
+: FILE-STATUS ( c-addr u -- 0 ior )
+    r/o bin open-file           ( fileid ior1 )
+    ?dup
+    IF   nip 0 swap             ( 0 ior1 )
+    ELSE close-file 0 swap      ( 0 ior2 )
+    THEN
+;
+
 privatize
 privatize
index e2fb565..297f208 100644 (file)
@@ -60,7 +60,7 @@ include? }T{  t_tools.fth
 
 true fp-require-e !
 
 
 true fp-require-e !
 
-true value verbose
+false value verbose
 
 : testing
     verbose IF
 
 : testing
     verbose IF
@@ -73,9 +73,6 @@ true value verbose
 : s= compare 0= ;
 : $" state IF postpone s" else ['] s" execute THEN ; immediate
 
 : s= compare 0= ;
 : $" state IF postpone s" else ['] s" execute THEN ; immediate
 
-\ FIXME: stubs for missing definitions
-: file-status 2drop 0 -1 ;
-
 TESTING File Access word set
 
 DECIMAL
 TESTING File Access word set
 
 DECIMAL