All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hazelcast.client.MapEntryIterator Maven / Gradle / Ivy

There is a newer version: 3.12.13
Show newest version
/* 
 * Copyright (c) 2008-2010, Hazel Ltd. All Rights Reserved.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at 
 * 
 * http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 */

package com.hazelcast.client;

import com.hazelcast.core.IMap;
import com.hazelcast.core.Instance;

import java.util.Iterator;
import java.util.Map.Entry;

public class MapEntryIterator implements Iterator> {
    protected final Iterator it;
    protected final EntryHolder proxy;
    protected final Instance.InstanceType instanceType;
    protected volatile Entry lastEntry;
    K currentIteratedKey;
    V currentIteratedValue;
    boolean hasNextCalled = false;

    public MapEntryIterator(Iterator it, EntryHolder proxy, Instance.InstanceType instanceType) {
        this.it = it;
        this.proxy = proxy;
        this.instanceType = instanceType;
    }

    public boolean hasNext() {
        hasNextCalled = true;
        if (!it.hasNext()) {
            return false;
        }
        currentIteratedKey = it.next();
        currentIteratedValue = proxy.get(currentIteratedKey);
        if (currentIteratedValue == null) {
            return hasNext();
        }
        return true;
    }

    public Entry next() {
        if (!hasNextCalled) {
            hasNext();
        }
        hasNextCalled = false;
        K key = this.currentIteratedKey;
        V value = this.currentIteratedValue;
        lastEntry = new MapEntry(key, value, proxy);
        return lastEntry;
    }

    public void remove() {
        it.remove();
        proxy.remove(lastEntry.getKey(), lastEntry.getValue());
    }

    protected class MapEntry implements Entry {

        private K key;
        private V value;
        private EntryHolder proxy;

        public MapEntry(K key, V value, EntryHolder proxy) {
            this.key = key;
            this.value = value;
            this.proxy = proxy;
        }

        public K getKey() {
            // TODO Auto-generated method stub
            return key;
        }

        public V getValue() {
            // TODO Auto-generated method stub
            return value;
        }

        public V setValue(V arg0) {
            if (instanceType.equals(Instance.InstanceType.MULTIMAP)) {
                throw new UnsupportedOperationException();
            }
            return (V) ((IMap) proxy).put(key, arg0);
        }
    }

    ;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy