vote up 1 vote down star

This is a composed concurrent list multimap implementation. A lower-level implementation would be better, but more complex.

Ignoring the O(n) removal in the sublist, is this the correct way to compose a ConcurrentMap and CopyOnWriteArrayList into a functional ConcurrentMultimap? Are there any unresolved data races?

private final ConcurrentMap<K, Collection<V>> map = ...; // inconsequential

public boolean put(K key, V value) {
 Collection<V> list = map.get(key);
 if(list != null) {
   list.add(value);
   return true;
 }

 // put if absent double check to avoid extra list creation
 list = new CopyOnWriteArrayList<V>();
 list.add(value);
 Collection<V> old = map.putIfAbsent(key,value);
 if(old != null) old.add(value);
 return true;
}

public boolean remove(Object key, Object value) {
 Collection<V> list = map.get(key);
 if(list == null) return false;

 // O(n) remove is the least of my worries
 if( ! list.remove(value)) return false;

 if( ! list.isEmpty()) return true;

 // double-check remove
 if( ! map.remove(key,list)) return true; // already removed! (yikes)

 if(list.isEmpty()) return true;

 // another entry was added!
 Collection<V> old = map.putIfAbsent(key,list);

 if(old == null) return true;

 // new list added!
 old.addAll(list);
 return true;
}
flag
of course I didn't check list.remove(value)'s boolean result! always the simplest things... – Karl the Pagan Jun 12 at 5:19
I think I'm developing the principles under which the happens-before rules can guarantee correct behavior. – Karl the Pagan Jun 12 at 18:03

1 Answer

vote up 2 vote down

I think you have a race. The problem I see is that a thread that is in 'put' CANNOT be sure that the list being inserted into hasn't been removed, and/or replaced with another list.

Observe:

Thread 1 calls put(), and retrieves (or creates) the list associated with the key. Meanwhile, Thread 2 removes that list from the map. Data lost.

I think you'll need to add a retry loop to verify that the right list is in the map after adding to it.

link|flag
I agree, so I take care of that possibility in remove: // new list added! old.addAll(list); thanks for catching the paren ;) – Karl the Pagan Jun 12 at 5:11
I think the problem is more insidious... I edited my answer to show other issues. – joshng Jun 12 at 5:16
I think you are going to be better off using an (effectively) immutable collection. – Tom Hawtin - tackline Jun 12 at 6:40
Immutable Map is inapplicable for the problem of session management. Making the constituent collections immutable creates different interesting problems that I might consider. – Karl the Pagan Jun 12 at 19:15

Your Answer

Get an OpenID
or

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