chen
2024-09-20 292ed46c6066d47289f1330b1c2bcc6d74761f95
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
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
/*******************************************************************************
 * File Name         : qxwz_user_impl.c
 * Description       :
 * Created on        : 2021Äê1ÔÂ7ÈÕ
 * Author            : www.hido-studio.com
 *******************************************************************************/
 
/*******************************************************************************
 *                              Include Files                                  *
 *******************************************************************************/
#include "qxwz_user_impl.h"
#include "HIDO_TypeDef.h"
#include "Uart.h"
#include "stdarg.h"
#include "stdio.h"
#include "stdlib.h"
#include "Socket.h"
#include "HIDO_Debug.h"
#include "HIDO_Timer.h"
#include "HIDO_ATLite.h"
#include "EC600SDriver.h"
#include "EC600SFSM.h"
#include "Internet.h"
#include "DBG.h"
 
/*******************************************************************************
 *                                  Macro                                      *
 *******************************************************************************/
 
/*******************************************************************************
 *                             Type Definition                                 *
 *******************************************************************************/
 
/*******************************************************************************
 *                             Local Variable                                  *
 *******************************************************************************/
 
/*******************************************************************************
 *                        Local Function Declaration                           *
 *******************************************************************************/
 
/*******************************************************************************
 *                             Local Function                                  *
 *******************************************************************************/
 
/*******************************************************************************
 *                             Global Function                                 *
 *******************************************************************************/
 
/*******************************************************************************
 * Function Name     : qxwz_malloc
 * Description       : 
 * Input             : 
 * Output            : 
 * Return            : 
 * Author            : www.hido-studio.com
 * Modified Date:    : 2021Äê1ÔÂ7ÈÕ
 *******************************************************************************/
qxwz_void_t *qxwz_malloc(qxwz_uint32_t size)
{
    qxwz_void_t *addr = malloc(size);
    
    if(HIDO_NULL == addr)
    {
        addr = addr;
        HIDO_Debug("qxwz_malloc error \r\n");
    }
    return addr;
}
 
/*******************************************************************************
 * Function Name     : qxwz_calloc
 * Description       :
 * Input             :
 * Output            :
 * Return            :
 * Author            : www.hido-studio.com
 * Modified Date:    : 2021Äê1ÔÂ7ÈÕ
 *******************************************************************************/
void *qxwz_calloc(qxwz_uint32_t nmemb, qxwz_uint32_t size)
{
    qxwz_void_t *addr = calloc(nmemb, size);
    
    if(HIDO_NULL == addr)
    {
        addr = addr;
        HIDO_Debug("qxwz_calloc error \r\n");
    }
    return addr;
}
 
/*******************************************************************************
 * Function Name     : qxwz_calloc
 * Description       :
 * Input             :
 * Output            :
 * Return            :
 * Author            : www.hido-studio.com
 * Modified Date:    : 2021Äê1ÔÂ7ÈÕ
 *******************************************************************************/
qxwz_void_t *qxwz_realloc(qxwz_void_t *ptr, qxwz_uint32_t size)
{
    qxwz_void_t *addr = realloc(ptr, size);
    
    if(HIDO_NULL == addr)
    {
        addr = addr;
        HIDO_Debug("qxwz_realloc error \r\n");
    }
    return addr;
}
 
/*******************************************************************************
 * Function Name     : qxwz_calloc
 * Description       :
 * Input             :
 * Output            :
 * Return            :
 * Author            : www.hido-studio.com
 * Modified Date:    : 2021Äê1ÔÂ7ÈÕ
 *******************************************************************************/
void qxwz_free(qxwz_void_t *ptr)
{
    free(ptr);
}
 
/*******************************************************************************
 * Function Name     : qxwz_mutex_init
 * Description       :
 * Input             :
 * Output            :
 * Return            :
 * Author            : www.hido-studio.com
 * Modified Date:    : 2021Äê1ÔÂ7ÈÕ
 *******************************************************************************/
qxwz_int32_t qxwz_mutex_init(qxwz_mutex_t *mutex)
{
    return 0;
}
 
/*******************************************************************************
 * Function Name     : qxwz_mutex_init
 * Description       :
 * Input             :
 * Output            :
 * Return            :
 * Author            : www.hido-studio.com
 * Modified Date:    : 2021Äê1ÔÂ7ÈÕ
 *******************************************************************************/
qxwz_int32_t qxwz_mutex_trylock(qxwz_mutex_t *mutex)
{
    return 0;
}
 
/*******************************************************************************
 * Function Name     : qxwz_mutex_unlock
 * Description       :
 * Input             :
 * Output            :
 * Return            :
 * Author            : www.hido-studio.com
 * Modified Date:    : 2021Äê1ÔÂ7ÈÕ
 *******************************************************************************/
qxwz_int32_t qxwz_mutex_lock(qxwz_mutex_t *mutex)
{
    return 0;
}
 
/*******************************************************************************
 * Function Name     : qxwz_mutex_unlock
 * Description       :
 * Input             :
 * Output            :
 * Return            :
 * Author            : www.hido-studio.com
 * Modified Date:    : 2021Äê1ÔÂ7ÈÕ
 *******************************************************************************/
qxwz_int32_t qxwz_mutex_unlock(qxwz_mutex_t *mutex)
{
    return 0;
}
 
/*******************************************************************************
 * Function Name     : qxwz_mutex_destroy
 * Description       :
 * Input             :
 * Output            :
 * Return            :
 * Author            : www.hido-studio.com
 * Modified Date:    : 2021Äê1ÔÂ7ÈÕ
 *******************************************************************************/
qxwz_int32_t qxwz_mutex_destroy(qxwz_mutex_t *mutex)
{
    return 0;
}
 
/*******************************************************************************
 * Function Name     : qxwz_SocketEventProc
 * Description       :
 * Input             :
 * Output            :
 * Return            :
 * Author            : www.hido-studio.com
 * Modified Date:    : 2021Äê1ÔÂ7ÈÕ
 *******************************************************************************/
static  HIDO_VOID qxwz_SocketEventProc(HIDO_INT32 _i32SockID, E_SocketEvent _eEvent, HIDO_VOID *_pData)
{
    HIDO_Debug("Event:%u\r\n", _eEvent);
}
 
/*******************************************************************************
 * Function Name     : qxwz_sock_create
 * Description       :
 * Input             :
 * Output            :
 * Return            :
 * Author            : www.hido-studio.com
 * Modified Date:    : 2021Äê1ÔÂ7ÈÕ
 *******************************************************************************/
qxwz_int32_t qxwz_sock_create(void)
{
    HIDO_Debug("## qxwz_sock_create \r\n");
    
    HIDO_INT32 i32Socket = 0;
 
    static HIDO_INT32 i32LastSocket1 = -1;
    static HIDO_INT32 i32LastSocket2 = -1;
 
    if(-1 == i32LastSocket1)
    {
        if(Socket_Create(&i32Socket, SOCKET_TYPE_TCP, qxwz_SocketEventProc, HIDO_NULL) != HIDO_OK)
        {
            return -1;
        }
 
        i32LastSocket1 = i32Socket;
        return i32Socket;
    }
    else
    {
        switch(Socket_GetSocketState(i32LastSocket1))
        {
            case SOCKET_STATE_CLOSED:
            case SOCKET_STATE_CONNECT_FAILED:
            {
                return i32LastSocket1;
            }
        }
 
        if(-1 == i32LastSocket2)
        {
            if(Socket_Create(&i32Socket, SOCKET_TYPE_TCP, qxwz_SocketEventProc, HIDO_NULL) != HIDO_OK)
            {
                return -1;
            }
 
            i32LastSocket2 = i32Socket;
            return i32Socket;
        }
        else
        {
            switch(Socket_GetSocketState(i32LastSocket2))
            {
                case SOCKET_STATE_CLOSED:
                case SOCKET_STATE_CONNECT_FAILED:
                {
                    return i32LastSocket2;
                }
            }
        }
    }
 
    return -1;
}
 
/*******************************************************************************
 * Function Name     : qxwz_sock_connect
 * Description       :
 * Input             :
 * Output            :
 * Return            :
 * Author            : www.hido-studio.com
 * Modified Date:    : 2021Äê1ÔÂ7ÈÕ
 *******************************************************************************/
qxwz_int32_t qxwz_sock_connect(qxwz_int32_t sock, qxwz_sock_host_t *serv)
{
    HIDO_BOOL bIsConnected = HIDO_FALSE;
 
    if(HIDO_NULL == serv)
    {
        return -1;
    }
 
    if(Socket_Connect(sock, (HIDO_CHAR *)serv->hostname, serv->port) != HIDO_OK)
    {
        return -1;
    }
 
    HIDO_UINT32 tick = HIDO_TimerGetTick();
    while((HIDO_TimerGetTick() - tick) < HIDO_TIMER_TICK_S(10))
    {
        EC600SDriver_TimerPoll();
        HIDO_ATLitePoll();
        Internet_Poll();
 
        if(EC600S_IsIPIdle() == HIDO_TRUE)
        {
            if(Socket_IsConnected(sock, &bIsConnected) != HIDO_OK)
            {
                return -1;
            }
 
            if(bIsConnected == HIDO_TRUE)
            {
                return 0;
            }
        }
    }
 
    return 0;
}
 
/*******************************************************************************
 * Function Name     : qxwz_sock_send
 * Description       :
 * Input             :
 * Output            :
 * Return            :
 * Author            : www.hido-studio.com
 * Modified Date:    : 2021Äê1ÔÂ7ÈÕ
 *******************************************************************************/
qxwz_int32_t qxwz_sock_send(qxwz_int32_t sock, const qxwz_uint8_t *send_buf, qxwz_uint32_t len)
{
    if(HIDO_NULL == send_buf || 0 == len)
    {
        return -1;
    }
 
    if(Socket_Send(sock, (HIDO_UINT8 *)send_buf, len) != HIDO_OK)
    {
        HIDO_Debug("## Socket_Send error \r\n");
        return -1;
    }
 
    return len;
}
 
/*******************************************************************************
 * Function Name     : qxwz_sock_send
 * Description       :
 * Input             :
 * Output            :
 * Return            :
 * Author            : www.hido-studio.com
 * Modified Date:    : 2021Äê1ÔÂ7ÈÕ
 *******************************************************************************/
qxwz_int32_t qxwz_sock_recv(qxwz_int32_t sock, qxwz_uint8_t *recv_buf, qxwz_uint32_t len)
{
    HIDO_BOOL bIsClosed = HIDO_FALSE;
    HIDO_UINT32 u32RecvLen = 0;
 
    if(HIDO_NULL == recv_buf || 0 == len)
    {
        return -2;
    }
 
    if(Socket_Recv(sock, recv_buf, len, &u32RecvLen) != HIDO_OK)
    {
        return -2;
    }
 
    if(0 == u32RecvLen)
    {
        if(Socket_IsClosed(sock, &bIsClosed) != HIDO_OK)
        {
            return -2;
        }
 
        if(HIDO_TRUE == bIsClosed)
        {
            return 0;
        }
        
        return -1;
    }
 
    HIDO_Debug("## qxwz_sock_recv %u \r\n", u32RecvLen);
    
    return u32RecvLen;
}
 
/*******************************************************************************
 * Function Name     : qxwz_sock_close
 * Description       :
 * Input             :
 * Output            :
 * Return            :
 * Author            : www.hido-studio.com
 * Modified Date:    : 2021Äê1ÔÂ7ÈÕ
 *******************************************************************************/
qxwz_int32_t qxwz_sock_close(qxwz_int32_t sock)
{
    HIDO_Debug("## qxwz_sock_close \r\n");
    
    HIDO_BOOL bIsClosed = HIDO_FALSE;
 
    if(Socket_Close(sock) != HIDO_OK)
    {
        return -1;
    }
 
    HIDO_UINT32 tick = HIDO_TimerGetTick();
    while((HIDO_TimerGetTick() - tick) < HIDO_TIMER_TICK_S(10))
    {
        EC600SDriver_TimerPoll();
        HIDO_ATLitePoll();
        Internet_Poll();
 
        if(EC600S_IsIPIdle() == HIDO_TRUE)
        {
            if(Socket_IsClosed(sock, &bIsClosed) != HIDO_OK)
            {
                break;
            }
 
            if(bIsClosed == HIDO_TRUE)
            {
                break;
            }
        }
    }
 
//    if(Socket_Destroy(sock) != HIDO_OK)
//    {
//        return -1;
//    }
 
    return 0;
}
 
/*******************************************************************************
 * Function Name     : qxwz_sock_close
 * Description       :
 * Input             :
 * Output            :
 * Return            :
 * Author            : www.hido-studio.com
 * Modified Date:    : 2021Äê1ÔÂ7ÈÕ
 *******************************************************************************/
qxwz_int32_t qxwz_printf(const qxwz_char_t *fmt, ...)
{
    if(DBG_GetMode() != DBG_MODE_SHELL)
    {
        return HIDO_OK;
    }
 
    va_list ap;
    HIDO_CHAR acOutputBuf[512];
    HIDO_UINT32 u32Len = 0;
 
    va_start(ap, fmt);
    u32Len = vsnprintf(acOutputBuf, sizeof(acOutputBuf), fmt, ap);
    va_end(ap);
 
    if(u32Len > (sizeof(acOutputBuf) - 1))
    {
        u32Len = sizeof(acOutputBuf) - 1;
    }
 
    return Uart_Send(UART_ID_DBG, (HIDO_UINT8 *) acOutputBuf, u32Len);
}