mirror of
https://github.com/JohnEstropia/CoreStore.git
synced 2026-04-19 23:41:20 +02:00
implementations for desctiption and debugDescription complete for all CoreStore types
This commit is contained in:
@@ -7,8 +7,6 @@
|
|||||||
//
|
//
|
||||||
|
|
||||||
import UIKit
|
import UIKit
|
||||||
import CoreData
|
|
||||||
import CoreStore
|
|
||||||
|
|
||||||
|
|
||||||
// MARK: - AppDelegate
|
// MARK: - AppDelegate
|
||||||
@@ -24,9 +22,6 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
|
|||||||
|
|
||||||
application.statusBarStyle = .LightContent
|
application.statusBarStyle = .LightContent
|
||||||
|
|
||||||
print(CoreStore.beginUnsafe().commitAndWait())
|
|
||||||
print(From<Palette>("Config1", "Config2"))
|
|
||||||
|
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -339,6 +339,46 @@ extension LegacySQLiteStore: CustomDebugStringConvertible, CoreStoreDebugStringC
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// MARK: - ListMonitor
|
||||||
|
|
||||||
|
private struct CoreStoreFetchedSectionInfoWrapper: CoreStoreDebugStringConvertible {
|
||||||
|
|
||||||
|
let sectionInfo: NSFetchedResultsSectionInfo
|
||||||
|
|
||||||
|
var coreStoreDumpString: String {
|
||||||
|
|
||||||
|
return createFormattedString(
|
||||||
|
"\"\(self.sectionInfo.name)\" (", ")",
|
||||||
|
("numberOfObjects", self.sectionInfo.numberOfObjects),
|
||||||
|
("indexTitle", self.sectionInfo.indexTitle)
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
extension ListMonitor: CustomDebugStringConvertible, CoreStoreDebugStringConvertible {
|
||||||
|
|
||||||
|
// MARK: CustomDebugStringConvertible
|
||||||
|
|
||||||
|
public var debugDescription: String {
|
||||||
|
|
||||||
|
return formattedDebugDescription(self)
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// MARK: CoreStoreDebugStringConvertible
|
||||||
|
|
||||||
|
public var coreStoreDumpString: String {
|
||||||
|
|
||||||
|
return createFormattedString(
|
||||||
|
"(", ")",
|
||||||
|
("isPendingRefetch", self.isPendingRefetch),
|
||||||
|
("numberOfObjects", self.numberOfObjects()),
|
||||||
|
("sections", self.sections().map(CoreStoreFetchedSectionInfoWrapper.init))
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// MARK: - LocalStorageOptions
|
// MARK: - LocalStorageOptions
|
||||||
|
|
||||||
extension LocalStorageOptions: CustomDebugStringConvertible, CoreStoreDebugStringConvertible {
|
extension LocalStorageOptions: CustomDebugStringConvertible, CoreStoreDebugStringConvertible {
|
||||||
@@ -441,6 +481,96 @@ extension MigrationChain: CustomDebugStringConvertible, CoreStoreDebugStringConv
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// MARK: - MigrationType
|
||||||
|
|
||||||
|
extension MigrationResult: CustomDebugStringConvertible, CoreStoreDebugStringConvertible {
|
||||||
|
|
||||||
|
// MARK: CustomDebugStringConvertible
|
||||||
|
|
||||||
|
public var debugDescription: String {
|
||||||
|
|
||||||
|
return formattedDebugDescription(self)
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// MARK: CoreStoreDebugStringConvertible
|
||||||
|
|
||||||
|
public var coreStoreDumpString: String {
|
||||||
|
|
||||||
|
switch self {
|
||||||
|
|
||||||
|
case .Success(let migrationTypes):
|
||||||
|
return createFormattedString(
|
||||||
|
".Success (", ")",
|
||||||
|
("migrationTypes", migrationTypes)
|
||||||
|
)
|
||||||
|
|
||||||
|
case .Failure(let error):
|
||||||
|
return createFormattedString(
|
||||||
|
".Failure (", ")",
|
||||||
|
("error", error)
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// MARK: - MigrationType
|
||||||
|
|
||||||
|
extension MigrationType: CustomDebugStringConvertible, CoreStoreDebugStringConvertible {
|
||||||
|
|
||||||
|
// MARK: CustomDebugStringConvertible
|
||||||
|
|
||||||
|
public var debugDescription: String {
|
||||||
|
|
||||||
|
return formattedDebugDescription(self)
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// MARK: CoreStoreDebugStringConvertible
|
||||||
|
|
||||||
|
public var coreStoreDumpString: String {
|
||||||
|
|
||||||
|
switch self {
|
||||||
|
|
||||||
|
case .None(let version):
|
||||||
|
return ".None (\"\(version)\")"
|
||||||
|
|
||||||
|
case .Lightweight(let sourceVersion, let destinationVersion):
|
||||||
|
return ".Lightweight (\"\(sourceVersion)\" → \"\(destinationVersion)\")"
|
||||||
|
|
||||||
|
case .Heavyweight(let sourceVersion, let destinationVersion):
|
||||||
|
return ".Heavyweight (\"\(sourceVersion)\" → \"\(destinationVersion)\")"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// MARK: - ObjectMonitor
|
||||||
|
|
||||||
|
extension ObjectMonitor: CustomDebugStringConvertible, CoreStoreDebugStringConvertible {
|
||||||
|
|
||||||
|
// MARK: CustomDebugStringConvertible
|
||||||
|
|
||||||
|
public var debugDescription: String {
|
||||||
|
|
||||||
|
return formattedDebugDescription(self)
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// MARK: CoreStoreDebugStringConvertible
|
||||||
|
|
||||||
|
public var coreStoreDumpString: String {
|
||||||
|
|
||||||
|
return createFormattedString(
|
||||||
|
"(", ")",
|
||||||
|
("isObjectDeleted", self.isObjectDeleted),
|
||||||
|
("object", self.object)
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// MARK: - OrderBy
|
// MARK: - OrderBy
|
||||||
|
|
||||||
extension OrderBy: CustomDebugStringConvertible, CoreStoreDebugStringConvertible {
|
extension OrderBy: CustomDebugStringConvertible, CoreStoreDebugStringConvertible {
|
||||||
@@ -499,6 +629,30 @@ extension SaveResult: CustomDebugStringConvertible, CoreStoreDebugStringConverti
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// MARK: - SectionBy
|
||||||
|
|
||||||
|
extension SectionBy: CustomDebugStringConvertible, CoreStoreDebugStringConvertible {
|
||||||
|
|
||||||
|
// MARK: CustomDebugStringConvertible
|
||||||
|
|
||||||
|
public var debugDescription: String {
|
||||||
|
|
||||||
|
return formattedDebugDescription(self)
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// MARK: CoreStoreDebugStringConvertible
|
||||||
|
|
||||||
|
public var coreStoreDumpString: String {
|
||||||
|
|
||||||
|
return createFormattedString(
|
||||||
|
"(", ")",
|
||||||
|
("sectionKeyPath", self.sectionKeyPath)
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// MARK: - Select
|
// MARK: - Select
|
||||||
|
|
||||||
extension Select: CustomDebugStringConvertible, CoreStoreDebugStringConvertible {
|
extension Select: CustomDebugStringConvertible, CoreStoreDebugStringConvertible {
|
||||||
@@ -567,6 +721,40 @@ extension SelectTerm: CustomDebugStringConvertible, CoreStoreDebugStringConverti
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// MARK: - SetupResult
|
||||||
|
|
||||||
|
extension SetupResult: CustomDebugStringConvertible, CoreStoreDebugStringConvertible {
|
||||||
|
|
||||||
|
// MARK: CustomDebugStringConvertible
|
||||||
|
|
||||||
|
public var debugDescription: String {
|
||||||
|
|
||||||
|
return formattedDebugDescription(self)
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// MARK: CoreStoreDebugStringConvertible
|
||||||
|
|
||||||
|
public var coreStoreDumpString: String {
|
||||||
|
|
||||||
|
switch self {
|
||||||
|
|
||||||
|
case .Success(let storage):
|
||||||
|
return createFormattedString(
|
||||||
|
".Success (", ")",
|
||||||
|
("storage", storage)
|
||||||
|
)
|
||||||
|
|
||||||
|
case .Failure(let error):
|
||||||
|
return createFormattedString(
|
||||||
|
".Failure (", ")",
|
||||||
|
("error", error)
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// MARK: - SQLiteStore
|
// MARK: - SQLiteStore
|
||||||
|
|
||||||
extension SQLiteStore: CustomDebugStringConvertible, CoreStoreDebugStringConvertible {
|
extension SQLiteStore: CustomDebugStringConvertible, CoreStoreDebugStringConvertible {
|
||||||
@@ -828,7 +1016,7 @@ extension NSAttributeDescription: CoreStoreDebugStringConvertible {
|
|||||||
("defaultValue", self.defaultValue),
|
("defaultValue", self.defaultValue),
|
||||||
("valueTransformerName", self.valueTransformerName),
|
("valueTransformerName", self.valueTransformerName),
|
||||||
("allowsExternalBinaryDataStorage", self.allowsExternalBinaryDataStorage),
|
("allowsExternalBinaryDataStorage", self.allowsExternalBinaryDataStorage),
|
||||||
("entity", self.entity.name),
|
("entity.name", self.entity.name),
|
||||||
("name", self.name),
|
("name", self.name),
|
||||||
("optional", self.optional),
|
("optional", self.optional),
|
||||||
("transient", self.transient),
|
("transient", self.transient),
|
||||||
@@ -896,7 +1084,7 @@ extension NSEntityDescription: CoreStoreDebugStringConvertible {
|
|||||||
("managedObjectClassName", self.managedObjectClassName!),
|
("managedObjectClassName", self.managedObjectClassName!),
|
||||||
("name", self.name),
|
("name", self.name),
|
||||||
("abstract", self.abstract),
|
("abstract", self.abstract),
|
||||||
("superentity", self.superentity?.name),
|
("superentity?.name", self.superentity?.name),
|
||||||
("subentities", self.subentities.map({ $0.name })),
|
("subentities", self.subentities.map({ $0.name })),
|
||||||
("properties", self.properties),
|
("properties", self.properties),
|
||||||
("userInfo", self.userInfo),
|
("userInfo", self.userInfo),
|
||||||
@@ -929,19 +1117,6 @@ extension NSError: CoreStoreDebugStringConvertible {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
extension NSManagedObject: CoreStoreDebugStringConvertible {
|
|
||||||
|
|
||||||
public var coreStoreDumpString: String {
|
|
||||||
|
|
||||||
// TODO:
|
|
||||||
var string = "("
|
|
||||||
// string.appendDumpInfo("self", self)
|
|
||||||
string.indent(1)
|
|
||||||
string.appendContentsOf("\n)")
|
|
||||||
return string
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
extension NSManagedObjectModel: CoreStoreDebugStringConvertible {
|
extension NSManagedObjectModel: CoreStoreDebugStringConvertible {
|
||||||
|
|
||||||
public var coreStoreDumpString: String {
|
public var coreStoreDumpString: String {
|
||||||
@@ -954,6 +1129,19 @@ extension NSManagedObjectModel: CoreStoreDebugStringConvertible {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
extension NSManagedObjectID: CoreStoreDebugStringConvertible {
|
||||||
|
|
||||||
|
public var coreStoreDumpString: String {
|
||||||
|
|
||||||
|
return createFormattedString(
|
||||||
|
"\(self.URIRepresentation().coreStoreDumpString) (", ")",
|
||||||
|
("entity.name", self.entity.name),
|
||||||
|
("temporaryID", self.temporaryID),
|
||||||
|
("persistentStore?.URL", self.persistentStore?.URL)
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
extension NSMappingModel: CoreStoreDebugStringConvertible {
|
extension NSMappingModel: CoreStoreDebugStringConvertible {
|
||||||
|
|
||||||
public var coreStoreDumpString: String {
|
public var coreStoreDumpString: String {
|
||||||
@@ -976,14 +1164,14 @@ extension NSRelationshipDescription: CoreStoreDebugStringConvertible {
|
|||||||
|
|
||||||
return createFormattedString(
|
return createFormattedString(
|
||||||
"(", ")",
|
"(", ")",
|
||||||
("destinationEntity", self.destinationEntity?.name),
|
("destinationEntity?.name", self.destinationEntity?.name),
|
||||||
("inverseRelationship", self.inverseRelationship?.name),
|
("inverseRelationship?.name", self.inverseRelationship?.name),
|
||||||
("minCount", self.minCount),
|
("minCount", self.minCount),
|
||||||
("maxCount", self.maxCount),
|
("maxCount", self.maxCount),
|
||||||
("deleteRule", self.deleteRule),
|
("deleteRule", self.deleteRule),
|
||||||
("toMany", self.toMany),
|
("toMany", self.toMany),
|
||||||
("ordered", self.ordered),
|
("ordered", self.ordered),
|
||||||
("entity", self.entity.name),
|
("entity.name", self.entity.name),
|
||||||
("name", self.name),
|
("name", self.name),
|
||||||
("optional", self.optional),
|
("optional", self.optional),
|
||||||
("transient", self.transient),
|
("transient", self.transient),
|
||||||
|
|||||||
@@ -70,6 +70,14 @@ public final class CSAsynchronousDataTransaction: CSBaseDataTransaction {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// MARK: NSObject
|
||||||
|
|
||||||
|
public override var description: String {
|
||||||
|
|
||||||
|
return "(\(String(reflecting: self.dynamicType))) \(self.bridgeToSwift.coreStoreDumpString)"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// MARK: BaseDataTransaction
|
// MARK: BaseDataTransaction
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -253,6 +253,11 @@ public final class CSDataStack: NSObject, CoreStoreObjectiveCType {
|
|||||||
return self.bridgeToSwift === object.bridgeToSwift
|
return self.bridgeToSwift === object.bridgeToSwift
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public override var description: String {
|
||||||
|
|
||||||
|
return "(\(String(reflecting: self.dynamicType))) \(self.bridgeToSwift.coreStoreDumpString)"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// MARK: CoreStoreObjectiveCType
|
// MARK: CoreStoreObjectiveCType
|
||||||
|
|
||||||
|
|||||||
@@ -62,6 +62,11 @@ public final class CSError: NSError, CoreStoreObjectiveCType {
|
|||||||
return self.bridgeToSwift == object.bridgeToSwift
|
return self.bridgeToSwift == object.bridgeToSwift
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public override var description: String {
|
||||||
|
|
||||||
|
return "(\(String(reflecting: self.dynamicType))) \(self.bridgeToSwift.coreStoreDumpString)"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// MARK: CoreStoreObjectiveCType
|
// MARK: CoreStoreObjectiveCType
|
||||||
|
|
||||||
|
|||||||
@@ -111,6 +111,14 @@ public final class CSFrom: NSObject, CoreStoreObjectiveCType {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// MARK: NSObject
|
||||||
|
|
||||||
|
public override var description: String {
|
||||||
|
|
||||||
|
return "(\(String(reflecting: self.dynamicType))) \(self.bridgeToSwift.coreStoreDumpString)"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// MARK: CoreStoreObjectiveCType
|
// MARK: CoreStoreObjectiveCType
|
||||||
|
|
||||||
public let bridgeToSwift: From<NSManagedObject>
|
public let bridgeToSwift: From<NSManagedObject>
|
||||||
|
|||||||
@@ -66,6 +66,11 @@ public final class CSGroupBy: NSObject, CSQueryClause, CoreStoreObjectiveCType {
|
|||||||
return self.bridgeToSwift == object.bridgeToSwift
|
return self.bridgeToSwift == object.bridgeToSwift
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public override var description: String {
|
||||||
|
|
||||||
|
return "(\(String(reflecting: self.dynamicType))) \(self.bridgeToSwift.coreStoreDumpString)"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// MARK: CSQueryClause
|
// MARK: CSQueryClause
|
||||||
|
|
||||||
|
|||||||
@@ -101,6 +101,11 @@ public final class CSInMemoryStore: NSObject, CSStorageInterface, CoreStoreObjec
|
|||||||
return self.bridgeToSwift === object.bridgeToSwift
|
return self.bridgeToSwift === object.bridgeToSwift
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public override var description: String {
|
||||||
|
|
||||||
|
return "(\(String(reflecting: self.dynamicType))) \(self.bridgeToSwift.coreStoreDumpString)"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// MARK: CoreStoreObjectiveCType
|
// MARK: CoreStoreObjectiveCType
|
||||||
|
|
||||||
|
|||||||
@@ -85,6 +85,11 @@ public final class CSInto: NSObject, CoreStoreObjectiveCType {
|
|||||||
return self.bridgeToSwift == object.bridgeToSwift
|
return self.bridgeToSwift == object.bridgeToSwift
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public override var description: String {
|
||||||
|
|
||||||
|
return "(\(String(reflecting: self.dynamicType))) \(self.bridgeToSwift.coreStoreDumpString)"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// MARK: CoreStoreObjectiveCType
|
// MARK: CoreStoreObjectiveCType
|
||||||
|
|
||||||
|
|||||||
@@ -537,6 +537,11 @@ public final class CSListMonitor: NSObject, CoreStoreObjectiveCType {
|
|||||||
return self.bridgeToSwift == object.bridgeToSwift
|
return self.bridgeToSwift == object.bridgeToSwift
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public override var description: String {
|
||||||
|
|
||||||
|
return "(\(String(reflecting: self.dynamicType))) \(self.bridgeToSwift.coreStoreDumpString)"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// MARK: CoreStoreObjectiveCType
|
// MARK: CoreStoreObjectiveCType
|
||||||
|
|
||||||
|
|||||||
@@ -153,6 +153,11 @@ public final class CSMigrationResult: NSObject, CoreStoreObjectiveCType {
|
|||||||
return self.bridgeToSwift == object.bridgeToSwift
|
return self.bridgeToSwift == object.bridgeToSwift
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public override var description: String {
|
||||||
|
|
||||||
|
return "(\(String(reflecting: self.dynamicType))) \(self.bridgeToSwift.coreStoreDumpString)"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// MARK: CoreStoreObjectiveCType
|
// MARK: CoreStoreObjectiveCType
|
||||||
|
|
||||||
|
|||||||
@@ -99,6 +99,11 @@ public final class CSMigrationType: NSObject, CoreStoreObjectiveCType {
|
|||||||
return self.bridgeToSwift == object.bridgeToSwift
|
return self.bridgeToSwift == object.bridgeToSwift
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public override var description: String {
|
||||||
|
|
||||||
|
return "(\(String(reflecting: self.dynamicType))) \(self.bridgeToSwift.coreStoreDumpString)"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// MARK: CoreStoreObjectiveCType
|
// MARK: CoreStoreObjectiveCType
|
||||||
|
|
||||||
|
|||||||
@@ -115,6 +115,11 @@ public final class CSObjectMonitor: NSObject, CoreStoreObjectiveCType {
|
|||||||
return self.bridgeToSwift == object.bridgeToSwift
|
return self.bridgeToSwift == object.bridgeToSwift
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public override var description: String {
|
||||||
|
|
||||||
|
return "(\(String(reflecting: self.dynamicType))) \(self.bridgeToSwift.coreStoreDumpString)"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// MARK: CoreStoreObjectiveCType
|
// MARK: CoreStoreObjectiveCType
|
||||||
|
|
||||||
|
|||||||
@@ -104,6 +104,11 @@ public final class CSOrderBy: NSObject, CSFetchClause, CSQueryClause, CSDeleteCl
|
|||||||
return self.bridgeToSwift == object.bridgeToSwift
|
return self.bridgeToSwift == object.bridgeToSwift
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public override var description: String {
|
||||||
|
|
||||||
|
return "(\(String(reflecting: self.dynamicType))) \(self.bridgeToSwift.coreStoreDumpString)"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// MARK: CSFetchClause, CSQueryClause, CSDeleteClause
|
// MARK: CSFetchClause, CSQueryClause, CSDeleteClause
|
||||||
|
|
||||||
|
|||||||
@@ -179,6 +179,11 @@ public final class CSSQLiteStore: NSObject, CSLocalStorage, CoreStoreObjectiveCT
|
|||||||
return self.bridgeToSwift === object.bridgeToSwift
|
return self.bridgeToSwift === object.bridgeToSwift
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public override var description: String {
|
||||||
|
|
||||||
|
return "(\(String(reflecting: self.dynamicType))) \(self.bridgeToSwift.coreStoreDumpString)"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// MARK: CoreStoreObjectiveCType
|
// MARK: CoreStoreObjectiveCType
|
||||||
|
|
||||||
|
|||||||
@@ -153,6 +153,11 @@ public final class CSSaveResult: NSObject, CoreStoreObjectiveCType {
|
|||||||
return self.bridgeToSwift == object.bridgeToSwift
|
return self.bridgeToSwift == object.bridgeToSwift
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public override var description: String {
|
||||||
|
|
||||||
|
return "(\(String(reflecting: self.dynamicType))) \(self.bridgeToSwift.coreStoreDumpString)"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// MARK: CoreStoreObjectiveCType
|
// MARK: CoreStoreObjectiveCType
|
||||||
|
|
||||||
|
|||||||
@@ -64,6 +64,14 @@ public final class CSSectionBy: NSObject, CoreStoreObjectiveCType {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// MARK: NSObject
|
||||||
|
|
||||||
|
public override var description: String {
|
||||||
|
|
||||||
|
return "(\(String(reflecting: self.dynamicType))) \(self.bridgeToSwift.coreStoreDumpString)"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// MARK: CoreStoreObjectiveCType
|
// MARK: CoreStoreObjectiveCType
|
||||||
|
|
||||||
public let bridgeToSwift: SectionBy
|
public let bridgeToSwift: SectionBy
|
||||||
|
|||||||
@@ -364,6 +364,11 @@ public final class CSSelect: NSObject {
|
|||||||
&& self.selectTerms == object.selectTerms
|
&& self.selectTerms == object.selectTerms
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public override var description: String {
|
||||||
|
|
||||||
|
return "(\(String(reflecting: self.dynamicType))) \(self.bridgeToSwift.coreStoreDumpString)"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// MARK: CoreStoreObjectiveCType
|
// MARK: CoreStoreObjectiveCType
|
||||||
|
|
||||||
@@ -371,6 +376,7 @@ public final class CSSelect: NSObject {
|
|||||||
|
|
||||||
self.attributeType = T.attributeType
|
self.attributeType = T.attributeType
|
||||||
self.selectTerms = swiftValue.selectTerms
|
self.selectTerms = swiftValue.selectTerms
|
||||||
|
self.bridgeToSwift = swiftValue
|
||||||
super.init()
|
super.init()
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -378,6 +384,7 @@ public final class CSSelect: NSObject {
|
|||||||
|
|
||||||
self.attributeType = .UndefinedAttributeType
|
self.attributeType = .UndefinedAttributeType
|
||||||
self.selectTerms = swiftValue.selectTerms
|
self.selectTerms = swiftValue.selectTerms
|
||||||
|
self.bridgeToSwift = swiftValue
|
||||||
super.init()
|
super.init()
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -386,6 +393,11 @@ public final class CSSelect: NSObject {
|
|||||||
|
|
||||||
internal let attributeType: NSAttributeType
|
internal let attributeType: NSAttributeType
|
||||||
internal let selectTerms: [SelectTerm]
|
internal let selectTerms: [SelectTerm]
|
||||||
|
|
||||||
|
|
||||||
|
// MARK: Private
|
||||||
|
|
||||||
|
private let bridgeToSwift: CoreStoreDebugStringConvertible
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -56,7 +56,7 @@ public final class CSSetupResult: NSObject {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
A `CSStorageInterface` instance if the `commit` operation for the transaction succeeded. Returns `NO` otherwise.
|
A `CSStorageInterface` instance if the `commit` operation for the transaction succeeded. Returns `nil` otherwise.
|
||||||
*/
|
*/
|
||||||
@objc
|
@objc
|
||||||
public let storage: CSStorageInterface?
|
public let storage: CSStorageInterface?
|
||||||
@@ -143,6 +143,11 @@ public final class CSSetupResult: NSObject {
|
|||||||
return self.storage === object.storage
|
return self.storage === object.storage
|
||||||
&& self.error == object.error
|
&& self.error == object.error
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public override var description: String {
|
||||||
|
|
||||||
|
return "(\(String(reflecting: self.dynamicType))) \(self.bridgeToSwift.coreStoreDumpString)"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// MARK: CoreStoreObjectiveCType
|
// MARK: CoreStoreObjectiveCType
|
||||||
@@ -159,8 +164,14 @@ public final class CSSetupResult: NSObject {
|
|||||||
self.storage = nil
|
self.storage = nil
|
||||||
self.error = error.bridgeToObjectiveC
|
self.error = error.bridgeToObjectiveC
|
||||||
}
|
}
|
||||||
|
self.bridgeToSwift = swiftValue
|
||||||
super.init()
|
super.init()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// MARK: Private
|
||||||
|
|
||||||
|
private let bridgeToSwift: CoreStoreDebugStringConvertible
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -70,6 +70,14 @@ public final class CSSynchronousDataTransaction: CSBaseDataTransaction {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// MARK: NSObject
|
||||||
|
|
||||||
|
public override var description: String {
|
||||||
|
|
||||||
|
return "(\(String(reflecting: self.dynamicType))) \(self.bridgeToSwift.coreStoreDumpString)"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// MARK: BaseDataTransaction
|
// MARK: BaseDataTransaction
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -50,6 +50,14 @@ public final class CSTweak: NSObject, CSFetchClause, CSQueryClause, CSDeleteClau
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// MARK: NSObject
|
||||||
|
|
||||||
|
public override var description: String {
|
||||||
|
|
||||||
|
return "(\(String(reflecting: self.dynamicType))) \(self.bridgeToSwift.coreStoreDumpString)"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// MARK: CSFetchClause, CSQueryClause, CSDeleteClause
|
// MARK: CSFetchClause, CSQueryClause, CSDeleteClause
|
||||||
|
|
||||||
@objc
|
@objc
|
||||||
|
|||||||
@@ -138,6 +138,14 @@ public final class CSUnsafeDataTransaction: CSBaseDataTransaction {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// MARK: NSObject
|
||||||
|
|
||||||
|
public override var description: String {
|
||||||
|
|
||||||
|
return "(\(String(reflecting: self.dynamicType))) \(self.bridgeToSwift.coreStoreDumpString)"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// MARK: CoreStoreObjectiveCType
|
// MARK: CoreStoreObjectiveCType
|
||||||
|
|
||||||
internal typealias SwiftType = UnsafeDataTransaction
|
internal typealias SwiftType = UnsafeDataTransaction
|
||||||
|
|||||||
@@ -117,6 +117,11 @@ public final class CSWhere: NSObject, CSFetchClause, CSQueryClause, CSDeleteClau
|
|||||||
return self.bridgeToSwift == object.bridgeToSwift
|
return self.bridgeToSwift == object.bridgeToSwift
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public override var description: String {
|
||||||
|
|
||||||
|
return "(\(String(reflecting: self.dynamicType))) \(self.bridgeToSwift.coreStoreDumpString)"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// MARK: CSFetchClause, CSQueryClause, CSDeleteClause
|
// MARK: CSFetchClause, CSQueryClause, CSDeleteClause
|
||||||
|
|
||||||
|
|||||||
@@ -1192,11 +1192,33 @@ public final class ListMonitor<T: NSManagedObject>: Hashable {
|
|||||||
// MARK: - ListMonitor: Equatable
|
// MARK: - ListMonitor: Equatable
|
||||||
|
|
||||||
@available(OSX, unavailable)
|
@available(OSX, unavailable)
|
||||||
public func ==<T: NSManagedObject>(lhs: ListMonitor<T>, rhs: ListMonitor<T>) -> Bool {
|
@warn_unused_result
|
||||||
|
public func == <T: NSManagedObject>(lhs: ListMonitor<T>, rhs: ListMonitor<T>) -> Bool {
|
||||||
|
|
||||||
return lhs === rhs
|
return lhs === rhs
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@available(OSX, unavailable)
|
||||||
|
@warn_unused_result
|
||||||
|
public func == <T: NSManagedObject, U: NSManagedObject>(lhs: ListMonitor<T>, rhs: ListMonitor<U>) -> Bool {
|
||||||
|
|
||||||
|
return lhs.fetchedResultsController === rhs.fetchedResultsController
|
||||||
|
}
|
||||||
|
|
||||||
|
@available(OSX, unavailable)
|
||||||
|
@warn_unused_result
|
||||||
|
public func ~= <T: NSManagedObject>(lhs: ListMonitor<T>, rhs: ListMonitor<T>) -> Bool {
|
||||||
|
|
||||||
|
return lhs === rhs
|
||||||
|
}
|
||||||
|
|
||||||
|
@available(OSX, unavailable)
|
||||||
|
@warn_unused_result
|
||||||
|
public func ~= <T: NSManagedObject, U: NSManagedObject>(lhs: ListMonitor<T>, rhs: ListMonitor<U>) -> Bool {
|
||||||
|
|
||||||
|
return lhs.fetchedResultsController === rhs.fetchedResultsController
|
||||||
|
}
|
||||||
|
|
||||||
@available(OSX, unavailable)
|
@available(OSX, unavailable)
|
||||||
extension ListMonitor: Equatable { }
|
extension ListMonitor: Equatable { }
|
||||||
|
|
||||||
@@ -1309,15 +1331,6 @@ extension ListMonitor: FetchedResultsControllerHandler {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// MARK: - ListMonitor: Equatable
|
|
||||||
|
|
||||||
@warn_unused_result
|
|
||||||
public func == <T: NSManagedObject, U: NSManagedObject>(lhs: ListMonitor<T>, rhs: ListMonitor<U>) -> Bool {
|
|
||||||
|
|
||||||
return lhs.fetchedResultsController === rhs.fetchedResultsController
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// MARK: - Notification Keys
|
// MARK: - Notification Keys
|
||||||
|
|
||||||
private let ListMonitorWillChangeListNotification = "ListMonitorWillChangeListNotification"
|
private let ListMonitorWillChangeListNotification = "ListMonitorWillChangeListNotification"
|
||||||
|
|||||||
@@ -301,7 +301,13 @@ public final class ObjectMonitor<T: NSManagedObject> {
|
|||||||
// MARK: - ObjectMonitor: Equatable
|
// MARK: - ObjectMonitor: Equatable
|
||||||
|
|
||||||
@available(OSX, unavailable)
|
@available(OSX, unavailable)
|
||||||
public func ==<T: NSManagedObject>(lhs: ObjectMonitor<T>, rhs: ObjectMonitor<T>) -> Bool {
|
public func == <T: NSManagedObject>(lhs: ObjectMonitor<T>, rhs: ObjectMonitor<T>) -> Bool {
|
||||||
|
|
||||||
|
return lhs === rhs
|
||||||
|
}
|
||||||
|
|
||||||
|
@available(OSX, unavailable)
|
||||||
|
public func ~= <T: NSManagedObject>(lhs: ObjectMonitor<T>, rhs: ObjectMonitor<T>) -> Bool {
|
||||||
|
|
||||||
return lhs === rhs
|
return lhs === rhs
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user