summaryrefslogtreecommitdiff
path: root/inotify/syscall.go
blob: 33a10e28e0203e0d381764ca7993bfabcee6d63c (plain)
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
// Copyright 2015-2016 Luke Shumaker <lukeshu@sbcglobal.net>.
//
// This is free software; you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License as
// published by the Free Software Foundation; either version 2.1 of
// the License, or (at your option) any later version.
//
// This software 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 Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this manual; if not, see
// <http://www.gnu.org/licenses/>.

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 sys_inotify_init() (inFd, error) {
	fd, err := syscall.InotifyInit()
	return inFd(fd), os.NewSyscallError("inotify_init", err)
}

// Create and initialize inotify instance.
func sys_inotify_init1(flags int) (inFd, error) {
	fd, err := syscall.InotifyInit1(flags)
	return inFd(fd), os.NewSyscallError("inotify_init1", err)
}

// Add watch of object NAME to inotify instance FD.  Notify about
// events specified by MASK.
func sys_inotify_add_watch(fd inFd, name string, mask Mask) (Wd, error) {
	wd, err := syscall.InotifyAddWatch(int(fd), name, uint32(mask))
	return Wd(wd), newPathError("inotify_add_watch", name, err)
}

// Remove the watch specified by WD from the inotify instance FD.
func sys_inotify_rm_watch(fd inFd, wd Wd) error {
	success, err := syscall.InotifyRmWatch(int(fd), uint32(wd))
	switch success {
	case -1:
		if err == nil {
			panic("should never happen")
		}
		os.NewSyscallError("inotify_rm_watch", err)
	case 0:
		if err != nil {
			panic("should never happen")
		}
		return nil
	}
	panic("should never happen")
}

func sys_close(fd inFd) error {
	return os.NewSyscallError("close", syscall.Close(int(fd)))
}

func sys_read(fd inFd, p []byte) (int, error) {
	n, err := syscall.Read(int(fd), p)
	return n, os.NewSyscallError("read", err)
}

func sys_dupfd_cloexec(fd inFd) (inFd, error) {
	n, _, errno := syscall.Syscall(syscall.SYS_FCNTL, uintptr(fd), syscall.F_DUPFD_CLOEXEC, 0)
	if errno != 0 {
		return -1, os.NewSyscallError("dupfd_cloexec", errno)
	}
	return inFd(n), nil
}

func sys_setnonblock(fd inFd, nonblocking bool) error {
	err := syscall.SetNonblock(int(fd), nonblocking)
	return os.NewSyscallError("setnonblock", err)
}

func sys_getnonblock(fd inFd) (bool, error) {
	flag, _, errno := syscall.Syscall(syscall.SYS_FCNTL, uintptr(fd), syscall.F_GETFL, 0)
	if errno != 0 {
		return false, os.NewSyscallError("getnonblock", errno)
	}
	return flag & syscall.O_NONBLOCK != 0, nil
}