-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathmain.cpp
248 lines (201 loc) · 6.59 KB
/
main.cpp
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
/*
* Copyright (c) 2017 ARM Limited. All rights reserved.
* SPDX-License-Identifier: Apache-2.0
* Licensed under the Apache License, Version 2.0 (the License); you may
* not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an AS IS BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "mbed.h"
#include "CellularNonIPSocket.h"
#include "UDPSocket.h"
#include "TCPSocket.h"
#include "cellular_demo_tracing.h"
/* configuration choices in mbed_app.json */
#define UDP 0
#define TCP 1
#define NONIP 2
#if MBED_CONF_APP_SOCK_TYPE == TCP
static constexpr char SOCKET_TYPE[] = "TCP";
#elif MBED_CONF_APP_SOCK_TYPE == UDP
static constexpr char SOCKET_TYPE[] = "UDP";
#elif MBED_CONF_APP_SOCK_TYPE == NONIP
static constexpr char SOCKET_TYPE[] = "CellularNonIP";
#endif
static const char ECHO_HOSTNAME[] = MBED_CONF_APP_ECHO_SERVER_HOSTNAME;
class CellularDemo {
static constexpr uint8_t RETRY_COUNT = 3;
public:
CellularDemo(NetworkInterface &network)
: _net(network)
{ }
~CellularDemo() { }
/** Run the cellular demo. */
void run()
{
/* sim pin, apn, credentials and possible plmn are taken automatically from json
* when using NetworkInterface::set_default_parameters() */
_net.set_default_parameters();
nsapi_size_or_error_t ret = NSAPI_ERROR_NO_CONNECTION;
if (connect_cellular()) {
/* ping echo server */
if (!test_send_and_receive()) {
printf("Sending and received data failed.\n");
}
ret = _net.disconnect();
if (ret != NSAPI_ERROR_OK) {
printf("Disconnect failed (error: %d).\n", ret);
}
}
if (ret == NSAPI_ERROR_OK) {
printf("Success. Exiting\n");
} else {
printf("Failure. Exiting\n");
}
}
private:
/**
* For UDP or TCP it opens a socket with the given echo server and performs an echo transaction.
* For Cellular Non-IP it opens a socket for which the data delivery path is decided
* by network's control plane CIoT optimisation setup, for the given APN.
*/
bool test_send_and_receive()
{
nsapi_size_or_error_t ret;
ret = _socket.open(&_net);
if (ret != NSAPI_ERROR_OK) {
printf("%sSocket.open() fails, code: %d\n", SOCKET_TYPE, ret);
return false;
}
_socket.set_timeout(15000);
if (!resolve_hostname()) {
return false;
}
if (!connect_socket()) {
return false;
}
ret = send_test_data();
if (ret < 0) {
printf("%sSocket.send() fails, code: %d\n", SOCKET_TYPE, ret);
return false;
} else {
printf("%s: Sent %d Bytes to %s\n", SOCKET_TYPE, ret, ECHO_HOSTNAME);
}
ret = receive_test_data();
if (ret < 0) {
printf("%sSocket.recv() fails, code: %d\n", SOCKET_TYPE, ret);
return false;
} else {
printf("Received from echo server %d Bytes\n", ret);
}
ret = _socket.close();
if (ret != NSAPI_ERROR_OK) {
printf("%sSocket.close() fails, code: %d\n", SOCKET_TYPE, ret);
return false;
}
return true;
}
/** Connects to the Cellular Network */
bool connect_cellular()
{
printf("Establishing connection\n");
/* check if we're already connected */
if (_net.get_connection_status() == NSAPI_STATUS_GLOBAL_UP) {
return true;
}
nsapi_error_t ret;
for (uint8_t retry = 0; retry <= RETRY_COUNT; retry++) {
ret = _net.connect();
if (ret == NSAPI_ERROR_OK) {
printf("Connection Established.\n");
return true;
} else if (ret == NSAPI_ERROR_AUTH_FAILURE) {
printf("Authentication Failure.\n");
return false;
} else {
printf("Couldn't connect: %d, will retry\n", ret);
}
}
printf("Fatal connection failure: %d\n", ret);
return false;
}
/** Connects to the Cellular Network */
bool resolve_hostname()
{
#if MBED_CONF_APP_SOCK_TYPE != NONIP
nsapi_error_t ret = _net.gethostbyname(ECHO_HOSTNAME, &_socket_address);
if (ret != NSAPI_ERROR_OK) {
printf("Couldn't resolve remote host: %s, code: %d\n", ECHO_HOSTNAME, ret);
return false;
}
_socket_address.set_port(MBED_CONF_APP_ECHO_SERVER_PORT);
#endif
return true;
}
bool connect_socket()
{
#if MBED_CONF_APP_SOCK_TYPE == TCP
nsapi_error_t ret = _socket.connect(_socket_address);
if (ret < 0) {
printf("TCPSocket.connect() fails, code: %d\n", ret);
return false;
} else {
printf("TCP: connected with %s server\n", ECHO_HOSTNAME);
}
#endif
return true;
}
nsapi_error_t send_test_data()
{
const char *echo_string = "TEST";
#if MBED_CONF_APP_SOCK_TYPE == UDP
return _socket.sendto(_socket_address, (void*)echo_string, strlen(echo_string));
#else
return _socket.send((void*)echo_string, strlen(echo_string));
#endif
}
nsapi_error_t receive_test_data()
{
char receive_buffer[4];
#if MBED_CONF_APP_SOCK_TYPE == UDP
return _socket.recvfrom(&_socket_address, (void*)receive_buffer, sizeof(receive_buffer));
#else
return _socket.recv((void*)receive_buffer, sizeof(receive_buffer));
#endif
}
private:
NetworkInterface &_net;
#if MBED_CONF_APP_SOCK_TYPE == TCP
TCPSocket _socket;
SocketAddress _socket_address;
#elif MBED_CONF_APP_SOCK_TYPE == UDP
UDPSocket _socket;
SocketAddress _socket_address;
#elif MBED_CONF_APP_SOCK_TYPE == NONIP
CellularNonIPSocket _socket;
#endif
};
int main() {
printf("\nmbed-os-example-cellular\n");
trace_open();
#if MBED_CONF_APP_SOCK_TYPE == NONIP
NetworkInterface *net = CellularContext::get_default_nonip_instance();
#else
NetworkInterface *net = CellularContext::get_default_instance();
#endif
if (net) {
CellularDemo example(*net);
example.run();
} else {
printf("Failed to get_default_instance()\n");
}
trace_close();
return 0;
}