-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSWXMLSelectMapping.swift
40 lines (30 loc) · 1.22 KB
/
SWXMLSelectMapping.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
//
// SWXMLSelectMapping.swift
// SWXMLMapping
//
// Created by Samuel Williams on 12/02/16.
//
//
import Foundation
@objc(SWXMLSelection)
public protocol SWXMLSelection {
init(attributes: [String : String]!, mapping: SWXMLMapping)
func mapObject(_ object: Any!, withKeyPath keyPath: String!) -> AnyObject!
}
/*
This mapping allows you to make a selection by instantiating a class which manages the query against a object/keyPath relationship. The result is essentially a collection of items.
<select keyPath="property">
*/
@objc(SWXMLSelectMapping)
open class SWXMLSelectMapping: SWXMLMemberMapping {
let mappingClass: SWXMLSelection.Type
override init!(tag: String!, keyPath: String!, attributes: [String : String]!) {
mappingClass = NSClassFromString(attributes["class"]!) as! SWXMLSelection.Type
super.init(tag: tag, keyPath: keyPath, attributes: attributes)
}
override open func serializedObjectMember(_ object: Any!, with mapping: SWXMLMapping!) -> String! {
let mappingObject = mappingClass.init(attributes: self.attributes, mapping: mapping)
let mappedObject = mappingObject.mapObject(object, withKeyPath: self.keyPath)
return SWXMLTags.tagNamed(self.tag, forValue: mapping.serializeObject(mappedObject))
}
}