File: connection.go

package info (click to toggle)
golang-github-linbit-golinstor 0.55.0-2
  • links: PTS, VCS
  • area: main
  • in suites: experimental, forky, sid
  • size: 480 kB
  • sloc: makefile: 11
file content (90 lines) | stat: -rw-r--r-- 3,494 bytes parent folder | download
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
package client

import (
	"context"
	"fmt"

	"github.com/google/go-querystring/query"
)

type Connection struct {
	NodeA string            `json:"node_a,omitempty"`
	NodeB string            `json:"node_b,omitempty"`
	Props map[string]string `json:"props,omitempty"`
	Flags []string          `json:"flags,omitempty"`
	Port  *int32            `json:"port,omitempty"`
}

// ConnectionProvider acts as an abstraction for a ConnectionService. It can be swapped out
// for another ConnectionService implementation, for example for testing.
type ConnectionProvider interface {
	// GetNodeConnections lists all node connections, optionally limites to nodes A and B, if not empty.
	GetNodeConnections(ctx context.Context, nodeA, nodeB string) ([]Connection, error)
	// GetResourceConnections returns all connections of the given resource.
	GetResourceConnections(ctx context.Context, resource string) ([]Connection, error)
	// GetResourceConnection returns the connection between node A and B for the given resource.
	GetResourceConnection(ctx context.Context, resource, nodeA, nodeB string) (*Connection, error)
	// SetNodeConnection sets or updates the node connection between node A and B.
	SetNodeConnection(ctx context.Context, nodeA, nodeB string, props GenericPropsModify) error
	// SetResourceConnection sets or updates the connection between node A and B for a resource.
	SetResourceConnection(ctx context.Context, resource, nodeA, nodeB string, props GenericPropsModify) error
}

// ConnectionService is the service that deals with connection related tasks.
type ConnectionService struct {
	client *Client
}

func (c *ConnectionService) GetNodeConnections(ctx context.Context, nodeA, nodeB string) ([]Connection, error) {
	nodeA, nodeB = sortNodes(nodeA, nodeB)

	vals, err := query.Values(struct {
		NodeA string `url:"node_a,omitempty"`
		NodeB string `url:"node_b,omitempty"`
	}{NodeA: nodeA, NodeB: nodeB})
	if err != nil {
		return nil, fmt.Errorf("failed to encode node names: %w", err)
	}

	var conns []Connection
	_, err = c.client.doGET(ctx, "/v1/node-connections?"+vals.Encode(), &conns)
	return conns, err
}

func (c *ConnectionService) GetResourceConnections(ctx context.Context, resource string) ([]Connection, error) {
	var conns []Connection
	_, err := c.client.doGET(ctx, "/v1/resource-definitions/"+resource+"/resource-connections", &conns)
	return conns, err
}

func (c *ConnectionService) GetResourceConnection(ctx context.Context, resource, nodeA, nodeB string) (*Connection, error) {
	nodeA, nodeB = sortNodes(nodeA, nodeB)

	var conn Connection
	_, err := c.client.doGET(ctx, "/v1/resource-definitions/"+resource+"/resource-connections/"+nodeA+"/"+nodeB, &conn)
	if err != nil {
		return nil, err
	}
	return &conn, err
}

func (c *ConnectionService) SetNodeConnection(ctx context.Context, nodeA, nodeB string, props GenericPropsModify) error {
	nodeA, nodeB = sortNodes(nodeA, nodeB)
	_, err := c.client.doPUT(ctx, "/v1/node-connections/"+nodeA+"/"+nodeB, &props)
	return err
}

func (c *ConnectionService) SetResourceConnection(ctx context.Context, resource, nodeA, nodeB string, props GenericPropsModify) error {
	nodeA, nodeB = sortNodes(nodeA, nodeB)
	_, err := c.client.doPUT(ctx, "/v1/resource-definitions/"+resource+"/resource-connections/"+nodeA+"/"+nodeB, &props)
	return err
}

// Sort node parameters: LINSTOR is (sometimes) order-dependent with parameters.
func sortNodes(a, b string) (string, string) {
	if a < b {
		return a, b
	} else {
		return b, a
	}
}