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
|
package inotify
import (
"os"
"syscall"
)
func newPathError(op string, path string, err error) error {
if err == nil {
return nil
}
return &os.PathError{Op: op, Path: path, Err: err}
}
/* Create and initialize inotify instance. */
func inotify_init() (Fd, error) {
fd, errno := syscall.InotifyInit()
return Fd(fd), os.NewSyscallError("inotify_init", errno)
}
/* Create and initialize inotify instance. */
func inotify_init1(flags int) (Fd, error) {
fd, errno := syscall.InotifyInit1(flags)
return Fd(fd), os.NewSyscallError("inotify_init1", errno)
}
/* Add watch of object NAME to inotify instance FD. Notify about
events specified by MASK. */
func inotify_add_watch(fd Fd, name string, mask Mask) (Wd, error) {
wd, errno := syscall.InotifyAddWatch(int(fd), name, uint32(mask))
return Wd(wd), newPathError("inotify_add_watch", name, errno)
}
/* Remove the watch specified by WD from the inotify instance FD. */
func inotify_rm_watch(fd Fd, wd Wd) error {
success, errno := syscall.InotifyRmWatch(int(fd), uint32(wd))
switch success {
case -1:
if errno == nil {
panic("should never happen")
}
os.NewSyscallError("inotify_rm_watch", errno)
case 0:
if errno != nil {
panic("should never happen")
}
return nil
}
panic("should never happen")
}
func sysclose(fd Fd) error {
return os.NewSyscallError("close", syscall.Close(int(fd)))
}
func sysread(fd Fd, p []byte) (int, error) {
n, err := syscall.Read(int(fd), p)
return n, os.NewSyscallError("read", err)
}
|