]> Cypherpunks.ru repositories - nncp.git/blob - src/cypherpunks.ru/nncp/lockdir.go
556e22d41491034322d388b7e95df166c9a99f94
[nncp.git] / src / cypherpunks.ru / nncp / lockdir.go
1 /*
2 NNCP -- Node to Node copy, utilities for store-and-forward data exchange
3 Copyright (C) 2016-2019 Sergey Matveev <stargrave@stargrave.org>
4
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 3 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 */
18
19 package nncp
20
21 import (
22         "os"
23         "path/filepath"
24
25         "golang.org/x/sys/unix"
26 )
27
28 func (ctx *Ctx) LockDir(nodeId *NodeId, xx TRxTx) (*os.File, error) {
29         ctx.ensureRxDir(nodeId)
30         lockPath := filepath.Join(ctx.Spool, nodeId.String(), string(xx)) + ".lock"
31         dirLock, err := os.OpenFile(
32                 lockPath,
33                 os.O_CREATE|os.O_WRONLY,
34                 os.FileMode(0600),
35         )
36         if err != nil {
37                 ctx.LogE("lockdir", SDS{"path": lockPath, "err": err}, "")
38                 return nil, err
39         }
40         err = unix.Flock(int(dirLock.Fd()), unix.LOCK_EX|unix.LOCK_NB)
41         if err != nil {
42                 ctx.LogE("lockdir", SDS{"path": lockPath, "err": err}, "")
43                 dirLock.Close()
44                 return nil, err
45         }
46         return dirLock, nil
47 }
48
49 func (ctx *Ctx) UnlockDir(fd *os.File) {
50         if fd != nil {
51                 unix.Flock(int(fd.Fd()), unix.LOCK_UN)
52                 fd.Close()
53         }
54 }