Class: Utopia::Content::Document
Overview
A single request through content middleware. We use a struct to hide instance varibles since we instance_exec within this context.
Defined Under Namespace
Classes: State
Instance Attribute Summary collapse
Attributes inherited from Response
#body, #headers, #status
Class Method Summary
collapse
Instance Method Summary
collapse
Methods inherited from Response
#cache!, #content_type=, #do_not_cache!, #lookup, #to_a
Constructor Details
#initialize(request, attributes = {}) ⇒ Document
Returns a new instance of Document.
29
30
31
32
33
34
35
36
37
38
39
|
# File 'lib/utopia/content/document.rb', line 29
def initialize(request, attributes = {})
@request = request
@attributes = attributes
@first = nil
@current = nil
@end_tags = []
super()
end
|
Instance Attribute Details
#attributes ⇒ Object
Per-document global attributes.
72
73
74
|
# File 'lib/utopia/content/document.rb', line 72
def attributes
@attributes
end
|
#current ⇒ Object
The current state, represents a list from outer to inner most tag by traversing Utopia::Content::Document::State#parent. At any point in parsing markup, this is a list of the inner most tag, then the next outer tag, etc.
77
78
79
|
# File 'lib/utopia/content/document.rb', line 77
def current
@current
end
|
End tags represents a list of execution order. This is the order that end tags have appeared when evaluating nodes.
85
86
87
|
# File 'lib/utopia/content/document.rb', line 85
def end_tags
@end_tags
end
|
#first ⇒ Object
The first State generated by rendering this document. It contains useful information regarding the node and uri used to access the resource.
81
82
83
|
# File 'lib/utopia/content/document.rb', line 81
def first
@first
end
|
#request ⇒ Object
The Rack::Request for this document.
69
70
71
|
# File 'lib/utopia/content/document.rb', line 69
def request
@request
end
|
Class Method Details
.render(node, request, attributes) ⇒ Object
25
26
27
|
# File 'lib/utopia/content/document.rb', line 25
def self.render(node, request, attributes)
self.new(request, attributes).render!(node, attributes)
end
|
Instance Method Details
#[](key) ⇒ Object
41
42
43
|
# File 'lib/utopia/content/document.rb', line 41
def [] key
@attributes[key]
end
|
#[]=(key, value) ⇒ Object
45
46
47
|
# File 'lib/utopia/content/document.rb', line 45
def []= key, value
@attributes[key] = value
end
|
#content ⇒ Object
202
203
204
|
# File 'lib/utopia/content/document.rb', line 202
def content
@end_tags.last.content
end
|
#controller ⇒ Object
A helper method for accessing controller variables from view:
56
57
58
|
# File 'lib/utopia/content/document.rb', line 56
def controller
@controller ||= Utopia::Controller[request]
end
|
#localization ⇒ Object
60
61
62
|
# File 'lib/utopia/content/document.rb', line 60
def localization
@localization ||= Utopia::Localization[request]
end
|
#lookup_node(path) ⇒ Node
Lookup a node with the given path relative to the current node.
195
196
197
198
199
|
# File 'lib/utopia/content/document.rb', line 195
def lookup_node(path)
@end_tags.reverse_each do |state|
return state.node.lookup_node(path) if state.node.respond_to?(:lookup_node)
end
end
|
#lookup_tag(tag) ⇒ Node
Maps a tag to a node instance by asking the current node to lookup the tag name. This function is called for each tag and thus heavily affects performance.
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
|
# File 'lib/utopia/content/document.rb', line 175
def lookup_tag(tag)
@end_tags.reverse_each do |state|
return state.node.lookup_tag(tag) if state.node.respond_to?(:lookup_tag)
end
return nil
end
|
#parent ⇒ Object
206
207
208
|
# File 'lib/utopia/content/document.rb', line 206
def parent
@end_tags[-2]
end
|
#parse_markup(markup) ⇒ Object
64
65
66
|
# File 'lib/utopia/content/document.rb', line 64
def parse_markup(markup)
MarkupParser.parse(markup, self)
end
|
#render!(node, attributes) ⇒ Object
49
50
51
52
53
|
# File 'lib/utopia/content/document.rb', line 49
def render!(node, attributes)
@body << render_node(node, attributes)
return self
end
|
#render_node(node, attributes = {}) ⇒ Object
163
164
165
166
167
168
169
170
171
|
# File 'lib/utopia/content/document.rb', line 163
def render_node(node, attributes = {})
@current = State.new(@current, nil, node, attributes)
@first ||= @current
return tag_end
end
|
#tag(name, attributes = {}) ⇒ Object
87
88
89
90
91
92
93
94
95
96
97
98
|
# File 'lib/utopia/content/document.rb', line 87
def tag(name, attributes = {})
tag = Tag.new(name, !block_given?, attributes)
if block_given?
node = tag_begin(tag)
yield node
tag_end(tag)
else
tag_complete(tag, node)
end
end
|
#tag_begin(tag, node = nil) ⇒ Object
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
# File 'lib/utopia/content/document.rb', line 111
def tag_begin(tag, node = nil)
node ||= lookup_tag(tag)
if node
@current = State.new(@current, tag, node)
node.tag_begin(self, state) if node.respond_to?(:tag_begin)
return node
end
@current.tag_begin(tag)
return nil
end
|
#tag_complete(tag, node = nil) ⇒ Object
100
101
102
103
104
105
106
107
108
109
|
# File 'lib/utopia/content/document.rb', line 100
def tag_complete(tag, node = nil)
node ||= lookup_tag(tag)
if node
tag_begin(tag, node)
tag_end(tag)
else
@current.tag_complete(tag)
end
end
|
#tag_end(tag = nil) ⇒ Object
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
|
# File 'lib/utopia/content/document.rb', line 139
def tag_end(tag = nil)
if @current.empty?
if node = @current.node
node.tag_end(self, @current) if node.respond_to?(:tag_end)
end
@end_tags << @current
buffer = @current.call(self)
@current = @current.parent
@end_tags.pop
@current.write(buffer) if @current
return buffer
else
@current.tag_end(tag)
end
return nil
end
|
#text(string) ⇒ Object
135
136
137
|
# File 'lib/utopia/content/document.rb', line 135
def text(string)
@current.text(string)
end
|
#write(string) ⇒ Object
Also known as:
cdata
129
130
131
|
# File 'lib/utopia/content/document.rb', line 129
def write(string)
@current.write(string)
end
|