如何在 Applescript 中轮询磁盘活动?每 N 秒检查一次磁盘 X 是否正在被读取、写入或空闲,然后执行一些操作。
Digitarius
问问题
645 次
4 回答
2
一般来说,轮询的效率低于在发生某事时得到通知。此外,如果您正在检查是否正在从磁盘读取某些内容,您可能会自己访问该磁盘,这可能会影响您尝试观察的内容。
从 10.5 开始,OSX 包含一个称为文件系统事件框架的东西,它提供文件系统更改的粗粒度通知。你的问题是这只是Objective-C。Apple 有一些关于这个 API的很好的文档。
幸运的是,还有call method
AppleScript 命令。这允许您在 AppleScript 中使用 Objective-C 对象。这是关于它的文档。
我对这两者都没有经验,因此文档参考。希望这能让你继续前进。
于 2008-09-15T19:27:16.150 回答
0
你真的应该看看 Dtrace。它有能力做这种事情。
#!/usr/sbin/dtrace -s
/*
* bitesize.d - analyse disk I/O size by process.
* Written using DTrace (Solaris 10 build 63).
*
* This produces a report for the size of disk events caused by
* processes. These are the disk events sent by the block I/O driver.
*
* If applications must use the disks, we generally prefer they do so
* sequentially with large I/O sizes.
*
* 15-Jun-2005, ver 1.00
*
* USAGE: bitesize.d # wait several seconds, then hit Ctrl-C
*
* FIELDS:
* PID process ID
* CMD command and argument list
* value size in bytes
* count number of I/O operations
*
* NOTES:
* The application may be requesting smaller sized operations, which
* are being rounded up to the nearest sector size or UFS block size.
* To analyse what the application is requesting, DTraceToolkit programs
* such as Proc/fddist may help.
*
* SEE ALSO: seeksize.d, iosnoop
*
* Standard Disclaimer: This is freeware, use at your own risk.
*
* 31-Mar-2004 Brendan Gregg Created this, build 51.
* 10-Oct-2004 " " Rewrote to use the io provider, build 63.
*/
#pragma D option quiet
/*
* Print header
*/
dtrace:::BEGIN
{
printf("Sampling... Hit Ctrl-C to end.\n");
}
/*
* Process io start
*/
io:::start
{
/* fetch details */
this->size = args[0]->b_bcount;
cmd = (string)curpsinfo->pr_psargs;
/* store details */
@Size[pid,cmd] = quantize(this->size);
}
/*
* Print final report
*/
dtrace:::END
{
printf("\n%8s %s\n","PID","CMD");
printa("%8d %s\n%@d\n",@Size);
}
从这里。
运行使用
sudo dtrace -s bitsize.d
于 2008-10-01T14:54:55.107 回答
0
您可以定期运行终端命令 iostat。您必须将结果解析为您可以消化的形式。
如果您对各种 UNIX 命令行工具有足够的了解,我建议 iostat 将输出通过管道传输到 awk 或 sed 以仅提取您想要的信息。
于 2008-09-15T20:04:04.957 回答
0
于 2008-12-14T01:51:56.657 回答