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