在Swift中同时实现Codable和NSManagedObject

时间:2019-02-28 03:47:45

标签: swift swift4 nsmanagedobject codable nscopying

我有一个正在为我的雇主使用的订单处理应用程序,该应用程序最初旨在从API动态获取有关订单,产品和客户的所有数据。因此,使用符合Codable的结构,所有对象以及处理这些对象的所有功能都在应用程序中以“按值传递”的期望进行交互。

我现在必须缓存几乎所有这些对象。输入CoreData。

我不想为一个对象创建两个文件(一个作为Codable结构,另一个作为NSManagedObject类),然后试图弄清楚如何将一个文件转换为另一个文件。因此,我想在同一个文件中实现这两者……同时仍然能够以某种方式使用我的“按值传递”代码。

也许这是不可能的。

编辑

我正在寻找比重新构建所有数据结构更简单的方法。我知道我必须进行一些更改才能使Codable结构与NSManagedObject类兼容。我想避免创建一个自定义的初始化程序,该初始化程序需要我手动输入每个属性,因为其中有数百个。

1 个答案:

答案 0 :(得分:0)

最后,从API动态应用程序迁移而不缓存到缓存的应用程序时,听起来好像没有“好的”解决方案。

我决定只是硬着头皮尝试这个问题中的方法:How to use swift 4 Codable in Core Data?

编辑:

我不知道如何进行这项工作,因此我使用了以下解决方案:

import Foundation
import CoreData

/*
 SomeItemData vs SomeItem:
 The object with 'Data' appended to the name will always be the codable struct. The other will be the NSManagedObject class.
 */

struct OrderData: Codable, CodingKeyed, PropertyLoopable
{
    typealias CodingKeys = CodableKeys.OrderData

    let writer: String,
    userID: String,
    orderType: String,
    shipping: ShippingAddressData
    var items: [OrderedProductData]
    let totals: PaymentTotalData,
    discount: Float

    init(json:[String:Any])
    {
        writer = json[CodingKeys.writer.rawValue] as! String
        userID = json[CodingKeys.userID.rawValue] as! String
        orderType = json[CodingKeys.orderType.rawValue] as! String
        shipping = json[CodingKeys.shipping.rawValue] as! ShippingAddressData
        items = json[CodingKeys.items.rawValue] as! [OrderedProductData]
        totals = json[CodingKeys.totals.rawValue] as! PaymentTotalData
        discount = json[CodingKeys.discount.rawValue] as! Float
    }
}

extension Order: PropertyLoopable //this is the NSManagedObject. PropertyLoopable has a default implementation that uses Mirror to convert all the properties into a dictionary I can iterate through, which I can then pass directly to the JSON constructor above
{
    convenience init(from codableObject: OrderData)
    {
        self.init(context: PersistenceManager.shared.context)

        writer = codableObject.writer
        userID = codableObject.userID
        orderType = codableObject.orderType
        shipping = ShippingAddress(from: codableObject.shipping)
        items = []
        for item in codableObject.items
        {
            self.addToItems(OrderedProduct(from: item))
        }
        totals = PaymentTotal(from: codableObject.totals)
        discount = codableObject.discount
    }
}