Is there a way to write this code more elegantly with a foreach loop? The "create a new entry" logic is thwarting me, because it needs to execute even if pendingEntries contains no items.

ItemDto itemToAdd; // an input parameter to the method
IEnumerator<Item> pendingEntries = existingPendingItems.GetEnumerator();
pendingEntries.MoveNext();
do // foreach entry
{
  Item entry = pendingEntries.Current;
  if (entry != null) // fold the itemToAdd into the existing entry
  {
    entry.Quantity += itemToAdd.Quantity; // amongst other things
  }
  else // create a new entry
  {
    entry = Mapper.Map<ItemDto, Item>(itemToAdd);
  }
  Save(entry);
} while (pendingEntries.MoveNext());
link|improve this question

So you can have non-existing (null) entries in a list named "existingPendingItems"? Strange naming... – Sjoerd Aug 3 '11 at 17:40
What does Save(entry) do? Does it add to existingPendingItems or to some other list? If existingPendingItems can be changed during iteration, a foreach should not be used. – Sjoerd Aug 3 '11 at 17:41
@Sjoerd I think the purpose of the null-check is only to handle the case where the enumerator has no items. – Jay Aug 3 '11 at 17:53
@Sjoerd, the poor naming is an artifact of renaming items for posting the code snippet. Save() persists the item in a database and does not effect existingPendingItems. – neontapir Aug 3 '11 at 18:42
@Jay, you are correct. The null check is intended to handle the situation where the collection is empty. – neontapir Aug 3 '11 at 18:43
show 2 more comments
feedback

6 Answers

up vote 2 down vote accepted
foreach (Item entry in existingPendingItems.DefaultIfEmpty())
{
    Item entryToSave;

    if (entry != null) // fold the itemToAdd into the existing entry
    {
        entry.Quantity += itemToAdd.Quantity; // amongst other things

        entryToSave = entry;
    }
    else // create a new entry
    {
        entryToSave = Mapper.Map<ItemDto, Item>(itemToAdd);
    }

    Save(entryToSave);
}

The key is the Enumerable.DefaultIfEmpty() call — this will return a sequence with a default (Item) item if the sequence is empty. This will be null for a reference type.

Edit: fixed bug mentioned by neotapir.

link|improve this answer
This is an interesting approach, but it involves writing to the loop variable, which the compiler won't allow. – neontapir Aug 3 '11 at 18:48
@neotapir: my in-brain compiler is obviously not as comprehensive as the C# compiler. Fixed. – Paul Ruane Aug 4 '11 at 8:36
feedback

This should be rewritten. I don't know what kind of collection you're using, but Current is undefined in your case since MoveNext could have returned false. As stated in the documentation:

Current is undefined under any of the following conditions: The last call to MoveNext returned false, which indicates the end of the collection.

Here is how I would rewrite it:

bool isEmpty = true;
foreach (Item entry in existingPendingItems)
{
  ProcessEntry(entry, itemToAdd);
  isEmpty = false;
}
if (isEmpty)
{
  ProcessEntry(null, itemToAdd);
}
  • ProcessEntry contains the logic for a single entry, and is easily unit testable.
  • The algorithm is cleared to read.
  • The enumerable is still only enumerated once.
link|improve this answer
1  
Good catch about first MoveNext() call. Didn't mentioned this at first. +1. – Ivan Danilov Aug 3 '11 at 17:59
That's true, Current is undefined (=null) if there are no items in the collection. – neontapir Aug 3 '11 at 18:56
2  
Undefined doesn't mean null. Undefined could be anything, even throwing an exception (that's actually what arrays do, for example). – Julien Lebosquain Aug 3 '11 at 19:00
@JulienLebosquain, I see you point after reading the documentation on Current. Looks like it willthrow if MoveNext() returned false. – neontapir Aug 4 '11 at 14:24
feedback

Personally I'd suggest something like this:

ItemDto itemToAdd; // an input parameter to the method
if (existingPendingItems.Any())
{
    foreach(Item entry in existingPendingItems)
    {
        entry.Quantity += itemToAdd.Quantity    
        Save(entry);
    }
}
else
{
    entry = Mapper.Map<ItemDto, Item>(itemToAdd);
    Save(entry);
}

I think this makes the intent of the code much clearer.

EDIT: Changed count to any as per suggestion. Also fixed the add quantity logic

link|improve this answer
2  
The problem here is that all the logic that you put in the foreach block is going to have to be duplicated in the else block, for that one item, which makes the code brittle. Also, because all we know is that existingPendingItems is enumerable, you'd have to invoke the .Count() extension method to compare to 0; you're better off using .Any() in this scenario because it will return true as soon as it can be determined that there is at least one item, rather than counting all items just to see if there is one. – Jay Aug 3 '11 at 18:04
feedback

I'd rewrite it as more standard while method. And you've forgot that IEnumerator<T> implements IDisposable, so you should dispose it.

link|improve this answer
True, good call – neontapir Aug 3 '11 at 18:49
feedback
foreach( Item entry in pendingEntries.Current)
{
    if( entry != null)
        entry.Quantity += itemToAdd.Quantity;
    else
       entry = Mapper.Map<ItemDto, Item>(itemToAdd);
    Save(entry)
}

cant exactly test it without the items

link|improve this answer
But if there's nothing in pendingEntries.Current, then the foreach loop won't execute. The OP wants the loop to execute at least once ("The "create a new entry" logic is thwarting me, because it needs to execute even if pendingEntries contains no items."). – Dirk Aug 3 '11 at 17:49
pendingEntries.Current is a single Item; can't foreach that. – Jay Aug 3 '11 at 17:49
could encapsulate it with an if else check – Grant Aug 3 '11 at 17:50
feedback
var pendingEntries = existingPendingItems.Any()
    ? existingPendingItems
    : new List<Item> { Mapper.Map<ItemDto, Item>(itemToAdd) };

foreach (var entry in pendingEntries)
{
    entry.Quantity += itemToAdd.Quantity; // amongst other things
    Save(entry);
}

The idea here is that you set yourself up for success before iterating. What are you going to iterate over? Either the existing entries, if there are any, or just a new entry otherwise.

By handling this up front, so you know you've got something with which to work, your loop stays very clean.

link|improve this answer
I like where you are going with this, but I believe this implementation would end up doubling the quantity if we create a new pendingEntries collection from the itemToAdd. – neontapir Aug 3 '11 at 18:45
@neontapir Ah, I see -- you don't actually want to do any add'l processing on the new item, just save it; is that right? – Jay Aug 3 '11 at 19:55
Correct, the Save operation adds a new item to the database. This method prevents duplicate items from being added. – neontapir Aug 4 '11 at 14:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.