1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182
|
/*
* 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
*/
import java.nio.file.*;
import static java.nio.file.StandardWatchEventKinds.*;
import java.util.*;
import java.util.concurrent.*;
public class MayFlies {
static volatile boolean stopped;
static volatile boolean failure;
/**
* Continuously creates short-lived files in a directory until {@code
* stopped} is set to {@code true}.
*/
static class MayFlyHatcher implements Runnable {
static final Random rand = new Random();
private final Path dir;
private final String prefix;
private MayFlyHatcher(Path dir, String prefix) {
this.dir = dir;
this.prefix = prefix;
}
static void start(Path dir, String prefix) {
MayFlyHatcher hatcher = new MayFlyHatcher(dir, prefix);
new Thread(hatcher).start();
}
public void 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.
*/
static enum Phase {
/**
* Short-lived files are being created
*/
RUNNING,
/**
* Draining the final events
*/
FINISHING,
/**
* No more events or overflow detected
*/
FINISHED
};
public static void main(String[] args) throws Exception {
// schedules file creation to stop after 10 seconds
ScheduledExecutorService pool = Executors.newSingleThreadScheduledExecutor();
pool.schedule(
new Runnable() { public void run() { stopped = true; }},
10, TimeUnit.SECONDS);
Path dir = TestUtil.createTemporaryDirectory();
Set<Path> entries = new HashSet<>();
int nCreateEvents = 0;
boolean overflow = false;
try (WatchService watcher = FileSystems.getDefault().newWatchService()) {
WatchKey key = dir.register(watcher, ENTRY_CREATE, ENTRY_DELETE);
// start hatching Mayflies
MayFlyHatcher.start(dir, "clinger");
MayFlyHatcher.start(dir, "crawler");
MayFlyHatcher.start(dir, "burrower");
MayFlyHatcher.start(dir, "swimmer");
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;
else if (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)
throw new RuntimeException("Duplicate ENTRY_CREATE event");
nCreateEvents++;
} else if (event.kind() == ENTRY_DELETE) {
Path name = (Path)event.context();
boolean removed = entries.remove(name);
if (!removed)
throw new RuntimeException("ENTRY_DELETE event without ENTRY_CREATE event");
} else if (event.kind() == OVERFLOW) {
overflow = true;
phase = Phase.FINISHED;
} else {
throw new RuntimeException("Unexpected event: " + event.kind());
}
}
key.reset();
}
}
System.out.format("%d ENTRY_CREATE events read%n", nCreateEvents);
// there should be a DELETE event for each CREATE event and so the
// entries set should be empty.
if (!overflow && !entries.isEmpty())
throw new RuntimeException("Missed " + entries.size() + " DELETE event(s)");
} finally {
try {
TestUtil.removeAll(dir);
} finally {
pool.shutdown();
}
}
if (failure)
throw new RuntimeException("Test failed - see log file for details");
}
}
|