Diff for /gforth/lib.fs between versions 1.1 and 1.33

version 1.1, 1997/05/29 19:42:13 version 1.33, 2008/08/02 22:03:48
Line 1 Line 1
 \ lib.fs        shared library support package          11may97py  \ lib.fs        shared library support package          11may97py
   
 \ Copyright (C) 1995-1997 Free Software Foundation, Inc.  \ Copyright (C) 1995,1996,1997,1998,2000,2003,2005,2006,2007,2008 Free Software Foundation, Inc.
   
 \ This file is part of Gforth.  \ This file is part of Gforth.
   
 \ Gforth is free software; you can redistribute it and/or  \ Gforth is free software; you can redistribute it and/or
 \ modify it under the terms of the GNU General Public License  \ modify it under the terms of the GNU General Public License
 \ as published by the Free Software Foundation; either version 2  \ as published by the Free Software Foundation, either version 3
 \ of the License, or (at your option) any later version.  \ of the License, or (at your option) any later version.
   
 \ This program is distributed in the hope that it will be useful,  \ This program is distributed in the hope that it will be useful,
Line 15 Line 15
 \ GNU General Public License for more details.  \ GNU General Public License for more details.
   
 \ You should have received a copy of the GNU General Public License  \ You should have received a copy of the GNU General Public License
 \ along with this program; if not, write to the Free Software  \ along with this program. If not, see http://www.gnu.org/licenses/.
 \ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  
   
 Create icall-table  s" os-type" environment? [IF]
     ] icall0 ;s icall1 ;s icall2 ;s icall3 ;s icall4 ;s icall5 ;s icall6 ;s      2dup s" linux-gnu" str= [IF] 2drop
       NIL swap  NIL swap  NIL swap  NIL swap  NIL swap  NIL swap  NIL swap          cell 8 = [IF] s" /usr/lib64/libffi.so" [ELSE] s" libffi.so" [THEN]
       NIL swap  NIL swap  NIL swap  NIL swap  NIL swap  NIL swap  icall20 ;s [      [ELSE] 2dup s" bsd" search nip nip [IF] 2drop s" libffi.so"
 Create fcall-table          [ELSE] 2dup s" cygwin" str= [IF] 2drop s" libffi.dll"
     ] fcall0 ;s fcall1 ;s fcall2 ;s fcall3 ;s fcall4 ;s fcall5 ;s fcall6 ;s              [ELSE] 2dup s" darwin" string-prefix? [IF] 2drop s" libffi.dylib"
       NIL swap  NIL swap  NIL swap  NIL swap  NIL swap  NIL swap  NIL swap                  [ELSE] 2drop s" libffi" [THEN] [THEN] [THEN] [THEN] [THEN]
       NIL swap  NIL swap  NIL swap  NIL swap  NIL swap  NIL swap  fcall20 ;s [  open-lib [if]
   \    warnings @ [IF] .( including libffi.fs ) [THEN]
 Variable libs 0 libs !      include libffi.fs
 \G links between libraries  [ELSE]
       s" libavcall.so"     open-lib 0<>
 : @lib ( lib -- )      s" libcallback.so"   open-lib 0<> and [if]
     \G obtains library handle  \       warnings @ [IF] .( including fflib.fs [ffcall] ) [THEN]
     cell+ dup 2 cells + count open-lib          include fflib.fs
     dup 0= abort" Library not found" swap ! ;      [ELSE]
           .( Neither libffi nor ffcall are available ) cr
 : @proc ( lib addr -- )          abort
     \G obtains symbol address          .( Using oldlib.fs; incompatible with fflib.fs and libffi.fs) cr
     cell+ tuck 2 cells + count rot cell+ @          include oldlib.fs
     lib-sym  dup 0= abort" Proc not found!" swap cell+ ! ;      [THEN]
   [THEN]
 : proc, ( pars type lib addr -- )  
     \G allocates and initializes proc stub  \ testing stuff
     \G stub format:  
     \G    linked list in library  [IFUNDEF] libc
     \G    address of proc      s" os-type" environment? [IF]
     \G    offset in lcall1-table to call proc          2dup s" linux-gnu" str= [IF]  2drop
     \G    OS name of symbol as counted string              cell 8 = [IF]
     here 2dup swap 2 cells + dup @ A, !                  library libc /lib64/libc.so.6
     2swap  1 and  IF  fcall-table  ELSE  icall-table  THEN  swap              [ELSE]
     cells 2* + , 0 , bl parse-word string, @proc ;                  library libc /lib/libc.so.6
               [THEN]
 -1 Constant (addr)          [ELSE] 2dup s" cygwin" str= [IF]  2drop
  0 Constant (int)                  library libc cygwin1.dll
  1 Constant (float)              [ELSE]  2dup s" bsd" search nip nip [IF]  2drop
  2 Constant (void)                      library libc libc.so
  4 Constant (int...)                  [ELSE]  2dup s" darwin" string-prefix? [IF]  2drop
  5 Constant (float...)                          library libc libc.dylib
  6 Constant (void...)                      [ELSE]  2drop \ or add your stuff here
                       [THEN]
 : proc:  ( pars type lib "name" "string" -- )                  [THEN]
     \G Creates a named proc stub              [THEN]
     Create proc,          [THEN]
 DOES> ( x1 .. xn -- r )      [THEN]
     cell+ 2@ >r ;  [THEN]
   
 : vaproc:  ( pars type lib "name" "string" -- )  [ifdef] testing
     \G Creates a named proc stub with variable arguments  
     Create proc,  library libc libc.so.6
 DOES> ( x1 .. xn n -- r )                  
     cell+ 2@ rot 2* cells + >r ;  libc sleep int (int) sleep
   libc open  ptr int int (int) open
 : (>void)  >r ;  libc lseek int llong int (llong) lseek64
   libc read  int ptr int (int) read
 : vproc:  ( pars type lib "name" "string" -- )  libc close int (int) close
     \G Creates a named proc stub for void functions  
     Create proc,  library libm libm.so.6
 DOES> ( x1 .. xn -- )  
     cell+ 2@ (>void) drop ;  libm fmodf sf sf (sf) fmodf
   libm fmod  df df (fp) fmod
 : vvaproc:  ( pars type lib "name" "string" -- )  
     \G Creates a named proc stub with variable arguments, void return  \ example for a windows callback
     Create proc,      
 DOES> ( x1 .. xn n -- )  callback wincall (int) int int int int callback;
     cell+ 2@ rot 2* cells + (>void) drop ;  
   :noname ( a b c d -- e )  2drop 2drop 0 ; wincall do_timer
 : label: ( type lib "name" "string" -- )  
     \G Creates a named label stub  \ test a callback
     -1 -rot Create proc,  
 DOES> ( -- addr )  callback 2:1 (int) int int callback;
     [ 2 cells ] Literal + @ ;  
   : cb-test ( a b -- c )
 : lib: ( "name" "file" -- )      cr ." Testing callback"
     \G loads library "file" and creates a proc defining word "name"      cr ." arguments: " .s
     \G library format:      cr ." result " + .s cr ;
     \G    linked list of libraries  ' cb-test 2:1 c_plus
     \G    library handle  
     \G    linked list of library's procs  fptr 2:1call int int (int)
     \G    OS name of library as counted string  
     Create  here libs @ A, dup libs !  : test  c_plus 2:1call ;
     0 , 0 A, bl parse-word string, @lib  
 DOES> ( pars/ type -- )  \ 3 4 test
     over -1 = IF  label:  
     ELSE  \ bigFORTH legacy library test
         over 4 and IF  
             over 2 and IF  vvaproc:  ELSE  vaproc:  THEN  library libX11 libX11.so.6
         ELSE  
             over 2 and IF  vproc:  ELSE  proc:  THEN  
         THEN  
     THEN ;  
   
 : init-shared-libs ( -- )  
     defers 'cold  libs  
     BEGIN  @ dup  WHILE  >r  
         r@ @lib  
         r@ 2 cells +  BEGIN  @ dup  WHILE  r@ over @proc  REPEAT  
         drop r>  
     REPEAT   drop ;  
   
 ' init-shared-libs IS 'cold  legacy on
   
   1 libX11 XOpenDisplay XOpenDisplay    ( name -- dpy )
   5 libX11 XInternAtoms XInternAtoms    ( atoms flag count names dpy -- status )
   
   legacy off
   
   [then]    

Removed from v.1.1  
changed lines
  Added in v.1.33


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>