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

io.atomix.rest.impl.EventLog Maven / Gradle / Ivy

/*
 * Copyright 2017-present Open Networking Foundation
 *
 * 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 io.atomix.rest.impl;

import java.util.Queue;
import java.util.concurrent.CompletableFuture;
import java.util.concurrent.ConcurrentLinkedQueue;
import java.util.concurrent.atomic.AtomicBoolean;
import java.util.function.Function;

/**
 * Session registry.
 */
public class EventLog {
  private final L listener;
  private final AtomicBoolean open = new AtomicBoolean();
  private final Queue events = new ConcurrentLinkedQueue<>();
  private final Queue> futures = new ConcurrentLinkedQueue<>();

  public EventLog(Function, L> listenerFactory) {
    this.listener = listenerFactory.apply(this);
  }

  /**
   * Returns a boolean indicating whether the event consumer needs to be registered.
   *
   * @return indicates whether the event consumer needs to be registered
   */
  public boolean open() {
    return open.compareAndSet(false, true);
  }

  /**
   * Returns the event listener.
   *
   * @return the event listener
   */
  public L listener() {
    return listener;
  }

  /**
   * Completes the given response with the next event.
   *
   * @return a future to be completed with the next event
   */
  public CompletableFuture nextEvent() {
    E event = events.poll();
    if (event != null) {
      return CompletableFuture.completedFuture(event);
    } else {
      CompletableFuture future = new CompletableFuture<>();
      futures.add(future);
      return future;
    }
  }

  /**
   * Adds an event to the log.
   *
   * @param event the event to add
   */
  public void addEvent(E event) {
    CompletableFuture future = futures.poll();
    if (future != null) {
      future.complete(event);
    } else {
      events.add(event);
      if (events.size() > 100) {
        events.remove();
      }
    }
  }

  /**
   * Closes the session.
   */
  public boolean close() {
    if (open.compareAndSet(true, false)) {
      futures.forEach(future -> future.completeExceptionally(new IllegalStateException("Closed session")));
      return true;
    }
    return false;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy