]> Cypherpunks.ru repositories - nncp.git/blob - src/ctx.go
goimports invocation, xdr alias fixed
[nncp.git] / src / ctx.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, version 3 of the License.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program.  If not, see <http://www.gnu.org/licenses/>.
16 */
17
18 package nncp
19
20 import (
21         "errors"
22         "io/ioutil"
23         "log"
24         "os"
25         "path/filepath"
26
27         "syscall"
28
29         "golang.org/x/sys/unix"
30 )
31
32 type Ctx struct {
33         Self   *NodeOur
34         SelfId *NodeId
35         Neigh  map[NodeId]*Node
36         Alias  map[string]*NodeId
37
38         Spool      string
39         LogPath    string
40         UmaskForce *int
41         Quiet      bool
42         Debug      bool
43         NotifyFile *FromToJSON
44         NotifyFreq *FromToJSON
45 }
46
47 func (ctx *Ctx) FindNode(id string) (*Node, error) {
48         nodeId, known := ctx.Alias[id]
49         if known {
50                 return ctx.Neigh[*nodeId], nil
51         }
52         nodeId, err := NodeIdFromString(id)
53         if err != nil {
54                 return nil, err
55         }
56         node, known := ctx.Neigh[*nodeId]
57         if !known {
58                 return nil, errors.New("Unknown node")
59         }
60         return node, nil
61 }
62
63 func (ctx *Ctx) ensureRxDir(nodeId *NodeId) error {
64         dirPath := filepath.Join(ctx.Spool, nodeId.String(), string(TRx))
65         if err := os.MkdirAll(dirPath, os.FileMode(0777)); err != nil {
66                 ctx.LogE("dir-ensure", SDS{"dir": dirPath, "err": err}, "")
67                 return err
68         }
69         fd, err := os.Open(dirPath)
70         if err != nil {
71                 ctx.LogE("dir-ensure", SDS{"dir": dirPath, "err": err}, "")
72                 return err
73         }
74         fd.Close()
75         return nil
76 }
77
78 func CtxFromCmdline(cfgPath, spoolPath, logPath string, quiet, debug bool) (*Ctx, error) {
79         env := os.Getenv(CfgPathEnv)
80         if env != "" {
81                 cfgPath = env
82         }
83         cfgRaw, err := ioutil.ReadFile(cfgPath)
84         if err != nil {
85                 return nil, err
86         }
87         ctx, err := CfgParse(cfgRaw)
88         if err != nil {
89                 return nil, err
90         }
91         if spoolPath == "" {
92                 env = os.Getenv(CfgSpoolEnv)
93                 if env != "" {
94                         ctx.Spool = env
95                 }
96         } else {
97                 ctx.Spool = spoolPath
98         }
99         if logPath == "" {
100                 env = os.Getenv(CfgLogEnv)
101                 if env != "" {
102                         ctx.LogPath = env
103                 }
104         } else {
105                 ctx.LogPath = logPath
106         }
107         ctx.Quiet = quiet
108         ctx.Debug = debug
109         return ctx, nil
110 }
111
112 func (ctx *Ctx) IsEnoughSpace(want int64) bool {
113         var s unix.Statfs_t
114         if err := unix.Statfs(ctx.Spool, &s); err != nil {
115                 log.Fatalln(err)
116         }
117         return int64(s.Bavail)*int64(s.Bsize) > want
118 }
119
120 func (ctx *Ctx) Umask() {
121         if ctx.UmaskForce != nil {
122                 syscall.Umask(*ctx.UmaskForce)
123         }
124 }