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

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

Overview

Nodes typically represent XNODE files on the disk. You can get a list of Links from a current directory. This comprises of all files ending in “.xnode”.

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.



103
104
105
106
107
108
109
# File 'lib/utopia/middleware/content/node.rb', line 103

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



251
252
253
254
255
256
257
258
259
# File 'lib/utopia/middleware/content/node.rb', line 251

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.



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

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.



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

def end_tags
  @end_tags
end

#requestObject (readonly)

Returns the value of attribute request.



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

def request
  @request
end

#responseObject (readonly)

Returns the value of attribute response.



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

def response
  @response
end

Instance Method Details

#attributesObject



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

def attributes
  return current.attributes
end

#bindingObject



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

def binding
  super
end

#cdata(text) ⇒ Object



195
196
197
# File 'lib/utopia/middleware/content/node.rb', line 195

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

#contentObject



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

def content
  @end_tags[-1].content
end

#currentObject



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

def current
  @begin_tags[-1]
end

#firstObject



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

def first
  @begin_tags[0]
end

#lookup(tag) ⇒ Object



232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
# File 'lib/utopia/middleware/content/node.rb', line 232

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



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

def parent
  end_tags[-2]
end

#parse_xml(xml_data) ⇒ Object



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

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

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



225
226
227
228
229
230
# File 'lib/utopia/middleware/content/node.rb', line 225

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

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

Yields:

  • (node)


151
152
153
154
155
156
157
158
159
# File 'lib/utopia/middleware/content/node.rb', line 151

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



176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
# File 'lib/utopia/middleware/content/node.rb', line 176

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



161
162
163
164
165
166
167
168
169
170
171
172
173
174
# File 'lib/utopia/middleware/content/node.rb', line 161

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



199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
# File 'lib/utopia/middleware/content/node.rb', line 199

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