Using Java 1.6 and the AtomicLongArray, I'd like to "copy" the original AtomicLongArray into a new one. There is a constructor that takes an array (AtomicLongArray(long[])), so I thought I could just get the array from the original one and give it to the constructor.

Sadly, the actual long[] in the AtomicLongArray is private and there seem to be no getters for it. Is there any way to do this, meaning copy the values from one AtomicLongArray to another? I can't create my own class based on this class, as the sun.misc.Unsafe class is not available to me.

This is needed because I'm going to iterate over the values, and I don't want them modified by another thread during iteration. So I thought I could make a copy and use that for the iteration...

Thanks! Phillip

link|improve this question
feedback

2 Answers

up vote 2 down vote accepted

I suspect you have to create your own long[] and populate it first, or just iterate over the original:

AtomicLongArray copy = new AtomicLongArray(original.length());
for (int i = 0; i < copy.length(); i++)
{
    copy.set(i, original.get(i));
}

Note that although each individual operation in AtomicLongArray is atomic, there are no bulk operations - so there's no way of getting a "snapshot" of the whole array at time T. If you want that sort of behaviour, I believe you'll need to use synchronization.

link|improve this answer
I was trying to avoid this - like you said, iterating over the AtomicLongArray isn't going to be an atomic operation itself. Synchronization could be an option...just seems like overkill. – Phillip Atkinson Feb 23 at 6:57
@PhillipAtkinson: Well it depends on your requirements - do you need an atomic snapshot? If so, then fundamentally AtomicLongArray doesn't provide you everything you need. – Jon Skeet Feb 23 at 7:03
Yeah, you could be right. I tend to get too focused on one way of doing things. It could pay to look at other solutions... Thanks! :) – Phillip Atkinson Feb 23 at 7:27
feedback

This data structure allows concurrent updates to individual entries in the collection. There is not overall lock, so you can't prevent another thread changing the contents while you are iterating over it.

If you need this, you need a workaround, e.g. copy the array and loop again to check it hasn't changed. If changed, repeat. Or you need a collection which supports a global lock.

long[] copy = new long[original.length()];
boolean changed = true;
// repeat until we get an unchanged copy.
while(true) {
    for (int i = 0; i < copy.length(); i++) {
        long l = original.get(i);
        changed |= copy[i] != l;
        copy[i] = l;
    }
    if (!changed) break;
    changed = false;
}

This is not completely safe, but may be enough for what you need.

link|improve this answer
Thanks for the suggestion - I'll look at the effects of using something like this. – Phillip Atkinson Feb 23 at 9:39
Note: this is not guaranteed to finish. ;) This will happen if the array is large and you never stop getting updates. – Peter Lawrey Feb 23 at 9:40
feedback

Your Answer

 
or
required, but never shown

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