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

com.simiacryptus.lang.StaticResourcePool Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2019 by Andrew Charneski.
 *
 * The author 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.simiacryptus.lang;

import com.simiacryptus.ref.lang.ReferenceCountingBase;
import com.simiacryptus.ref.wrappers.*;
import com.simiacryptus.util.Util;

import javax.annotation.Nonnull;
import java.util.concurrent.TimeUnit;
import java.util.function.Function;
import java.util.function.Predicate;

public class StaticResourcePool extends ReferenceCountingBase {

  @Nonnull
  private final RefList all;
  private final RefLinkedBlockingQueue pool = new RefLinkedBlockingQueue<>();

  public StaticResourcePool(@Nonnull final RefList items) {
    super();
    RefList temp_03_0001 = RefCollections
        .unmodifiableList(new RefArrayList<>(items.addRef()));
    this.all = temp_03_0001.addRef();
    temp_03_0001.freeRef();
    items.freeRef();
    pool.addAll(getAll());
  }

  @Nonnull
  public RefList getAll() {
    return all.addRef();
  }

  public void apply(@Nonnull final RefConsumer f) {
    apply(f, x -> true, false);
  }

  public void apply(@Nonnull final RefConsumer f, @Nonnull final Predicate filter, final boolean exclusive) {
    T poll = get(filter, exclusive);
    try {
      f.accept(poll);
    } finally {
      this.pool.add(poll);
    }
  }

  public  U run(@Nonnull final Function f) {
    return run(f, x -> true, false);
  }

  public  U run(@Nonnull final Function f, @Nonnull final Predicate filter, final boolean exclusive) {
    if (all.isEmpty())
      throw new IllegalStateException();
    T poll = get(filter, exclusive);
    try {
      return f.apply(poll);
    } finally {
      this.pool.add(poll);
    }
  }

  public int size() {
    RefList temp_03_0004 = getAll();
    int temp_03_0003 = temp_03_0004.size();
    temp_03_0004.freeRef();
    return temp_03_0003;
  }

  public @SuppressWarnings("unused")
  void _free() {
    super._free();
    all.freeRef();
    pool.freeRef();
  }

  @Nonnull
  public @Override
  @SuppressWarnings("unused")
  StaticResourcePool addRef() {
    return (StaticResourcePool) super.addRef();
  }

  @Nonnull
  private T get(@Nonnull Predicate filter, final boolean exclusive) {
    RefArrayList sampled = new RefArrayList<>();
    try {
      T poll = this.pool.poll();
      while (null != poll) {
        if (filter.test(poll)) {
          return poll;
        } else {
          sampled.add(poll);
          poll = this.pool.poll();
        }
      }
    } finally {
      pool.addAll(sampled);
    }
    try {
      while (true) {
        final T poll = this.pool.poll(5, TimeUnit.MINUTES);
        if (null == poll)
          throw new RuntimeException("Timeout awaiting item from pool");
        if (exclusive && !filter.test(poll)) {
          this.pool.add(poll);
          Thread.sleep(0);
        } else {
          return poll;
        }
      }
    } catch (@Nonnull final InterruptedException e) {
      throw Util.throwException(e);
    }
  }
}