ab869558
aknockae
La com série entr...
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/*
* Test on serial device
*/
////
// Include files
////
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <termios.h>
#include <string.h>
#include <libwebsockets.h>
#include "serial.h"
#define MAX_FRAME_SIZE 1024
#define WAIT_DELAY 50
|
fb352dd1
aknockae
programme terminé...
|
21
|
#define SERIAL_DEVICE "/dev/ttyUSB0" //utiliser USB0 pour le shield Xbee branché en USB
|
ab869558
aknockae
La com série entr...
|
22
23
24
25
26
27
28
|
/*****************************************************************************/
/**********************PARTIE WEBSOCKETS + COM SERIE**************************/
/*****************************************************************************/
//Fonction qui retourne un tableau de char, chaque char correspondant à une donnée d'un capteur
|
fb352dd1
aknockae
programme terminé...
|
29
|
char * getDataFromSensors(char *request,int sizeOfRequest,int sd)
|
ab869558
aknockae
La com série entr...
|
30
|
{
|
ab869558
aknockae
La com série entr...
|
31
32
|
int i;
|
fb352dd1
aknockae
programme terminé...
|
33
34
35
36
|
//la réponse est récupérée sous un type charactère non signé. Il est possible de la stocker dans un charactère signé, mais la valeur affichée par un printf sera différente
unsigned char *reponse = NULL;
reponse = malloc(4*sizeof(unsigned char));
|
ab869558
aknockae
La com série entr...
|
37
38
39
40
|
//On envoie le GET au FPGA pour récupérer les données
for(i = 0; i < sizeOfRequest;i++)
{
|
fb352dd1
aknockae
programme terminé...
|
41
|
|
ab869558
aknockae
La com série entr...
|
42
43
44
45
46
47
48
49
|
if(write(sd,(void*)&request[i],sizeof(char))!=1)
{
perror("main.write"); exit(-1);
}
}
printf("\nReponse : ");
|
fb352dd1
aknockae
programme terminé...
|
50
|
//NE PAS OUBLIER DE LIBERER LA MEMOIRE EN DEHORS DE LA FONCTION
|
ab869558
aknockae
La com série entr...
|
51
|
|
fb352dd1
aknockae
programme terminé...
|
52
53
54
|
for(i=0;i < 4;i++)
{ //on lit ce que nous envoie l'arduino à la suite de la requete GET
if(read(sd,(void*)&reponse[i],sizeof(unsigned char))!=1)
|
ab869558
aknockae
La com série entr...
|
55
56
57
58
|
{
perror("main.read"); exit(-1);
}
}
|
fb352dd1
aknockae
programme terminé...
|
59
60
61
62
|
printf("\nTemperature (C) : %d",reponse[1]);
printf("\nPression (hPa) : %d",reponse[0]+845);
printf("\nHumidite (pourcents) : %d",reponse[2]);
printf("\nLuminosité : %d\n",reponse[3]);
|
ab869558
aknockae
La com série entr...
|
63
|
|
ab869558
aknockae
La com série entr...
|
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
return reponse;
}
static int callback_http(struct libwebsocket_context *this, struct libwebsocket *wsi, enum libwebsocket_callback_reasons reason, void *user,void *in,size_t len)
{
return 0;
}
static int callback_my(struct libwebsocket_context * this, struct libwebsocket *wsi, enum libwebsocket_callback_reasons reason, void *user,void *in,size_t len)
{
static char *requete = NULL;
static char *reponse = NULL;
|
fb352dd1
aknockae
programme terminé...
|
79
80
81
|
//Initialisation com Serie
int sd=serialOpen(SERIAL_DEVICE,SERIAL_BOTH);
serialConfig(sd,B9600);
|
ab869558
aknockae
La com série entr...
|
82
83
84
|
switch(reason)
{
|
ab869558
aknockae
La com série entr...
|
85
86
87
|
case LWS_CALLBACK_ESTABLISHED:
printf("connection established\n");
requete=NULL;
|
fb352dd1
aknockae
programme terminé...
|
88
|
// Declenchement d'un prochain envoi au navigateur
|
ab869558
aknockae
La com série entr...
|
89
90
91
92
93
94
95
96
97
98
99
100
101
|
libwebsocket_callback_on_writable(this,wsi);
break;
case LWS_CALLBACK_RECEIVE:
// Ici sont traites les messages envoyes par le navigateur
printf("received data: %s\n",(char *)in);
requete=malloc(len+LWS_SEND_BUFFER_PRE_PADDING+LWS_SEND_BUFFER_POST_PADDING);
if(requete==NULL)
{
perror("callback_my.malloc"); exit(EXIT_FAILURE);
}
|
fb352dd1
aknockae
programme terminé...
|
102
|
memcpy(requete,in,len);
|
ab869558
aknockae
La com série entr...
|
103
|
// Declenchement d'un prochain envoi au navigateur
|
ab869558
aknockae
La com série entr...
|
104
105
106
107
|
libwebsocket_callback_on_writable(this,wsi);
break;
case LWS_CALLBACK_SERVER_WRITEABLE:
|
fb352dd1
aknockae
programme terminé...
|
108
109
110
|
// Ici sont envoyes les messages au navigateur
//Si la requete a pour valeur GET, on envoie les donnée au site
|
ab869558
aknockae
La com série entr...
|
111
112
|
if(requete!= NULL)
{
|
fb352dd1
aknockae
programme terminé...
|
113
|
if(requete[0] == 'G' && requete[1] == 'E' && requete[2] == 'T')
|
ab869558
aknockae
La com série entr...
|
114
|
{
|
fb352dd1
aknockae
programme terminé...
|
115
116
|
reponse = getDataFromSensors(requete,3,sd);
int length = 4;
|
ab869558
aknockae
La com série entr...
|
117
118
|
unsigned char *buf = malloc(LWS_SEND_BUFFER_PRE_PADDING + length + LWS_SEND_BUFFER_POST_PADDING);
memcpy (buf + LWS_SEND_BUFFER_PRE_PADDING, reponse, length );
|
4972db79
aknockae
Reception et envo...
|
119
|
libwebsocket_write(wsi, buf + LWS_SEND_BUFFER_PRE_PADDING, length, LWS_WRITE_BINARY); //LWS_WRITE_TEXT
|
ab869558
aknockae
La com série entr...
|
120
|
free(reponse);
|
ab869558
aknockae
La com série entr...
|
121
122
123
124
125
126
127
128
129
130
|
free(requete);
requete = NULL;
reponse = NULL;
}
}
break;
default:
break;
}
|
fb352dd1
aknockae
programme terminé...
|
131
|
serialClose(sd);
|
ab869558
aknockae
La com série entr...
|
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
|
return 0;
}
static struct libwebsocket_protocols protocols[] = {
{
"http-only", // name
callback_http, // callback
0, // data size
0 // maximum frame size
},
{"myprotocol",callback_my,0,MAX_FRAME_SIZE},
{NULL,NULL,0,0}
};
/*****************************************************************/
/**********************MAIN***************************************/
/*****************************************************************/
int main(void){
char j;
int i;
unsigned long count = 0;
//Initialisation WebSockets
int port=9000;
struct lws_context_creation_info info;
memset(&info,0,sizeof info);
info.port=port;
info.protocols=protocols;
info.gid=-1;
info.uid=-1;
struct libwebsocket_context *context=libwebsocket_create_context(&info);
|
fb352dd1
aknockae
programme terminé...
|
170
171
|
|
ab869558
aknockae
La com série entr...
|
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
|
if(context==NULL)
{
fprintf(stderr, "libwebsocket init failed\n");
return -1;
}
printf("starting server...\n");
//boucle infinie du main
while(1)
{
libwebsocket_service(context,WAIT_DELAY);
}
libwebsocket_context_destroy(context);
|
fb352dd1
aknockae
programme terminé...
|
188
|
|
ab869558
aknockae
La com série entr...
|
189
190
191
192
193
194
|
return 0;
}
//********************************************************************************//
|