Class: Utopia::Middleware::Content::Transaction

Inherits:
Object
  • Object
show all
Defined in:
lib/utopia/middleware/content/node.rb

Defined Under Namespace

Classes: State

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(request, response) ⇒ Transaction

Returns a new instance of Transaction.



108
109
110
111
112
113
114
# File 'lib/utopia/middleware/content/node.rb', line 108

def initialize(request, response)
	@begin_tags = []
	@end_tags = []

	@request = request
	@response = response
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(name, *args) ⇒ Object



257
258
259
260
261
262
263
264
265
# File 'lib/utopia/middleware/content/node.rb', line 257

def method_missing(name, *args)
	@begin_tags.reverse_each do |state|
		if state.node.respond_to? name
			return state.node.send(name, *args)
		end
	end

	super
end

Instance Attribute Details

#begin_tagsObject (readonly)

Begin tags represents a list from outer to inner most tag. At any point in parsing xml, begin_tags is a list of the inner most tag, then the next outer tag, etc. This list is used for doing dependent lookups.



130
131
132
# File 'lib/utopia/middleware/content/node.rb', line 130

def begin_tags
  @begin_tags
end

#end_tagsObject (readonly)

End tags represents a list of execution order. This is the order that end tags have appeared when evaluating nodes.



134
135
136
# File 'lib/utopia/middleware/content/node.rb', line 134

def end_tags
  @end_tags
end

#requestObject (readonly)

Returns the value of attribute request.



124
125
126
# File 'lib/utopia/middleware/content/node.rb', line 124

def request
  @request
end

#responseObject (readonly)

Returns the value of attribute response.



125
126
127
# File 'lib/utopia/middleware/content/node.rb', line 125

def response
  @response
end

Instance Method Details

#attributesObject



136
137
138
# File 'lib/utopia/middleware/content/node.rb', line 136

def attributes
	return current.attributes
end

#bindingObject



116
117
118
# File 'lib/utopia/middleware/content/node.rb', line 116

def binding
	super
end

#cdata(text) ⇒ Object



200
201
202
# File 'lib/utopia/middleware/content/node.rb', line 200

def cdata(text)
	current.cdata(text)
end

#contentObject



144
145
146
# File 'lib/utopia/middleware/content/node.rb', line 144

def content
	@end_tags[-1].content
end

#currentObject



140
141
142
# File 'lib/utopia/middleware/content/node.rb', line 140

def current
	@begin_tags[-1]
end

#firstObject



152
153
154
# File 'lib/utopia/middleware/content/node.rb', line 152

def first
	@begin_tags[0]
end

#lookup(tag) ⇒ Object

Takes an instance of Tag



238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
# File 'lib/utopia/middleware/content/node.rb', line 238

def lookup(tag)
	result = tag
	node = nil

	@begin_tags.reverse_each do |state|
		result = state.lookup(result)
		
		node ||= state.node if state.node.respond_to? :lookup

		return result if Node === result
	end

	@end_tags.reverse_each do |state|
		return state.node.lookup(result) if state.node.respond_to? :lookup
	end

	return nil
end

#parentObject



148
149
150
# File 'lib/utopia/middleware/content/node.rb', line 148

def parent
	end_tags[-2]
end

#parse_xml(xml_data) ⇒ Object



120
121
122
# File 'lib/utopia/middleware/content/node.rb', line 120

def parse_xml(xml_data)
	XNode::Processor.new(xml_data, self).parse
end

#render_node(node, attributes = {}) ⇒ Object



230
231
232
233
234
235
# File 'lib/utopia/middleware/content/node.rb', line 230

def render_node(node, attributes = {})
	state = State.new(attributes, node)
	@begin_tags << state

	return tag_end
end

#tag(name, attributes) {|node| ... } ⇒ Object

Yields:

  • (node)


156
157
158
159
160
161
162
163
164
# File 'lib/utopia/middleware/content/node.rb', line 156

def tag(name, attributes, &block)
	tag = Tag.new(name, attributes)

	node = tag_begin(tag)

	yield node if block_given?

	tag_end(tag)
end

#tag_begin(tag, node = nil) ⇒ Object



181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
# File 'lib/utopia/middleware/content/node.rb', line 181

def tag_begin(tag, node = nil)
	node ||= lookup(tag)

	if node
		state = State.new(tag, node)
		@begin_tags << state

		if node.respond_to? :tag_begin
			node.tag_begin(self, state)
		end

		return node
	end

	current.tag_begin(tag)

	return nil
end

#tag_complete(tag, node = nil) ⇒ Object



166
167
168
169
170
171
172
173
174
175
176
177
178
179
# File 'lib/utopia/middleware/content/node.rb', line 166

def tag_complete(tag, node = nil)
	if tag.name == "content"
		current.markup(content)
	else
		node ||= lookup(tag)

		if node
			tag_begin(tag, node)
			tag_end(tag)
		else
			current.tag_complete(tag)
		end
	end
end

#tag_end(tag = nil) ⇒ Object



204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
# File 'lib/utopia/middleware/content/node.rb', line 204

def tag_end(tag = nil)
	top = current

	if top.tags.empty?
		if top.node.respond_to? :tag_end
			top.node.tag_end(self, top)
		end

		@end_tags << top
		buffer = top.call(self)

		@begin_tags.pop
		@end_tags.pop

		if current
			current.markup(buffer)
		end

		return buffer
	else
		current.tag_end(tag)
	end

	return nil
end