src/java.base/share/classes/jdk/internal/event/Event.java
author egahlin
Wed, 31 Oct 2018 02:10:21 +0100
changeset 52334 a181612f0715
permissions -rw-r--r--
8203629: Produce events in the JDK without a dependency on jdk.jfr Reviewed-by: mgronlun
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
52334
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
     1
/*
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
     2
 * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
     4
 *
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    10
 *
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    15
 * accompanied this code).
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    16
 *
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    20
 *
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    23
 * questions.
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    24
 */
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    25
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    26
package jdk.internal.event;
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    27
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    28
/**
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    29
 * Base class for events, to be subclassed in order to define events and their
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    30
 * fields.
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    31
 */
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    32
public abstract class Event {
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    33
    /**
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    34
     * Sole constructor, for invocation by subclass constructors, typically
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    35
     * implicit.
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    36
     */
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    37
    protected Event() {
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    38
    }
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    39
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    40
    /**
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    41
     * Starts the timing of this event.
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    42
     */
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    43
    public void begin() {
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    44
    }
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    45
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    46
    /**
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    47
     * Ends the timing of this event.
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    48
     *
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    49
     * The {@code end} method must be invoked after the {@code begin} method.
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    50
     */
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    51
    public void end() {
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    52
    }
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    53
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    54
    /**
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    55
     * Writes the field values, time stamp, and event duration.
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    56
     * <p>
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    57
     * If the event starts with an invocation of the {@code begin} method, but does
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    58
     * not end with an explicit invocation of the {@code end} method, then the event
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    59
     * ends when the {@code commit} method is invoked.
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    60
     */
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    61
    public void commit() {
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    62
    }
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    63
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    64
    /**
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    65
     * Returns {@code true} if the event is enabled, {@code false} otherwise
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    66
     *
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    67
     * @return {@code true} if event is enabled, {@code false} otherwise
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    68
     */
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    69
    public boolean isEnabled() {
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    70
        return false;
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    71
    }
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    72
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    73
    /**
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    74
     * Returns {@code true} if the event is enabled and if the duration is within
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    75
     * the threshold for the event, {@code false} otherwise.
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    76
     *
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    77
     * @return {@code true} if the event can be written, {@code false} otherwise
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    78
     */
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    79
    public boolean shouldCommit() {
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    80
        return false;
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    81
    }
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    82
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    83
    /**
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    84
     * Sets a field value.
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    85
     *
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    86
     * @param index the index of the field to set
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    87
     * @param value value to set, can be {@code null}
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    88
     * @throws UnsupportedOperationException if functionality is not supported
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    89
     * @throws IndexOutOfBoundsException if {@code index} is less than {@code 0} or
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    90
     *         greater than or equal to the number of fields specified for the event
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    91
     */
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    92
    public void set(int index, Object value) {
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    93
    }
a181612f0715 8203629: Produce events in the JDK without a dependency on jdk.jfr
egahlin
parents:
diff changeset
    94
}