我有一个java项目,它的一个组件是监视挂载到我的机器上的特定文件夹。
我的 Linux 版本是 OpenSUSE 42.1
为了监视文件夹,我正在使用java的监视服务。
附上我们在网上找到的文件夹监控的主要代码,并根据需要进行修改。
(抱歉缺少版权,找不到从哪里取的(。
构造 函数:
/**
* Creates a WatchService and registers the given directory
*/
public WatchDir(Path dir, Kind<?>... dirWatchKinds) throws IOException {
this.watcher = FileSystems.getDefault().newWatchService();
this.keys = new HashMap<WatchKey,Path>();
register(dir, dirWatchKinds);
Runtime.getRuntime().addShutdownHook(new Thread() {
public void run() {
try {
watcher.close();
} catch (IOException e) {
e.printStackTrace();
}
}
});
}
运行方法(实现为可运行(:
/**
* Process all events for keys queued to the watcher
*/
public void run() {
while (shouldRun) {
// wait for key to be signalled
WatchKey key;
try {
key = watcher.take();
} catch (Exception x) {
return;
}
Path dir = keys.get(key);
if (dir == null) {
log.error("WatchKey not recognized!!");
continue;
}
for (WatchEvent<?> event: key.pollEvents()) {
WatchEvent.Kind<?> kind = event.kind();
if (kind == OVERFLOW) {
continue;
}
// Context for directory entry event is the file name of entry
WatchEvent<Path> ev = cast(event);
Path name = ev.context();
Path child = dir.resolve(name);
handleDirEvent(child, ev.kind());
}
// reset key and remove from set if directory no longer accessible
boolean valid = key.reset();
if (!valid) {
// Check that dir path still exists. If not, notify user and whoever run the thread
if (Files.notExists(dir)){
//log.error(String.format("Directory ", arg1));
fireFileChangedEvent(dir.getFileName().toString(), FileState.Deleted);
}
keys.remove(key);
// all directories are inaccessible
if (keys.isEmpty()) {
break;
}
}
}
}
现在谈谈我的问题。
挂载的文件夹容易断开连接,这可能会在我的程序范围之外处理(我猜是从终端(。
目前,当它发生时,watcher.take()
会收到通知,没有任何事件要处理,
并且在boolean valid = key.reset()
上它得到值 false,然后最终导致线程终止。
从那时起,我真的不知道何时会再次挂载该文件夹 - 用于重新运行监视器线程。
监控文件夹装载/卸载的最佳方法是什么?
请注意:受监控的端点文件夹不一定是挂载点,它(挂载的文件夹(可能是它的祖先之一。
任何帮助将不胜感激!
您可以查看/proc/mounts
文件以查看挂载是否仍然存在。
不确定OpenSUSE,但我认为它们的工作方式与Redhat风格的Linux相同。 https://www.centos.org/docs/5/html/5.2/Deployment_Guide/s2-proc-mounts.html
按照@StefanE答案,我找到了以下使用 java native 读取此文件的好例子。
从这个答案来看,
它可以很好地解析/etc/mtab
文件,在我的特定用法中,我将在每个时间间隔检查此文件以查看该文件夹是否再次挂载。
mntent mntEnt;
Pointer stream = CLib.INSTANCE.setmntent("/etc/mtab", "r");
while ((mntEnt = CLib.INSTANCE.getmntent(stream)) != null) {
if (mntEnt.mnt_type.equalsIgnoreCase("cifs")){
System.out.println("Mounted from: " + mntEnt.mnt_fsname);
System.out.println("Mounted on: " + mntEnt.mnt_dir);
System.out.println("File system type: " + mntEnt.mnt_type);
System.out.println("-------------------------------");
}
}
CLib.INSTANCE.endmntent(stream);
对于我的特定用法,它的结果是
Mounted from: //192.168.163.129/storage1/rawData
Mounted on: /mntMS/StorageServer1/rawData
File system type: cifs
Mounted from: //192.168.163.129/storage2/output
Mounted on: /mntMS/StorageServer2/output
File system type: cifs
Mounted from: //192.168.163.129/storage2/rawData
Mounted on: /mntMS/StorageServer2/rawData
File system type: cifs
Mounted from: //127.0.0.1/storage1/output
Mounted on: /mntMS/StorageServer1/output
File system type: cifs