J'ai vu dans l'exemple de code fourni par Apple des références à la façon dont vous devez gérer les erreurs Core Data. C'est à dire:
NSError *error = nil;
if (![context save:&error]) {
/*
Replace this implementation with code to handle the error appropriately.
abort() causes the application to generate a crash log and terminate. You should not use this function in a shipping application, although it may be useful during development. If it is not possible to recover from the error, display an alert panel that instructs the user to quit the application by pressing the Home button.
*/
NSLog(@"Unresolved error %@, %@", error, [error userInfo]);
abort();
}
Mais jamais d'exemples de la façon dont vous devriez l' implémenter.
Quelqu'un a-t-il (ou peut-il me diriger vers) un code de «production» qui illustre la méthode ci-dessus.
Merci d'avance, Matt
iphone
core-data
error-handling
Balancement
la source
la source
Réponses:
Personne ne vous montrera le code de production car il dépend à 100% de votre application et de l'endroit où l'erreur se produit.
Personnellement, j'y ai mis une déclaration d'assert parce que 99,9% du temps, cette erreur se produira en développement et lorsque vous la corrigerez, il est très peu probable que vous la voyiez en production.
Après l'affirmation, je présenterais une alerte à l'utilisateur, lui ferais savoir qu'une erreur irrécupérable s'est produite et que l'application va se fermer. Vous pouvez également y mettre un texte de présentation leur demandant de contacter le développeur afin que vous puissiez, espérons-le, suivre cette opération.
Après cela, je laisserais abort () là-dedans car il "plantera" l'application et générera une trace de pile que vous pourrez, espérons-le, utiliser plus tard pour localiser le problème.
la source
-save:
appel de données de base . Toutes ces conditions se produisent bien avant que votre code n'atteigne ce point.-save:
appel de.C'est une méthode générique que j'ai mise au point pour gérer et afficher les erreurs de validation sur l'iPhone. Mais Marcus a raison: vous voudrez probablement modifier les messages pour qu'ils soient plus conviviaux. Mais cela vous donne au moins un point de départ pour voir quel champ n'a pas validé et pourquoi.
- (void)displayValidationError:(NSError *)anError { if (anError && [[anError domain] isEqualToString:@"NSCocoaErrorDomain"]) { NSArray *errors = nil; // multiple errors? if ([anError code] == NSValidationMultipleErrorsError) { errors = [[anError userInfo] objectForKey:NSDetailedErrorsKey]; } else { errors = [NSArray arrayWithObject:anError]; } if (errors && [errors count] > 0) { NSString *messages = @"Reason(s):\n"; for (NSError * error in errors) { NSString *entityName = [[[[error userInfo] objectForKey:@"NSValidationErrorObject"] entity] name]; NSString *attributeName = [[error userInfo] objectForKey:@"NSValidationErrorKey"]; NSString *msg; switch ([error code]) { case NSManagedObjectValidationError: msg = @"Generic validation error."; break; case NSValidationMissingMandatoryPropertyError: msg = [NSString stringWithFormat:@"The attribute '%@' mustn't be empty.", attributeName]; break; case NSValidationRelationshipLacksMinimumCountError: msg = [NSString stringWithFormat:@"The relationship '%@' doesn't have enough entries.", attributeName]; break; case NSValidationRelationshipExceedsMaximumCountError: msg = [NSString stringWithFormat:@"The relationship '%@' has too many entries.", attributeName]; break; case NSValidationRelationshipDeniedDeleteError: msg = [NSString stringWithFormat:@"To delete, the relationship '%@' must be empty.", attributeName]; break; case NSValidationNumberTooLargeError: msg = [NSString stringWithFormat:@"The number of the attribute '%@' is too large.", attributeName]; break; case NSValidationNumberTooSmallError: msg = [NSString stringWithFormat:@"The number of the attribute '%@' is too small.", attributeName]; break; case NSValidationDateTooLateError: msg = [NSString stringWithFormat:@"The date of the attribute '%@' is too late.", attributeName]; break; case NSValidationDateTooSoonError: msg = [NSString stringWithFormat:@"The date of the attribute '%@' is too soon.", attributeName]; break; case NSValidationInvalidDateError: msg = [NSString stringWithFormat:@"The date of the attribute '%@' is invalid.", attributeName]; break; case NSValidationStringTooLongError: msg = [NSString stringWithFormat:@"The text of the attribute '%@' is too long.", attributeName]; break; case NSValidationStringTooShortError: msg = [NSString stringWithFormat:@"The text of the attribute '%@' is too short.", attributeName]; break; case NSValidationStringPatternMatchingError: msg = [NSString stringWithFormat:@"The text of the attribute '%@' doesn't match the required pattern.", attributeName]; break; default: msg = [NSString stringWithFormat:@"Unknown error (code %i).", [error code]]; break; } messages = [messages stringByAppendingFormat:@"%@%@%@\n", (entityName?:@""),(entityName?@": ":@""),msg]; } UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Validation Error" message:messages delegate:nil cancelButtonTitle:nil otherButtonTitles:@"OK", nil]; [alert show]; [alert release]; } } }
Prendre plaisir.
la source
Je suis surpris que personne ici ne gère réellement l'erreur de la manière dont elle est censée être traitée. Si vous regardez la documentation, vous verrez.
Donc, si je trouve une erreur lors de la configuration de la pile de données de base, j'échange le rootViewController de UIWindow et affiche l'interface utilisateur qui indique clairement à l'utilisateur que son appareil est peut-être plein ou que ses paramètres de sécurité sont trop élevés pour que cette application fonctionne. Je leur donne également un bouton «réessayer», afin qu'ils puissent tenter de résoudre le problème avant que la pile de données de base ne soit réessayée.
Par exemple, l'utilisateur peut libérer de l'espace de stockage, revenir à mon application et appuyer sur le bouton réessayer.
Affirme? Vraiment? Trop de développeurs dans la salle!
Je suis également surpris par le nombre de tutoriels en ligne qui ne mentionnent pas comment une opération de sauvegarde pourrait échouer pour ces raisons également. Vous devrez donc vous assurer que tout événement de sauvegarde N'IMPORTE O dans votre application puisse échouer car l'appareil JUST CETTE MINUTE est devenu plein avec votre sauvegarde de sauvegarde des applications.
la source
J'ai trouvé cette fonction de sauvegarde commune une bien meilleure solution:
- (BOOL)saveContext { NSError *error; if (![self.managedObjectContext save:&error]) { DDLogError(@"[%@::%@] Whoops, couldn't save managed object context due to errors. Rolling back. Error: %@\n\n", NSStringFromClass([self class]), NSStringFromSelector(_cmd), error); [self.managedObjectContext rollback]; return NO; } return YES; }
Chaque fois qu'une sauvegarde échoue, cela annulera votre NSManagedObjectContext, ce qui signifie qu'il réinitialisera toutes les modifications qui ont été effectuées dans le contexte depuis la dernière sauvegarde . Vous devez donc faire attention à toujours conserver les modifications en utilisant la fonction de sauvegarde ci-dessus le plus tôt et le plus régulièrement possible, car vous pourriez facilement perdre des données autrement.
Pour insérer des données, il peut s'agir d'une variante plus lâche permettant à d'autres modifications de vivre:
- (BOOL)saveContext { NSError *error; if (![self.managedObjectContext save:&error]) { DDLogError(@"[%@::%@] Whoops, couldn't save. Removing erroneous object from context. Error: %@", NSStringFromClass([self class]), NSStringFromSelector(_cmd), object.objectId, error); [self.managedObjectContext deleteObject:object]; return NO; } return YES; }
Remarque: j'utilise CocoaLumberjack pour me connecter ici.
Tout commentaire sur la façon d'améliorer cela est plus que bienvenu!
BR Chris
la source
J'ai fait une version Swift de la réponse utile de @JohannesFahrenkrug qui peut être utile:
public func displayValidationError(anError:NSError?) -> String { if anError != nil && anError!.domain.compare("NSCocoaErrorDomain") == .OrderedSame { var messages:String = "Reason(s):\n" var errors = [AnyObject]() if (anError!.code == NSValidationMultipleErrorsError) { errors = anError!.userInfo[NSDetailedErrorsKey] as! [AnyObject] } else { errors = [AnyObject]() errors.append(anError!) } if (errors.count > 0) { for error in errors { if (error as? NSError)!.userInfo.keys.contains("conflictList") { messages = messages.stringByAppendingString("Generic merge conflict. see details : \(error)") } else { let entityName = "\(((error as? NSError)!.userInfo["NSValidationErrorObject"] as! NSManagedObject).entity.name)" let attributeName = "\((error as? NSError)!.userInfo["NSValidationErrorKey"])" var msg = "" switch (error.code) { case NSManagedObjectValidationError: msg = "Generic validation error."; break; case NSValidationMissingMandatoryPropertyError: msg = String(format:"The attribute '%@' mustn't be empty.", attributeName) break; case NSValidationRelationshipLacksMinimumCountError: msg = String(format:"The relationship '%@' doesn't have enough entries.", attributeName) break; case NSValidationRelationshipExceedsMaximumCountError: msg = String(format:"The relationship '%@' has too many entries.", attributeName) break; case NSValidationRelationshipDeniedDeleteError: msg = String(format:"To delete, the relationship '%@' must be empty.", attributeName) break; case NSValidationNumberTooLargeError: msg = String(format:"The number of the attribute '%@' is too large.", attributeName) break; case NSValidationNumberTooSmallError: msg = String(format:"The number of the attribute '%@' is too small.", attributeName) break; case NSValidationDateTooLateError: msg = String(format:"The date of the attribute '%@' is too late.", attributeName) break; case NSValidationDateTooSoonError: msg = String(format:"The date of the attribute '%@' is too soon.", attributeName) break; case NSValidationInvalidDateError: msg = String(format:"The date of the attribute '%@' is invalid.", attributeName) break; case NSValidationStringTooLongError: msg = String(format:"The text of the attribute '%@' is too long.", attributeName) break; case NSValidationStringTooShortError: msg = String(format:"The text of the attribute '%@' is too short.", attributeName) break; case NSValidationStringPatternMatchingError: msg = String(format:"The text of the attribute '%@' doesn't match the required pattern.", attributeName) break; default: msg = String(format:"Unknown error (code %i).", error.code) as String break; } messages = messages.stringByAppendingString("\(entityName).\(attributeName):\(msg)\n") } } } return messages } return "no error" }`
la source