/* * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions.
*/
/* @test * @bug 7164570 7191467 * @summary Test that CREATE and DELETE events are paired for very * short lived files * @library .. * @run main MayFlies * @key randomness
*/
/** * Continuously creates short-lived files in a directory until {@code * stopped} is set to {@code true}.
*/ staticclass MayFlyHatcher implements Runnable { staticfinal Random rand = new Random();
publicvoid run() { try { int n = 0; while (!stopped) {
Path name = dir.resolve(prefix + (++n));
Files.createFile(name); if (rand.nextBoolean()) Thread.sleep(rand.nextInt(500));
Files.delete(name); Thread.sleep(rand.nextInt(100));
}
System.out.format("%d %ss hatched%n", n, prefix);
} catch (Exception x) {
failure = true;
x.printStackTrace();
}
}
}
/** * Test phases.
*/ staticenum Phase { /** * Short-lived files are being created
*/
RUNNING, /** * Draining the final events
*/
FINISHING, /** * No more events or overflow detected
*/
FINISHED
};
Phase phase = Phase.RUNNING; while (phase != Phase.FINISHED) { // during the running phase then poll for 1 second. // once the file creation has stopped then move to the finishing // phase where we do a long poll to ensure that all events have // been read. int time = (phase == Phase.RUNNING) ? 1 : 15;
key = watcher.poll(time, TimeUnit.SECONDS); if (key == null) { if (phase == Phase.RUNNING && stopped)
phase = Phase.FINISHING; elseif (phase == Phase.FINISHING)
phase = Phase.FINISHED;
} else { // process events for (WatchEvent<?> event: key.pollEvents()) { if (event.kind() == ENTRY_CREATE) {
Path name = (Path)event.context(); boolean added = entries.add(name); if (!added) thrownew RuntimeException("Duplicate ENTRY_CREATE event");
nCreateEvents++;
} elseif (event.kind() == ENTRY_DELETE) {
Path name = (Path)event.context(); boolean removed = entries.remove(name); if (!removed) thrownew RuntimeException("ENTRY_DELETE event without ENTRY_CREATE event");
} elseif (event.kind() == OVERFLOW) {
overflow = true;
phase = Phase.FINISHED;
} else { thrownew RuntimeException("Unexpected event: " + event.kind());
}
}
key.reset();
}
}
// there should be a DELETE event for each CREATE event and so the // entries set should be empty. if (!overflow && !entries.isEmpty()) thrownew RuntimeException("Missed " + entries.size() + " DELETE event(s)");
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.