]> gitweb.factorcode.org Git - factor.git/blob - basis/io/windows/nt/files/files.factor
157662ade8bfdb9e5b13360cfffc6eb2e73d8438
[factor.git] / basis / io / windows / nt / files / files.factor
1 USING: continuations destructors io.buffers io.files io.backend
2 io.timeouts io.ports io.windows io.windows.files
3 io.windows.nt.backend windows windows.kernel32
4 kernel libc math threads system
5 alien.c-types alien.arrays alien.strings sequences combinators
6 combinators.short-circuit ascii splitting alien strings
7 assocs namespaces make io.files.private accessors tr ;
8 IN: io.windows.nt.files
9
10 M: winnt cwd
11     MAX_UNICODE_PATH dup "ushort" <c-array>
12     [ GetCurrentDirectory win32-error=0/f ] keep
13     utf16n alien>string ;
14
15 M: winnt cd
16     SetCurrentDirectory win32-error=0/f ;
17
18 : unicode-prefix ( -- seq )
19     "\\\\?\\" ; inline
20
21 M: winnt root-directory? ( path -- ? )
22     {
23         { [ dup empty? ] [ drop f ] }
24         { [ dup [ path-separator? ] all? ] [ drop t ] }
25         { [ dup trim-right-separators { [ length 2 = ]
26           [ second CHAR: : = ] } 1&& ] [ drop t ] }
27         { [ dup unicode-prefix head? ]
28           [ trim-right-separators length unicode-prefix length 2 + = ] }
29         [ drop f ]
30     } cond ;
31
32 ERROR: not-absolute-path ;
33
34 : root-directory ( string -- string' )
35     dup {
36         [ length 2 >= ]
37         [ second CHAR: : = ]
38         [ first Letter? ]
39     } 1&& [ 2 head ] [ not-absolute-path ] if ;
40
41 : prepend-prefix ( string -- string' )
42     dup unicode-prefix head? [
43         unicode-prefix prepend
44     ] unless ;
45
46 TR: normalize-separators "/" "\\" ;
47
48 M: winnt normalize-path ( string -- string' )
49     (normalize-path)
50     normalize-separators
51     prepend-prefix ;
52
53 M: winnt CreateFile-flags ( DWORD -- DWORD )
54     FILE_FLAG_OVERLAPPED bitor ;
55
56 M: winnt FileArgs-overlapped ( port -- overlapped )
57     make-overlapped ;
58
59 M: winnt open-append
60     [ dup file-info size>> ] [ drop 0 ] recover
61     >r (open-append) r> >>ptr ;