Merge branch 'master' of git://factorcode.org/git/factor

db4
Slava Pestov 2008-05-09 16:40:15 -05:00
commit 611e391521
10 changed files with 34 additions and 14 deletions

View File

@ -3,6 +3,7 @@ USING: kernel namespaces assocs
io.files io.encodings.utf8 prettyprint
help.lint
benchmark
tools.time
bootstrap.stage2
tools.test tools.vocabs
builder.util ;
@ -26,8 +27,8 @@ IN: builder.test
: do-all ( -- )
bootstrap-time get "../boot-time" utf8 [ . ] with-file-writer
[ do-load ] runtime "../load-time" utf8 [ . ] with-file-writer
[ do-tests ] runtime "../test-time" utf8 [ . ] with-file-writer
[ do-load ] benchmark "../load-time" utf8 [ . ] with-file-writer
[ do-tests ] benchmark "../test-time" utf8 [ . ] with-file-writer
do-help-lint
do-benchmarks ;

View File

@ -12,8 +12,6 @@ IN: builder.util
! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
: runtime ( quot -- time ) benchmark nip ;
: minutes>ms ( min -- ms ) 60 * 1000 * ;
: file>string ( file -- string ) utf8 file-contents ;

View File

@ -221,3 +221,9 @@ M: duplex-stream underlying-handle
[ in>> underlying-handle ]
[ out>> underlying-handle ] bi
[ = [ "Invalid duplex stream" throw ] when ] keep ;
M: encoder underlying-handle
stream>> underlying-handle ;
M: decoder underlying-handle
stream>> underlying-handle ;

View File

@ -45,9 +45,10 @@ M: unix (file-appender) ( path -- stream )
M: unix touch-file ( path -- )
normalize-path
touch-mode file-mode open
dup 0 < [ err_no EEXIST = [ err_no io-error ] unless ] when
close ;
dup exists?
[ f utime ]
[ touch-mode file-mode open close ]
if ;
M: unix move-file ( from to -- )
[ normalize-path ] bi@ rename io-error ;

View File

@ -14,7 +14,8 @@ ARTICLE: "timing" "Timing code"
ABOUT: "timing"
HELP: benchmark
{ $values { "quot" "a quotation" } { "gctime" "an integer denoting milliseconds" } { "runtime" "an integer denoting milliseconds" } }
{ $values { "quot" "a quotation" }
{ "runtime" "an integer denoting milliseconds" } }
{ $description "Runs a quotation, measuring the total wall clock time and the total time spent in the garbage collector." }
{ $notes "A nicer word for interactive use is " { $link time } "." } ;

View File

@ -4,7 +4,7 @@ USING: kernel math math.vectors memory io io.styles prettyprint
namespaces system sequences splitting assocs strings ;
IN: tools.time
: benchmark ( quot -- gctime runtime )
: benchmark ( quot -- runtime )
millis >r call millis r> - ; inline
: simple-table. ( values -- )

View File

@ -41,8 +41,9 @@ SYMBOL: stop-after-last-window?
windows global [ [ first = not ] with filter ] change-at ;
: raised-window ( world -- )
windows get-global [ second eq? ] with find drop
windows get-global [ length 1- ] keep exchange ;
windows get-global
[ [ second eq? ] with find drop ] keep
[ nth ] [ delete-nth ] [ nip ] 2tri push ;
: focus-gestures ( new old -- )
drop-prefix <reversed>

View File

@ -3,4 +3,10 @@ USING: alien.syntax ;
IN: unix.ffi
FUNCTION: int open ( char* path, int flags, int prot ) ;
FUNCTION: int open ( char* path, int flags, int prot ) ;
C-STRUCT: utimbuf
{ "time_t" "actime" }
{ "time_t" "modtime" } ;
FUNCTION: int utime ( char* path, utimebuf* buf ) ;

View File

@ -86,6 +86,12 @@ ERROR: open-error path flags prot message ;
3dup unix.ffi:open
dup 0 >= [ >r 3drop r> ] [ drop err_no strerror open-error ] if ;
ERROR: utime-error path message ;
: utime ( path buf -- )
dupd unix.ffi:utime
0 = [ drop ] [ err_no strerror utime-error ] if ;
FUNCTION: int pclose ( void* file ) ;
FUNCTION: int pipe ( int* filedes ) ;
FUNCTION: void* popen ( char* command, char* type ) ;

4
extra/windows/com/wrapper/wrapper.factor Normal file → Executable file
View File

@ -29,7 +29,7 @@ unless
>r find-com-interface-definition family-tree
r> 1quotation [ >r iid>> r> 2array ] curry map
] map-index concat
[ f ] add ,
[ f ] prefix ,
\ case ,
"void*" heap-size
[ * rot <displaced-alien> com-add-ref 0 rot set-void*-nth S_OK ]
@ -99,7 +99,7 @@ unless
PRIVATE>
: <com-wrapper> ( implementations -- wrapper )
(make-vtbls) f com-wrapper construct-boa ;
(make-vtbls) f com-wrapper boa ;
M: com-wrapper dispose
t >>freed?