]> Cypherpunks.ru repositories - nncp.git/blob - src/cypherpunks.ru/nncp/call.go
fa1aff7ccc8f666b87dea4f767d77c23aa08f292
[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-2017 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
26 func (ctx *Ctx) CallNode(node *Node, addrs []string, nice uint8, xxOnly *TRxTx, onlineDeadline int) (isGood bool) {
27         for _, addr := range addrs {
28                 sds := SDS{"node": node.Id, "addr": addr}
29                 ctx.LogD("call", sds, "dialing")
30                 conn, err := net.Dial("tcp", addr)
31                 if err != nil {
32                         ctx.LogD("call", SdsAdd(sds, SDS{"err": err}), "dialing")
33                         continue
34                 }
35                 ctx.LogD("call", sds, "connected")
36                 state, err := ctx.StartI(conn, node.Id, nice, xxOnly, onlineDeadline)
37                 if err == nil {
38                         ctx.LogI("call-start", sds, "connected")
39                         state.Wait()
40                         ctx.LogI("call-finish", SDS{
41                                 "node":     state.Node.Id,
42                                 "duration": strconv.FormatInt(int64(state.Duration.Seconds()), 10),
43                                 "rxbytes":  strconv.FormatInt(state.RxBytes, 10),
44                                 "txbytes":  strconv.FormatInt(state.TxBytes, 10),
45                                 "rxspeed":  strconv.FormatInt(state.RxSpeed, 10),
46                                 "txspeed":  strconv.FormatInt(state.TxSpeed, 10),
47                         }, "")
48                         isGood = true
49                         conn.Close()
50                         break
51                 } else {
52                         ctx.LogE("call-start", SdsAdd(sds, SDS{"err": err}), "")
53                         conn.Close()
54                 }
55         }
56         return
57 }