-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathRelationship.swift
206 lines (187 loc) · 6.4 KB
/
Relationship.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
/*
* Copyright (C) 2015 - 2019 and CosmicMind, Inc. <http://cosmicmind.com>.
* All rights reserved.
*
* Authors:
* Daniel Dahan <daniel@cosmcimind.com>,
* Orkhan Alikhanov <orkhan.alikhanov@cosmicmind.com>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
*
* * Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* * Neither the name of CosmicMind nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
import CoreData
@objc(Relationship)
public class Relationship: Node {
/// A reference to the managedNode.
internal var managedNode: ManagedRelationship {
return node as! ManagedRelationship
}
public override var description: String {
return "[nodeClass: \(nodeClass), id: \(id), type: \(type), tags: \(tags), groups: \(groups), properties: \(properties), subject: \(String(describing: subject)), object: \(String(describing: object)), createdDate: \(createdDate)]"
}
/// A reference to the nodeClass.
public var nodeClass: NodeClass {
return .relationship
}
/// A reference to the subject Entity.
public var subject: Entity? {
get {
return managedNode.performAndWait { relationship in
relationship.subject.map { Entity(managedNode: $0) }
}
}
set(entity) {
managedNode.managedObjectContext?.performAndWait { [unowned self] in
if let e = entity?.managedNode {
self.managedNode.subject?.relationshipSubjectSet.remove(self.managedNode)
self.managedNode.subject = e
e.relationshipSubjectSet.insert(self.managedNode)
} else {
self.managedNode.subject?.relationshipSubjectSet.remove(self.managedNode)
self.managedNode.subject = nil
}
}
}
}
/// A reference to the object Entity.
public var object: Entity? {
get {
return managedNode.performAndWait { relationship in
relationship.object.map { Entity(managedNode: $0) }
}
}
set(entity) {
managedNode.managedObjectContext?.performAndWait { [unowned self] in
if let e = entity?.managedNode {
self.managedNode.object?.relationshipObjectSet.remove(self.managedNode)
self.managedNode.object = e
e.relationshipObjectSet.insert(self.managedNode)
} else {
self.managedNode.object?.relationshipObjectSet.remove(self.managedNode)
self.managedNode.object = nil
}
}
}
}
/// Generic creation of the managed node type.
override class func createNode(_ type: String, in context: NSManagedObjectContext) -> ManagedNode {
return ManagedRelationship(type, managedObjectContext: context)
}
/**
Initializer that accepts a ManagedAction.
- Parameter managedNode: A reference to a ManagedAction.
*/
required init(managedNode: ManagedNode) {
super.init(managedNode: managedNode)
}
/**
Checks equality between Entities.
- Parameter object: A reference to an object to test
equality against.
- Returns: A boolean of the result, true if equal, false
otherwise.
*/
public override func isEqual(_ object: Any?) -> Bool {
return id == (object as? Relationship)?.id
}
/**
Sets the object of the Relationship.
- Parameter _ entity: An Entity.
- Returns: The Relationship.
*/
@discardableResult
public func of(_ entity: Entity) -> Relationship {
self.object = entity
return self
}
/**
Sets the object of the Relationship.
- Parameter object: An Entity.
- Returns: The Relationship.
*/
@discardableResult
public func `in`(object: Entity) -> Relationship {
self.object = object
return self
}
}
extension Array where Element: Relationship {
/**
Finds the given types of subject Entities that are part
of the relationships in the Array.
- Parameter types: An Array of Strings.
- Returns: An Array of Entities.
*/
public func subject(types: String...) -> [Entity] {
return subject(types: types)
}
/**
Finds the given types of subject Entities that are part
of the relationships in the Array.
- Parameter types: An Array of Strings.
- Returns: An Array of Entities.
*/
public func subject(types: [String]) -> [Entity] {
var s : Set<Entity> = []
forEach { [types = types] (r) in
guard let e = r.subject else {
return
}
guard types.contains(e.type) else {
return
}
s.insert(e)
}
return [Entity](s)
}
/**
Finds the given types of object Entities that are part
of the relationships in the Array.
- Parameter types: An Array of Strings.
- Returns: An Array of Entities.
*/
public func object(types: String...) -> [Entity] {
return object(types: types)
}
/**
Finds the given types of object Entities that are part
of the relationships in the Array.
- Parameter types: An Array of Strings.
- Returns: An Array of Entities.
*/
public func object(types: [String]) -> [Entity] {
var s : Set<Entity> = []
forEach { [types = types] (r) in
guard let e = r.subject else {
return
}
guard types.contains(e.type) else {
return
}
s.insert(e)
}
return [Entity](s)
}
}