add canonicalize-path, fix a bug in file-extension

db4
Doug Coleman 2009-02-18 13:33:55 -06:00
parent 894ba6182e
commit 2af9d5a6df
3 changed files with 25 additions and 2 deletions

View File

@ -1,4 +1,5 @@
USING: help.markup help.syntax io.backend io.files strings ;
USING: help.markup help.syntax io.backend io.files strings
sequences ;
IN: io.pathnames
HELP: path-separator?
@ -22,6 +23,10 @@ HELP: file-name
{ $example "USING: io.pathnames prettyprint ;" "\"/usr/libexec/awk/\" file-name ." "\"awk\"" }
} ;
HELP: path-components
{ $values { "path" "a pathnames string" } { "seq" sequence } }
{ $description "Splits a pathname on the " { $link path-separator } " into its its component strings." } ;
HELP: append-path
{ $values { "str1" "a string" } { "str2" "a string" } { "str" "a string" } }
{ $description "Appends " { $snippet "str1" } " and " { $snippet "str2" } " to form a pathname." } ;
@ -57,6 +62,10 @@ HELP: normalize-path
{ $values { "str" "a pathname string" } { "newstr" "a new pathname string" } }
{ $description "Called by words such as " { $link <file-reader> } " and " { $link <file-writer> } " to prepare a pathname before passing it to underlying code." } ;
HELP: canonicalize-path
{ $values { "path" "a pathname string" } { "path'" "a new pathname string" } }
{ $description "Returns an canonical name for a path. The canonical name is an absolute path containing no symlinks." } ;
HELP: <pathname>
{ $values { "string" "a pathname string" } { "pathname" pathname } }
{ $description "Creates a new " { $link pathname } "." } ;
@ -74,9 +83,12 @@ ARTICLE: "io.pathnames" "Pathname manipulation"
{ $subsection POSTPONE: P" }
"Pathname manipulation:"
{ $subsection normalize-path }
{ $subsection canonicalize-path }
{ $subsection parent-directory }
{ $subsection file-name }
{ $subsection last-path-separator }
{ $subsection path-components }
{ $subsection prepend-path }
{ $subsection append-path }
"Pathname presentations:"
{ $subsection pathname }

View File

@ -66,3 +66,7 @@ IN: io.pathnames.tests
] with-scope
[ t ] [ cwd "misc" resource-path [ ] with-directory cwd = ] unit-test
! Regression test for bug in file-extension
[ f ] [ "/funny.directory/file-with-no-extension" file-extension ] unit-test
[ "" ] [ "/funny.directory/file-with-no-extension." file-extension ] unit-test

View File

@ -119,7 +119,14 @@ PRIVATE>
] unless ;
: file-extension ( filename -- extension )
"." split1-last nip ;
file-name "." split1-last nip ;
: path-components ( path -- seq )
normalize-path path-separator split harvest ;
HOOK: canonicalize-path os ( path -- path' )
M: object canonicalize-path normalize-path ;
: resource-path ( path -- newpath )
"resource-path" get prepend-path ;