go/filelock/file_lock_unix.go

43 lines
878 B
Go
Raw Normal View History

2014-09-04 17:42:27 +04:00
// Copyright 2014 The LevelDB-Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
2014-10-22 05:37:15 +04:00
// +build darwin dragonfly freebsd linux netbsd openbsd solaris
2014-09-04 17:42:27 +04:00
package filelock
import (
"io"
"os"
"syscall"
)
// lockCloser hides all of an os.File's methods, except for Close.
type lockCloser struct {
f *os.File
}
func (l lockCloser) Close() error {
return l.f.Close()
}
func Lock(name string) (io.Closer, error) {
f, err := os.Create(name)
if err != nil {
return nil, err
}
2014-10-22 05:37:15 +04:00
spec := syscall.Flock_t{
Type: syscall.F_WRLCK,
Whence: int16(os.SEEK_SET),
2014-09-04 17:42:27 +04:00
Start: 0,
Len: 0, // 0 means to lock the entire file.
Pid: int32(os.Getpid()),
}
2014-10-22 05:37:15 +04:00
if err := syscall.FcntlFlock(f.Fd(), syscall.F_SETLK, &spec); err != nil {
2014-09-04 17:42:27 +04:00
f.Close()
2014-10-22 05:37:15 +04:00
return nil, err
2014-09-04 17:42:27 +04:00
}
2014-10-22 05:37:15 +04:00
2014-09-04 17:42:27 +04:00
return lockCloser{f}, nil
}