1 /*
   2  * Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package jdk.jfr.api.flightrecorder;
  27 
  28 import jdk.jfr.FlightRecorder;
  29 import jdk.jfr.Recording;
  30 import jdk.jfr.RecordingState;
  31 
  32 /*
  33  * @test
  34  * @key jfr
  35  * @library /lib/testlibrary
  36  * @build jdk.jfr.api.flightrecorder.MyListener
  37  * @run main/othervm jdk.jfr.api.flightrecorder.TestListener
  38  */
  39 public class TestListener {
  40 
  41     public static void main(String[] args) throws Throwable {
  42         MyListener listener1 = new MyListener();
  43         MyListener listener2 = new MyListener();
  44         FlightRecorder.addListener(listener1);
  45         FlightRecorder.addListener(listener2);
  46 
  47         Recording r1 = new Recording();
  48         listener1.verifyState(0, RecordingState.NEW);
  49         listener2.verifyState(0, RecordingState.NEW);
  50 
  51         r1.start();
  52         listener1.verifyState(1, RecordingState.RUNNING);
  53         listener2.verifyState(1, RecordingState.RUNNING);
  54 
  55         FlightRecorder.removeListener(listener1); // listener1 should not get more callbacks.
  56         r1.stop();
  57         listener1.verifyState(1, RecordingState.RUNNING);
  58         listener2.verifyState(2, RecordingState.STOPPED);
  59 
  60         r1.close();
  61         listener1.verifyState(1, RecordingState.RUNNING);
  62         listener2.verifyState(3, RecordingState.CLOSED);
  63         FlightRecorder.removeListener(listener2);
  64     }
  65 
  66 }