1 | // %flair:license{
|
---|
2 | // This file is part of the Flair framework distributed under the
|
---|
3 | // CECILL-C License, Version 1.0.
|
---|
4 | // %flair:license}
|
---|
5 | // created: 2011/05/01
|
---|
6 | // filename: ui_com.h
|
---|
7 | //
|
---|
8 | // author: Guillaume Sanahuja
|
---|
9 | // Copyright Heudiasyc UMR UTC/CNRS 7253
|
---|
10 | //
|
---|
11 | // version: $Id: $
|
---|
12 | //
|
---|
13 | // purpose: classe permettant la lecture et l'ecriture RT sur socket UDT
|
---|
14 | //
|
---|
15 | //
|
---|
16 | /*********************************************************************/
|
---|
17 |
|
---|
18 | #ifndef UI_COM_H
|
---|
19 | #define UI_COM_H
|
---|
20 |
|
---|
21 | #include "Thread.h"
|
---|
22 | #include <udt.h>
|
---|
23 | #ifdef __XENO__
|
---|
24 | #include <native/pipe.h>
|
---|
25 | #endif
|
---|
26 |
|
---|
27 | namespace flair {
|
---|
28 | namespace core {
|
---|
29 | class Mutex;
|
---|
30 | class Object;
|
---|
31 | }
|
---|
32 | namespace gui {
|
---|
33 | class SendData;
|
---|
34 | }
|
---|
35 | }
|
---|
36 |
|
---|
37 | class ui_com : public flair::core::Thread {
|
---|
38 | public:
|
---|
39 | ui_com(const flair::core::Object *parent, UDTSOCKET sock);
|
---|
40 | ~ui_com();
|
---|
41 | //Send, public part
|
---|
42 | void Send(char *buf, ssize_t size,int ttl = -1);//ttl in ms, -1 for infinite
|
---|
43 | ssize_t Receive(char *buf, ssize_t buf_size);
|
---|
44 | void AddSendData(const flair::gui::SendData *obj);
|
---|
45 | void UpdateSendData(const flair::gui::SendData *obj);
|
---|
46 | void RemoveSendData(const flair::gui::SendData *obj);
|
---|
47 | void UpdateDataToSendSize(void);
|
---|
48 | void Block(void);
|
---|
49 | void UnBlock(void);
|
---|
50 | bool ConnectionLost(void);
|
---|
51 | void CheckConnection(void);
|
---|
52 | private:
|
---|
53 | ssize_t send_size;
|
---|
54 | char *send_buffer;
|
---|
55 | std::vector<const flair::gui::SendData *> data_to_send;
|
---|
56 | std::vector<flair::core::Time> resume_time;
|
---|
57 | flair::core::Mutex *send_mutex;
|
---|
58 | UDTSOCKET socket_fd;
|
---|
59 | bool connection_lost;
|
---|
60 | void Run(void);
|
---|
61 | void SendDatas(void);
|
---|
62 | //private part, called to effectively send to udt
|
---|
63 | void SendNRT(char *buf, ssize_t size,int ttl);
|
---|
64 | void PushDatasToSend(const flair::gui::SendData *data_to_send);
|
---|
65 | typedef struct {
|
---|
66 | char* buf;
|
---|
67 | ssize_t size;
|
---|
68 | uint16_t period;
|
---|
69 | uint16_t nb_buffering;
|
---|
70 | } PushedData_t;
|
---|
71 | std::vector<PushedData_t> PushedDatas;
|
---|
72 |
|
---|
73 | static int compressBuffer(char *in, ssize_t in_size, char **out,
|
---|
74 | ssize_t *out_size, int level);
|
---|
75 | static int uncompressBuffer(unsigned char *in, ssize_t in_size,
|
---|
76 | unsigned char **out, ssize_t *out_size);
|
---|
77 | #ifdef __XENO__
|
---|
78 | bool is_running;
|
---|
79 | static void *user_thread(void *arg);
|
---|
80 | pthread_t thread;
|
---|
81 | RT_PIPE pipe;
|
---|
82 | #endif
|
---|
83 | };
|
---|
84 |
|
---|
85 | #endif // UI_COM_H
|
---|