W przykładowym kodzie dostarczonym przez Apple widziałem odniesienia do sposobu obsługi błędów podstawowych danych. To znaczy:
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();
}
Ale nigdy nie ma przykładów, jak należy to wdrożyć.
Czy ktoś ma (lub może wskazać mi kierunek) jakiś rzeczywisty kod „produkcyjny”, który ilustruje powyższą metodę.
Z góry dzięki, Matt
iphone
core-data
error-handling
Kołysać
źródło
źródło
Odpowiedzi:
Nikt nie pokaże Ci kodu produkcyjnego, ponieważ zależy on w 100% od aplikacji i miejsca wystąpienia błędu.
Osobiście umieściłem tam stwierdzenie assert, ponieważ 99,9% przypadków ten błąd będzie występował podczas programowania, a kiedy go tam naprawisz, jest bardzo mało prawdopodobne, że zobaczysz go w produkcji.
Po asercie przedstawię alert użytkownikowi, poinformuję go, że wystąpił nieodwracalny błąd i że aplikacja zostanie zamknięta. Możesz również umieścić tam notkę z prośbą o skontaktowanie się z programistą, aby mieć nadzieję, że będziesz mógł to śledzić.
Potem zostawiłbym abort () w tym miejscu, ponieważ spowoduje to "awarię" aplikacji i wygeneruje ślad stosu, którego, miejmy nadzieję, możesz później użyć do wyśledzenia problemu.
źródło
-save:
wywołanie podstawowych danych . Wszystkie te warunki mają miejsce na długo przed tym, zanim Twój kod osiągnie ten punkt.-save:
wywołaniem.Jest to jedna z metod, które wymyśliłem, aby obsłużyć i wyświetlić błędy walidacji na iPhonie. Ale Marcus ma rację: prawdopodobnie chciałbyś poprawić komunikaty, aby były bardziej przyjazne dla użytkownika. Ale to przynajmniej daje punkt wyjścia, aby zobaczyć, które pole nie zostało zweryfikowane i dlaczego.
- (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]; } } }
Cieszyć się.
źródło
Dziwię się, że nikt tutaj tak naprawdę nie obsługuje błędu tak, jak powinien. Jeśli spojrzysz na dokumentację, zobaczysz.
Jeśli więc znajdę błąd podczas konfigurowania podstawowego stosu danych, zamieniam rootViewController UIWindow i pokazuję interfejs użytkownika, który wyraźnie informuje użytkownika, że jego urządzenie może być pełne lub ustawienia zabezpieczeń są zbyt wysokie, aby ta aplikacja działała. Daję im również przycisk „spróbuj ponownie”, aby mogli spróbować rozwiązać problem przed ponowną próbą wykorzystania podstawowego stosu danych.
Na przykład użytkownik może zwolnić trochę miejsca na dysku, wrócić do mojej aplikacji i nacisnąć przycisk spróbuj ponownie.
Potwierdza? Naprawdę? Za dużo programistów w pokoju!
Jestem również zaskoczony liczbą samouczków online, w których nie wspomina się, jak operacja zapisywania może się nie powieść z tych powodów. Musisz więc upewnić się, że każde zdarzenie zapisu WSZĘDZIE w aplikacji może się nie powieść, ponieważ urządzenie TYLKO W TEJ MINUTIE zapełniło się zapisywaniem zapisywania aplikacji.
źródło
Uważam, że ta wspólna funkcja zapisywania jest znacznie lepszym rozwiązaniem:
- (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; }
Za każdym razem, gdy zapis nie powiedzie się, spowoduje to wycofanie NSManagedObjectContext, co oznacza, że zresetuje wszystkie zmiany, które zostały wykonane w kontekście od ostatniego zapisu . Musisz więc uważać, aby zawsze utrwalać zmiany przy użyciu powyższej funkcji zapisywania tak wcześnie i regularnie, jak to możliwe, ponieważ w przeciwnym razie możesz łatwo utracić dane.
W przypadku wstawiania danych może to być luźniejszy wariant, umożliwiający życie innym zmianom:
- (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; }
Uwaga: do logowania tutaj używam CocoaLumberjack.
Każdy komentarz dotyczący tego, jak to poprawić, jest bardziej niż mile widziany!
BR Chris
źródło
Stworzyłem szybką wersję przydatnej odpowiedzi @JohannesFahrenkrug, która może być przydatna:
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" }`
źródło