-
-
Notifications
You must be signed in to change notification settings - Fork 7k
/
Copy pathGSM3ShieldV1ServerProvider.cpp
238 lines (210 loc) · 6.51 KB
/
GSM3ShieldV1ServerProvider.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
/*
This file is part of the GSM3 communications library for Arduino
-- Multi-transport communications platform
-- Fully asynchronous
-- Includes code for the Arduino-Telefonica GSM/GPRS Shield V1
-- Voice calls
-- SMS
-- TCP/IP connections
-- HTTP basic clients
This library has been developed by Telefónica Digital - PDI -
- Physical Internet Lab, as part as its collaboration with
Arduino and the Open Hardware Community.
September-December 2012
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
The latest version of this library can always be found at
https://github.com/BlueVia/Official-Arduino
*/
#include <GSM3ShieldV1ServerProvider.h>
#include <GSM3ShieldV1ModemCore.h>
#include <Arduino.h>
GSM3ShieldV1ServerProvider::GSM3ShieldV1ServerProvider()
{
theGSM3MobileServerProvider=this;
};
//Response management.
void GSM3ShieldV1ServerProvider::manageResponse(byte from, byte to)
{
switch(theGSM3ShieldV1ModemCore.getOngoingCommand())
{
case NONE:
theGSM3ShieldV1ModemCore.gss.cb.deleteToTheEnd(from);
break;
case CONNECTSERVER:
connectTCPServerContinue();
break;
/*case GETIP:
getIPContinue();
break;*/
}
}
//Connect Server main function.
int GSM3ShieldV1ServerProvider::connectTCPServer(int port)
{
// We forget about LocalIP as it has no real use, the modem does whatever it likes
theGSM3ShieldV1ModemCore.setPort(port);
theGSM3ShieldV1ModemCore.openCommand(this,CONNECTSERVER);
// From this moment on we wait for a call
connectTCPServerContinue();
return theGSM3ShieldV1ModemCore.getCommandError();
}
//Connect Server continue function.
void GSM3ShieldV1ServerProvider::connectTCPServerContinue()
{
bool resp;
// 1: Read Local IP "AT+QILOCIP"
// 2: Waiting for IP and Set local port "AT+QILPORT"
// 3: Waiting for QILPOR OK andConfigure as server "AT+QISERVER"
// 4: Wait for SERVER OK
switch (theGSM3ShieldV1ModemCore.getCommandCounter()) {
case 1:
//"AT+QILOCIP."
theGSM3ShieldV1ModemCore.genericCommand_rq(PSTR("AT+QILOCIP"));
theGSM3ShieldV1ModemCore.setCommandCounter(2);
break;
case 2:
//Not IP storing but the command is necessary.
//if(parseQILOCIP_rsp(local_IP, local_IP_Length, resp))
// This awful trick saves some RAM bytes
char aux[3];
aux[0]='\r';aux[1]='\n';aux[2]=0;
if(theGSM3ShieldV1ModemCore.genericParse_rsp(resp, aux))
{
//Response received
if(resp)
{
// Great. Go for the next step
// AT+QILPORT
theGSM3ShieldV1ModemCore.genericCommand_rq(PSTR("AT+QILPORT=\"TCP\","),false);
theGSM3ShieldV1ModemCore.print( theGSM3ShieldV1ModemCore.getPort());
theGSM3ShieldV1ModemCore.print('\r');
theGSM3ShieldV1ModemCore.setCommandCounter(3);
}
else theGSM3ShieldV1ModemCore.closeCommand(3);
}
break;
case 3:
if(theGSM3ShieldV1ModemCore.genericParse_rsp(resp))
{
// Response received
if(resp)
{
// OK received
// Great. Go for the next step
// AT+QISERVER
theGSM3ShieldV1ModemCore.genericCommand_rq(PSTR("AT+QISERVER"),true);
theGSM3ShieldV1ModemCore.setCommandCounter(4);
}
else theGSM3ShieldV1ModemCore.closeCommand(3);
}
break;
case 4:
if(theGSM3ShieldV1ModemCore.genericParse_rsp(resp))
{
// Response received
// OK received, kathapoon, chessespoon
if (resp)
{
theGSM3ShieldV1ModemCore.registerUMProvider(this);
theGSM3ShieldV1ModemCore.closeCommand(1);
}
else
theGSM3ShieldV1ModemCore.closeCommand(3);
}
break;
}
}
//QILOCIP parse.
/*bool GSM3ShieldV1ServerProvider::parseQILOCIP_rsp(char* LocalIP, int LocalIPlength, bool& rsp)
{
if (!(theGSM3ShieldV1ModemCore.theBuffer().extractSubstring("\r\n","\r\n", LocalIP, LocalIPlength)))
rsp = false;
else
rsp = true;
return true;
}
//Get IP main function.
int GSM3ShieldV1ServerProvider::getIP(char* LocalIP, int LocalIPlength)
{
theGSM3ShieldV1ModemCore.setPhoneNumber(LocalIP);
theGSM3ShieldV1ModemCore.setPort(LocalIPlength);
theGSM3ShieldV1ModemCore.openCommand(this,GETIP);
getIPContinue();
return theGSM3ShieldV1ModemCore.getCommandError();
}
void GSM3ShieldV1ServerProvider::getIPContinue()
{
bool resp;
// 1: Read Local IP "AT+QILOCIP"
// 2: Waiting for IP.
switch (theGSM3ShieldV1ModemCore.getCommandCounter()) {
case 1:
//AT+QILOCIP
theGSM3ShieldV1ModemCore.genericCommand_rq(_command_MonoQILOCIP);
theGSM3ShieldV1ModemCore.setCommandCounter(2);
break;
case 2:
if(parseQILOCIP_rsp(theGSM3ShieldV1ModemCore.getPhoneNumber(), theGSM3ShieldV1ModemCore.getPort(), resp))
{
if (resp)
theGSM3ShieldV1ModemCore.closeCommand(1);
else
theGSM3ShieldV1ModemCore.closeCommand(3);
}
theGSM3ShieldV1ModemCore.theBuffer().flush();
theGSM3ShieldV1ModemCore.gss.spaceAvailable();
break;
}
}*/
bool GSM3ShieldV1ServerProvider::getSocketAsServerModemStatus(int s)
{
if(theGSM3ShieldV1ModemCore.getStatus()==TRANSPARENT_CONNECTED)
return true;
else
return false;
}
//URC recognize.
bool GSM3ShieldV1ServerProvider::recognizeUnsolicitedEvent(byte oldTail)
{
int nlength;
char auxLocate [15];
//REMOTE SOCKET CLOSED.
prepareAuxLocate(PSTR("CLOSED\r\n"), auxLocate);
if(theGSM3ShieldV1ModemCore.gss.cb.locate(auxLocate))
{
//To detect remote socket closed for example inside socket data.
theGSM3ShieldV1ModemCore.setStatus(GPRS_READY);
}
//REMOTE SOCKET ACCEPTED.
prepareAuxLocate(PSTR("CONNECT\r\n"), auxLocate);
if(theGSM3ShieldV1ModemCore.gss.cb.locate(auxLocate))
{
//To detect remote socket closed for example inside socket data.
theGSM3ShieldV1ModemCore.theBuffer().chopUntil(auxLocate, true);
theGSM3ShieldV1ModemCore.gss.spaceAvailable();
theGSM3ShieldV1ModemCore.setStatus(TRANSPARENT_CONNECTED);
return true;
}
return false;
}
bool GSM3ShieldV1ServerProvider::getStatusSocketAsServer(uint8_t socket)
{
return(theGSM3ShieldV1ModemCore.getStatus()==TRANSPARENT_CONNECTED);
};
void GSM3ShieldV1ServerProvider::releaseSocket(int socket)
{
}
int GSM3ShieldV1ServerProvider::getNewOccupiedSocketAsServer()
{
return 0;
}