Diff for /gforth/lib.fs between versions 1.3 and 1.25

version 1.3, 1998/07/08 16:47:31 version 1.25, 2008/04/29 20:03:40
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 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" libavcall.so"     open-lib 0<>
     ] icall0 ;s icall1 ;s icall2 ;s icall3 ;s icall4 ;s icall5 ;s icall6 ;s  s" libcallback.so"   open-lib 0<> and [if]
       NIL swap  NIL swap  NIL swap  NIL swap  NIL swap  NIL swap  NIL swap      .( including fflib.fs [ffcall] )
       NIL swap  NIL swap  NIL swap  NIL swap  NIL swap  NIL swap  icall20 ;s [      include fflib.fs
 Create fcall-table  [ELSE]
     ] fcall0 ;s fcall1 ;s fcall2 ;s fcall3 ;s fcall4 ;s fcall5 ;s fcall6 ;s      s" libffi" open-lib [if]
       NIL swap  NIL swap  NIL swap  NIL swap  NIL swap  NIL swap  NIL swap          .( including libffi.fs )
       NIL swap  NIL swap  NIL swap  NIL swap  NIL swap  NIL swap  fcall20 ;s [          include libffi.fs
       [ELSE]
 Variable libs 0 libs !          .( Neither libffi nor ffcall are available ) cr
 \G links between libraries          abort
           .( Using oldlib.fs; incompatible with fflib.fs and libffi.fs) cr
 : @lib ( lib -- )          include oldlib.fs
     \G obtains library handle      [THEN]
     cell+ dup 2 cells + count open-lib  [THEN]
     dup 0= abort" Library not found" swap ! ;  
   \ testing stuff
 : @proc ( lib addr -- )  
     \G obtains symbol address  [IFUNDEF] libc
     cell+ tuck 2 cells + count rot cell+ @      s" os-type" environment? [IF]
     lib-sym  dup 0= abort" Proc not found!" swap cell+ ! ;          2dup s" linux-gnu" str= [IF]  2drop
               library libc libc.so.6
 : proc, ( pars type lib addr -- )          [ELSE] 2dup s" cygwin" str= [IF]  2drop
     \G allocates and initializes proc stub                  library libc cygwin1.dll
     \G stub format:              [ELSE]  2dup s" bsd" search nip nip [IF]  2drop
     \G    linked list in library                      library libc libc.so
     \G    address of proc                  [ELSE]  2dup s" darwin" string-prefix? [IF]  2drop
     \G    offset in lcall1-table to call proc                          library libc libc.dylib
     \G    OS name of symbol as counted string                      [ELSE]  2drop \ or add your stuff here
     here 2dup swap 2 cells + dup @ A, !                      [THEN]
     2swap  1 and  IF  fcall-table  ELSE  icall-table  THEN  swap                  [THEN]
     cells 2* + , 0 , bl sword string, @proc ;              [THEN]
           [THEN]
 -1 Constant (addr)      [THEN]
  0 Constant (int)  [THEN]
  1 Constant (float)  
  2 Constant (void)  [ifdef] testing
  4 Constant (int...)  
  5 Constant (float...)  library libc libc.so.6
  6 Constant (void...)                  
   libc sleep int (int) sleep
 : proc:  ( pars type lib "name" "string" -- )  libc open  ptr int int (int) open
     \G Creates a named proc stub  libc lseek int llong int (llong) lseek64
     Create proc,  libc read  int ptr int (int) read
 DOES> ( x1 .. xn -- r )  libc close int (int) close
     cell+ 2@ >r ;  
   library libm libm.so.6
 : vaproc:  ( pars type lib "name" "string" -- )  
     \G Creates a named proc stub with variable arguments  libm fmodf sf sf (sf) fmodf
     Create proc,  libm fmod  df df (fp) fmod
 DOES> ( x1 .. xn n -- r )  
     cell+ 2@ rot 2* cells + >r ;  \ example for a windows callback
       
 : (>void)  >r ;  callback wincall (int) int int int int callback;
   
 : vproc:  ( pars type lib "name" "string" -- )  :noname ( a b c d -- e )  2drop 2drop 0 ; wincall do_timer
     \G Creates a named proc stub for void functions  
     Create proc,  \ test a callback
 DOES> ( x1 .. xn -- )  
     cell+ 2@ (>void) drop ;  callback 2:1 (int) int int callback;
   
 : vvaproc:  ( pars type lib "name" "string" -- )  : cb-test ( a b -- c )
     \G Creates a named proc stub with variable arguments, void return      cr ." Testing callback"
     Create proc,      cr ." arguments: " .s
 DOES> ( x1 .. xn n -- )      cr ." result " + .s cr ;
     cell+ 2@ rot 2* cells + (>void) drop ;  ' cb-test 2:1 c_plus
   
 : label: ( type lib "name" "string" -- )  fptr 2:1call int int (int)
     \G Creates a named label stub  
     -1 -rot Create proc,  : test  c_plus 2:1call ;
 DOES> ( -- addr )  
     [ 2 cells ] Literal + @ ;  \ 3 4 test
   
 : library ( "name" "file" -- )  \ bigFORTH legacy library test
     \G loads library "file" and creates a proc defining word "name"  
     \G library format:  library libX11 libX11.so.6
     \G    linked list of libraries  
     \G    library handle  
     \G    linked list of library's procs  
     \G    OS name of library as counted string  
     Create  here libs @ A, dup libs !  
     0 , 0 A, bl sword string, @lib  
 DOES> ( pars/ type -- )  
     over -1 = IF  label:  
     ELSE  
         over 4 and IF  
             over 2 and IF  vvaproc:  ELSE  vaproc:  THEN  
         ELSE  
             over 2 and IF  vproc:  ELSE  proc:  THEN  
         THEN  
     THEN ;  
   
 : init-shared-libs ( -- )  
     defers 'cold  libs  
     0  libs  BEGIN  @ dup  WHILE  dup  REPEAT  drop  
     BEGIN  dup  WHILE  >r  
         r@ @lib  
         r@ 2 cells +  BEGIN  @ dup  WHILE  r@ over @proc  REPEAT  
         drop rdrop  
     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.3  
changed lines
  Added in v.1.25


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