]> gitweb.factorcode.org Git - factor.git/blob - basis/classes/struct/struct-docs.factor
Merge branch 'master' into s3
[factor.git] / basis / classes / struct / struct-docs.factor
1 ! (c)Joe Groff bsd license
2 USING: alien classes help.markup help.syntax kernel libc
3 quotations slots ;
4 IN: classes.struct
5
6 HELP: <struct-boa>
7 { $values
8     { "class" class }
9 }
10 { $description "This macro implements " { $link boa } " for " { $link struct } " classes. A struct of the given class is constructed, and its slots are initialized using values off the top of the datastack." } ;
11
12 HELP: (struct)
13 { $values
14     { "class" class }
15     { "struct" struct }
16 }
17 { $description "Allocates garbage-collected heap memory for a new " { $link struct } " of the specified " { $snippet "class" } ". The new struct's slots are left uninitialized; in most cases, the " { $link <struct> } " word, which initializes the struct's slots with their initial values, should be used instead." } ;
18
19 { (struct) (malloc-struct) } related-words
20
21 HELP: <struct>
22 { $values
23     { "class" class }
24     { "struct" struct }
25 }
26 { $description "Allocates garbage-collected heap memory for a new " { $link struct } " of the specified " { $snippet "class" } ". The new struct's slots are initialized with the initial values specified in the struct definition." } ;
27
28 { <struct> <struct-boa> malloc-struct memory>struct } related-words
29
30 HELP: STRUCT:
31 { $syntax "STRUCT: class { slot type } { slot type } ... ;" }
32 { $values { "class" "a new " { $link struct } " class to define" } { "slots" "a list of slot specifiers" } }
33 { $description "Defines a new " { $link struct } " type. The syntax is nearly identical to " { $link POSTPONE: TUPLE: } "; however, there are some additional restrictions on struct types:"
34 { $list
35 { "Struct classes cannot have a superclass defined." }
36 { "The slots of a struct must all have a type declared. The type must be a C type." } 
37 { { $link read-only } " slots on structs are not enforced, though they may be declared." }
38 }
39 "Additionally, structs may use bit fields. A slot specifier may use the syntax " { $snippet "bits: n" } " to specify that the bit width of the slot is " { $snippet "n" } ". Bit width may be specified on signed or unsigned integer slots. The layout of bit fields is not guaranteed to match that of any particular C compiler." } ;
40
41 HELP: S{
42 { $syntax "S{ class slots... }" }
43 { $values { "class" "a " { $link struct } " class word" } { "slots" "slot values" } }
44 { $description "Marks the beginning of a literal struct. The syntax is identical to tuple literal syntax with " { $link POSTPONE: T{ } { $snippet " }" } "; either the assoc syntax (that is, " { $snippet "S{ class { slot value } { slot value } ... }" } ") or the simple syntax (" { $snippet "S{ class f value value ... }" } ") can be used." } ;
45
46 HELP: S@
47 { $syntax "S@ class alien" }
48 { $values { "class" "a " { $link struct } " class word" } { "alien" "a literal alien" } }
49 { $description "Marks the beginning of a literal struct at a specific C address. The prettyprinter uses this syntax when the memory backing a struct object is invalid. This syntax should not generally be used in source code." } ;
50
51 { POSTPONE: S{ POSTPONE: S@ } related-words
52
53 HELP: UNION-STRUCT:
54 { $syntax "UNION-STRUCT: class { slot type } { slot type } ... ;" }
55 { $values { "class" "a new " { $link struct } " class to define" } { "slots" "a list of slot specifiers" } }
56 { $description "Defines a new " { $link struct } " type where all of the slots share the same storage. See " { $link POSTPONE: STRUCT: } " for details on the syntax." } ;
57
58 HELP: define-struct-class
59 { $values
60     { "class" class } { "slots" "a sequence of " { $link struct-slot-spec } "s" }
61 }
62 { $description "Defines a new " { $link struct } " class. This is the runtime equivalent of the " { $link POSTPONE: STRUCT: } " syntax." } ;
63
64 HELP: define-union-struct-class
65 { $values
66     { "class" class } { "slots" "a sequence of " { $link struct-slot-spec } "s" }
67 }
68 { $description "Defines a new " { $link struct } " class where all of the slots share the same storage. This is the runtime equivalent of the " { $link POSTPONE: UNION-STRUCT: } " syntax." } ;
69
70 HELP: malloc-struct
71 { $values
72     { "class" class }
73     { "struct" struct }
74 }
75 { $description "Allocates unmanaged C heap memory for a new " { $link struct } " of the specified " { $snippet "class" } ". The new struct's slots are initialized to their initial values. The struct should be " { $link free } "d when it is no longer needed." } ;
76
77 HELP: (malloc-struct)
78 { $values
79     { "class" class }
80     { "struct" struct }
81 }
82 { $description "Allocates unmanaged C heap memory for a new " { $link struct } " of the specified " { $snippet "class" } ". The new struct's slots are left uninitialized; to initialize the allocated memory with the slots' initial values, use " { $link malloc-struct } ". The struct should be " { $link free } "d when it is no longer needed." } ;
83
84 HELP: memory>struct
85 { $values
86     { "ptr" c-ptr } { "class" class }
87     { "struct" struct }
88 }
89 { $description "Constructs a new " { $link struct } " of the specified " { $snippet "class" } " at the memory location referenced by " { $snippet "ptr" } ". The referenced memory is unchanged." } ;
90
91 HELP: struct
92 { $class-description "The parent class of all struct types." } ;
93
94 { struct POSTPONE: STRUCT: POSTPONE: UNION-STRUCT: } related-words
95
96 HELP: struct-class
97 { $class-description "The metaclass of all " { $link struct } " classes." } ;
98
99 ARTICLE: "classes.struct.examples" "Struct class examples"
100 "A struct with a variety of fields:"
101 { $code
102     "USING: alien.c-types classes.struct ;"
103     ""
104     "STRUCT: test-struct"
105     "    { i int }"
106     "    { chicken char[16] }"
107     "    { data void* } ;"
108 }
109 "Creating a new instance of this struct, and printing out:"
110 { $code "test-struct <struct> ." }
111 "Creating a new instance with slots initialized from the stack:"
112 { $code
113     "USING: libc specialized-arrays ;"
114     "SPECIALIZED-ARRAY: char"
115     ""
116     "42"
117     "\"Hello, chicken.\" >char-array"
118     "1024 malloc"
119     "test-struct <struct-boa> ."
120 } ;
121
122 ARTICLE: "classes.struct.define" "Defining struct classes"
123 "Struct classes are defined using a syntax similar to the " { $link POSTPONE: TUPLE: } " syntax for defining tuple classes:"
124 { $subsections POSTPONE: STRUCT: }
125 "Union structs are also supported, which behave like structs but share the same memory for all the slots."
126 { $subsections POSTPONE: UNION-STRUCT: } ;
127
128 ARTICLE: "classes.struct.create" "Creating instances of structs"
129 "Structs can be allocated with " { $link new } "- and " { $link boa } "-like constructor words. Additional words are provided for building structs from C memory and from existing buffers:"
130 { $subsections
131     <struct>
132     <struct-boa>
133     malloc-struct
134     memory>struct
135 }
136 "When the contents of a struct will be immediately reset, faster primitive words are available that will create a struct without initializing its contents:"
137 { $subsections
138     (struct)
139     (malloc-struct)
140 }
141 "Structs have literal syntax, similar to " { $link POSTPONE: T{ } " for tuples:"
142 { $subsections POSTPONE: S{ } ;
143
144 ARTICLE: "classes.struct.c" "Passing structs to C functions"
145 "Structs can be passed and returned by value, or by reference."
146 $nl
147 "If a parameter is declared with a struct type, the parameter is passed by value. To pass a struct by reference, declare a parameter with a pointer to struct type."
148 $nl
149 "If a C function is declared as returning a struct type, the struct is returned by value, and wrapped in an instance of the correct struct class automatically. If a C function is declared as returning a pointer to a struct, it will return an " { $link alien } " instance. This is because there is no way to distinguish between a pointer to a single struct and a pointer to an array of zero or more structs. It is up to the caller to wrap it in a struct, or a specialized array of structs, respectively."
150 $nl
151 "An example of a struct declaration:"
152 { $code
153     "USING: alien.c-types classes.struct ;"
154     ""
155     "STRUCT: Point"
156     "    { x int }"
157     "    { y int }"
158     "    { z int } ;"
159 }
160 "A C function which returns a struct by value:"
161 { $code
162     "USING: alien.syntax ;"
163     "FUNCTION: Point give_me_a_point ( c-string description ) ;"
164 }
165 "A C function which takes a struct parameter by reference:"
166 { $code
167     "FUNCTION: void print_point ( Point* p ) ;"
168 } ;
169
170 ARTICLE: "classes.struct" "Struct classes"
171 "The " { $vocab-link "classes.struct" } " vocabulary implements " { $link struct } " classes. They are similar to " { $link tuple } " classes, but their slots exhibit value semantics, and they are backed by a contiguous structured block of memory. Structs can be used for space-efficient storage of data in the Factor heap, as well as for passing data to and from C libraries using the " { $link "alien" } "."
172 { $subsections
173     "classes.struct.examples"
174     "classes.struct.define"
175     "classes.struct.create"
176     "classes.struct.c"
177 } ;
178
179 ABOUT: "classes.struct"