Eine aufbereitete Darstellung der Quelle

 
     
 
 
Anforderungen  |   Konzepte  |   Entwurf  |   Entwicklung  |   Qualitätssicherung  |   Lebenszyklus  |   Steuerung
 
 
 
 

Benutzer

Quelle  Main.java

  Sprache: JAVA
 

/*
 * Copyright (C) 2007 The Android Open Source Project
 *
 * 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.
 */


import dalvik.system.VMRuntime;
import java.util.concurrent.CountDownLatch;
import static java.util.concurrent.TimeUnit.MINUTES;

/**
 * Test a class with a bad finalizer in an environment with a short finalizer timeout.
 *
 * This test is inherently flaky. It assumes that the system will schedule the finalizer daemon
 * and finalizer watchdog daemon soon and often enough to reach the timeout and throw the fatal
 * exception before we time out here.
 * Largely cloned from 030-bad-finalizer.
 */

public class Main {
    public static void main(String[] args) throws Exception {
        CountDownLatch finalizerWait = new CountDownLatch(1);

        System.out.println("Finalizer timeout = "
                + VMRuntime.getRuntime().getFinalizerTimeoutMs() + " msecs.");
        // A separate method to ensure no dex register keeps the object alive.
        createBadFinalizer(finalizerWait);

        for (int i = 0; i < 2; i++) {
            Runtime.getRuntime().gc();
        }

        // Now wait for the finalizer to start running.
        if (!finalizerWait.await(1, MINUTES)) {
            System.out.println("finalizerWait timed out.");
        }

        // Sleep for less time than the default finalizer timeout, but significantly more than
        // the new timeout plus the 5 seconds we wait to dump thread stacks before actually
        // exiting.
        snooze(9800);
        if (System.getenv("ART_TEST_ON_VM") != null) {
          // Under emulation we sometimes seem to just not shut down fast enough.  If the process is
          // still running at this point, sleep again for longer. This makes the test much less
          // useful, but not 100% useless.
          snooze(20_000);
        }

        // We should not get here, since it should only take 5.5 seconds for the timed out
        // finalizer to kill the process.
        System.out.println("UNREACHABLE");
        System.exit(0);
    }

    private static void createBadFinalizer(CountDownLatch finalizerWait) {
        BadFinalizer bf = new BadFinalizer(finalizerWait);

        System.out.println("About to null reference.");
        bf = null;  // Not that this would make a difference, could be eliminated earlier.
    }

    public static void snooze(int ms) {
        try {
            Thread.sleep(ms);
        } catch (InterruptedException ie) {
            System.out.println("Snooze(" + ms + ") interrupted");
        }
    }

    /**
     * Class with a bad finalizer.
     */

    public static class BadFinalizer {
        private CountDownLatch finalizerWait;
        private volatile int j = 0;  // Volatile in an effort to curb loop optimization.

        public BadFinalizer(CountDownLatch finalizerWait) {
            this.finalizerWait = finalizerWait;
        }

        protected void finalize() {
            System.out.println("Finalizer started and snoozing...");
            finalizerWait.countDown();
            snooze(200);
            System.out.println("Finalizer done snoozing.");

            System.out.println("Finalizer sleeping forever now.");
            while (true) {
                snooze(10000);
            }
        }
    }
}

Messung V0.5 in Prozent
C=81 H=81 G=80

¤ Dauer der Verarbeitung: 0.10 Sekunden  (vorverarbeitet am  2026-06-29) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.






                                                                                                                                                                                                                                                                                                                                                                                                     


Neuigkeiten

     Aktuelles
     Motto des Tages

Software

     Quellcodebibliothek
     Eigene Quellcodes
     Fremde Quellcodes
     Suchen

Aktivitäten

     Artikel über Sicherheit
     Anleitung zur Aktivierung von SSL

Muße

     Gedichte
     Musik
     Bilder

Jenseits des Üblichen ....
    

Besucherstatistik

Besucherstatistik