SessionInfoStore.java

  1. /*******************************************************************************
  2.  * Copyright (c) 2009, 2025 Mountainminds GmbH & Co. KG and Contributors
  3.  * This program and the accompanying materials are made available under
  4.  * the terms of the Eclipse Public License 2.0 which is available at
  5.  * http://www.eclipse.org/legal/epl-2.0
  6.  *
  7.  * SPDX-License-Identifier: EPL-2.0
  8.  *
  9.  * Contributors:
  10.  *    Marc R. Hoffmann - initial API and implementation
  11.  *
  12.  *******************************************************************************/
  13. package org.jacoco.core.data;

  14. import static java.lang.Math.max;
  15. import static java.lang.Math.min;

  16. import java.util.ArrayList;
  17. import java.util.Collections;
  18. import java.util.List;

  19. /**
  20.  * Container to collect and merge session {@link SessionInfo} objects. An
  21.  * instance of this class is not thread safe.
  22.  */
  23. public class SessionInfoStore implements ISessionInfoVisitor {

  24.     private final List<SessionInfo> infos = new ArrayList<SessionInfo>();

  25.     /**
  26.      * Tests whether the store is empty.
  27.      *
  28.      * @return <code>true</code> if the store is empty
  29.      */
  30.     public boolean isEmpty() {
  31.         return infos.isEmpty();
  32.     }

  33.     /**
  34.      * Returns all {@link SessionInfo} objects currently contained in the store.
  35.      * The info objects are ordered by its natural ordering (i.e. by the dump
  36.      * time stamp).
  37.      *
  38.      * @return list of stored {@link SessionInfo} objects
  39.      */
  40.     public List<SessionInfo> getInfos() {
  41.         final List<SessionInfo> copy = new ArrayList<SessionInfo>(infos);
  42.         Collections.sort(copy);
  43.         return copy;
  44.     }

  45.     /**
  46.      * Returns a new session info with the given id that contains a merged
  47.      * version from all contained version. The start timestamp is the minimum of
  48.      * all contained sessions, the dump timestamp the maximum of all contained
  49.      * sessions. If no session is currently contained both timestamps are set to
  50.      * <code>0</code>.
  51.      *
  52.      * @param id
  53.      *            identifier for the merged session info
  54.      * @return new {@link SessionInfo} object
  55.      *
  56.      */
  57.     public SessionInfo getMerged(final String id) {
  58.         if (infos.isEmpty()) {
  59.             return new SessionInfo(id, 0, 0);
  60.         }
  61.         long start = Long.MAX_VALUE;
  62.         long dump = Long.MIN_VALUE;
  63.         for (final SessionInfo i : infos) {
  64.             start = min(start, i.getStartTimeStamp());
  65.             dump = max(dump, i.getDumpTimeStamp());
  66.         }
  67.         return new SessionInfo(id, start, dump);
  68.     }

  69.     /**
  70.      * Writes all contained {@link SessionInfo} objects into the given visitor.
  71.      * The info objects are emitted in chronological order by dump timestamp.
  72.      *
  73.      * @param visitor
  74.      *            visitor to emit {@link SessionInfo} objects to
  75.      */
  76.     public void accept(final ISessionInfoVisitor visitor) {
  77.         for (final SessionInfo i : getInfos()) {
  78.             visitor.visitSessionInfo(i);
  79.         }
  80.     }

  81.     // === ISessionInfoVisitor ===

  82.     public void visitSessionInfo(final SessionInfo info) {
  83.         infos.add(info);
  84.     }

  85. }