]> Cypherpunks.ru repositories - nncp.git/blob - src/call.go
fd57bd1f283eaca0985adfc0e1bb8c4b9ff4ef01
[nncp.git] / src / call.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         "net"
22         "strconv"
23
24         "github.com/gorhill/cronexpr"
25 )
26
27 type Call struct {
28         Cron           *cronexpr.Expression
29         Nice           uint8
30         Xx             TRxTx
31         RxRate         int
32         TxRate         int
33         Addr           *string
34         OnlineDeadline uint
35         MaxOnlineTime  uint
36 }
37
38 func (ctx *Ctx) CallNode(
39         node *Node,
40         addrs []string,
41         nice uint8,
42         xxOnly TRxTx,
43         rxRate, txRate int,
44         onlineDeadline, maxOnlineTime uint,
45         listOnly bool,
46         onlyPkts map[[32]byte]bool,
47 ) (isGood bool) {
48         for _, addr := range addrs {
49                 sds := SDS{"node": node.Id, "addr": addr}
50                 ctx.LogD("call", sds, "dialing")
51                 var conn ConnDeadlined
52                 var err error
53                 if addr[0] == '|' {
54                         conn, err = NewPipeConn(addr[1:])
55                 } else {
56                         conn, err = net.Dial("tcp", addr)
57                 }
58                 if err != nil {
59                         ctx.LogD("call", SdsAdd(sds, SDS{"err": err}), "dialing")
60                         continue
61                 }
62                 ctx.LogD("call", sds, "connected")
63                 state := SPState{
64                         Ctx:            ctx,
65                         Node:           node,
66                         Nice:           nice,
67                         onlineDeadline: onlineDeadline,
68                         maxOnlineTime:  maxOnlineTime,
69                         xxOnly:         xxOnly,
70                         rxRate:         rxRate,
71                         txRate:         txRate,
72                         listOnly:       listOnly,
73                         onlyPkts:       onlyPkts,
74                 }
75                 if err = state.StartI(conn); err == nil {
76                         ctx.LogI("call-start", sds, "connected")
77                         state.Wait()
78                         ctx.LogI("call-finish", SDS{
79                                 "node":     state.Node.Id,
80                                 "duration": strconv.FormatInt(int64(state.Duration.Seconds()), 10),
81                                 "rxbytes":  strconv.FormatInt(state.RxBytes, 10),
82                                 "txbytes":  strconv.FormatInt(state.TxBytes, 10),
83                                 "rxspeed":  strconv.FormatInt(state.RxSpeed, 10),
84                                 "txspeed":  strconv.FormatInt(state.TxSpeed, 10),
85                         }, "")
86                         isGood = true
87                         conn.Close()
88                         break
89                 } else {
90                         ctx.LogE("call-start", SdsAdd(sds, SDS{"err": err}), "")
91                         conn.Close()
92                 }
93         }
94         return
95 }