我正在尝试在Realm数据库上安全地进行并发读取和写入。这就是我要实现的目标。
我正在从Flickr中提取图像,并且一旦imageData
被下载后,Photo
对象将被写入Realm数据库。我还提供了一个notification
来收听insertions
。将Photo对象写入Realm后,更新同一项目的transport
属性。但是,我的实现有时会崩溃,即每3-5次实现崩溃一次。
这样的代码:
override func viewDidLoad() {
super.viewDidLoad()
subscribeToRealmNotifications()
}
fileprivate func subscribeToRealmNotifications() {
do {
let realm = try Realm()
let results = realm.objects(Photo.self)
token = results.observe({ (changes) in
switch changes {
case .initial:
self.setupInitialData()
self.collectionView.reloadData()
case .update(_, _, let insertions, _):
if !insertions.isEmpty {
self.handleInsertionsWhenNotified(insertions: insertions)
}
case .error(let error):
self.handleError(error as NSError)
}
})
} catch let error {
NSLog("Error subscribing to Realm Notifications: %@", error.localizedDescription)
}
}
fileprivate func handleInsertionsWhenNotified(insertions: [Int]) {
let lock = NSLock()
let queue = DispatchQueue(label: "queue", qos: .userInitiated) //Serial queue
queue.async(flags: .barrier) {
do {
let realm = try Realm()
let objects = realm.objects(Photo.self)
lock.lock()
for insertion in insertions {
print(insertion, objects.count, objects[insertion].id ?? "")
let photo = objects[insertion] //Crash here
self.update(photo: photo)
}
lock.unlock()
} catch let error {
NSLog("Error updating photos in Realm Notifications", error.localizedDescription)
}
}
}
func update(photo: Photo) {
do {
let realm = try Realm()
let updatedPhoto = createCopy(photo: photo)
let transport = Transport()
transport.name = searchText
updatedPhoto.transport = transport
try realm.write {
realm.add(updatedPhoto, update: true)
}
} catch let error {
NSLog("Error updating photo name on realm: %@", error.localizedDescription)
}
}
func createCopy(photo: Photo) -> Photo {
let copiedPhoto = Photo()
copiedPhoto.id = photo.id
copiedPhoto.farm = photo.farm
copiedPhoto.server = photo.server
copiedPhoto.secret = photo.secret
copiedPhoto.imageData = photo.imageData
copiedPhoto.name = photo.name
return copiedPhoto
}
//On push of a button, call fetchPhotos to download images.
fileprivate func fetchPhotos() {
FlickrClient.shared.getPhotoListWithText(searchText, completion: { [weak self] (photos, error) in
self?.handleError(error)
guard let photos = photos else {return}
let queue = DispatchQueue(label: "queue1", qos: .userInitiated , attributes: .concurrent)
queue.async {
for (index, _) in photos.enumerated() {
FlickrClient.shared.downloadImageData(photos[index], { (data, error) in
self?.handleError(error)
if let data = data {
let photo = photos[index]
photo.imageData = data
self?.savePhotoToRealm(photo: photo)
DispatchQueue.main.async {
self?.photosArray.append(photo)
if let count = self?.photosArray.count {
let indexPath = IndexPath(item: count - 1, section: 0)
self?.collectionView.insertItems(at: [indexPath])
}
}
}
})
}
}
})
}
fileprivate func savePhotoToRealm(photo: Photo) {
do {
let realm = try Realm()
let realmPhoto = createCopy(photo: photo)
try realm.write {
realm.add(realmPhoto)
print("Successfully saved photo:", photo.id ?? "")
}
} catch let error {
print("Error writing to photo realm: ", error.localizedDescription)
}
}
请注意,上面的代码每3-5次崩溃一次,因此我怀疑读写操作不安全。崩溃时显示打印日志和错误日志
Successfully saved photo: 45999333945
4 6 31972639607
6 7 45999333945
Successfully saved photo: 45999333605
Successfully saved photo: 45999333675
7 8 45999333605
8 9 45999333675
Successfully saved photo: 45999333285
Successfully saved photo: 33038412228
2019-01-29 14:46:09.901088+0800 GCDTutorial[24139:841805] *** Terminating app due to uncaught exception 'RLMException', reason: 'Index 9 is out of bounds (must be less than 9).'
有人会告诉我我哪里出问题了吗?
注意:我尝试在queue.sync
上运行handleInsertionsWhenNotified
。这样做完全消除了崩溃,但是在UI在主线程上运行时冻结了UI。就我而言,这并不理想。
答案 0 :(得分:0)
CollectionView插入行首先调用numberOfIteminSection。我希望这段代码能正常工作。
let indexPath = IndexPath(item: count - 1, section: 0)
self?.collectionView.numberOfItems(inSection: 0)
self?.collectionView.insertItems(at: [indexPath])
答案 1 :(得分:0)
在更仔细地研究了日志之后,我发现只要应用程序崩溃,对象计数就不会相符。换句话说,Realm通知插入时打印的对象总数为9(即使通过浏览器物理检查领域数据库显示的对象总数超过9),但插入索引为9。
这意味着在进行查询时,对象计数可能尚未更新(不太清楚为什么)。阅读了更多有关领域文档和here的文章之后,我在查询对象之前实现了realm.refresh()
。这样就解决了问题。
//Updated code for handleInsertionsWhenNotified
fileprivate func handleInsertionsWhenNotified(insertions: [Int]) {
let lock = NSLock()
let queue = DispatchQueue(label: "queue", qos: .userInitiated) //Serial queue
queue.async(flags: .barrier) {
do {
let realm = try Realm()
realm.refresh() // Call refresh here
let objects = realm.objects(Photo.self)
lock.lock()
for insertion in insertions {
print(insertion, objects.count, objects[insertion].id ?? "")
let photo = objects[insertion] //Crash here
self.update(photo: photo)
}
lock.unlock()
} catch let error {
NSLog("Error updating photos in Realm Notifications", error.localizedDescription)
}
}
}
希望它可以帮助任何人。