Mam tę metodę w języku C#, i chcę ją refactor. Jest po prostu zbyt wiele boolów i linii. Jaki byłby najlepszy refaktoryzacji. Tworzenie nowej klasy wydaje się nieco przesadą, a cięcie tylko na dwie części wydaje się trudne. Dowolny wgląd lub wskaźnik byłby doceniony.Refaktoryzacja metody ze zbyt dużą liczbą bool
metoda byłaby
private DialogResult CheckForSireRestrictionInSubGroup(bool deletingGroup,string currentId)
{
DialogResult result = DialogResult.No;
if (!searchAllSireList)
{
DataAccessDialog dlg = BeginWaitMessage();
bool isClose = false;
try
{
ArrayList deletedSire = new ArrayList();
ISireGroupBE sireGroupBE = sireController.FindSireGroupSearch();
if (sireGroupBE != null)
{
//if the current group is in fact the seach group before saving
bool currentGroupIsSeachGroup = sireGroupBE.TheSireGroup.id == currentId;
//if we have setting this group as search group
bool selectedAsSearchGroup = this.chkBoxSelectedSireGroup.Checked;
//if the group we currently are in is not longer the seach group(chk box was unchecked)
bool wasSearchGroup = currentGroupIsSeachGroup && !selectedAsSearchGroup;
//if the group is becoming the search group
bool becomesSearchGroup = !currentGroupIsSeachGroup && selectedAsSearchGroup;
//if the group being deleted is in fact the search group
bool deletingSearchGroup = deletingGroup && currentGroupIsSeachGroup;
//if the user checked the checkbox but he's deleting it, not a so common case, but
//we shouldn't even consider to delete sire in this case
bool deletingTemporarySearchGroup = deletingGroup && !currentGroupIsSeachGroup;
//if we are not deleting a temporary search group and it's either
//becoming one (without deleting it) or we already are the search group
bool canDeleteSires = !deletingTemporarySearchGroup &&
(becomesSearchGroup || currentGroupIsSeachGroup);
//we only delete sires if we are in search group
if (canDeleteSires)
{
if (deletingSearchGroup || wasSearchGroup)
{
// If we deleted all sires
deletedSire = new ArrayList();
deletedSire.AddRange(sireGroupBE.SireList);
}
else
{
//if we delete a few sire from the change of search group
deletedSire = GetDeleteSire(sireGroupBE.SireList);
}
}
EndWaitMessage(dlg);
isClose = true;
result = ShowSubGroupAffected(deletedSire);
}
}
finally
{
if (!isClose)
{
EndWaitMessage(dlg);
}
}
}
return result;
}
To wygląda jak najczystszym sposobem wyrażania logiki - jest łatwy do odczytania, a jest również dobrze skomentowany. W ogóle tego nie dotknęłbym. – dasblinkenlight
Zgoda .... może być długa, ale czytelna. –
Jestem zdania, że obecny kod jest czytelny, ale pomniejsza cel metody, aby usunąć wpisy. Logika logiczna może pozostać taka, jak jest, i przeprowadzić migrację do innej metody, tak, że główna metoda może zmniejszyć kod "wsparcia", który nie rozwiązuje głównego problemu usuwania elementów. –