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

com.datatorrent.stram.engine.MuxReservoir Maven / Gradle / Ivy

There is a newer version: 3.7.0
Show newest version
/**
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you 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.datatorrent.stram.engine;

import java.util.HashMap;
import java.util.Iterator;
import java.util.Queue;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import com.datatorrent.api.Sink;
import com.datatorrent.netlet.util.CircularBuffer;
import com.datatorrent.stram.tuple.Tuple;

/**
 * 

Abstract MuxReservoir class.

* * @since 0.3.2 */ public abstract class MuxReservoir { @SuppressWarnings("VolatileArrayField") private volatile SubReservoir[] reservoirs = new SubReservoir[0]; private HashMap reservoirMap = new HashMap<>(); public SweepableReservoir acquireReservoir(String id, int capacity) { SubReservoir r = reservoirMap.get(id); if (r == null) { reservoirMap.put(id, r = new SubReservoir(capacity)); SubReservoir[] newReservoirs = new SubReservoir[reservoirs.length + 1]; newReservoirs[reservoirs.length] = r; for (int i = reservoirs.length; i-- > 0;) { newReservoirs[i] = reservoirs[i]; } reservoirs = newReservoirs; } return r; } public SweepableReservoir releaseReservoir(String id) { SubReservoir r = reservoirMap.remove(id); if (r != null) { SubReservoir[] newReservoirs = new SubReservoir[reservoirs.length - 1]; int j = 0; for (int i = 0; i < reservoirs.length; i++) { if (reservoirs[i] != r) { newReservoirs[j++] = reservoirs[i]; } } reservoirs = newReservoirs; } return r; } protected abstract Queue getQueue(); class SubReservoir extends CircularBuffer implements SweepableReservoir { int count; private Sink sink; SubReservoir(int capacity) { super(capacity); } @Override public int size(final boolean dataTupleAware) { int size = size(); if (dataTupleAware) { Iterator iterator = getFrozenIterator(); while (iterator.hasNext()) { if (iterator.next() instanceof Tuple) { size--; } } } return size; } @Override public Sink setSink(Sink sink) { try { return this.sink; } finally { this.sink = sink; } } @Override public Tuple sweep() { final int size = size(); if (size > 0) { for (int i = 0; i < size; i++) { if (peekUnsafe() instanceof Tuple) { count += i; return (Tuple)peekUnsafe(); } sink.put(pollUnsafe()); } count += size; } final Queue queue = getQueue(); synchronized (queue) { if (queue.isEmpty()) { return null; } /* find out the minimum remaining capacity in all the other buffers and consume those many tuples from bufferserver */ int min = Integer.MAX_VALUE; for (int i = reservoirs.length; i-- > 0;) { if (reservoirs[i].remainingCapacity() < min) { min = reservoirs[i].remainingCapacity(); } } while (min-- > 0) { Object o = queue.poll(); if (o == null) { break; } for (int i = reservoirs.length; i-- > 0;) { reservoirs[i].add(o); } } } return null; } @Override public int getCount(boolean reset) { try { return count; } finally { if (reset) { count = 0; } } } } private static final Logger logger = LoggerFactory.getLogger(MuxReservoir.class); }