blob: d0a75b2270406c6051a547a17f8f323309b73071 (
plain)
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
//
// Copyright 2023 Staysail Systems, Inc. <info@staysail.tech>
// Copyright 2018 Capitar IT Group BV <info@capitar.com>
// Copyright 2019 Devolutions <info@devolutions.net>
//
// This software is supplied under the terms of the MIT License, a
// copy of which should be located in the distribution where this
// file was obtained (LICENSE.txt). A copy of the license may also be
// found online at https://opensource.org/licenses/MIT.
//
#include "core/nng_impl.h"
#include <stdio.h>
#include <string.h>
static nni_list sp_tran_list =
NNI_LIST_INITIALIZER(sp_tran_list, nni_sp_tran, tran_link);
static nni_rwlock sp_tran_lk = NNI_RWLOCK_INITIALIZER;
void
nni_sp_tran_register(nni_sp_tran *tran)
{
nni_rwlock_wrlock(&sp_tran_lk);
if (!nni_list_node_active(&tran->tran_link)) {
tran->tran_init();
nni_list_append(&sp_tran_list, tran);
}
nni_rwlock_unlock(&sp_tran_lk);
}
nni_sp_tran *
nni_sp_tran_find(nni_url *url)
{
// address is of the form "<scheme>://blah..."
nni_sp_tran *t;
nni_rwlock_rdlock(&sp_tran_lk);
NNI_LIST_FOREACH (&sp_tran_list, t) {
if (strcmp(url->u_scheme, t->tran_scheme) == 0) {
nni_rwlock_unlock(&sp_tran_lk);
return (t);
}
}
nni_rwlock_unlock(&sp_tran_lk);
return (NULL);
}
// nni_sp_tran_sys_init initializes the entire transport subsystem, including
// each individual transport.
#ifdef NNG_TRANSPORT_INPROC
extern void nni_sp_inproc_register(void);
#endif
#ifdef NNG_TRANSPORT_IPC
extern void nni_sp_ipc_register(void);
#endif
#ifdef NNG_TRANSPORT_TCP
extern void nni_sp_tcp_register(void);
#endif
#ifdef NNG_TRANSPORT_TLS
extern void nni_sp_tls_register(void);
#endif
#ifdef NNG_TRANSPORT_WS
extern void nni_sp_ws_register(void);
#endif
#ifdef NNG_TRANSPORT_WSS
extern void nni_sp_wss_register(void);
#endif
#ifdef NNG_TRANSPORT_ZEROTIER
extern void nni_sp_zt_register(void);
#endif
#ifdef NNG_TRANSPORT_FDC
extern void nni_sp_sfd_register(void);
#endif
void
nni_sp_tran_sys_init(void)
{
#ifdef NNG_TRANSPORT_INPROC
nni_sp_inproc_register();
#endif
#ifdef NNG_TRANSPORT_IPC
nni_sp_ipc_register();
#endif
#ifdef NNG_TRANSPORT_TCP
nni_sp_tcp_register();
#endif
#ifdef NNG_TRANSPORT_TLS
nni_sp_tls_register();
#endif
#ifdef NNG_TRANSPORT_WS
nni_sp_ws_register();
#endif
#ifdef NNG_TRANSPORT_WSS
nni_sp_wss_register();
#endif
#ifdef NNG_TRANSPORT_ZEROTIER
nni_sp_zt_register();
#endif
#ifdef NNG_TRANSPORT_FDC
nni_sp_sfd_register();
#endif
}
// nni_sp_tran_sys_fini finalizes the entire transport system, including all
// transports.
void
nni_sp_tran_sys_fini(void)
{
nni_sp_tran *t;
while ((t = nni_list_first(&sp_tran_list)) != NULL) {
nni_list_remove(&sp_tran_list, t);
t->tran_fini();
}
}
|