]> gitweb.factorcode.org Git - factor.git/blob - core/source-files/source-files-docs.factor
update docs for help.lint checks.
[factor.git] / core / source-files / source-files-docs.factor
1 USING: help.markup help.syntax vocabs.loader io.pathnames strings
2 definitions quotations compiler.units ;
3 IN: source-files
4
5 ARTICLE: "source-files" "Source files"
6 "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" } "."
7 $nl
8 "The source file database:"
9 { $subsections source-files }
10 "The class of source files:"
11 { $subsections source-file }
12 "Words intended for the parser:"
13 { $subsections
14     record-checksum
15     record-definitions
16 }
17 "Removing a source file from the database:"
18 { $subsections forget-source }
19 "Updating the database:"
20 { $subsections reset-checksums }
21 "The " { $link pathname } " class implements the definition protocol by working with the corresponding source file; see " { $link "definitions" } "." ;
22
23 ABOUT: "source-files"
24
25 HELP: source-files
26 { $var-description "An assoc mapping pathname strings to " { $link source-file-tuple } " instances, representing loaded source files." } ;
27
28 HELP: source-file
29 { $values { "path" "a pathname string" } { "source-file" source-file-tuple } }
30 { $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." } ;
31
32 HELP: source-file-tuple
33 { $class-description "Instances retain information about loaded source files, and have the following slots:"
34     { $list
35         { { $slot "path" } " - a pathname string." }
36         { { $slot "checksum" } " - the CRC32 checksum of the source file's contents at the time it was most recently loaded." }
37         { { $slot "definitions" } " - a pair of assocs, containing definitions and classes defined in this source file, respectively" }
38     }
39 } ;
40
41 HELP: record-checksum
42 { $values { "lines" "a sequence of strings" } { "source-file" source-file } }
43 { $description "Records the CRC32 checksum of the source file's contents." }
44 $low-level-note ;
45
46 HELP: reset-checksums
47 { $description "Resets recorded modification times and CRC32 checksums for all loaded source files, creating a checkpoint for " { $link "vocabs.refresh" } "." } ;
48
49 HELP: forget-source
50 { $values { "path" "a pathname string" } }
51 { $description "Forgets all information known about a source file." }
52 { $notes "This word must be called from inside " { $link with-compilation-unit } "." } ;
53
54 HELP: record-definitions
55 { $values { "file" source-file } }
56 { $description "Records that all " { $link new-definitions } " were defined in " { $snippet "file" } "." } ;
57
58 HELP: rollback-source-file
59 { $values { "file" source-file } }
60 { $description "Records information to the source file after an incomplete parse which ended with an error." } ;
61
62 HELP: file
63 { $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 } "." } ;