66 lines
3.1 KiB
Factor
66 lines
3.1 KiB
Factor
USING: help.markup help.syntax vocabs.loader io.pathnames strings
|
|
definitions quotations compiler.units ;
|
|
IN: source-files
|
|
|
|
ARTICLE: "source-files" "Source files"
|
|
"Words in the " { $vocab-link "source-files" } " vocabulary are used to keep track of loaded source files. This is used to implement " { $link "vocabs.refresh" } "."
|
|
$nl
|
|
"The source file database:"
|
|
{ $subsections source-files }
|
|
"The class of source files:"
|
|
{ $subsections source-file }
|
|
"Words intended for the parser:"
|
|
{ $subsections
|
|
record-checksum
|
|
record-definitions
|
|
}
|
|
"Removing a source file from the database:"
|
|
{ $subsections forget-source }
|
|
"Updating the database:"
|
|
{ $subsections reset-checksums }
|
|
"The " { $link pathname } " class implements the definition protocol by working with the corresponding source file; see " { $link "definitions" } "." ;
|
|
|
|
ABOUT: "source-files"
|
|
|
|
HELP: source-files
|
|
{ $var-description "An assoc mapping pathname strings to " { $link source-file } " instances, representing loaded source files." } ;
|
|
|
|
HELP: path>source-file
|
|
{ $values { "path" "a pathname string" } { "source-file" source-file } }
|
|
{ $description "Outputs the source file associated to a path name, creating the source file first if it doesn't exist. Source files are retained in the " { $link source-files } " variable." } ;
|
|
|
|
HELP: source-file
|
|
{ $class-description "Instances retain information about loaded source files, and have the following slots:"
|
|
{ $list
|
|
{ { $slot "path" } " - a pathname string." }
|
|
{ { $slot "top-level-form" } " - a " { $link quotation } " composed of any code not used to define new words and classes" }
|
|
{ { $slot "checksum" } " - the CRC32 checksum of the source file's contents at the time it was most recently loaded." }
|
|
{ { $slot "definitions" } " - a pair of assocs, containing definitions and classes defined in this source file, respectively" }
|
|
{ { $slot "main" } " - a word that gets called if you " { $link run } " the vocabulary" }
|
|
}
|
|
} ;
|
|
|
|
HELP: record-checksum
|
|
{ $values { "lines" "a sequence of strings" } { "source-file" source-file } }
|
|
{ $description "Records the CRC32 checksum of the source file's contents." }
|
|
$low-level-note ;
|
|
|
|
HELP: reset-checksums
|
|
{ $description "Resets recorded modification times and CRC32 checksums for all loaded source files, creating a checkpoint for " { $link "vocabs.refresh" } "." } ;
|
|
|
|
HELP: forget-source
|
|
{ $values { "path" "a pathname string" } }
|
|
{ $description "Forgets all information known about a source file." }
|
|
{ $notes "This word must be called from inside " { $link with-compilation-unit } "." } ;
|
|
|
|
HELP: record-definitions
|
|
{ $values { "source-file" source-file } }
|
|
{ $description "Records that all " { $link new-definitions } " were defined in " { $snippet "file" } "." } ;
|
|
|
|
HELP: rollback-source-file
|
|
{ $values { "source-file" source-file } }
|
|
{ $description "Records information to the source file after an incomplete parse which ended with an error." } ;
|
|
|
|
HELP: current-source-file
|
|
{ $var-description "Stores the " { $link source-file } " being parsed. The " { $snippet "path" } " of this object comes from the input parameter to " { $link with-source-file } "." } ;
|