- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我不太确定我做错了什么。我需要通过 select() 系统调用获取文件更改事件。所以问题是它不等待,并立即返回 TRUE 结果。看起来我没有将文件位置更改为文件末尾,但我确实这样做了。
这是代码
(defvar *fd-setsize* 1024)
(defvar *fd-bits-size* (/ *fd-setsize* sb-vm:n-machine-word-bits))
(defcstruct ccx-fd-set
(fds-bits :long :count #.*fd-bits-size*))
(defun ccx-strerror (errnum)
"Wrapper for strerror - return string describing error number"
(foreign-funcall "strerror" :int errnum :string))
(defun ccx-test (function-result &optional (caller nil caller-p))
"Wrapper for native functuions. It on succecc it will return function-result, but if not,
it will also report an error from errno."
(labels ((error-signal ()
(if caller-p
(warn "~a ~a" caller (ccx-strerror *errno*))
(warn "~a" (ccx-strerror *errno*)))))
(cond
((and (realp function-result)
(minusp function-result)) (error-signal)))
function-result))
(defun ccx-select (nfds readfds writefds exceptfds timeout)
(ccx-test (foreign-funcall "select" :int nfds :pointer readfds :pointer writefds
:pointer exceptfds :pointer timeout :int) "ccx-select"))
(defun ccx-pselect (nfds readfds writefds exceptfds timeout sigmask)
(ccx-test (foreign-funcall "pselect" :int nfds :pointer readfds :pointer writefds
:pointer exceptfds :pointer timeout :pointer sigmask :int) "ccx-pselect"))
;; #define __FD_SET(d, set) \
;; ((void) (__FDS_BITS (set)[__FDELT (d)] |= __FDMASK (d)))
(defmacro fd-set (offset fd-set)
(with-gensyms (word bit)
`(with-foreign-slots ((fds-bits) ,fd-set ccx-fd-set)
(multiple-value-bind (,word ,bit) (floor ,offset *fd-bits-size*)
(setf (mem-aref fds-bits :long ,word)
;; #define __FDMASK(d) ((__fd_mask) 1 << ((d) % __NFDBITS))
(logior (the (unsigned-byte #.*fd-bits-size*)
(ash 1 ,bit))
;; #define __FDELT(d) ((d) / __NFDBITS)
(mem-aref fds-bits :long ,word)
))))))
;; #define __FD_CLR(d, set) \
;; ((void) (__FDS_BITS (set)[__FDELT (d)] &= ~__FDMASK (d)))
(defmacro fd-clr (offset fd-set)
(with-gensyms (word bit)
`(with-foreign-slots ((fds-bits) ,fd-set ccx-fd-set)
(multiple-value-bind (,word ,bit) (floor ,offset sb-vm:n-machine-word-bits)
(setf (mem-aref fds-bits :long ,word)
(logand (the (unsigned-byte #.*fd-bits-size*)
(ash 1 ,bit))
(mem-ref fds-bits :long ,word)))))))
;; #define __FD_ISSET(d, set) \
;; ((__FDS_BITS (set)[__FDELT (d)] & __FDMASK (d)) != 0)
(defmacro fd-isset (offset fd-set)
(with-gensyms (word bit)
`(with-foreign-slots ((fds-bits) ,fd-set ccx-fd-set)
(multiple-value-bind (,word ,bit) (floor ,offset *fd-bits-size*)
;; (logbitp ,bit (mem-aref fds-bits :long ,word))
(logbitp ,bit (mem-aref fds-bits :long ,word))))))
;; # define __FD_ZERO(set) \
;; do { \
;; unsigned int __i; \
;; fd_set *__arr = (set); \
;; 4 * 32 = 128 / 4
;; for (__i = 0; __i < sizeof (fd_set) / sizeof (__fd_mask); ++__i) \
;; __FDS_BITS (__arr)[__i] = 0; \
;; } while (0)
(defmacro fd-zero (&rest fd-sets)
`(progn
,@(loop for el in fd-sets
collect `(with-foreign-slots ((fds-bits) ,el ccx-fd-set)
,@(loop for index upfrom 0 below *fd-bits-size*
collect `(setf (mem-aref fds-bits :long ,index) 0))))))
(defmacro fd-set-print (&rest fd-sets)
`(progn
,@(loop for el in fd-sets
collect `(progn
(format t "~&~s: " ',el)
,@(loop for index upfrom 0 below *fd-bits-size* collect
`(format t "~d " (mem-aref (foreign-slot-value ,el 'ccx-fd-set 'fds-bits) :long ,index))
finally (format t "~%"))))))
这是我的运行脚本
(with-open-file (fd "/tmp/test.txt")
(with-foreign-objects ((fd-set-r 'ccx-fd-set)
(fd-set-w 'ccx-fd-set)
(fd-set-x 'ccx-fd-set)
(timeout 'ccx-timespec))
(file-position fd (file-length fd))
(setf (foreign-slot-value timeout 'ccx-timespec 'ccx-tv-sec) 10)
(setf (foreign-slot-value timeout 'ccx-timespec 'ccx-tv-nsec) 0)
;; PRINTING && FLUSHING && PRINTING
(fd-set-print fd-set-r fd-set-w fd-set-x)
(fd-zero fd-set-r fd-set-w fd-set-x)
(fd-set-print fd-set-r fd-set-w fd-set-x)
(fd-set (sb-sys:fd-stream-fd fd) fd-set-r)
(fd-set (sb-sys:fd-stream-fd fd) fd-set-w)
(fd-set (sb-sys:fd-stream-fd fd) fd-set-x)
(fd-set-print fd-set-r fd-set-w fd-set-x)
(let ((res (ccx-select *fd-setsize* fd-set-r fd-set-w (null-pointer) timeout)))
(if (< res 0)
(format t "~& select () error")
(loop for index upfrom 0 below *fd-setsize* do
(progn
(when (fd-isset index fd-set-r)
(format t "~& fd ~d read" index))
(when (fd-isset index fd-set-w)
(format t "~& fd ~d write" index))
;; (when (fd-isset index fd-set-x)
;; (format t "~& fd ~d ex" index))
))))))
所以这是我的 C 示例,它对我也不起作用。
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/select.h>
#include <fcntl.h>
#include <stdio.h>
int main ()
{
FILE * pFile;
long size;
pFile = fopen ("/tmp/test.txt","rb");
if (pFile==NULL) perror ("Error opening file");
else
{
while (1){
fseek (pFile, 0, SEEK_END);
size=ftell (pFile);
printf ("Size of myfile.txt: %ld bytes.\n",size);
fd_set fds;
struct timeval tv;
int fd = fileno(pFile);
FD_ZERO(&fds);
FD_SET(fd,&fds);
tv.tv_sec = 2;
tv.tv_usec = 0;
int rc = select(fd+1, &fds, NULL, NULL, &tv);
if (rc < 0) {
printf("failed\n");
/* continue; */
} else if (rc > 0 && FD_ISSET(fd,&fds)) {
printf("read\n");
} else {
printf("timeout\n");
/* continue; */
}
}
fclose (pFile);
}
return 0;
}
这个程序的结果是:
Size of test.txt: 2267 bytes.
read
Size of test.txt: 2267 bytes.
read
我的代码有什么问题?
最佳答案
你没有做错什么
select()/poll() 和类似的对常规文件不起作用。
“与常规文件关联的文件描述符总是选择 true 以准备读取、准备写入和错误条件。” - 来自 here
如果你想监控文件的变化,你可以使用gamin ,或依赖于操作系统的 API,例如 inotify在 Linux 上,kqueue在 BSD 上。
关于c - select() 不等待任何变化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7022810/
在 的 React 组件中菜单,我需要设置selected反射(reflect)应用程序状态的选项的属性。 在 render() , optionState从状态所有者传递给 SortMenu 组件
我是初级 Ruby-mysql 程序员,我想知道如何使我的(存储过程)查询结果更快.. 这是我的存储过程我正在使用 SQL_CACHE.. 但我不确定.. 缓存使我的过程更快.. : ( DROP
我一直在 Python 中进行套接字编程,以使用 select.select(rfile, wfile, xlist[, timeout]) 处理由已连接的客户端套接字列表发出的请求,并且我还想用 J
我试图通过用空格填充文本来创建下拉列表中的列效果,如下例所示: [Aux1+1] [*] [Aux1+1] [@Tn=PP] [Main] [*] [Main A
我为 MySQL 编写了以下查询: SELECT subquery.t1_column1, subquery.t2_id, MAX(subquery.val) FROM ( S
为什么我们要用 select 标签来编写.attr('selected','selected') 例如: $('#countryList option').filter(function () {
Lokalizacja: Gdańsk Rzeszów Wrocław 不知道发生了什么,但在那种情况下没有选择的选项,我必须从列表中选择一些东西。当我从选
我的表单中有两个选择字段。第一个是单选,另一个是多选。现在我想做的是根据单选中所选的选项,使用给定的数据选择多选中的选项。为此,我在单选更改时触发 ajax 请求: $.ajax({ type
我在 Firefox 5 中发现了一个奇怪的错误(我现在无法访问 4)。但是,我认为它可能在 Firefox 4 中工作,因为我刚买了一台新电脑,而且我不记得以前见过这个错误。 我有几个选择框。所选值
此 SQL 有何不同: 第一个: select * from table_1 a join table_2 b on a.id = b.acc_id 第二个: select * f
预选 的最佳做法是什么?在 ? 根据不同的网站,两者都有效。但是哪个更好呢?最兼容? Foo Bar 最佳答案 如果您正在编写 XHTML,则 selected="selected" 是必需的。 如
我使用 Angular JS 创建了一个多选选择框:下面是相同的代码: JS: $scope.foobars = [{ 'foobar_id': 'foobar01', 'name':
我在 jqGrid 中有几列 edittype="select"。如何读取特定行中当前选定值的选项值? 例如:当我提供以下选项时,如何获得 FedEx 等的“FE” editoption: { val
这是我更大问题的精简查询,但要点是我试图内部联接到一个选择,其中选择受到外部选择的限制。那可能吗?我在内部选择上收到有关多部分标识符 S.Item 和 S.SerialNum 的错误。 要点是这样的,
如果chat.chat_type IS NULL,我想选择user.*,但如果chat.chat_type = 1 我想选择组。* SELECT CASE WHEN ch
我正在编写一个小脚本来测试表单在提交之前是否已被更改。所以我可以使用普通输入(文本、文本区域等): if(element.defaultValue != element.value) { al
我正在尝试为 Prototype 编写一个插件,用户在其中单击下拉菜单并将其替换为多选元素。我快完成了。在用户选择他们想要显示的内容并将表单提交到同一页面之前,一切都很好。我正在使用 PHP 来使用
你如何在 MongoDB 中进行嵌套选择,类似于 SELECT id FROM table1 WHERE id IN (SELECT id FROM table2) 最佳答案 MongoDB 尚不具备
我有以下用于选择下拉列表的代码: {{unit.Text}} UnitOfMeasurements 数组中的每一项看起来像这样: Selected: false Text: "lb" Va
我正在尝试使用[选定]和[ngValue]来设置表单中包含对象的选择标记的默认值。但出于某种原因,它们似乎无法相提并论。。示例代码:。这段代码最终只显示空白作为缺省值。如果删除[ngValue],它就
我是一名优秀的程序员,十分优秀!