src/jdk.jfr/share/classes/jdk/jfr/consumer/EventStream.java
author egahlin
Wed, 31 Jul 2019 14:07:44 +0200
branchJEP-349-branch
changeset 57604 838f9a7635b6
parent 57452 6fabe73e5d9a
child 57627 b38c7a822244
permissions -rw-r--r--
Cleaner stream reconfiguration + reduced allocation in JFR framework
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
57361
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
     1
/*
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
     2
 * Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
     4
 *
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    10
 *
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    15
 * accompanied this code).
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    16
 *
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    20
 *
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    23
 * questions.
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    24
 */
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    25
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    26
package jdk.jfr.consumer;
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    27
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    28
import java.io.IOException;
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    29
import java.nio.file.Path;
57434
216bf2e3b542 Add support for EventStrem::openRepository
egahlin
parents: 57386
diff changeset
    30
import java.security.AccessController;
57361
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    31
import java.time.Duration;
57372
50ca040843ea Prepare infrastructure for multiple implementations of EventStream
egahlin
parents: 57361
diff changeset
    32
import java.time.Instant;
57361
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    33
import java.util.function.Consumer;
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    34
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    35
/**
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    36
 * Represents a stream of event that actions can be performed up on.
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    37
 */
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    38
public interface EventStream extends AutoCloseable {
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    39
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    40
    /**
57449
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
    41
     * Creates a stream from a disk repository.
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
    42
     * <p>
57452
6fabe73e5d9a Reduced allocation pressure. Fix getValue for startTime and duration
egahlin
parents: 57449
diff changeset
    43
     * By default, the stream starts with the next event flushed by Flight Recorder.
57361
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    44
     *
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    45
     * @param directory location of the disk repository, not {@code null}
57449
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
    46
     *
57361
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    47
     * @return an event stream, not {@code null}
57449
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
    48
     *
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
    49
     * @throws IOException if a stream can't be opened, or an I/O error occurs
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
    50
     *         during reading
57361
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    51
     */
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    52
    public static EventStream openRepository(Path directory) throws IOException {
57604
838f9a7635b6 Cleaner stream reconfiguration + reduced allocation in JFR framework
egahlin
parents: 57452
diff changeset
    53
        return new EventDirectoryStream(AccessController.getContext(), directory, AbstractEventStream.NEXT_EVENT);
57361
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    54
    }
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    55
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    56
    /**
57449
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
    57
     * Creates an event stream from a file.
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
    58
     * <p>
57452
6fabe73e5d9a Reduced allocation pressure. Fix getValue for startTime and duration
egahlin
parents: 57449
diff changeset
    59
     * By default, the stream starts with the first event in the file.
57361
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    60
     *
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    61
     * @param file location of the file, not {@code null}
57449
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
    62
     *
57361
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    63
     * @return an event stream, not {@code null}
57372
50ca040843ea Prepare infrastructure for multiple implementations of EventStream
egahlin
parents: 57361
diff changeset
    64
     *
57449
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
    65
     * @throws IOException if a stream can't be opened, or an I/O error occurs
57376
8e8a06a3059c Add foundation for event object reuse
egahlin
parents: 57372
diff changeset
    66
     *         during reading
57361
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    67
     */
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    68
    public static EventStream openFile(Path file) throws IOException {
57449
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
    69
        return new EventFileStream(file, null, null);
57372
50ca040843ea Prepare infrastructure for multiple implementations of EventStream
egahlin
parents: 57361
diff changeset
    70
    }
50ca040843ea Prepare infrastructure for multiple implementations of EventStream
egahlin
parents: 57361
diff changeset
    71
50ca040843ea Prepare infrastructure for multiple implementations of EventStream
egahlin
parents: 57361
diff changeset
    72
    /**
57361
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    73
     * Performs an action on all events in the stream.
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    74
     *
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    75
     * @param action an action to be performed on each {@code RecordedEvent},
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    76
     *        not {@code null}
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    77
     */
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    78
    void onEvent(Consumer<RecordedEvent> action);
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    79
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    80
    /**
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    81
     * Performs an action on all events in the stream with a specified name.
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    82
     *
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    83
     * @param eventName the name of the event, not {@code null}
57449
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
    84
     *
57361
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    85
     * @param action an action to be performed on each {@code RecordedEvent}
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    86
     *        that matches the event name, not {@code null}
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    87
     */
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    88
    void onEvent(String eventName, Consumer<RecordedEvent> action);
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    89
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    90
    /**
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    91
     * Performs an action when the event stream has been flushed.
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    92
     *
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    93
     * @param action an action to be performed after stream has been flushed,
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    94
     *        not {@code null}
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    95
     */
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    96
    void onFlush(Runnable action);
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    97
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    98
    /**
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    99
     * Performs an action when the event stream is closed.
57449
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
   100
     * <p>
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
   101
     * If the stream is already closed, the action will be executed immediately
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
   102
     * in the current thread.
57361
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   103
     *
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   104
     * @param action an action to be performed after the stream has been closed,
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   105
     *        not {@code null}
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   106
     */
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   107
    void onClose(Runnable action);
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   108
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   109
    /**
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   110
     * Releases all resources associated with this event stream.
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   111
     */
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   112
    void close();
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   113
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   114
    /**
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   115
     * Removes an action from the stream.
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   116
     * <p>
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   117
     * If the action has been added multiple times, all instance of it will be
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   118
     * removed.
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   119
     *
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   120
     * @param action the action to remove, not {@code null}
57449
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
   121
     *
57361
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   122
     * @return {@code true} if the action was removed, {@code false} otherwise
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   123
     *
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   124
     * @see #onClose(Runnable)
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   125
     * @see #onFlush(Runnable)
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   126
     * @see #onEvent(Consumer)
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   127
     * @see #onEvent(String, Consumer)
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   128
     */
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   129
    boolean remove(Object action);
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   130
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   131
    /**
57449
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
   132
     * Specifies that the event object in an {@link #onEvent(Consumer)} action
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
   133
     * is to be reused.
57376
8e8a06a3059c Add foundation for event object reuse
egahlin
parents: 57372
diff changeset
   134
     * <p>
57380
6a7e7743b82f setOrdered and setReuse implemented for file stream, incl. unit tests
egahlin
parents: 57377
diff changeset
   135
     * If reuse is set to {@code true), a callback should not keep a reference
6a7e7743b82f setOrdered and setReuse implemented for file stream, incl. unit tests
egahlin
parents: 57377
diff changeset
   136
     * to the event object after the callback from {@code onEvent} has returned.
6a7e7743b82f setOrdered and setReuse implemented for file stream, incl. unit tests
egahlin
parents: 57377
diff changeset
   137
     *
57449
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
   138
     * @param resuse if event objects can be reused between calls to
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
   139
     * {@code #onEvent(Consumer)}
57376
8e8a06a3059c Add foundation for event object reuse
egahlin
parents: 57372
diff changeset
   140
     *
8e8a06a3059c Add foundation for event object reuse
egahlin
parents: 57372
diff changeset
   141
     */
8e8a06a3059c Add foundation for event object reuse
egahlin
parents: 57372
diff changeset
   142
    public void setReuse(boolean reuse);
8e8a06a3059c Add foundation for event object reuse
egahlin
parents: 57372
diff changeset
   143
8e8a06a3059c Add foundation for event object reuse
egahlin
parents: 57372
diff changeset
   144
    /**
57449
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
   145
     * Specifies that events arrives in chronological order, sorted by the time
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
   146
     * they were committed to the event stream.
57380
6a7e7743b82f setOrdered and setReuse implemented for file stream, incl. unit tests
egahlin
parents: 57377
diff changeset
   147
     *
57449
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
   148
     * @param ordered if event objects arrive in chronological order to
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
   149
     *        {@code #onEvent(Consumer)}
57380
6a7e7743b82f setOrdered and setReuse implemented for file stream, incl. unit tests
egahlin
parents: 57377
diff changeset
   150
     */
6a7e7743b82f setOrdered and setReuse implemented for file stream, incl. unit tests
egahlin
parents: 57377
diff changeset
   151
    public void setOrdered(boolean ordered);
6a7e7743b82f setOrdered and setReuse implemented for file stream, incl. unit tests
egahlin
parents: 57377
diff changeset
   152
6a7e7743b82f setOrdered and setReuse implemented for file stream, incl. unit tests
egahlin
parents: 57377
diff changeset
   153
    /**
57449
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
   154
     * Specifies start time of the event stream.
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
   155
     *
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
   156
     * @param startTime the start time, not {@code null}
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
   157
     *
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
   158
     * @throws IllegalStateException if the stream has already been started
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
   159
     */
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
   160
    public void setStartTime(Instant startTime);
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
   161
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
   162
    /**
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
   163
     * Start processing events in the stream.
57361
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   164
     * <p>
57449
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
   165
     * All actions performed on this stream will happen in the current thread.
57361
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   166
     *
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   167
     * @throws IllegalStateException if the stream is already started or if it
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   168
     *         has been closed
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   169
     */
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   170
    void start();
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   171
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   172
    /**
57449
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
   173
     * Start processing events in the stream asynchronously.
57361
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   174
     * <p>
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   175
     * All actions on this stream will be performed in a separate thread.
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   176
     *
57449
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
   177
     * @throws IllegalStateException if the stream is already started, or if it
57361
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   178
     *         has been closed
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   179
     */
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   180
    void startAsync();
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   181
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   182
    /**
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   183
     * Blocks the current thread until the stream is finished, closed, or it
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   184
     * times out.
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   185
     *
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   186
     * @param timeout the maximum time to wait, not {@code null}
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   187
     *
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   188
     * @see #start()
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   189
     * @see #startAsync()
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   190
     */
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   191
    void awaitTermination(Duration timeout);
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   192
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   193
    /**
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   194
     * Blocks the current thread until the stream is finished or closed.
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   195
     *
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   196
     * @see #start()
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   197
     * @see #startAsync()
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   198
     */
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   199
    void awaitTermination();
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   200
}