
com.datatorrent.stram.engine.MuxReservoir Maven / Gradle / Ivy
/**
* 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
© 2015 - 2025 Weber Informatics LLC | Privacy Policy