From 0e34a6d3635111ba2e9d9b169138b6716ddfeafd Mon Sep 17 00:00:00 2001 From: "Jose A. Ortega Ruiz" Date: Fri, 9 Jan 2009 01:50:51 +0100 Subject: [PATCH 01/15] FUEL: Improved connection behaviour in presence of fuel loading errors. --- misc/fuel/fuel-connection.el | 80 ++++++++++++++++++++++++------------ misc/fuel/fuel-listener.el | 6 +-- 2 files changed, 54 insertions(+), 32 deletions(-) diff --git a/misc/fuel/fuel-connection.el b/misc/fuel/fuel-connection.el index 09d1ddfb51..11b135d0f7 100644 --- a/misc/fuel/fuel-connection.el +++ b/misc/fuel/fuel-connection.el @@ -29,10 +29,7 @@ (defun fuel-con--get-connection (buffer/proc) (if (processp buffer/proc) (fuel-con--get-connection (process-buffer buffer/proc)) - (with-current-buffer buffer/proc - (or fuel-con--connection - (setq fuel-con--connection - (fuel-con--setup-connection buffer/proc)))))) + (with-current-buffer buffer/proc fuel-con--connection))) ;;; Request and connection datatypes: @@ -126,19 +123,20 @@ (defun fuel-con--setup-connection (buffer) (set-buffer buffer) (fuel-con--cleanup-connection fuel-con--connection) + (setq fuel-con--connection nil) (let ((conn (fuel-con--make-connection buffer))) (fuel-con--setup-comint) - (prog1 - (setq fuel-con--connection conn) - (fuel-con--connection-start-timer conn)))) + (fuel-con--establish-connection conn buffer))) (defconst fuel-con--prompt-regex "( .+ ) ") (defconst fuel-con--eot-marker "<~FUEL~>") (defconst fuel-con--init-stanza "USE: fuel fuel-retort") -(defconst fuel-con--comint-finished-regex +(defconst fuel-con--comint-finished-regex-connected (format "^%s$" fuel-con--eot-marker)) +(defvar fuel-con--comint-finished-regex fuel-con--prompt-regex) + (defun fuel-con--setup-comint () (set (make-local-variable 'comint-redirect-insert-matching-regexp) t) (add-hook 'comint-redirect-filter-functions @@ -154,17 +152,43 @@ (setq comint-redirect-finished-regexp fuel-con--prompt-regex)) str) +(defun fuel-con--establish-connection (conn buffer) + (with-current-buffer (fuel-con--comint-buffer) (erase-buffer)) + (with-current-buffer buffer + (setq fuel-con--connection conn) + (setq fuel-con--comint-finished-regex fuel-con--prompt-regex) + (fuel-con--send-string/wait buffer + fuel-con--init-stanza + 'fuel-con--establish-connection-cont + 20000) + conn)) + +(defun fuel-con--establish-connection-cont (ignore) + (let ((str (with-current-buffer (fuel-con--comint-buffer) (buffer-string)))) + (if (string-match fuel-con--eot-marker str) + (progn + (setq fuel-con--comint-finished-regex + fuel-con--comint-finished-regex-connected) + (fuel-con--connection-start-timer conn) + (message "FUEL listener up and running!")) + (fuel-con--connection-clean-current-request fuel-con--connection) + (setq fuel-con--connection nil) + (message "An error occurred initialising FUEL's Factor library!") + (pop-to-buffer (fuel-con--comint-buffer))))) + ;;; Requests handling: (defsubst fuel-con--comint-buffer () (get-buffer-create " *fuel connection retort*")) -(defsubst fuel-con--comint-buffer-form () +(defun fuel-con--comint-buffer-form () (with-current-buffer (fuel-con--comint-buffer) (goto-char (point-min)) (condition-case nil - (read (current-buffer)) + (let ((form (read (current-buffer)))) + (if (listp form) form + (list 'fuel-con-error (buffer-string)))) (error (list 'fuel-con-error (buffer-string)))))) (defun fuel-con--process-next (con) @@ -212,7 +236,7 @@ (save-current-buffer (let ((con (fuel-con--get-connection buffer/proc))) (unless con - (error "FUEL: couldn't find connection")) + (error "FUEL: no connection")) (let ((req (fuel-con--make-request str cont sender-buffer))) (fuel-con--connection-queue-request con req) (fuel-con--process-next con) @@ -223,22 +247,24 @@ (defun fuel-con--send-string/wait (buffer/proc str cont &optional timeout sbuf) (save-current-buffer - (let* ((con (fuel-con--get-connection buffer/proc)) - (req (fuel-con--send-string buffer/proc str cont sbuf)) - (id (and req (fuel-con--request-id req))) - (time (or timeout fuel-connection-timeout)) - (step 100) - (waitsecs (/ step 1000.0))) - (when id - (condition-case nil - (while (and (> time 0) - (not (fuel-con--connection-completed-p con id))) - (accept-process-output nil waitsecs) - (setq time (- time step))) - (error (setq time 0))) - (or (> time 0) - (fuel-con--request-deactivate req) - nil))))) + (let ((con (fuel-con--get-connection buffer/proc))) + (unless con + (error "FUEL: no connection")) + (let* ((req (fuel-con--send-string buffer/proc str cont sbuf)) + (id (and req (fuel-con--request-id req))) + (time (or timeout fuel-connection-timeout)) + (step 100) + (waitsecs (/ step 1000.0))) + (when id + (condition-case nil + (while (and (> time 0) + (not (fuel-con--connection-completed-p con id))) + (accept-process-output nil waitsecs) + (setq time (- time step))) + (error (setq time 0))) + (or (> time 0) + (fuel-con--request-deactivate req) + nil)))))) (provide 'fuel-connection) diff --git a/misc/fuel/fuel-listener.el b/misc/fuel/fuel-listener.el index ecb47f68a2..d4fa5aed1f 100644 --- a/misc/fuel/fuel-listener.el +++ b/misc/fuel/fuel-listener.el @@ -78,11 +78,7 @@ buffer." (make-comint-in-buffer "fuel listener" (current-buffer) factor nil "-run=listener" (format "-i=%s" image)) (fuel-listener--wait-for-prompt 10000) - (fuel-con--setup-connection (current-buffer)) - (fuel-con--send-string/wait (current-buffer) - fuel-con--init-stanza - '(lambda (s) (message "FUEL listener up and running!")) - 20000))) + (fuel-con--setup-connection (current-buffer)))) (defun fuel-listener--process (&optional start) (or (and (buffer-live-p (fuel-listener--buffer)) From a889b9d2d097a039099d3e68049a44ee449ff63c Mon Sep 17 00:00:00 2001 From: "Jose A. Ortega Ruiz" Date: Fri, 9 Jan 2009 03:45:04 +0100 Subject: [PATCH 02/15] FUEL: Nicer autodoc error messages. --- misc/fuel/factor-mode.el | 2 +- misc/fuel/fuel-autodoc.el | 5 ++++- misc/fuel/fuel-connection.el | 8 ++++---- 3 files changed, 9 insertions(+), 6 deletions(-) diff --git a/misc/fuel/factor-mode.el b/misc/fuel/factor-mode.el index 394f6c41f9..d3a633910c 100644 --- a/misc/fuel/factor-mode.el +++ b/misc/fuel/factor-mode.el @@ -241,7 +241,7 @@ code in the buffer." (defun factor-mode-insert-and-indent (n) (interactive "p") (self-insert-command n) - (indent-for-tab-command)) + (indent-according-to-mode)) (defvar factor-mode-map (let ((map (make-sparse-keymap))) diff --git a/misc/fuel/fuel-autodoc.el b/misc/fuel/fuel-autodoc.el index 53b5228965..76919702bb 100644 --- a/misc/fuel/fuel-autodoc.el +++ b/misc/fuel/fuel-autodoc.el @@ -57,7 +57,10 @@ (defun fuel-autodoc--eldoc-function () (or (and fuel-autodoc--fallback-function (funcall fuel-autodoc--fallback-function)) - (fuel-autodoc--word-synopsis))) + (condition-case e + (fuel-autodoc--word-synopsis) + (error (format "Autodoc not available (%s)" + (error-message-string e)))))) ;;; Autodoc mode: diff --git a/misc/fuel/fuel-connection.el b/misc/fuel/fuel-connection.el index 11b135d0f7..f9cc1fb0f3 100644 --- a/misc/fuel/fuel-connection.el +++ b/misc/fuel/fuel-connection.el @@ -232,11 +232,12 @@ ;;; Message sending interface: +(defconst fuel-con--error-message "FUEL connection not active") + (defun fuel-con--send-string (buffer/proc str cont &optional sender-buffer) (save-current-buffer (let ((con (fuel-con--get-connection buffer/proc))) - (unless con - (error "FUEL: no connection")) + (unless con (error fuel-con--error-message)) (let ((req (fuel-con--make-request str cont sender-buffer))) (fuel-con--connection-queue-request con req) (fuel-con--process-next con) @@ -248,8 +249,7 @@ (defun fuel-con--send-string/wait (buffer/proc str cont &optional timeout sbuf) (save-current-buffer (let ((con (fuel-con--get-connection buffer/proc))) - (unless con - (error "FUEL: no connection")) + (unless con (error fuel-con--error-message)) (let* ((req (fuel-con--send-string buffer/proc str cont sbuf)) (id (and req (fuel-con--request-id req))) (time (or timeout fuel-connection-timeout)) From 8d8efb6dcedb4be96b0f67eb2d89743d77a6a549 Mon Sep 17 00:00:00 2001 From: Daniel Ehrenberg Date: Thu, 8 Jan 2009 22:49:24 -0600 Subject: [PATCH 03/15] Fixing Unicode bootstrap issue (hopefully) --- basis/bootstrap/unicode/unicode.factor | 5 ----- basis/unicode/case/case.factor | 2 +- basis/unicode/data/data.factor | 6 +++++- 3 files changed, 6 insertions(+), 7 deletions(-) diff --git a/basis/bootstrap/unicode/unicode.factor b/basis/bootstrap/unicode/unicode.factor index 1e9f8b8642..e69de29bb2 100644 --- a/basis/bootstrap/unicode/unicode.factor +++ b/basis/bootstrap/unicode/unicode.factor @@ -1,5 +0,0 @@ -USING: strings.parser kernel namespaces unicode unicode.data ; -IN: bootstrap.unicode - -[ name>char [ "Invalid character" throw ] unless* ] -name>char-hook set-global diff --git a/basis/unicode/case/case.factor b/basis/unicode/case/case.factor index c800205704..773bbeed5f 100644 --- a/basis/unicode/case/case.factor +++ b/basis/unicode/case/case.factor @@ -1,6 +1,6 @@ ! Copyright (C) 2008 Daniel Ehrenberg. ! See http://factorcode.org/license.txt for BSD license. -USING: unicode.data sequences sequences.next namespaces make +USING: unicode.data sequences sequences.next namespaces make unicode.syntax unicode.normalize math unicode.categories combinators unicode.syntax assocs strings splitting kernel accessors unicode.breaks fry ; IN: unicode.case diff --git a/basis/unicode/data/data.factor b/basis/unicode/data/data.factor index 6cf913bffa..e78b4c104a 100644 --- a/basis/unicode/data/data.factor +++ b/basis/unicode/data/data.factor @@ -4,7 +4,8 @@ USING: combinators.short-circuit assocs math kernel sequences io.files hashtables quotations splitting grouping arrays io math.parser hash2 math.order byte-arrays words namespaces words compiler.units parser io.encodings.ascii values interval-maps -ascii sets combinators locals math.ranges sorting make io.encodings.utf8 ; +ascii sets combinators locals math.ranges sorting make +strings.parser io.encodings.utf8 ; IN: unicode.data VALUE: simple-lower @@ -218,3 +219,6 @@ SYMBOL: interned : load-script ( filename -- table ) ascii parse-script process-script ; + +[ name>char [ "Invalid character" throw ] unless* ] +name>char-hook set-global From e661c67189bd27ae64977ef4f54386db9bec3d8d Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Thu, 8 Jan 2009 23:09:38 -0600 Subject: [PATCH 04/15] refactor a word to use smart combinators --- .../tree/propagation/inlining/inlining.factor | 24 ++++++++++--------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/basis/compiler/tree/propagation/inlining/inlining.factor b/basis/compiler/tree/propagation/inlining/inlining.factor index bd6d657442..7b3135e85c 100644 --- a/basis/compiler/tree/propagation/inlining/inlining.factor +++ b/basis/compiler/tree/propagation/inlining/inlining.factor @@ -3,7 +3,7 @@ USING: accessors kernel arrays sequences math math.order math.partial-dispatch generic generic.standard generic.math classes.algebra classes.union sets quotations assocs combinators -words namespaces continuations classes fry +words namespaces continuations classes fry combinators.smart compiler.tree compiler.tree.builder compiler.tree.recursive @@ -134,17 +134,19 @@ DEFER: (flat-length) over 2 <= [ drop ] [ 2/ 1+ * ] if 24 swap [-] 4 /i ; : inlining-rank ( #call word -- n ) - [ classes-known? 2 0 ? ] [ - { - [ body-length-bias ] - [ "default" word-prop -4 0 ? ] - [ "specializer" word-prop 1 0 ? ] - [ method-body? 1 0 ? ] - } cleave - node-count-bias - loop-nesting get 0 or 2 * - ] bi* + + + + + + ; + [ classes-known? 2 0 ? ] + [ + { + [ body-length-bias ] + [ "default" word-prop -4 0 ? ] + [ "specializer" word-prop 1 0 ? ] + [ method-body? 1 0 ? ] + } cleave + node-count-bias + loop-nesting get 0 or 2 * + ] bi* + ] sum-outputs ; : should-inline? ( #call word -- ? ) dup "inline" word-prop [ 2drop t ] [ inlining-rank 5 >= ] if ; From 1ed964e53989341a94875dcf5d547dbba9b158e9 Mon Sep 17 00:00:00 2001 From: Daniel Ehrenberg Date: Fri, 9 Jan 2009 14:03:33 -0600 Subject: [PATCH 05/15] Speeding up normalization --- basis/unicode/case/case.factor | 57 ++++--- .../unicode/normalize/normalize-tests.factor | 2 + basis/unicode/normalize/normalize.factor | 146 ++++++++++-------- 3 files changed, 114 insertions(+), 91 deletions(-) diff --git a/basis/unicode/case/case.factor b/basis/unicode/case/case.factor index 773bbeed5f..555a39ac88 100644 --- a/basis/unicode/case/case.factor +++ b/basis/unicode/case/case.factor @@ -1,16 +1,18 @@ ! Copyright (C) 2008 Daniel Ehrenberg. ! See http://factorcode.org/license.txt for BSD license. -USING: unicode.data sequences sequences.next namespaces make unicode.syntax -unicode.normalize math unicode.categories combinators unicode.syntax -assocs strings splitting kernel accessors unicode.breaks fry ; +USING: unicode.data sequences sequences.next namespaces +sbufs make unicode.syntax unicode.normalize math hints +unicode.categories combinators unicode.syntax assocs +strings splitting kernel accessors unicode.breaks fry locals ; +QUALIFIED: ascii IN: unicode.case lower ( ch -- lower ) simple-lower at-default ; -: ch>upper ( ch -- upper ) simple-upper at-default ; -: ch>title ( ch -- title ) simple-title at-default ; +: ch>lower ( ch -- lower ) simple-lower at-default ; inline +: ch>upper ( ch -- upper ) simple-upper at-default ; inline +: ch>title ( ch -- title ) simple-title at-default ; inline PRIVATE> SYMBOL: locale ! Just casing locale, or overall? @@ -21,7 +23,7 @@ SYMBOL: locale ! Just casing locale, or overall? [ dup ] swap '[ _ split1-slice swap ] [ ] produce nip ; : replace ( old new str -- newstr ) - [ split-subseq ] dip join ; + [ split-subseq ] dip join ; inline : i-dot? ( -- ? ) locale get { "tr" "az" } member? ; @@ -44,24 +46,24 @@ SYMBOL: locale ! Just casing locale, or overall? [ [ "" ] [ dup first mark-above? [ CHAR: combining-dot-above prefix ] when - ] if-empty ] with-rest ; + ] if-empty ] with-rest ; inline : lithuanian>lower ( string -- lower ) "i" split add-dots "i" join - "j" split add-dots "i" join ; + "j" split add-dots "i" join ; inline : turk>upper ( string -- upper-i ) - "i" "I\u000307" replace ; + "i" "I\u000307" replace ; inline : turk>lower ( string -- lower-i ) "I\u000307" "i" replace - "I" "\u000131" replace ; + "I" "\u000131" replace ; inline : fix-sigma-end ( string -- string ) [ "" ] [ dup peek CHAR: greek-small-letter-sigma = [ 1 head* CHAR: greek-small-letter-final-sigma suffix ] when - ] if-empty ; + ] if-empty ; inline : sigma-map ( string -- string ) { CHAR: greek-capital-letter-sigma } split [ [ @@ -70,19 +72,20 @@ SYMBOL: locale ! Just casing locale, or overall? CHAR: greek-small-letter-final-sigma CHAR: greek-small-letter-sigma ? prefix ] if-empty - ] map ] with-rest concat fix-sigma-end ; + ] map ] with-rest concat fix-sigma-end ; inline : final-sigma ( string -- string ) CHAR: greek-capital-letter-sigma - over member? [ sigma-map ] when ; + over member? [ sigma-map ] when + "" like ; inline -: map-case ( string string-quot char-quot -- case ) - [ - [ - [ dup special-casing at ] 2dip - [ [ % ] compose ] [ [ , ] compose ] bi* ?if - ] 2curry each - ] "" make ; inline +:: map-case ( string string-quot char-quot -- case ) + string length :> out + string [ + dup special-casing at + [ string-quot call out push-all ] + [ char-quot call out push ] ?if + ] each out "" like ; inline PRIVATE> @@ -90,24 +93,30 @@ PRIVATE> i-dot? [ turk>lower ] when final-sigma [ lower>> ] [ ch>lower ] map-case ; +HINTS: >lower string ; + : >upper ( string -- upper ) i-dot? [ turk>upper ] when [ upper>> ] [ ch>upper ] map-case ; +HINTS: >upper string ; + title) ( string -- title ) i-dot? [ turk>upper ] when - [ title>> ] [ ch>title ] map-case ; + [ title>> ] [ ch>title ] map-case ; inline : title-word ( string -- title ) - unclip 1string [ >lower ] [ (>title) ] bi* prepend ; + unclip 1string [ >lower ] [ (>title) ] bi* prepend ; inline PRIVATE> : >title ( string -- title ) final-sigma >words [ title-word ] map concat ; +HINTS: >title string ; + : >case-fold ( string -- fold ) >upper >lower ; diff --git a/basis/unicode/normalize/normalize-tests.factor b/basis/unicode/normalize/normalize-tests.factor index 25d5ce365c..1242e1d358 100644 --- a/basis/unicode/normalize/normalize-tests.factor +++ b/basis/unicode/normalize/normalize-tests.factor @@ -3,6 +3,8 @@ unicode.data io.encodings.utf8 io.files splitting math.parser locals math quotations assocs combinators unicode.normalize.private ; IN: unicode.normalize.tests +{ nfc nfkc nfd nfkd } [ must-infer ] each + [ "ab\u000323\u000302cd" ] [ "ab\u000302" "\u000323cd" string-append ] unit-test [ "ab\u00064b\u000347\u00034e\u00034d\u000346" ] [ "ab\u000346\u000347\u00064b\u00034e\u00034d" dup reorder ] unit-test diff --git a/basis/unicode/normalize/normalize.factor b/basis/unicode/normalize/normalize.factor index 7a41a768cd..f7aa248028 100644 --- a/basis/unicode/normalize/normalize.factor +++ b/basis/unicode/normalize/normalize.factor @@ -1,8 +1,8 @@ ! Copyright (C) 2008 Daniel Ehrenberg. ! See http://factorcode.org/license.txt for BSD license. -USING: sequences namespaces make unicode.data kernel math arrays +USING: ascii sequences namespaces make unicode.data kernel math arrays locals sorting.insertion accessors assocs math.order combinators -unicode.syntax strings sbufs ; +unicode.syntax strings sbufs hints combinators.short-circuit vectors ; IN: unicode.normalize jamo ( hangul -- jamo-string ) hangul-base - final-count /mod final-base + @@ -48,16 +48,16 @@ CONSTANT: final-count 28 : reorder-slice ( string start -- slice done? ) 2dup swap [ non-starter? not ] find-from drop - [ [ over length ] unless* rot ] keep not ; + [ [ over length ] unless* rot ] keep not ; inline : reorder-next ( string i -- new-i done? ) over [ non-starter? ] find-from drop [ reorder-slice [ dup [ combining-class ] insertion-sort to>> ] dip - ] [ length t ] if* ; + ] [ length t ] if* ; inline : reorder-loop ( string start -- ) - dupd reorder-next [ 2drop ] [ reorder-loop ] if ; + dupd reorder-next [ 2drop ] [ reorder-loop ] if ; inline recursive : reorder ( string -- ) 0 reorder-loop ; @@ -66,12 +66,14 @@ CONSTANT: final-count 28 over [ non-starter? not ] find-last-from drop ?1+ reorder-next 2drop ; :: decompose ( string quot -- decomposed ) - [let | out [ string length ] | - string [ + string length :> out + string [ + >fixnum dup ascii? [ out push ] [ dup hangul? [ hangul>jamo out push-all ] [ dup quot call [ out push-all ] [ out push ] ?if ] if - ] each out >string - ] dup reorder ; + ] if + ] each + out "" like dup reorder ; inline : with-string ( str quot -- str ) over aux>> [ call ] [ drop ] if ; inline @@ -79,9 +81,13 @@ CONSTANT: final-count 28 : (nfd) ( string -- nfd ) [ canonical-entry ] decompose ; +HINTS: (nfd) string ; + : (nfkd) ( string -- nfkd ) [ compatibility-entry ] decompose ; +HINTS: (nfkd) string ; + PRIVATE> : nfd ( string -- nfd ) @@ -95,83 +101,89 @@ PRIVATE> 0 over ?nth non-starter? [ length dupd reorder-back ] [ drop ] if ; +HINTS: string-append string string ; + hangul , ] + [ 3 + ] 2bi ; -: imf, ( -- ) - current to current to current jamo>hangul , ; +: im, ( str i -- str i ) + [ tail-slice first2 final-base jamo>hangul , ] + [ 2 + ] 2bi ; -: im, ( -- ) - current to current final-base jamo>hangul , ; +: compose-jamo ( str i -- str i ) + 2dup initial-medial? [ + 2dup --final? [ imf, ] [ im, ] if + ] [ 2dup swap nth , 1+ ] if ; -: compose-jamo ( -- ) - initial-medial? [ - --final? [ imf, ] [ im, ] if - ] [ current , ] if to ; +: pass-combining ( str -- str i ) + dup [ non-starter? not ] find drop + [ dup length ] unless* + 2dup head-slice % ; -: pass-combining ( -- ) - current non-starter? [ current , to pass-combining ] when ; +TUPLE: compose-state i str char after last-class ; -:: try-compose ( last-class new-char current-class -- new-class ) - last-class current-class = [ new-char after get push last-class ] [ - char get new-char combine-chars - [ char set last-class ] - [ new-char after get push current-class ] if* +: get-str ( state i -- ch ) + swap [ i>> + ] [ str>> ] bi ?nth ; +: current ( state -- ch ) 0 get-str ; +: to ( state -- state ) [ 1+ ] change-i ; +: push-after ( ch state -- state ) [ ?push ] change-after ; + +:: try-compose ( state new-char current-class -- state ) + state last-class>> current-class = + [ new-char state push-after ] [ + state char>> new-char combine-chars + [ state swap >>char ] [ + new-char state push-after + current-class >>last-class + ] if* ] if ; DEFER: compose-iter -: try-noncombining ( char -- ) - char get swap combine-chars - [ char set to f compose-iter ] when* ; +: try-noncombining ( char state -- state ) + tuck char>> swap combine-chars + [ >>char to f >>last-class compose-iter ] when* ; -: compose-iter ( last-class -- ) - current [ +: compose-iter ( state -- state ) + dup current [ dup combining-class { - { f [ 2drop ] } - { 0 [ swap [ drop ] [ try-noncombining ] if ] } + { f [ drop ] } + { 0 [ + over last-class>> + [ drop ] [ swap try-noncombining ] if ] } [ try-compose to compose-iter ] } case - ] [ drop ] if* ; + ] when* ; -: ?new-after ( -- ) - after [ dup empty? [ drop SBUF" " clone ] unless ] change ; +: compose-combining ( ch str i -- str i ) + compose-state new + swap >>i + swap >>str + swap >>char + compose-iter + { [ char>> , ] [ after>> % ] [ str>> ] [ i>> ] } cleave ; -: compose-combining ( ch -- ) - char set to ?new-after - f compose-iter - char get , after get % ; - -: (compose) ( -- ) - current [ - dup jamo? [ drop compose-jamo ] [ - 1 get-str combining-class - [ compose-combining ] [ , to ] if +:: (compose) ( str i -- ) + i str ?nth [ + dup jamo? [ drop str i compose-jamo ] [ + i 1+ str ?nth combining-class + [ str i 1+ compose-combining ] [ , str i 1+ ] if ] if (compose) ] when* ; : combine ( str -- comp ) - [ - main-str set - 0 ind set - SBUF" " clone after set - pass-combining (compose) - ] "" make ; + [ pass-combining (compose) ] "" make ; PRIVATE> From 69e4fe1f766ee410567c4b86741f3fe499adf9df Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Fri, 9 Jan 2009 14:31:02 -0600 Subject: [PATCH 06/15] fix bootstrap on a couple platforms --- basis/io/files/info/unix/freebsd/freebsd.factor | 2 +- basis/io/files/info/unix/linux/linux.factor | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/basis/io/files/info/unix/freebsd/freebsd.factor b/basis/io/files/info/unix/freebsd/freebsd.factor index 398e4ff968..11025e14e6 100644 --- a/basis/io/files/info/unix/freebsd/freebsd.factor +++ b/basis/io/files/info/unix/freebsd/freebsd.factor @@ -3,7 +3,7 @@ USING: accessors alien.c-types alien.syntax combinators io.backend io.files io.files.info io.files.unix kernel math system unix unix.statfs.freebsd unix.statvfs.freebsd unix.getfsstat.freebsd -sequences grouping alien.strings io.encodings.utf8 +sequences grouping alien.strings io.encodings.utf8 unix.types specialized-arrays.direct.uint arrays io.files.info.unix ; IN: io.files.info.unix.freebsd diff --git a/basis/io/files/info/unix/linux/linux.factor b/basis/io/files/info/unix/linux/linux.factor index 60313b3306..b447b6e54f 100644 --- a/basis/io/files/info/unix/linux/linux.factor +++ b/basis/io/files/info/unix/linux/linux.factor @@ -5,7 +5,7 @@ io.backend io.encodings.utf8 io.files io.files.info io.streams.string io.files.unix kernel math.order namespaces sequences sorting system unix unix.statfs.linux unix.statvfs.linux io.files.links specialized-arrays.direct.uint arrays io.files.info.unix assocs -io.pathnames ; +io.pathnames unix.types ; IN: io.files.info.unix.linux TUPLE: linux-file-system-info < unix-file-system-info From fe2a43b481a93170bc38666d0b6cdf89d5862f21 Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Fri, 9 Jan 2009 14:41:00 -0600 Subject: [PATCH 07/15] fix bootstrap --- basis/unix/statfs/freebsd/freebsd.factor | 2 +- basis/unix/statfs/linux/linux.factor | 2 +- basis/unix/statfs/macosx/macosx.factor | 3 ++- basis/unix/statfs/openbsd/openbsd.factor | 2 +- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/basis/unix/statfs/freebsd/freebsd.factor b/basis/unix/statfs/freebsd/freebsd.factor index e6a033e09d..efd12b7d6c 100644 --- a/basis/unix/statfs/freebsd/freebsd.factor +++ b/basis/unix/statfs/freebsd/freebsd.factor @@ -1,6 +1,6 @@ ! Copyright (C) 2008 Doug Coleman. ! See http://factorcode.org/license.txt for BSD license. -USING: alien.syntax ; +USING: alien.syntax unix.types ; IN: unix.statfs.freebsd CONSTANT: MFSNAMELEN 16 ! length of type name including null */ diff --git a/basis/unix/statfs/linux/linux.factor b/basis/unix/statfs/linux/linux.factor index 6550ee572e..20688680fb 100644 --- a/basis/unix/statfs/linux/linux.factor +++ b/basis/unix/statfs/linux/linux.factor @@ -1,6 +1,6 @@ ! Copyright (C) 2008 Doug Coleman. ! See http://factorcode.org/license.txt for BSD license. -USING: alien.syntax ; +USING: alien.syntax unix.types ; IN: unix.statfs.linux C-STRUCT: statfs64 diff --git a/basis/unix/statfs/macosx/macosx.factor b/basis/unix/statfs/macosx/macosx.factor index f80eb29ccd..c262949730 100644 --- a/basis/unix/statfs/macosx/macosx.factor +++ b/basis/unix/statfs/macosx/macosx.factor @@ -2,7 +2,8 @@ ! See http://factorcode.org/license.txt for BSD license. USING: alien.c-types io.encodings.utf8 io.encodings.string kernel sequences unix.stat accessors unix combinators math -grouping system alien.strings math.bitwise alien.syntax ; +grouping system alien.strings math.bitwise alien.syntax +unix.types ; IN: unix.statfs.macosx CONSTANT: MNT_RDONLY HEX: 00000001 diff --git a/basis/unix/statfs/openbsd/openbsd.factor b/basis/unix/statfs/openbsd/openbsd.factor index f495f2af4e..456883514a 100644 --- a/basis/unix/statfs/openbsd/openbsd.factor +++ b/basis/unix/statfs/openbsd/openbsd.factor @@ -1,6 +1,6 @@ ! Copyright (C) 2008 Doug Coleman. ! See http://factorcode.org/license.txt for BSD license. -USING: alien.syntax ; +USING: alien.syntax unix.types ; IN: unix.statfs.openbsd CONSTANT: MFSNAMELEN 16 From c8fe4b21e7d56088a9f8145078f603a9ebce94f5 Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Fri, 9 Jan 2009 15:39:47 -0600 Subject: [PATCH 08/15] Rename reduce-output -> reduce-outputs --- basis/combinators/smart/smart-docs.factor | 6 +++--- basis/combinators/smart/smart-tests.factor | 4 ++-- basis/combinators/smart/smart.factor | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/basis/combinators/smart/smart-docs.factor b/basis/combinators/smart/smart-docs.factor index 69ec3e7013..3df709c9fa 100644 --- a/basis/combinators/smart/smart-docs.factor +++ b/basis/combinators/smart/smart-docs.factor @@ -48,7 +48,7 @@ HELP: output>sequence } } ; -HELP: reduce-output +HELP: reduce-outputs { $values { "quot" quotation } { "operation" quotation } { "newquot" quotation } @@ -57,7 +57,7 @@ HELP: reduce-output { $examples { $example "USING: combinators.smart kernel math prettyprint ;" - "3 [ [ 4 * ] [ 4 / ] [ 4 - ] tri ] [ * ] reduce-output ." + "3 [ [ 4 * ] [ 4 / ] [ 4 - ] tri ] [ * ] reduce-outputs ." "-9" } } ; @@ -84,7 +84,7 @@ ARTICLE: "combinators.smart" "Smart combinators" { $subsection output>sequence } { $subsection output>array } "Reducing the output of a quotation:" -{ $subsection reduce-output } +{ $subsection reduce-outputs } "Summing the output of a quotation:" { $subsection sum-outputs } ; diff --git a/basis/combinators/smart/smart-tests.factor b/basis/combinators/smart/smart-tests.factor index 4be445e465..54c53477db 100644 --- a/basis/combinators/smart/smart-tests.factor +++ b/basis/combinators/smart/smart-tests.factor @@ -14,8 +14,8 @@ IN: combinators.smart.tests -[ 6 ] [ [ 1 2 3 ] [ + ] reduce-output ] unit-test +[ 6 ] [ [ 1 2 3 ] [ + ] reduce-outputs ] unit-test -[ [ 1 2 3 ] [ + ] reduce-output ] must-infer +[ [ 1 2 3 ] [ + ] reduce-outputs ] must-infer [ 6 ] [ [ 1 2 3 ] sum-outputs ] unit-test diff --git a/basis/combinators/smart/smart.factor b/basis/combinators/smart/smart.factor index fcd28aac74..7a68cb5c1c 100644 --- a/basis/combinators/smart/smart.factor +++ b/basis/combinators/smart/smart.factor @@ -15,8 +15,8 @@ MACRO: input> ] keep '[ _ firstn @ ] ; -MACRO: reduce-output ( quot operation -- newquot ) +MACRO: reduce-outputs ( quot operation -- newquot ) [ dup infer out>> 1 [-] ] dip n*quot compose ; : sum-outputs ( quot -- n ) - [ + ] reduce-output ; inline + [ + ] reduce-outputs ; inline From fb25d04061d595050533b9b98eceda8c7e74dfe1 Mon Sep 17 00:00:00 2001 From: Daniel Ehrenberg Date: Fri, 9 Jan 2009 15:53:35 -0600 Subject: [PATCH 09/15] Optimizing and cleaning up unicode.breaks and unicode.normalize --- basis/unicode/breaks/breaks.factor | 127 +++++++++++------------ basis/unicode/normalize/normalize.factor | 20 ++-- 2 files changed, 72 insertions(+), 75 deletions(-) diff --git a/basis/unicode/breaks/breaks.factor b/basis/unicode/breaks/breaks.factor index df3b2f03e8..10bc235805 100644 --- a/basis/unicode/breaks/breaks.factor +++ b/basis/unicode/breaks/breaks.factor @@ -4,7 +4,8 @@ USING: combinators.short-circuit unicode.categories kernel math combinators splitting sequences math.parser io.files io assocs arrays namespaces make math.ranges unicode.normalize.private values io.encodings.ascii unicode.syntax unicode.data compiler.units fry -alien.syntax sets accessors interval-maps memoize locals words ; +alien.syntax sets accessors interval-maps memoize locals words +strings hints ; IN: unicode.breaks : first-grapheme ( str -- i ) unclip-slice grapheme-class over - [ grapheme-class tuck grapheme-break? ] find-index + [ grapheme-class tuck grapheme-break? ] find drop nip swap length or 1+ ; : last-grapheme ( str -- i ) unclip-last-slice grapheme-class swap - [ grapheme-class dup rot grapheme-break? ] find-last-index ?1+ nip ; + [ grapheme-class dup rot grapheme-break? ] find-last drop ?1+ nip ; -:: first-word ( str -- i ) - str unclip-slice word-break-prop over - [ swap str word-break-next ] assoc-find 2drop - nip swap length or 1+ ; +: first-word ( str -- i ) + [ unclip-slice word-break-prop over ] keep + '[ swap _ word-break-next ] assoc-find 2drop + nip swap length or 1+ ; inline + +HINTS: first-word string ; : >words ( str -- words ) [ first-word ] >pieces ; + +HINTS: >words string ; diff --git a/basis/unicode/normalize/normalize.factor b/basis/unicode/normalize/normalize.factor index f7aa248028..892379dc89 100644 --- a/basis/unicode/normalize/normalize.factor +++ b/basis/unicode/normalize/normalize.factor @@ -134,10 +134,10 @@ HINTS: string-append string string ; TUPLE: compose-state i str char after last-class ; : get-str ( state i -- ch ) - swap [ i>> + ] [ str>> ] bi ?nth ; -: current ( state -- ch ) 0 get-str ; -: to ( state -- state ) [ 1+ ] change-i ; -: push-after ( ch state -- state ) [ ?push ] change-after ; + swap [ i>> + ] [ str>> ] bi ?nth ; inline +: current ( state -- ch ) 0 get-str ; inline +: to ( state -- state ) [ 1+ ] change-i ; inline +: push-after ( ch state -- state ) [ ?push ] change-after ; inline :: try-compose ( state new-char current-class -- state ) state last-class>> current-class = @@ -147,13 +147,13 @@ TUPLE: compose-state i str char after last-class ; new-char state push-after current-class >>last-class ] if* - ] if ; + ] if ; inline DEFER: compose-iter : try-noncombining ( char state -- state ) tuck char>> swap combine-chars - [ >>char to f >>last-class compose-iter ] when* ; + [ >>char to f >>last-class compose-iter ] when* ; inline : compose-iter ( state -- state ) dup current [ @@ -164,7 +164,7 @@ DEFER: compose-iter [ drop ] [ swap try-noncombining ] if ] } [ try-compose to compose-iter ] } case - ] when* ; + ] when* ; inline recursive : compose-combining ( ch str i -- str i ) compose-state new @@ -172,7 +172,7 @@ DEFER: compose-iter swap >>str swap >>char compose-iter - { [ char>> , ] [ after>> % ] [ str>> ] [ i>> ] } cleave ; + { [ char>> , ] [ after>> % ] [ str>> ] [ i>> ] } cleave ; inline :: (compose) ( str i -- ) i str ?nth [ @@ -180,11 +180,13 @@ DEFER: compose-iter i 1+ str ?nth combining-class [ str i 1+ compose-combining ] [ , str i 1+ ] if ] if (compose) - ] when* ; + ] when* ; inline recursive : combine ( str -- comp ) [ pass-combining (compose) ] "" make ; +HINTS: combine string ; + PRIVATE> : nfc ( string -- nfc ) From 7b36938e8c67db929b1a34b4ac6d7771fe442b18 Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Fri, 9 Jan 2009 16:07:16 -0600 Subject: [PATCH 10/15] use unix.stat to fix bootstrap --- basis/unix/statfs/freebsd/freebsd.factor | 2 +- basis/unix/statfs/linux/linux.factor | 2 +- basis/unix/statfs/openbsd/openbsd.factor | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/basis/unix/statfs/freebsd/freebsd.factor b/basis/unix/statfs/freebsd/freebsd.factor index efd12b7d6c..70e2d5e561 100644 --- a/basis/unix/statfs/freebsd/freebsd.factor +++ b/basis/unix/statfs/freebsd/freebsd.factor @@ -1,6 +1,6 @@ ! Copyright (C) 2008 Doug Coleman. ! See http://factorcode.org/license.txt for BSD license. -USING: alien.syntax unix.types ; +USING: alien.syntax unix.types unix.stat ; IN: unix.statfs.freebsd CONSTANT: MFSNAMELEN 16 ! length of type name including null */ diff --git a/basis/unix/statfs/linux/linux.factor b/basis/unix/statfs/linux/linux.factor index 20688680fb..c0db5ced1d 100644 --- a/basis/unix/statfs/linux/linux.factor +++ b/basis/unix/statfs/linux/linux.factor @@ -1,6 +1,6 @@ ! Copyright (C) 2008 Doug Coleman. ! See http://factorcode.org/license.txt for BSD license. -USING: alien.syntax unix.types ; +USING: alien.syntax unix.types unix.stat ; IN: unix.statfs.linux C-STRUCT: statfs64 diff --git a/basis/unix/statfs/openbsd/openbsd.factor b/basis/unix/statfs/openbsd/openbsd.factor index 456883514a..60590be4ea 100644 --- a/basis/unix/statfs/openbsd/openbsd.factor +++ b/basis/unix/statfs/openbsd/openbsd.factor @@ -1,6 +1,6 @@ ! Copyright (C) 2008 Doug Coleman. ! See http://factorcode.org/license.txt for BSD license. -USING: alien.syntax unix.types ; +USING: alien.syntax unix.types unix.stat ; IN: unix.statfs.openbsd CONSTANT: MFSNAMELEN 16 From e61acc5eee7f59d1b58746bc2b2624da773b3df7 Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Fri, 9 Jan 2009 16:34:31 -0600 Subject: [PATCH 11/15] username -> user-name in a couple of places --- basis/io/files/unix/unix-tests.factor | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/basis/io/files/unix/unix-tests.factor b/basis/io/files/unix/unix-tests.factor index 48a128d862..003cb40621 100644 --- a/basis/io/files/unix/unix-tests.factor +++ b/basis/io/files/unix/unix-tests.factor @@ -117,12 +117,12 @@ prepare-test-file [ ] [ test-file f f 2array set-file-times ] unit-test -[ ] [ test-file real-username set-file-user ] unit-test +[ ] [ test-file real-user-name set-file-user ] unit-test [ ] [ test-file real-user-id set-file-user ] unit-test [ ] [ test-file real-group-name set-file-group ] unit-test [ ] [ test-file real-group-id set-file-group ] unit-test -[ t ] [ test-file file-username real-username = ] unit-test +[ t ] [ test-file file-user-name real-user-name = ] unit-test [ t ] [ test-file file-group-name real-group-name = ] unit-test [ ] From 2714de3b85c570e252226f7344081deb0c76a78c Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Fri, 9 Jan 2009 16:35:28 -0600 Subject: [PATCH 12/15] fix help-lint for values -- IN: scratchpad in an example --- basis/values/values-docs.factor | 1 + 1 file changed, 1 insertion(+) diff --git a/basis/values/values-docs.factor b/basis/values/values-docs.factor index 59bf77da3a..df38869fbf 100644 --- a/basis/values/values-docs.factor +++ b/basis/values/values-docs.factor @@ -19,6 +19,7 @@ HELP: VALUE: { $examples { $example "USING: values math prettyprint ;" + "IN: scratchpad" "VALUE: x" "2 2 + to: x" "x ." From 56808874f1a32dc20f10b90201386cc44d6bd9b5 Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Fri, 9 Jan 2009 15:28:10 -0600 Subject: [PATCH 13/15] fix group-name on netbsd --- basis/unix/groups/groups-docs.factor | 6 +++--- basis/unix/groups/groups-tests.factor | 2 ++ basis/unix/groups/groups.factor | 20 ++++++++++++-------- 3 files changed, 17 insertions(+), 11 deletions(-) diff --git a/basis/unix/groups/groups-docs.factor b/basis/unix/groups/groups-docs.factor index 18c2e2384a..07911bc96b 100644 --- a/basis/unix/groups/groups-docs.factor +++ b/basis/unix/groups/groups-docs.factor @@ -24,8 +24,8 @@ HELP: group-cache HELP: group-id { $values { "string" string } - { "id" integer } } -{ $description "Returns the group id given a group name." } ; + { "id/f" "an integer or f" } } +{ $description "Returns the group id given a group name. Returns " { $link f } " if the group does not exist." } ; HELP: group-name { $values @@ -36,7 +36,7 @@ HELP: group-name HELP: group-struct { $values { "obj" object } - { "group" "a group struct" } } + { "group/f" "a group struct or f" } } { $description "Returns an alien group struct to be turned into a group tuple by calling subsequent words." } ; HELP: real-group-id diff --git a/basis/unix/groups/groups-tests.factor b/basis/unix/groups/groups-tests.factor index 75f5d64b5f..2e989b32c0 100644 --- a/basis/unix/groups/groups-tests.factor +++ b/basis/unix/groups/groups-tests.factor @@ -27,3 +27,5 @@ IN: unix.groups.tests [ ] [ real-group-id group-name drop ] unit-test [ "888888888888888" ] [ 888888888888888 group-name ] unit-test +[ f ] +[ "please-oh-please-don't-have-a-group-named-this123lalala" group-struct ] unit-test diff --git a/basis/unix/groups/groups.factor b/basis/unix/groups/groups.factor index 164afa46fb..371bec9a70 100644 --- a/basis/unix/groups/groups.factor +++ b/basis/unix/groups/groups.factor @@ -13,7 +13,7 @@ TUPLE: group id name passwd members ; SYMBOL: group-cache -GENERIC: group-struct ( obj -- group ) +GENERIC: group-struct ( obj -- group/f ) tuck 4096 [ ] keep f ; -M: integer group-struct ( id -- group ) - (group-struct) getgrgid_r io-error ; +: check-group-struct ( group-struct ptr -- group-struct/f ) + *void* [ drop f ] unless ; -M: string group-struct ( string -- group ) - (group-struct) getgrnam_r 0 = [ (io-error) ] unless ; +M: integer group-struct ( id -- group/f ) + (group-struct) [ getgrgid_r io-error ] keep check-group-struct ; + +M: string group-struct ( string -- group/f ) + (group-struct) [ getgrnam_r io-error ] keep check-group-struct ; : group-struct>group ( group-struct -- group ) [ \ group new ] dip @@ -43,14 +46,15 @@ PRIVATE> : group-name ( id -- string ) dup group-cache get [ + "yo" print dupd at* [ name>> nip ] [ drop number>string ] if ] [ - group-struct group-gr_name + group-struct [ group-gr_name ] [ f ] if* ] if* [ nip ] [ number>string ] if* ; -: group-id ( string -- id ) - group-struct group-gr_gid ; +: group-id ( string -- id/f ) + group-struct [ group-gr_gid ] [ f ] if* ; Date: Fri, 9 Jan 2009 15:34:46 -0600 Subject: [PATCH 14/15] display available-space for file-systems. --- basis/tools/files/files.factor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basis/tools/files/files.factor b/basis/tools/files/files.factor index e6ca02d5f9..9066f3a219 100755 --- a/basis/tools/files/files.factor +++ b/basis/tools/files/files.factor @@ -65,7 +65,7 @@ percent-used percent-free ; [ [ unparse ] map ] bi prefix simple-table. ; : file-systems. ( -- ) - { device-name free-space used-space total-space percent-used mount-point } + { device-name available-space free-space used-space total-space percent-used mount-point } print-file-systems ; { From b08e1a02053aa82562db62b059362a27750c280b Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Fri, 9 Jan 2009 17:44:21 -0600 Subject: [PATCH 15/15] remove debug line --- basis/unix/groups/groups.factor | 1 - 1 file changed, 1 deletion(-) diff --git a/basis/unix/groups/groups.factor b/basis/unix/groups/groups.factor index 371bec9a70..f4d91df245 100644 --- a/basis/unix/groups/groups.factor +++ b/basis/unix/groups/groups.factor @@ -46,7 +46,6 @@ PRIVATE> : group-name ( id -- string ) dup group-cache get [ - "yo" print dupd at* [ name>> nip ] [ drop number>string ] if ] [ group-struct [ group-gr_name ] [ f ] if*