126 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			Factor
		
	
	
			
		
		
	
	
			126 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			Factor
		
	
	
| ! Copyright (C) 2004, 2005 Mackenzie Straight
 | |
| ! Copyright (C) 2007, 2010 Slava Pestov
 | |
| ! Copyright (C) 2007, 2008 Doug Coleman
 | |
| ! See http://factorcode.org/license.txt for BSD license.
 | |
| USING: accessors alien alien.c-types alien.destructors
 | |
| alien.syntax destructors destructors.private kernel math
 | |
| namespaces sequences sets summary system vocabs ;
 | |
| IN: libc
 | |
| 
 | |
| HOOK: strerror os ( errno -- str )
 | |
| 
 | |
| LIBRARY: factor
 | |
| 
 | |
| FUNCTION-ALIAS: errno
 | |
|     int err_no ( )
 | |
| 
 | |
| FUNCTION-ALIAS: set-errno
 | |
|     void set_err_no ( int err-no )
 | |
| 
 | |
| : clear-errno ( -- )
 | |
|     0 set-errno ;
 | |
| 
 | |
| : preserve-errno ( quot -- )
 | |
|     errno [ call ] dip set-errno ; inline
 | |
| 
 | |
| LIBRARY: libc
 | |
| 
 | |
| FUNCTION-ALIAS: (malloc)
 | |
|     void* malloc ( size_t size )
 | |
| 
 | |
| FUNCTION-ALIAS: (calloc)
 | |
|     void* calloc ( size_t count,  size_t size )
 | |
| 
 | |
| FUNCTION-ALIAS: (free)
 | |
|     void free ( void* alien )
 | |
| 
 | |
| FUNCTION-ALIAS: (realloc)
 | |
|     void* realloc ( void* alien, size_t size )
 | |
| 
 | |
| FUNCTION-ALIAS: strerror_unsafe
 | |
|     char* strerror ( int errno )
 | |
| 
 | |
| ! Add a default strerror even though it's not threadsafe
 | |
| M: object strerror strerror_unsafe ;
 | |
| 
 | |
| ERROR: libc-error errno message ;
 | |
| 
 | |
| : (throw-errno) ( errno -- * ) dup strerror libc-error ;
 | |
| 
 | |
| : throw-errno ( -- * ) errno (throw-errno) ;
 | |
| 
 | |
| : io-error ( n -- ) 0 < [ throw-errno ] when ;
 | |
| 
 | |
| <PRIVATE
 | |
| 
 | |
| ! We stick malloc-ptr instances in the global disposables set
 | |
| TUPLE: malloc-ptr value continuation ;
 | |
| 
 | |
| M: malloc-ptr hashcode* value>> hashcode* ;
 | |
| 
 | |
| M: malloc-ptr equal?
 | |
|     over malloc-ptr? [ [ value>> ] same? ] [ 2drop f ] if ;
 | |
| 
 | |
| : <malloc-ptr> ( value -- malloc-ptr )
 | |
|     malloc-ptr new swap >>value ;
 | |
| 
 | |
| PRIVATE>
 | |
| 
 | |
| ERROR: bad-ptr ;
 | |
| 
 | |
| M: bad-ptr summary
 | |
|     drop "Memory allocation failed" ;
 | |
| 
 | |
| : check-ptr ( c-ptr -- c-ptr )
 | |
|     [ bad-ptr ] unless* ;
 | |
| 
 | |
| ERROR: realloc-error ptr size ;
 | |
| 
 | |
| M: realloc-error summary
 | |
|     drop "Memory reallocation failed" ;
 | |
| 
 | |
| <PRIVATE
 | |
| 
 | |
| : add-malloc ( alien -- alien )
 | |
|     dup <malloc-ptr> register-disposable ;
 | |
| 
 | |
| : delete-malloc ( alien -- )
 | |
|     [ <malloc-ptr> unregister-disposable ] when* ;
 | |
| 
 | |
| : malloc-exists? ( alien -- ? )
 | |
|     <malloc-ptr> disposables get in? ;
 | |
| 
 | |
| PRIVATE>
 | |
| 
 | |
| : malloc ( size -- alien )
 | |
|     (malloc) check-ptr add-malloc ;
 | |
| 
 | |
| : calloc ( count size -- alien )
 | |
|     (calloc) check-ptr add-malloc ;
 | |
| 
 | |
| : realloc ( alien size -- newalien )
 | |
|     [ >c-ptr ] dip
 | |
|     over malloc-exists? [ realloc-error ] unless
 | |
|     [ drop ] [ (realloc) check-ptr ] 2bi
 | |
|     [ delete-malloc ] [ add-malloc ] bi* ;
 | |
| 
 | |
| : free ( alien -- )
 | |
|     >c-ptr [ delete-malloc ] [ (free) ] bi ;
 | |
| 
 | |
| FUNCTION: void memset ( void* buf, int char, size_t size )
 | |
| 
 | |
| FUNCTION: void memcpy ( void* dst, void* src, ulong size )
 | |
| 
 | |
| FUNCTION: int memcmp ( void* a, void* b, ulong size )
 | |
| 
 | |
| : memory= ( a b size -- ? ) memcmp 0 = ; inline
 | |
| 
 | |
| FUNCTION: size_t strlen ( c-string alien )
 | |
| 
 | |
| FUNCTION: int system ( c-string command )
 | |
| 
 | |
| DESTRUCTOR: free
 | |
| 
 | |
| ! For libc.linux, libc.windows, libc.macosx...
 | |
| << "libc." os name>> append require >>
 |