aboutsummaryrefslogtreecommitdiff
path: root/src/gnunet/service/client.go
blob: 81a9f0136fe3a272234fc977b44c7a609510830d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
// This file is part of gnunet-go, a GNUnet-implementation in Golang.
// Copyright (C) 2019-2022 Bernd Fix  >Y<
//
// gnunet-go is free software: you can redistribute it and/or modify it
// under the terms of the GNU Affero General Public License as published
// by the Free Software Foundation, either version 3 of the License,
// or (at your option) any later version.
//
// gnunet-go is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
// Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program.  If not, see <http://www.gnu.org/licenses/>.
//
// SPDX-License-Identifier: AGPL3.0-or-later

package service

import (
	"context"
	"gnunet/message"

	"github.com/bfix/gospel/logger"
)

// Client type: Use to perform client-side interactions with GNUnet services.
type Client struct {
	ch *Connection // channel for message exchange
}

// NewClient connects to a socket with given path
func NewClient(ctx context.Context, path string) (*Client, error) {
	// create a connection
	ch, err := NewConnection(ctx, path)
	if err != nil {
		return nil, err
	}
	// wrap into a message channel for the client.
	return &Client{
		ch: ch,
	}, nil
}

// SendRequest sends a message to the service.
func (c *Client) SendRequest(ctx context.Context, req message.Message) error {
	return c.ch.Send(ctx, req)
}

// ReceiveResponse waits for a response from the service; it can be interrupted
// by sending "false" to the cmd channel.
func (c *Client) ReceiveResponse(ctx context.Context) (message.Message, error) {
	return c.ch.Receive(ctx)
}

// Close a client; no further message exchange is possible.
func (c *Client) Close() error {
	return c.ch.Close()
}

// RequestResponse is a helper method for a one request - one response
// secenarios of client/serice interactions.
func RequestResponse(
	ctx context.Context,
	caller string,
	callee string,
	path string,
	req message.Message) (message.Message, error) {

	// client-connect to the service
	logger.Printf(logger.DBG, "[%s] Connecting to %s service...\n", caller, callee)
	cl, err := NewClient(ctx, path)
	if err != nil {
		return nil, err
	}
	// send request
	logger.Printf(logger.DBG, "[%s] Sending request to %s service\n", caller, callee)
	if err = cl.SendRequest(ctx, req); err != nil {
		return nil, err
	}
	// wait for a single response, then close the connection
	logger.Printf(logger.DBG, "[%s] Waiting for response from %s service\n", caller, callee)
	var resp message.Message
	if resp, err = cl.ReceiveResponse(ctx); err != nil {
		return nil, err
	}
	logger.Printf(logger.DBG, "[%s] Closing connection to %s service\n", caller, callee)
	cl.Close()
	return resp, nil
}