]> Cypherpunks.ru repositories - nncp.git/commitdiff
Move lockdir to separate file
authorSergey Matveev <stargrave@stargrave.org>
Sun, 11 Jun 2017 09:46:12 +0000 (12:46 +0300)
committerSergey Matveev <stargrave@stargrave.org>
Sun, 11 Jun 2017 09:46:12 +0000 (12:46 +0300)
src/cypherpunks.ru/nncp/lockdir.go [new file with mode: 0644]
src/cypherpunks.ru/nncp/toss.go

diff --git a/src/cypherpunks.ru/nncp/lockdir.go b/src/cypherpunks.ru/nncp/lockdir.go
new file mode 100644 (file)
index 0000000..25316b8
--- /dev/null
@@ -0,0 +1,54 @@
+/*
+NNCP -- Node to Node copy, utilities for store-and-forward data exchange
+Copyright (C) 2016-2017 Sergey Matveev <stargrave@stargrave.org>
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 3 of the License, or
+(at your option) any later version.
+
+This program 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 General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program.  If not, see <http://www.gnu.org/licenses/>.
+*/
+
+package nncp
+
+import (
+       "os"
+       "path/filepath"
+
+       "golang.org/x/sys/unix"
+)
+
+func (ctx *Ctx) LockDir(nodeId *NodeId, xx TRxTx) (*os.File, error) {
+       ctx.ensureRxDir(nodeId)
+       lockPath := filepath.Join(ctx.Spool, nodeId.String(), string(xx)) + ".lock"
+       dirLock, err := os.OpenFile(
+               lockPath,
+               os.O_CREATE|os.O_WRONLY,
+               os.FileMode(0600),
+       )
+       if err != nil {
+               ctx.LogE("lockdir", SDS{"path": lockPath, "err": err}, "")
+               return nil, err
+       }
+       err = unix.Flock(int(dirLock.Fd()), unix.LOCK_EX|unix.LOCK_NB)
+       if err != nil {
+               ctx.LogE("lockdir", SDS{"path": lockPath, "err": err}, "")
+               dirLock.Close()
+               return nil, err
+       }
+       return dirLock, nil
+}
+
+func (ctx *Ctx) UnlockDir(fd *os.File) {
+       if fd != nil {
+               unix.Flock(int(fd.Fd()), unix.LOCK_UN)
+               fd.Close()
+       }
+}
index 4ae9711f8d7d6f42fbefb50b1363ef3001ccaef6..fec62ae365a2c105e36f40b626298879ee13eca5 100644 (file)
@@ -36,7 +36,6 @@ import (
        "github.com/davecgh/go-xdr/xdr2"
        "github.com/dustin/go-humanize"
        "golang.org/x/crypto/blake2b"
-       "golang.org/x/sys/unix"
 )
 
 func newNotification(fromTo *FromToYAML, subject string) io.Reader {
@@ -48,34 +47,6 @@ func newNotification(fromTo *FromToYAML, subject string) io.Reader {
        ))
 }
 
-func (ctx *Ctx) LockDir(nodeId *NodeId, xx TRxTx) (*os.File, error) {
-       ctx.ensureRxDir(nodeId)
-       lockPath := filepath.Join(ctx.Spool, nodeId.String(), string(xx)) + ".lock"
-       dirLock, err := os.OpenFile(
-               lockPath,
-               os.O_CREATE|os.O_WRONLY,
-               os.FileMode(0600),
-       )
-       if err != nil {
-               ctx.LogE("lockdir", SDS{"path": lockPath, "err": err}, "")
-               return nil, err
-       }
-       err = unix.Flock(int(dirLock.Fd()), unix.LOCK_EX|unix.LOCK_NB)
-       if err != nil {
-               ctx.LogE("lockdir", SDS{"path": lockPath, "err": err}, "")
-               dirLock.Close()
-               return nil, err
-       }
-       return dirLock, nil
-}
-
-func (ctx *Ctx) UnlockDir(fd *os.File) {
-       if fd != nil {
-               unix.Flock(int(fd.Fd()), unix.LOCK_UN)
-               fd.Close()
-       }
-}
-
 func (ctx *Ctx) Toss(nodeId *NodeId, nice uint8, dryRun bool) bool {
        dirLock, err := ctx.LockDir(nodeId, TRx)
        if err != nil {