remove math.blas.syntax and merge parsing words into math.blas.vectors/matrices
[factor/jcg.git] / basis / io / mmap / mmap.factor
blob6f2fabb7098e9ba53ffd8fe1b0fba1c65103e8cd
1 ! Copyright (C) 2007, 2008 Doug Coleman, Slava Pestov.
2 ! See http://factorcode.org/license.txt for BSD license.
3 USING: continuations destructors io.files io.files.info
4 io.backend kernel quotations system alien alien.accessors
5 accessors system vocabs.loader combinators alien.c-types ;
6 IN: io.mmap
8 TUPLE: mapped-file address handle length disposed ;
10 HOOK: (mapped-file) os ( path length -- address handle )
12 : <mapped-file> ( path -- mmap )
13     [ normalize-path ] [ file-info size>> ] bi [ (mapped-file) ] keep
14     f mapped-file boa ;
16 HOOK: close-mapped-file io-backend ( mmap -- )
18 M: mapped-file dispose* ( mmap -- ) close-mapped-file ;
20 : with-mapped-file ( path quot -- )
21     [ <mapped-file> ] dip with-disposal ; inline
24     { [ os unix? ] [ "io.mmap.unix" require ] }
25     { [ os winnt? ] [ "io.mmap.windows" require ] }
26 } cond